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

Unified Diff: remoting/host/connection_block_checker.cc

Issue 10873050: [Chromoting] Hook up host talkgadget policy checks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup logging Created 8 years, 4 months 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/connection_block_checker.cc
diff --git a/remoting/host/connection_block_checker.cc b/remoting/host/connection_block_checker.cc
new file mode 100644
index 0000000000000000000000000000000000000000..773cb7e927f6785a6fb5ea2f3770eeba03a64f09
--- /dev/null
+++ b/remoting/host/connection_block_checker.cc
@@ -0,0 +1,63 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "remoting/host/connection_block_checker.h"
+
+#include "googleurl/src/gurl.h"
+#include "net/url_request/url_fetcher.h"
+#include "remoting/host/chromoting_host_context.h"
+#include "remoting/host/constants.h"
+
+namespace remoting {
+
+const int kMaxConnectionBlockChecks = 5;
+
+ConnectionBlockChecker::ConnectionBlockChecker(
+ ChromotingHostContext* context,
+ std::string talkgadget_prefix,
+ const base::Callback<void(bool)>& callback)
+ : context_(context),
+ talkgadget_prefix_(talkgadget_prefix),
+ callback_(callback) {
+}
+
+ConnectionBlockChecker::~ConnectionBlockChecker() {
+}
+
+// This is called in response to the TalkGadget http request initiated from
+// CheckStatus().
+void ConnectionBlockChecker::OnURLFetchComplete(const net::URLFetcher* source) {
+ int response = source->GetResponseCode();
+ int allow = false;
+ if (source->GetResponseCode() == 200) {
+ LOG(INFO) << "Successfully connected to host talkgadget.";
+ allow = true;
+ } else {
+ LOG(INFO) << "Unable to connect to host talkgadget (" << response << ")";
+ }
+ url_fetcher_.reset(NULL);
+ callback_.Run(allow);
+}
+
+void ConnectionBlockChecker::CheckStatus() {
+ // Make sure we're not currently in the middle of a connection check.
+ if (!url_fetcher_.get()) {
+ std::string talkgadget_url("https://");
+ if (talkgadget_prefix_.empty()) {
+ talkgadget_url += kDefaultHostTalkGadgetPrefix;
+ } else {
+ talkgadget_url += talkgadget_prefix_;
+ }
+ talkgadget_url += kTalkGadgetUrl;
+ LOG(INFO) << "Verifying connection to " << talkgadget_url;
+ url_fetcher_.reset(net::URLFetcher::Create(GURL(talkgadget_url),
+ net::URLFetcher::GET, this));
+ url_fetcher_->SetRequestContext(context_->url_request_context_getter());
+ url_fetcher_->Start();
+ } else {
+ LOG(INFO) << "Pending connection check";
Sergey Ulanov 2012/08/29 20:10:29 I think it's better to DCHECK(!url_fetcher_.get())
garykac 2012/08/29 22:30:51 A DCHECK for this is wrong since CheckStatus can p
+ }
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698