Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2523)

Unified Diff: remoting/host/minimum_heartbeat_supporter.h

Issue 719983002: Reporting of policy errors via host-offline-reason: part 3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hor-nohoststatussender
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/minimum_heartbeat_supporter.h
diff --git a/remoting/host/minimum_heartbeat_supporter.h b/remoting/host/minimum_heartbeat_supporter.h
new file mode 100644
index 0000000000000000000000000000000000000000..b9265838dc2b46e93a8bcdb53b6f231cb89be59d
--- /dev/null
+++ b/remoting/host/minimum_heartbeat_supporter.h
@@ -0,0 +1,130 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
Lambros 2014/11/14 01:24:58 2014, no '(c)'
Łukasz Anforowicz 2014/11/17 18:17:02 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_MINIMUM_HEARTBEAT_SUPPORTER_H_
+#define REMOTING_HOST_MINIMUM_HEARTBEAT_SUPPORTER_H_
+
+#include <string>
+
+#include "base/cancelable_callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/ref_counted_delete_on_message_loop.h"
+#include "base/memory/scoped_ptr.h"
+#include "net/url_request/url_request_context_getter.h"
+#include "remoting/base/auto_thread.h"
+#include "remoting/base/rsa_key_pair.h"
+#include "remoting/host/heartbeat_sender.h"
+#include "remoting/signaling/xmpp_signal_strategy.h"
+
+namespace base {
+ class TimeDelta;
+}
+
+namespace net {
+ class NetworkChangeNotifier;
+}
+
+namespace remoting {
+
+class ChromotingHostContext;
+class SignalStrategy;
+class SignalingConnector;
+class OAuthTokenGetter;
+
+/* Keeping an instance of MinimumHeartbeatSupporter alive
Lambros 2014/11/14 01:24:57 nit: C++ style '//'
Łukasz Anforowicz 2014/11/17 18:17:02 Done.
+ * ensures that we keep trying to send heartbeats (which among other
+ * things means that it ensures that we don't exit the host process).
+ *
+ * Primary scenario where this class is useful is extending host process
+ * lifetime after |SendHostOfflineReason| is called.
+ *
+ * Secondary benefit of this class is hiding/encapsulating heartbeat
+ * and xmpp related things inside.
+ */
+class MinimumHeartbeatSupporter
+ : public base::RefCountedDeleteOnMessageLoop<MinimumHeartbeatSupporter>,
+ public HeartbeatSender::Listener {
+ public:
+ class Listener {
+ public:
+ virtual ~Listener() { }
+
+ // Invoked after the first successful heartbeat.
+ virtual void OnHeartbeatSuccessful() = 0;
+
+ // Invoked when the host ID is permanently not recognized by the server.
+ virtual void OnUnknownHostIdError() = 0;
+
+ // Invoked when authentication fails.
+ virtual void OnAuthFailed() = 0;
+ };
+
+ MinimumHeartbeatSupporter(
+ const ChromotingHostContext* host_context,
+ const XmppSignalStrategy::XmppServerConfig& xmpp_server_config,
+ const std::string& talkgadget_prefix,
+ const std::string& host_id,
+ scoped_refptr<RsaKeyPair> key_pair,
+ const std::string& directory_bot_jid,
+ const std::string& oauth_refresh_token,
+ bool use_service_account);
+
+ // gets signal strategy used for talking to the Chromoting bot
Lambros 2014/11/14 01:24:57 nit: Capital letter + period.
Łukasz Anforowicz 2014/11/17 18:17:02 Done.
+ // return value is valid until |this| gets deleted
+ SignalStrategy* GetSignalStrategy();
+
+ // Registers a listener to forward various events to
+ // Caller has to make sure that |listener| is valid for the lifetime of |this|
+ // or until the next call to |SetListener| [whichever is shorter]
+ void SetListener(Listener* listener);
+
+ // Kicks off sending a heartbeat containing a host-offline-reason attribute.
+ //
+ // Ensures that |this| (and transitively the whole process) is kept alive
+ // while waiting for an ack from the bot
+ // - this is subject to |timeout|
+ // - this is implemented by temporarily bumping-up ref-count to |this|
+ //
+ // Caller has to guarantee that |host_offline_reason| is valid
+ // for the lifetime of |this| (which in practice means that
+ // |host_offline_reason| has to point to a string literal.
+ void SendHostOfflineReason(
+ const char* host_offline_reason,
+ const base::TimeDelta& timeout);
+
+ private:
+ friend class base::RefCountedDeleteOnMessageLoop<MinimumHeartbeatSupporter>;
+ friend class base::DeleteHelper<MinimumHeartbeatSupporter>;
+ virtual ~MinimumHeartbeatSupporter() override;
+
+ // HeartbeatSender::Listener overrides.
+ virtual void OnHeartbeatSuccessful() override;
+ virtual void OnUnknownHostIdError() override;
+
+ // Callback used by SignalingConnector
+ void OnAuthFailed();
+
+ // Fields that support sending of heartbeats
+ scoped_refptr<AutoThreadTaskRunner> network_task_runner_;
+ scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_;
+ scoped_ptr<XmppSignalStrategy> signal_strategy_;
Lambros 2014/11/14 01:24:57 I'm not sure about this being the class that owns
Łukasz Anforowicz 2014/11/17 18:17:02 RE: this class owning the fields This class needs
+ scoped_ptr<SignalingConnector> signaling_connector_;
+ scoped_ptr<OAuthTokenGetter> oauth_token_getter_;
+ scoped_ptr<HeartbeatSender> heartbeat_sender_;
+
+ Listener* listener_;
+
+ // Helper methods and fields for mechanics of SendHostOfflineReason
+ scoped_ptr<base::CancelableClosure> timeout_callback_;
+ scoped_ptr<base::CancelableClosure> ack_callback_;
+ void OnAck();
+ void OnTimeout();
+ void OnAckOrTimeout();
+
+ DISALLOW_COPY_AND_ASSIGN(MinimumHeartbeatSupporter);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_MINIMUM_HEARTBEAT_SUPPORTER_H_

Powered by Google App Engine
This is Rietveld 408576698