| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 5 #ifndef REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 6 #define REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 6 #define REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "extensions/browser/api/messaging/native_message_host.h" | 11 #include "extensions/browser/api/messaging/native_message_host.h" |
| 12 #include "remoting/base/auto_thread_task_runner.h" | 12 #include "remoting/base/auto_thread_task_runner.h" |
| 13 #include "remoting/host/chromoting_host_context.h" | |
| 14 #include "remoting/host/it2me/it2me_host.h" | 13 #include "remoting/host/it2me/it2me_host.h" |
| 15 | 14 |
| 16 namespace base { | 15 namespace base { |
| 17 class DictionaryValue; | 16 class DictionaryValue; |
| 18 class Value; | 17 class Value; |
| 19 } // namespace base | 18 } // namespace base |
| 20 | 19 |
| 21 namespace remoting { | 20 namespace remoting { |
| 22 | 21 |
| 23 // Implementation of the native messaging host process. | 22 // Implementation of the native messaging host process. |
| 24 class It2MeNativeMessagingHost : public It2MeHost::Observer, | 23 class It2MeNativeMessagingHost : public It2MeHost::Observer, |
| 25 public extensions::NativeMessageHost { | 24 public extensions::NativeMessageHost { |
| 26 public: | 25 public: |
| 27 It2MeNativeMessagingHost( | 26 It2MeNativeMessagingHost(scoped_refptr<AutoThreadTaskRunner> task_runner, |
| 28 scoped_ptr<ChromotingHostContext> host_context, | 27 scoped_ptr<It2MeHostFactory> factory); |
| 29 scoped_ptr<It2MeHostFactory> host_factory); | 28 ~It2MeNativeMessagingHost() override; |
| 30 ~It2MeNativeMessagingHost(); | |
| 31 | 29 |
| 32 // extensions::NativeMessageHost implementation. | 30 // extensions::NativeMessageHost implementation. |
| 33 void OnMessage(const std::string& message) override; | 31 void OnMessage(const std::string& message) override; |
| 34 void Start(Client* client) override; | 32 void Start(Client* client) override; |
| 35 scoped_refptr<base::SingleThreadTaskRunner> task_runner() | 33 scoped_refptr<base::SingleThreadTaskRunner> task_runner() const override; |
| 36 const override; | |
| 37 | 34 |
| 38 // It2MeHost::Observer implementation. | 35 // It2MeHost::Observer implementation. |
| 39 void OnClientAuthenticated(const std::string& client_username) | 36 void OnClientAuthenticated(const std::string& client_username) override; |
| 40 override; | |
| 41 void OnStoreAccessCode(const std::string& access_code, | 37 void OnStoreAccessCode(const std::string& access_code, |
| 42 base::TimeDelta access_code_lifetime) override; | 38 base::TimeDelta access_code_lifetime) override; |
| 43 void OnNatPolicyChanged(bool nat_traversal_enabled) override; | 39 void OnNatPolicyChanged(bool nat_traversal_enabled) override; |
| 44 void OnStateChanged(It2MeHostState state) override; | 40 void OnStateChanged(It2MeHostState state) override; |
| 45 | 41 |
| 46 static std::string HostStateToString(It2MeHostState host_state); | 42 static std::string HostStateToString(It2MeHostState host_state); |
| 47 | 43 |
| 48 private: | 44 private: |
| 49 // These "Process.." methods handle specific request types. The |response| | 45 // These "Process.." methods handle specific request types. The |response| |
| 50 // dictionary is pre-filled by ProcessMessage() with the parts of the | 46 // dictionary is pre-filled by ProcessMessage() with the parts of the |
| 51 // response already known ("id" and "type" fields). | 47 // response already known ("id" and "type" fields). |
| 52 void ProcessHello(const base::DictionaryValue& message, | 48 void ProcessHello(const base::DictionaryValue& message, |
| 53 scoped_ptr<base::DictionaryValue> response) const; | 49 scoped_ptr<base::DictionaryValue> response) const; |
| 54 void ProcessConnect(const base::DictionaryValue& message, | 50 void ProcessConnect(const base::DictionaryValue& message, |
| 55 scoped_ptr<base::DictionaryValue> response); | 51 scoped_ptr<base::DictionaryValue> response); |
| 56 void ProcessDisconnect(const base::DictionaryValue& message, | 52 void ProcessDisconnect(const base::DictionaryValue& message, |
| 57 scoped_ptr<base::DictionaryValue> response); | 53 scoped_ptr<base::DictionaryValue> response); |
| 58 void SendErrorAndExit(scoped_ptr<base::DictionaryValue> response, | 54 void SendErrorAndExit(scoped_ptr<base::DictionaryValue> response, |
| 59 const std::string& description) const; | 55 const std::string& description) const; |
| 60 void SendMessageToClient(scoped_ptr<base::DictionaryValue> message) const; | 56 void SendMessageToClient(scoped_ptr<base::DictionaryValue> message) const; |
| 61 | 57 |
| 62 Client* client_; | 58 Client* client_; |
| 59 scoped_ptr<It2MeHostFactory> factory_; |
| 63 scoped_ptr<ChromotingHostContext> host_context_; | 60 scoped_ptr<ChromotingHostContext> host_context_; |
| 64 scoped_ptr<It2MeHostFactory> factory_; | |
| 65 scoped_refptr<It2MeHost> it2me_host_; | 61 scoped_refptr<It2MeHost> it2me_host_; |
| 66 | 62 |
| 67 // Cached, read-only copies of |it2me_host_| session state. | 63 // Cached, read-only copies of |it2me_host_| session state. |
| 68 It2MeHostState state_; | 64 It2MeHostState state_; |
| 69 std::string access_code_; | 65 std::string access_code_; |
| 70 base::TimeDelta access_code_lifetime_; | 66 base::TimeDelta access_code_lifetime_; |
| 71 std::string client_username_; | 67 std::string client_username_; |
| 72 | 68 |
| 73 // IT2Me Talk server configuration used by |it2me_host_| to connect. | 69 // IT2Me Talk server configuration used by |it2me_host_| to connect. |
| 74 XmppSignalStrategy::XmppServerConfig xmpp_server_config_; | 70 XmppSignalStrategy::XmppServerConfig xmpp_server_config_; |
| 75 | 71 |
| 76 // Chromoting Bot JID used by |it2me_host_| to register the host. | 72 // Chromoting Bot JID used by |it2me_host_| to register the host. |
| 77 std::string directory_bot_jid_; | 73 std::string directory_bot_jid_; |
| 78 | 74 |
| 79 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; | 75 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; |
| 80 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; | 76 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; |
| 81 | 77 |
| 82 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); | 78 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); |
| 83 }; | 79 }; |
| 84 | 80 |
| 85 } // namespace remoting | 81 } // namespace remoting |
| 86 | 82 |
| 87 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 83 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| 88 | 84 |
| OLD | NEW |