1 // Copyright 2014 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 CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MTP_FILE_STREAM_READER_H_
6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MTP_FILE_STREAM_READER_H_
9 #include "base/files/file.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/weak_ptr.h"
12 #include "webkit/browser/blob/file_stream_reader.h"
13 #include "webkit/browser/fileapi/file_system_url.h"
14 #include "webkit/browser/webkit_storage_browser_export.h"
21 class FileSystemContext
;
24 class MTPFileStreamReader
25 : public NON_EXPORTED_BASE(webkit_blob::FileStreamReader
) {
27 MTPFileStreamReader(fileapi::FileSystemContext
* file_system_context
,
28 const fileapi::FileSystemURL
& url
,
30 const base::Time
& expected_modification_time
);
32 virtual ~MTPFileStreamReader();
34 // FileStreamReader overrides.
35 virtual int Read(net::IOBuffer
* buf
, int buf_len
,
36 const net::CompletionCallback
& callback
) OVERRIDE
;
37 virtual int64
GetLength(
38 const net::Int64CompletionCallback
& callback
) OVERRIDE
;
41 void OnFileInfoForRead(net::IOBuffer
* buf
, int buf_len
,
42 const net::CompletionCallback
& callback
,
43 const base::File::Info
& file_info
);
45 void FinishRead(const net::CompletionCallback
& callback
,
48 void FinishGetLength(const net::Int64CompletionCallback
& callback
,
49 const base::File::Info
& file_info
);
51 scoped_refptr
<fileapi::FileSystemContext
> file_system_context_
;
52 fileapi::FileSystemURL url_
;
53 int64 current_offset_
;
54 const base::Time expected_modification_time_
;
55 base::WeakPtrFactory
<MTPFileStreamReader
> weak_factory_
;
57 DISALLOW_COPY_AND_ASSIGN(MTPFileStreamReader
);
60 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MTP_FILE_STREAM_READER_H_