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&, HttpPost*)> | |
37 ResponseCallback; | |
38 | |
39 // An id for testing url fetching. | |
40 static const int kUrlFetcherId = 1; | |
41 | |
42 // Send a request to the Copresence server. After calling the callback, this | |
43 // object will delete itself. |url_context_getter| is owned by the caller, | |
44 // and the context it provides must be available until the request completes. | |
45 // If this context is being destructed, call Cancel(). | |
46 HttpPost(net::URLRequestContextGetter* url_context_getter, | |
47 const std::string& server_host, | |
48 const std::string& rpc_name, | |
49 const google::protobuf::MessageLite& request_proto, | |
50 const ResponseCallback& response_callback); | |
willchan no longer on Chromium
2014/08/08 01:05:59
This response callback doesn't make sense to me. I
Charlie
2014/08/08 21:57:53
Good idea. Fixed.
Though I would have gotten it f
Charlie
2014/08/08 22:25:47
Turns out I did this one wrong after all. Stay tun
| |
51 | |
52 // HTTP requests are cancelled on delete. | |
53 virtual ~HttpPost(); | |
54 | |
55 private: | |
56 // Overridden from net::URLFetcherDelegate. | |
57 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; | |
58 | |
59 ResponseCallback response_callback_; | |
60 scoped_ptr<net::URLFetcher> url_fetcher_; | |
61 | |
62 DISALLOW_COPY_AND_ASSIGN(HttpPost); | |
63 }; | |
64 | |
65 } // namespace copresence | |
66 | |
67 #endif // COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ | |
OLD | NEW |