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