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 "base/memory/weak_ptr.h" | |
14 #include "net/url_request/url_fetcher_delegate.h" | |
15 | |
16 namespace google { | |
17 namespace protobuf { | |
18 class MessageLite; | |
19 } | |
20 } | |
21 | |
22 namespace net { | |
23 class URLRequestContextGetter; | |
24 } | |
25 | |
26 namespace copresence { | |
27 | |
28 // This class handles all Apiary calls to the Copresence server. | |
29 // It configures the HTTP request appropriately and reports any errors. | |
30 // Clients should not attempt to delete this class, as it needs to | |
31 // persist until the HTTP request completes (or times out). | |
32 // | |
33 // TODO(ckehoe): Add retry logic. | |
34 class HttpPost : public net::URLFetcherDelegate, | |
35 public base::SupportsWeakPtr<HttpPost> { | |
36 public: | |
37 // Callback to receive the HTTP status code and body of the response (if any). | |
38 typedef base::Callback<void(int, const std::string&)> ResponseCallback; | |
39 | |
40 // An id for testing url fetching. | |
41 static const int kUrlFetcherId = 1; | |
42 | |
43 // Send a request to the Copresence server. After calling the callback, this | |
44 // object will delete itself. |url_context_getter| is owned by the caller, | |
45 // and must be valid until the request is actually sent (on the IO thread). | |
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); | |
51 | |
52 private: | |
53 // This class deletes itself when the request completes (or times out). | |
54 // TODO(ckehoe): Self-deletion is a possible source of memory leaks. | |
willchan no longer on Chromium
2014/08/06 23:57:39
During profile shutdown, all the network objects t
Charlie
2014/08/07 00:08:24
Ok. Before I write the code, can you confirm if th
willchan no longer on Chromium
2014/08/07 00:11:40
Sorry, I just got started with the review. But I s
rkc
2014/08/07 00:18:20
I would assume this is what you'd do?
1.) Keep a v
| |
55 // Re-think the lifecycle management here. | |
56 virtual ~HttpPost(); | |
57 | |
58 // Overridden from net::URLFetcherDelegate. | |
59 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; | |
60 | |
61 ResponseCallback response_callback_; | |
62 scoped_ptr<net::URLFetcher> url_fetcher_; | |
63 | |
64 DISALLOW_COPY_AND_ASSIGN(HttpPost); | |
65 }; | |
66 | |
67 } // namespace copresence | |
68 | |
69 #endif // COMPONENTS_COPRESENCE_RPC_HTTP_POST_H_ | |
OLD | NEW |