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
3 // found in the LICENSE file.
5 #ifndef REMOTING_HOST_STATUS_SENDER_H_
6 #define REMOTING_HOST_STATUS_SENDER_H_
10 #include "base/compiler_specific.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "remoting/base/rsa_key_pair.h"
14 #include "remoting/host/host_exit_codes.h"
15 #include "remoting/jingle_glue/signal_strategy.h"
18 class MessageLoopProxy
;
30 // HostStatusSender sends the host status to the Chromoting Bot.
31 // Each host status stanza looks as follows:
33 // <cli:iq type="set" to="user@gmail.com/chromoting123123"
34 // id="123" xmlns:cli="jabber:client">
35 // <rem:host-status rem:hostid="0"
36 // rem:status="OFFLINE" rem:exit-code="INVALID_HOST_CONFIGURATION"
37 // xmlns:rem="google:remoting">
38 // <rem:signature rem:time="1372878097">.signature.</rem:signature>
39 // <rem:host-version>30.0.1554.0</rem:host-version>
40 // <rem:log><rem:entry cpu="x86_64" event-name="host-status"
41 // host-version="30.0.1560.0" os-name="Linux" role="host"/>
46 // The signature is a base-64 encoded SHA-1 hash, signed with the host's
47 // private RSA key. The message being signed contains the full Jid (e.g.
48 // "user@gmail.com/chromoting123123"), the timestamp, the host status,
50 class HostStatusSender
: SignalStrategy::Listener
{
58 HostStatusSender(const std::string
& host_id
,
59 SignalStrategy
* signal_strategy
,
60 scoped_refptr
<RsaKeyPair
> key_pair
,
61 const std::string
& directory_bot_jid
);
62 virtual ~HostStatusSender();
64 // SignalStrategy::Listener interface.
65 virtual void OnSignalStrategyStateChange(
66 SignalStrategy::State state
) OVERRIDE
;
67 virtual bool OnSignalStrategyIncomingStanza(
68 const buzz::XmlElement
* stanza
) OVERRIDE
;
70 // APIs for sending host status XMPP messages to the chromoting bot.
71 // status: the reason (exit code) why the host is offline.
72 void SendOnlineStatus();
73 void SendOfflineStatus(HostExitCodes exit_code
);
75 inline static const char* HostStatusToString(HostStatus host_status
) {
76 return host_status_strings_
[host_status
];
80 // Helper method for sending either an online or an offline status message.
81 void SendHostStatus(HostStatus status
, HostExitCodes exit_code
);
83 // Helper method to compose host status stanzas.
84 scoped_ptr
<buzz::XmlElement
> CreateHostStatusMessage(
85 HostStatus status
, HostExitCodes exit_code
);
87 // Helper method to create the signature blob used in the host status stanza.
88 scoped_ptr
<buzz::XmlElement
> CreateSignature(
89 HostStatus status
, HostExitCodes exit_code
);
92 SignalStrategy
* signal_strategy_
;
93 scoped_refptr
<RsaKeyPair
> key_pair_
;
94 std::string directory_bot_jid_
;
95 scoped_ptr
<IqSender
> iq_sender_
;
97 // The string representation of the HostStatus values.
98 static const char* const host_status_strings_
[2];
100 DISALLOW_COPY_AND_ASSIGN(HostStatusSender
);
103 } // namespace remoting
105 #endif // REMOTING_HOST_STATUS_SENDER_H_