OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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. |
| 4 |
| 5 #ifndef COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ |
| 6 #define COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "net/url_request/url_fetcher_delegate.h" |
| 14 |
| 15 namespace google { |
| 16 namespace protobuf { |
| 17 class MessageLite; |
| 18 } |
| 19 } |
| 20 |
| 21 namespace net { |
| 22 class URLRequestContextGetter; |
| 23 } |
| 24 |
| 25 namespace copresence { |
| 26 |
| 27 // This class handles all Apiary calls to the Copresence server. |
| 28 // It configures the HTTP request appropriately and reports any errors. |
| 29 // If deleted, the HTTP request is cancelled. |
| 30 // |
| 31 // TODO(ckehoe): Add retry logic. |
| 32 class HttpPost : public net::URLFetcherDelegate { |
| 33 public: |
| 34 // Callback to receive the HTTP status code and body of the response |
| 35 // (if any). A pointer to this HttpPost object is also passed along. |
| 36 typedef base::Callback<void(int, const std::string&)> |
| 37 ResponseCallback; |
| 38 |
| 39 // An id for testing url fetching. |
| 40 static const int kUrlFetcherId = 1; |
| 41 |
| 42 // The query parameter to send Apiary tracing tokens. |
| 43 static const char kTracingTokenField[]; |
| 44 |
| 45 // Create a request to the Copresence server. |url_context_getter| |
| 46 // is owned by the caller, and the context it provides must be available |
| 47 // until the request completes. |
| 48 HttpPost(net::URLRequestContextGetter* url_context_getter, |
| 49 const std::string& server_host, |
| 50 const std::string& rpc_name, |
| 51 const std::string& tracing_token, |
| 52 const google::protobuf::MessageLite& request_proto); |
| 53 |
| 54 // HTTP requests are cancelled on delete. |
| 55 virtual ~HttpPost(); |
| 56 |
| 57 // Send an HttpPost request. |
| 58 void Start(const ResponseCallback& response_callback); |
| 59 |
| 60 private: |
| 61 // Overridden from net::URLFetcherDelegate. |
| 62 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; |
| 63 |
| 64 ResponseCallback response_callback_; |
| 65 scoped_ptr<net::URLFetcher> url_fetcher_; |
| 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(HttpPost); |
| 68 }; |
| 69 |
| 70 } // namespace copresence |
| 71 |
| 72 #endif // COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ |
OLD | NEW |