| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 5 #ifndef MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| 6 #define MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 6 #define MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "mojo/public/cpp/application/application_connection.h" | 9 #include "mojo/public/cpp/application/application_connection.h" |
| 10 #include "mojo/public/cpp/application/lib/service_connector.h" | 10 #include "mojo/public/cpp/application/lib/service_connector.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 // service implementation of the interface identified by |Interface|. | 69 // service implementation of the interface identified by |Interface|. |
| 70 template <typename Interface> | 70 template <typename Interface> |
| 71 void ConnectToService(const std::string& application_url, | 71 void ConnectToService(const std::string& application_url, |
| 72 InterfacePtr<Interface>* ptr) { | 72 InterfacePtr<Interface>* ptr) { |
| 73 ConnectToApplication(application_url)->ConnectToService(ptr); | 73 ConnectToApplication(application_url)->ConnectToService(ptr); |
| 74 } | 74 } |
| 75 | 75 |
| 76 // Wait for the ShellPtr's Initialize message. | 76 // Wait for the ShellPtr's Initialize message. |
| 77 bool WaitForInitialize(); | 77 bool WaitForInitialize(); |
| 78 | 78 |
| 79 // Unbind the shell from this application and return its handle. |
| 80 ScopedMessagePipeHandle UnbindShell(); |
| 81 |
| 82 // Application implementation. |
| 83 virtual void Initialize(Array<String> args) override; |
| 84 |
| 79 private: | 85 private: |
| 80 class ShellPtrWatcher; | 86 class ShellPtrWatcher; |
| 81 | 87 |
| 82 void BindShell(ScopedMessagePipeHandle shell_handle); | 88 void BindShell(ScopedMessagePipeHandle shell_handle); |
| 83 void ClearConnections(); | 89 void ClearConnections(); |
| 84 void OnShellError() { | 90 void OnShellError() { |
| 85 ClearConnections(); | 91 ClearConnections(); |
| 86 Terminate(); | 92 Terminate(); |
| 87 }; | 93 }; |
| 88 | 94 |
| 89 // Quits the main run loop for this application. | 95 // Quits the main run loop for this application. |
| 90 static void Terminate(); | 96 static void Terminate(); |
| 91 | 97 |
| 92 // Application implementation. | 98 // Application implementation. |
| 93 virtual void Initialize(Array<String> args) override; | |
| 94 virtual void AcceptConnection(const String& requestor_url, | 99 virtual void AcceptConnection(const String& requestor_url, |
| 95 ServiceProviderPtr provider) override; | 100 ServiceProviderPtr provider) override; |
| 96 | 101 |
| 97 typedef std::vector<internal::ServiceRegistry*> ServiceRegistryList; | 102 typedef std::vector<internal::ServiceRegistry*> ServiceRegistryList; |
| 98 | 103 |
| 99 bool initialized_; | 104 bool initialized_; |
| 100 ServiceRegistryList incoming_service_registries_; | 105 ServiceRegistryList incoming_service_registries_; |
| 101 ServiceRegistryList outgoing_service_registries_; | 106 ServiceRegistryList outgoing_service_registries_; |
| 102 ApplicationDelegate* delegate_; | 107 ApplicationDelegate* delegate_; |
| 103 ShellPtr shell_; | 108 ShellPtr shell_; |
| 104 ShellPtrWatcher* shell_watch_; | 109 ShellPtrWatcher* shell_watch_; |
| 105 std::vector<std::string> args_; | 110 std::vector<std::string> args_; |
| 106 | 111 |
| 107 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationImpl); | 112 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationImpl); |
| 108 }; | 113 }; |
| 109 | 114 |
| 110 } // namespace mojo | 115 } // namespace mojo |
| 111 | 116 |
| 112 #endif // MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 117 #endif // MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| OLD | NEW |