1 // Copyright (c) 2012 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_SIGNALING_CONNECTOR_H_
6 #define REMOTING_HOST_SIGNALING_CONNECTOR_H_
8 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h"
10 #include "base/threading/non_thread_safe.h"
11 #include "base/timer/timer.h"
12 #include "net/base/network_change_notifier.h"
13 #include "remoting/host/oauth_token_getter.h"
14 #include "remoting/signaling/xmpp_signal_strategy.h"
18 class DnsBlackholeChecker
;
20 // SignalingConnector listens for SignalStrategy status notifications
21 // and attempts to keep it connected when possible. When signalling is
22 // not connected it keeps trying to reconnect it until it is
23 // connected. It limits connection attempt rate using exponential
24 // backoff. It also monitors network state and reconnects signalling
25 // whenever connection type changes or IP address changes.
26 class SignalingConnector
27 : public base::SupportsWeakPtr
<SignalingConnector
>,
28 public base::NonThreadSafe
,
29 public SignalStrategy::Listener
,
30 public net::NetworkChangeNotifier::ConnectionTypeObserver
,
31 public net::NetworkChangeNotifier::IPAddressObserver
{
33 // The |auth_failed_callback| is called when authentication fails.
35 XmppSignalStrategy
* signal_strategy
,
36 scoped_ptr
<DnsBlackholeChecker
> dns_blackhole_checker
,
37 scoped_ptr
<OAuthTokenGetter
> oauth_token_getter
,
38 const base::Closure
& auth_failed_callback
);
39 ~SignalingConnector() override
;
41 // OAuthTokenGetter callback.
42 void OnAccessToken(OAuthTokenGetter::Status status
,
43 const std::string
& user_email
,
44 const std::string
& access_token
);
46 // SignalStrategy::Listener interface.
47 void OnSignalStrategyStateChange(SignalStrategy::State state
) override
;
48 bool OnSignalStrategyIncomingStanza(const buzz::XmlElement
* stanza
) override
;
50 // NetworkChangeNotifier::ConnectionTypeObserver interface.
51 void OnConnectionTypeChanged(
52 net::NetworkChangeNotifier::ConnectionType type
) override
;
54 // NetworkChangeNotifier::IPAddressObserver interface.
55 void OnIPAddressChanged() override
;
58 void OnNetworkError();
59 void ScheduleTryReconnect();
60 void ResetAndTryReconnect();
62 void OnDnsBlackholeCheckerDone(bool allow
);
64 XmppSignalStrategy
* signal_strategy_
;
65 base::Closure auth_failed_callback_
;
66 scoped_ptr
<DnsBlackholeChecker
> dns_blackhole_checker_
;
68 scoped_ptr
<OAuthTokenGetter
> oauth_token_getter_
;
70 // Number of times we tried to connect without success.
71 int reconnect_attempts_
;
73 base::OneShotTimer
<SignalingConnector
> timer_
;
75 DISALLOW_COPY_AND_ASSIGN(SignalingConnector
);
78 } // namespace remoting
80 #endif // REMOTING_HOST_SIGNALING_CONNECTOR_H_