OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/filesystem/file_system_impl.h" | 5 #include "components/filesystem/file_system_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <utility> | 10 #include <utility> |
11 | 11 |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/files/file_util.h" | 13 #include "base/files/file_util.h" |
14 #include "base/files/scoped_file.h" | 14 #include "base/files/scoped_file.h" |
15 #include "base/files/scoped_temp_dir.h" | 15 #include "base/files/scoped_temp_dir.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "build/build_config.h" | 17 #include "build/build_config.h" |
18 #include "components/filesystem/directory_impl.h" | 18 #include "components/filesystem/directory_impl.h" |
19 #include "components/filesystem/lock_table.h" | 19 #include "components/filesystem/lock_table.h" |
| 20 #include "mojo/public/cpp/bindings/strong_binding.h" |
20 #include "services/shell/public/cpp/identity.h" | 21 #include "services/shell/public/cpp/identity.h" |
21 #include "url/gurl.h" | 22 #include "url/gurl.h" |
22 | 23 |
23 namespace filesystem { | 24 namespace filesystem { |
24 | 25 |
25 FileSystemImpl::FileSystemImpl(const shell::Identity& remote_identity, | 26 FileSystemImpl::FileSystemImpl(const shell::Identity& remote_identity, |
26 mojom::FileSystemRequest request, | |
27 base::FilePath persistent_dir, | 27 base::FilePath persistent_dir, |
28 scoped_refptr<LockTable> lock_table) | 28 scoped_refptr<LockTable> lock_table) |
29 : remote_application_name_(remote_identity.name()), | 29 : remote_application_name_(remote_identity.name()), |
30 binding_(this, std::move(request)), | |
31 lock_table_(std::move(lock_table)), | 30 lock_table_(std::move(lock_table)), |
32 persistent_dir_(persistent_dir) {} | 31 persistent_dir_(persistent_dir) {} |
33 | 32 |
34 FileSystemImpl::~FileSystemImpl() { | 33 FileSystemImpl::~FileSystemImpl() { |
35 } | 34 } |
36 | 35 |
37 void FileSystemImpl::OpenTempDirectory( | 36 void FileSystemImpl::OpenTempDirectory( |
38 mojo::InterfaceRequest<mojom::Directory> directory, | 37 mojom::DirectoryRequest directory, |
39 const OpenTempDirectoryCallback& callback) { | 38 const OpenTempDirectoryCallback& callback) { |
40 // Set only if the |DirectoryImpl| will own a temporary directory. | 39 // Set only if the |DirectoryImpl| will own a temporary directory. |
41 std::unique_ptr<base::ScopedTempDir> temp_dir(new base::ScopedTempDir); | 40 std::unique_ptr<base::ScopedTempDir> temp_dir(new base::ScopedTempDir); |
42 CHECK(temp_dir->CreateUniqueTempDir()); | 41 CHECK(temp_dir->CreateUniqueTempDir()); |
43 | 42 |
44 base::FilePath path = temp_dir->path(); | 43 base::FilePath path = temp_dir->path(); |
45 scoped_refptr<SharedTempDir> shared_temp_dir = | 44 scoped_refptr<SharedTempDir> shared_temp_dir = |
46 new SharedTempDir(std::move(temp_dir)); | 45 new SharedTempDir(std::move(temp_dir)); |
47 new DirectoryImpl( | 46 mojo::MakeStrongBinding(base::MakeUnique<DirectoryImpl>( |
48 std::move(directory), path, std::move(shared_temp_dir), lock_table_); | 47 path, std::move(shared_temp_dir), lock_table_), |
| 48 std::move(directory)); |
49 callback.Run(mojom::FileError::OK); | 49 callback.Run(mojom::FileError::OK); |
50 } | 50 } |
51 | 51 |
52 void FileSystemImpl::OpenPersistentFileSystem( | 52 void FileSystemImpl::OpenPersistentFileSystem( |
53 mojo::InterfaceRequest<mojom::Directory> directory, | 53 mojo::InterfaceRequest<mojom::Directory> directory, |
54 const OpenPersistentFileSystemCallback& callback) { | 54 const OpenPersistentFileSystemCallback& callback) { |
55 std::unique_ptr<base::ScopedTempDir> temp_dir; | 55 std::unique_ptr<base::ScopedTempDir> temp_dir; |
56 base::FilePath path = persistent_dir_; | 56 base::FilePath path = persistent_dir_; |
57 if (!base::PathExists(path)) | 57 if (!base::PathExists(path)) |
58 base::CreateDirectory(path); | 58 base::CreateDirectory(path); |
59 | 59 |
60 scoped_refptr<SharedTempDir> shared_temp_dir = | 60 scoped_refptr<SharedTempDir> shared_temp_dir = |
61 new SharedTempDir(std::move(temp_dir)); | 61 new SharedTempDir(std::move(temp_dir)); |
62 | 62 |
63 new DirectoryImpl( | 63 mojo::MakeStrongBinding(base::MakeUnique<DirectoryImpl>( |
64 std::move(directory), path, std::move(shared_temp_dir), lock_table_); | 64 path, std::move(shared_temp_dir), lock_table_), |
| 65 std::move(directory)); |
65 callback.Run(mojom::FileError::OK); | 66 callback.Run(mojom::FileError::OK); |
66 } | 67 } |
67 | 68 |
68 } // namespace filesystem | 69 } // namespace filesystem |
OLD | NEW |