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 #ifndef COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ | 5 #ifndef COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ |
6 #define COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ | 6 #define COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "components/filesystem/directory_impl.h" | 9 #include "components/filesystem/directory_impl.h" |
10 #include "components/filesystem/file_system_impl.h" | 10 #include "components/filesystem/file_system_impl.h" |
11 #include "components/filesystem/lock_table.h" | 11 #include "components/filesystem/lock_table.h" |
12 #include "components/filesystem/public/interfaces/file_system.mojom.h" | 12 #include "components/filesystem/public/interfaces/file_system.mojom.h" |
13 #include "mojo/services/tracing/public/cpp/tracing_impl.h" | 13 #include "mojo/services/tracing/public/cpp/tracing_impl.h" |
14 #include "mojo/shell/public/cpp/interface_factory.h" | 14 #include "mojo/shell/public/cpp/interface_factory.h" |
15 #include "mojo/shell/public/cpp/shell_client.h" | 15 #include "mojo/shell/public/cpp/shell_client.h" |
16 | 16 |
17 namespace mojo { | 17 namespace mojo { |
18 class Shell; | 18 class Shell; |
19 } | 19 } |
20 | 20 |
21 namespace filesystem { | 21 namespace filesystem { |
22 | 22 |
23 class FileSystemApp : public mojo::ShellClient, | 23 class FileSystemApp : public mojo::ShellClient, |
24 public mojo::InterfaceFactory<FileSystem> { | 24 public mojo::InterfaceFactory<FileSystem> { |
25 public: | 25 public: |
26 FileSystemApp(); | 26 FileSystemApp(); |
27 ~FileSystemApp() override; | 27 ~FileSystemApp() override; |
28 | 28 |
| 29 // Called by individual FileSystem objects to register lifetime events. |
| 30 void RegisterDirectoryToClient(DirectoryImpl* directory, |
| 31 FileSystemClientPtr client); |
| 32 |
29 private: | 33 private: |
| 34 // We set the DirectoryImpl's error handler to this function. We do this so |
| 35 // that we can QuitNow() once the last DirectoryImpl has closed itself. |
| 36 void OnDirectoryConnectionError(DirectoryImpl* directory); |
| 37 |
30 // |mojo::ShellClient| override: | 38 // |mojo::ShellClient| override: |
31 void Initialize(mojo::Shell* shell, const std::string& url, | 39 void Initialize(mojo::Shell* shell, const std::string& url, |
32 uint32_t id) override; | 40 uint32_t id) override; |
33 bool AcceptConnection(mojo::Connection* connection) override; | 41 bool AcceptConnection(mojo::Connection* connection) override; |
| 42 bool ShellConnectionLost() override; |
34 | 43 |
35 // |InterfaceFactory<Files>| implementation: | 44 // |InterfaceFactory<Files>| implementation: |
36 void Create(mojo::Connection* connection, | 45 void Create(mojo::Connection* connection, |
37 mojo::InterfaceRequest<FileSystem> request) override; | 46 mojo::InterfaceRequest<FileSystem> request) override; |
38 | 47 |
| 48 // Use a vector to work around map not letting us use FileSystemClientPtr as |
| 49 // a value in a std::map. The move constructors are to allow us to deal with |
| 50 // FileSystemClientPtr inside a vector. |
| 51 struct Client { |
| 52 Client(DirectoryImpl* directory, FileSystemClientPtr fs_client); |
| 53 Client(Client&& rhs); |
| 54 ~Client(); |
| 55 |
| 56 Client& operator=(Client&& rhs); |
| 57 |
| 58 DirectoryImpl* directory_; |
| 59 FileSystemClientPtr fs_client_; |
| 60 }; |
| 61 std::vector<Client> client_mapping_; |
| 62 |
39 mojo::Shell* shell_; | 63 mojo::Shell* shell_; |
40 mojo::TracingImpl tracing_; | 64 mojo::TracingImpl tracing_; |
41 | 65 |
42 scoped_ptr<LockTable> lock_table_; | 66 scoped_ptr<LockTable> lock_table_; |
43 | 67 |
| 68 // Set to true when our shell connection is closed. On connection error, we |
| 69 // then broadcast a notification to all FileSystemClients that they should |
| 70 // shut down. Once the final one does, then we QuitNow(). |
| 71 bool in_shutdown_; |
| 72 |
44 DISALLOW_COPY_AND_ASSIGN(FileSystemApp); | 73 DISALLOW_COPY_AND_ASSIGN(FileSystemApp); |
45 }; | 74 }; |
46 | 75 |
47 } // namespace filesystem | 76 } // namespace filesystem |
48 | 77 |
49 #endif // COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ | 78 #endif // COMPONENTS_FILESYSTEM_FILE_SYSTEM_APP_H_ |
OLD | NEW |