1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_BASE_UPLOAD_FILE_ELEMENT_READER_H_
6 #define NET_BASE_UPLOAD_FILE_ELEMENT_READER_H_
8 #include "base/compiler_specific.h"
9 #include "base/files/file.h"
10 #include "base/files/file_path.h"
11 #include "base/gtest_prod_util.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/time/time.h"
16 #include "net/base/upload_element_reader.h"
26 // An UploadElementReader implementation for file.
27 class NET_EXPORT UploadFileElementReader
: public UploadElementReader
{
29 // |task_runner| is used to perform file operations. It must not be NULL.
30 UploadFileElementReader(base::TaskRunner
* task_runner
,
31 const base::FilePath
& path
,
34 const base::Time
& expected_modification_time
);
35 ~UploadFileElementReader() override
;
37 const base::FilePath
& path() const { return path_
; }
38 uint64
range_offset() const { return range_offset_
; }
39 uint64
range_length() const { return range_length_
; }
40 const base::Time
& expected_modification_time() const {
41 return expected_modification_time_
;
44 // UploadElementReader overrides:
45 const UploadFileElementReader
* AsFileReader() const override
;
46 int Init(const CompletionCallback
& callback
) override
;
47 uint64
GetContentLength() const override
;
48 uint64
BytesRemaining() const override
;
49 int Read(IOBuffer
* buf
,
51 const CompletionCallback
& callback
) override
;
54 FRIEND_TEST_ALL_PREFIXES(ElementsUploadDataStreamTest
, FileSmallerThanLength
);
55 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest
,
56 UploadFileSmallerThanLength
);
58 // Resets this instance to the uninitialized state.
61 // These methods are used to implement Init().
62 void OnOpenCompleted(const CompletionCallback
& callback
, int result
);
63 void OnSeekCompleted(const CompletionCallback
& callback
, int64 result
);
64 void OnGetFileInfoCompleted(const CompletionCallback
& callback
,
65 base::File::Info
* file_info
,
68 // This method is used to implement Read().
69 int OnReadCompleted(const CompletionCallback
& callback
, int result
);
71 // Sets an value to override the result for GetContentLength().
73 struct NET_EXPORT_PRIVATE ScopedOverridingContentLengthForTests
{
74 ScopedOverridingContentLengthForTests(uint64 value
);
75 ~ScopedOverridingContentLengthForTests();
78 scoped_refptr
<base::TaskRunner
> task_runner_
;
79 const base::FilePath path_
;
80 const uint64 range_offset_
;
81 const uint64 range_length_
;
82 const base::Time expected_modification_time_
;
83 scoped_ptr
<FileStream
> file_stream_
;
84 uint64 content_length_
;
85 uint64 bytes_remaining_
;
86 base::WeakPtrFactory
<UploadFileElementReader
> weak_ptr_factory_
;
88 DISALLOW_COPY_AND_ASSIGN(UploadFileElementReader
);
93 #endif // NET_BASE_UPLOAD_FILE_ELEMENT_READER_H_