| 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 "remoting/base/auto_thread_task_runner.h" | 11 #include "remoting/base/auto_thread_task_runner.h" |
| 12 #include "remoting/host/it2me/it2me_host.h" | 12 #include "remoting/host/it2me/it2me_host.h" |
| 13 #include "remoting/host/native_messaging/native_messaging_channel.h" | 13 #include "remoting/host/native_messaging/native_messaging_channel.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class DictionaryValue; | 16 class DictionaryValue; |
| 17 } // namespace base | 17 } // namespace base |
| 18 | 18 |
| 19 namespace remoting { | 19 namespace remoting { |
| 20 | 20 |
| 21 // Implementation of the native messaging host process. | 21 // Implementation of the native messaging host process. |
| 22 class It2MeNativeMessagingHost : public NativeMessagingChannel::Delegate, | 22 class It2MeNativeMessagingHost : public It2MeHost::Observer { |
| 23 public It2MeHost::Observer { | |
| 24 public: | 23 public: |
| 25 typedef NativeMessagingChannel::SendMessageCallback SendMessageCallback; | 24 typedef NativeMessagingChannel::SendMessageCallback SendMessageCallback; |
| 26 | 25 |
| 27 It2MeNativeMessagingHost(scoped_refptr<AutoThreadTaskRunner> task_runner, | 26 It2MeNativeMessagingHost( |
| 28 scoped_ptr<It2MeHostFactory> factory); | 27 scoped_refptr<AutoThreadTaskRunner> task_runner, |
| 28 scoped_ptr<NativeMessagingChannel> channel, |
| 29 scoped_ptr<It2MeHostFactory> factory); |
| 29 virtual ~It2MeNativeMessagingHost(); | 30 virtual ~It2MeNativeMessagingHost(); |
| 30 | 31 |
| 31 // NativeMessagingChannel::Delegate interface. | 32 void Start(const base::Closure& quit_closure); |
| 32 virtual void SetSendMessageCallback(const SendMessageCallback& send_message) | |
| 33 OVERRIDE; | |
| 34 virtual void ProcessMessage(scoped_ptr<base::DictionaryValue> message) | |
| 35 OVERRIDE; | |
| 36 | 33 |
| 37 // It2MeHost::Observer implementation | 34 // It2MeHost::Observer implementation |
| 38 virtual void OnClientAuthenticated(const std::string& client_username) | 35 virtual void OnClientAuthenticated(const std::string& client_username) |
| 39 OVERRIDE; | 36 OVERRIDE; |
| 40 virtual void OnStoreAccessCode(const std::string& access_code, | 37 virtual void OnStoreAccessCode(const std::string& access_code, |
| 41 base::TimeDelta access_code_lifetime) OVERRIDE; | 38 base::TimeDelta access_code_lifetime) OVERRIDE; |
| 42 virtual void OnNatPolicyChanged(bool nat_traversal_enabled) OVERRIDE; | 39 virtual void OnNatPolicyChanged(bool nat_traversal_enabled) OVERRIDE; |
| 43 virtual void OnStateChanged(It2MeHostState state) OVERRIDE; | 40 virtual void OnStateChanged(It2MeHostState state) OVERRIDE; |
| 44 | 41 |
| 45 static void ShutDownHost(NativeMessagingChannel::Delegate* delegate) { | |
| 46 It2MeNativeMessagingHost* host = | |
| 47 static_cast<It2MeNativeMessagingHost*>(delegate); | |
| 48 host->ShutDown(); | |
| 49 } | |
| 50 | |
| 51 static std::string HostStateToString(It2MeHostState host_state); | 42 static std::string HostStateToString(It2MeHostState host_state); |
| 52 | 43 |
| 53 private: | 44 private: |
| 45 void ProcessMessage(scoped_ptr<base::DictionaryValue> message); |
| 46 |
| 54 // These "Process.." methods handle specific request types. The |response| | 47 // These "Process.." methods handle specific request types. The |response| |
| 55 // dictionary is pre-filled by ProcessMessage() with the parts of the | 48 // dictionary is pre-filled by ProcessMessage() with the parts of the |
| 56 // response already known ("id" and "type" fields). | 49 // response already known ("id" and "type" fields). |
| 57 void ProcessHello(const base::DictionaryValue& message, | 50 void ProcessHello(const base::DictionaryValue& message, |
| 58 scoped_ptr<base::DictionaryValue> response); | 51 scoped_ptr<base::DictionaryValue> response); |
| 59 void ProcessConnect(const base::DictionaryValue& message, | 52 void ProcessConnect(const base::DictionaryValue& message, |
| 60 scoped_ptr<base::DictionaryValue> response); | 53 scoped_ptr<base::DictionaryValue> response); |
| 61 void ProcessDisconnect(const base::DictionaryValue& message, | 54 void ProcessDisconnect(const base::DictionaryValue& message, |
| 62 scoped_ptr<base::DictionaryValue> response); | 55 scoped_ptr<base::DictionaryValue> response); |
| 63 void SendErrorAndExit(scoped_ptr<base::DictionaryValue> response, | 56 void SendErrorAndExit(scoped_ptr<base::DictionaryValue> response, |
| 64 const std::string& description); | 57 const std::string& description); |
| 65 | 58 |
| 66 scoped_refptr<AutoThreadTaskRunner> task_runner(); | 59 scoped_refptr<AutoThreadTaskRunner> task_runner(); |
| 67 | 60 |
| 68 void ShutDown(); | 61 scoped_ptr<NativeMessagingChannel> channel_; |
| 69 | |
| 70 scoped_ptr<It2MeHostFactory> factory_; | 62 scoped_ptr<It2MeHostFactory> factory_; |
| 71 scoped_ptr<ChromotingHostContext> host_context_; | 63 scoped_ptr<ChromotingHostContext> host_context_; |
| 72 scoped_refptr<It2MeHost> it2me_host_; | 64 scoped_refptr<It2MeHost> it2me_host_; |
| 73 SendMessageCallback send_message_; | |
| 74 | 65 |
| 75 // Cached, read-only copies of |it2me_host_| session state. | 66 // Cached, read-only copies of |it2me_host_| session state. |
| 76 It2MeHostState state_; | 67 It2MeHostState state_; |
| 77 std::string access_code_; | 68 std::string access_code_; |
| 78 base::TimeDelta access_code_lifetime_; | 69 base::TimeDelta access_code_lifetime_; |
| 79 std::string client_username_; | 70 std::string client_username_; |
| 80 | 71 |
| 81 // IT2Me Talk server configuration used by |it2me_host_| to connect. | 72 // IT2Me Talk server configuration used by |it2me_host_| to connect. |
| 82 XmppSignalStrategy::XmppServerConfig xmpp_server_config_; | 73 XmppSignalStrategy::XmppServerConfig xmpp_server_config_; |
| 83 | 74 |
| 84 // Chromoting Bot JID used by |it2me_host_| to register the host. | 75 // Chromoting Bot JID used by |it2me_host_| to register the host. |
| 85 std::string directory_bot_jid_; | 76 std::string directory_bot_jid_; |
| 86 | 77 |
| 87 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; | 78 base::WeakPtr<It2MeNativeMessagingHost> weak_ptr_; |
| 88 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; | 79 base::WeakPtrFactory<It2MeNativeMessagingHost> weak_factory_; |
| 89 | 80 |
| 90 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); | 81 DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHost); |
| 91 }; | 82 }; |
| 92 | 83 |
| 93 } // namespace remoting | 84 } // namespace remoting |
| 94 | 85 |
| 95 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ | 86 #endif // REMOTING_HOST_IT2ME_IT2ME_NATIVE_MESSAGING_HOST_H_ |
| OLD | NEW |