OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/tools/test_shell/simple_file_system.h" | 5 #include "webkit/tools/test_shell/simple_file_system.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop_proxy.h" |
9 #include "base/scoped_callback_factory.h" | 9 #include "base/scoped_callback_factory.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 : public FileSystemCallbackDispatcher { | 47 : public FileSystemCallbackDispatcher { |
48 public: | 48 public: |
49 SimpleFileSystemCallbackDispatcher( | 49 SimpleFileSystemCallbackDispatcher( |
50 const WeakPtr<SimpleFileSystem>& file_system, | 50 const WeakPtr<SimpleFileSystem>& file_system, |
51 WebFileSystemCallbacks* callbacks) | 51 WebFileSystemCallbacks* callbacks) |
52 : file_system_(file_system), | 52 : file_system_(file_system), |
53 callbacks_(callbacks) { | 53 callbacks_(callbacks) { |
54 } | 54 } |
55 | 55 |
56 ~SimpleFileSystemCallbackDispatcher() { | 56 ~SimpleFileSystemCallbackDispatcher() { |
57 DCHECK(!operation_.get()); | |
58 } | |
59 | |
60 void set_operation(SandboxedFileSystemOperation* operation) { | |
61 operation_.reset(operation); | |
62 } | 57 } |
63 | 58 |
64 virtual void DidSucceed() { | 59 virtual void DidSucceed() { |
65 if (file_system_) | 60 if (file_system_) |
66 callbacks_->didSucceed(); | 61 callbacks_->didSucceed(); |
67 RemoveOperation(); | |
68 } | 62 } |
69 | 63 |
70 virtual void DidReadMetadata(const base::PlatformFileInfo& info) { | 64 virtual void DidReadMetadata(const base::PlatformFileInfo& info) { |
71 if (file_system_) { | 65 if (file_system_) { |
72 WebFileInfo web_file_info; | 66 WebFileInfo web_file_info; |
73 web_file_info.length = info.size; | 67 web_file_info.length = info.size; |
74 web_file_info.modificationTime = info.last_modified.ToDoubleT(); | 68 web_file_info.modificationTime = info.last_modified.ToDoubleT(); |
75 web_file_info.type = info.is_directory ? | 69 web_file_info.type = info.is_directory ? |
76 WebFileInfo::TypeDirectory : WebFileInfo::TypeFile; | 70 WebFileInfo::TypeDirectory : WebFileInfo::TypeFile; |
77 callbacks_->didReadMetadata(web_file_info); | 71 callbacks_->didReadMetadata(web_file_info); |
78 } | 72 } |
79 RemoveOperation(); | |
80 } | 73 } |
81 | 74 |
82 virtual void DidReadDirectory( | 75 virtual void DidReadDirectory( |
83 const std::vector<base::FileUtilProxy::Entry>& entries, | 76 const std::vector<base::FileUtilProxy::Entry>& entries, |
84 bool has_more) { | 77 bool has_more) { |
85 if (file_system_) { | 78 if (file_system_) { |
86 std::vector<WebFileSystemEntry> web_entries_vector; | 79 std::vector<WebFileSystemEntry> web_entries_vector; |
87 for (std::vector<base::FileUtilProxy::Entry>::const_iterator it = | 80 for (std::vector<base::FileUtilProxy::Entry>::const_iterator it = |
88 entries.begin(); it != entries.end(); ++it) { | 81 entries.begin(); it != entries.end(); ++it) { |
89 WebFileSystemEntry entry; | 82 WebFileSystemEntry entry; |
90 entry.name = webkit_glue::FilePathStringToWebString(it->name); | 83 entry.name = webkit_glue::FilePathStringToWebString(it->name); |
91 entry.isDirectory = it->is_directory; | 84 entry.isDirectory = it->is_directory; |
92 web_entries_vector.push_back(entry); | 85 web_entries_vector.push_back(entry); |
93 } | 86 } |
94 WebVector<WebKit::WebFileSystemEntry> web_entries = | 87 WebVector<WebKit::WebFileSystemEntry> web_entries = |
95 web_entries_vector; | 88 web_entries_vector; |
96 callbacks_->didReadDirectory(web_entries, has_more); | 89 callbacks_->didReadDirectory(web_entries, has_more); |
97 } | 90 } |
98 RemoveOperation(); | |
99 } | 91 } |
100 | 92 |
101 virtual void DidOpenFileSystem( | 93 virtual void DidOpenFileSystem( |
102 const std::string& name, const FilePath& path) { | 94 const std::string& name, const FilePath& path) { |
103 if (file_system_) { | 95 if (file_system_) { |
104 if (path.empty()) | 96 if (path.empty()) |
105 callbacks_->didFail(WebKit::WebFileErrorSecurity); | 97 callbacks_->didFail(WebKit::WebFileErrorSecurity); |
106 else | 98 else |
107 callbacks_->didOpenFileSystem( | 99 callbacks_->didOpenFileSystem( |
108 UTF8ToUTF16(name), webkit_glue::FilePathToWebString(path)); | 100 UTF8ToUTF16(name), webkit_glue::FilePathToWebString(path)); |
109 } | 101 } |
110 RemoveOperation(); | |
111 } | 102 } |
112 | 103 |
113 virtual void DidFail(base::PlatformFileError error_code) { | 104 virtual void DidFail(base::PlatformFileError error_code) { |
114 if (file_system_) | 105 if (file_system_) |
115 callbacks_->didFail( | 106 callbacks_->didFail( |
116 webkit_glue::PlatformFileErrorToWebFileError(error_code)); | 107 webkit_glue::PlatformFileErrorToWebFileError(error_code)); |
117 RemoveOperation(); | |
118 } | 108 } |
119 | 109 |
120 virtual void DidWrite(int64, bool) { | 110 virtual void DidWrite(int64, bool) { |
121 NOTREACHED(); | 111 NOTREACHED(); |
122 } | 112 } |
123 | 113 |
124 private: | 114 private: |
125 void RemoveOperation() { | |
126 // We need to make sure operation_ is null when we delete the operation | |
127 // (which in turn deletes this dispatcher instance). | |
128 scoped_ptr<SandboxedFileSystemOperation> operation; | |
129 operation.swap(operation_); | |
130 operation.reset(); | |
131 } | |
132 | |
133 WeakPtr<SimpleFileSystem> file_system_; | 115 WeakPtr<SimpleFileSystem> file_system_; |
134 WebFileSystemCallbacks* callbacks_; | 116 WebFileSystemCallbacks* callbacks_; |
135 scoped_ptr<SandboxedFileSystemOperation> operation_; | |
136 }; | 117 }; |
137 | 118 |
138 } // namespace | 119 } // namespace |
139 | 120 |
140 SimpleFileSystem::SimpleFileSystem() { | 121 SimpleFileSystem::SimpleFileSystem() { |
141 if (file_system_dir_.CreateUniqueTempDir()) { | 122 if (file_system_dir_.CreateUniqueTempDir()) { |
142 sandboxed_context_.reset(new SandboxedFileSystemContext( | 123 sandboxed_context_.reset(new SandboxedFileSystemContext( |
143 base::MessageLoopProxy::CreateForCurrentThread(), | 124 base::MessageLoopProxy::CreateForCurrentThread(), |
144 file_system_dir_.path(), | 125 file_system_dir_.path(), |
145 false /* incognito */, | 126 false /* incognito */, |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 return new SimpleFileWriter(path, client); | 239 return new SimpleFileWriter(path, client); |
259 } | 240 } |
260 | 241 |
261 SandboxedFileSystemOperation* SimpleFileSystem::GetNewOperation( | 242 SandboxedFileSystemOperation* SimpleFileSystem::GetNewOperation( |
262 WebFileSystemCallbacks* callbacks) { | 243 WebFileSystemCallbacks* callbacks) { |
263 SimpleFileSystemCallbackDispatcher* dispatcher = | 244 SimpleFileSystemCallbackDispatcher* dispatcher = |
264 new SimpleFileSystemCallbackDispatcher(AsWeakPtr(), callbacks); | 245 new SimpleFileSystemCallbackDispatcher(AsWeakPtr(), callbacks); |
265 SandboxedFileSystemOperation* operation = new SandboxedFileSystemOperation( | 246 SandboxedFileSystemOperation* operation = new SandboxedFileSystemOperation( |
266 dispatcher, base::MessageLoopProxy::CreateForCurrentThread(), | 247 dispatcher, base::MessageLoopProxy::CreateForCurrentThread(), |
267 sandboxed_context_.get()); | 248 sandboxed_context_.get()); |
268 dispatcher->set_operation(operation); | |
269 return operation; | 249 return operation; |
270 } | 250 } |
OLD | NEW |