OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_HOST_RESOLVER_H_ | 5 #ifndef NET_BASE_HOST_RESOLVER_H_ |
6 #define NET_BASE_HOST_RESOLVER_H_ | 6 #define NET_BASE_HOST_RESOLVER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
12 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
13 | 13 |
14 class MessageLoop; | 14 class MessageLoop; |
15 | 15 |
16 namespace net { | 16 namespace net { |
17 | 17 |
18 class AddressList; | 18 class AddressList; |
| 19 class LoadLog; |
19 | 20 |
20 // This class represents the task of resolving hostnames (or IP address | 21 // This class represents the task of resolving hostnames (or IP address |
21 // literal) to an AddressList object. | 22 // literal) to an AddressList object. |
22 // | 23 // |
23 // HostResolver can handle multiple requests at a time, so when cancelling a | 24 // HostResolver can handle multiple requests at a time, so when cancelling a |
24 // request the RequestHandle that was returned by Resolve() needs to be | 25 // request the RequestHandle that was returned by Resolve() needs to be |
25 // given. A simpler alternative for consumers that only have 1 outstanding | 26 // given. A simpler alternative for consumers that only have 1 outstanding |
26 // request at a time is to create a SingleRequestHostResolver wrapper around | 27 // request at a time is to create a SingleRequestHostResolver wrapper around |
27 // HostResolver (which will automatically cancel the single request when it | 28 // HostResolver (which will automatically cancel the single request when it |
28 // goes out of scope). | 29 // goes out of scope). |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 // the sin(6)_port field of the sockaddr_in{6} struct. Returns OK if | 105 // the sin(6)_port field of the sockaddr_in{6} struct. Returns OK if |
105 // successful or an error code upon failure. | 106 // successful or an error code upon failure. |
106 // | 107 // |
107 // When callback is null, the operation completes synchronously. | 108 // When callback is null, the operation completes synchronously. |
108 // | 109 // |
109 // When callback is non-null, the operation will be performed asynchronously. | 110 // When callback is non-null, the operation will be performed asynchronously. |
110 // ERR_IO_PENDING is returned if it has been scheduled successfully. Real | 111 // ERR_IO_PENDING is returned if it has been scheduled successfully. Real |
111 // result code will be passed to the completion callback. If |req| is | 112 // result code will be passed to the completion callback. If |req| is |
112 // non-NULL, then |*req| will be filled with a handle to the async request. | 113 // non-NULL, then |*req| will be filled with a handle to the async request. |
113 // This handle is not valid after the request has completed. | 114 // This handle is not valid after the request has completed. |
114 virtual int Resolve(const RequestInfo& info, AddressList* addresses, | 115 // |
115 CompletionCallback* callback, RequestHandle* out_req) = 0; | 116 // Profiling information for the request is saved to |load_log| if non-NULL. |
| 117 virtual int Resolve(LoadLog* load_log, |
| 118 const RequestInfo& info, |
| 119 AddressList* addresses, |
| 120 CompletionCallback* callback, |
| 121 RequestHandle* out_req) = 0; |
116 | 122 |
117 // Cancels the specified request. |req| is the handle returned by Resolve(). | 123 // Cancels the specified request. |req| is the handle returned by Resolve(). |
118 // After a request is cancelled, its completion callback will not be called. | 124 // After a request is cancelled, its completion callback will not be called. |
119 virtual void CancelRequest(RequestHandle req) = 0; | 125 virtual void CancelRequest(RequestHandle req) = 0; |
120 | 126 |
121 // Adds an observer to this resolver. The observer will be notified of the | 127 // Adds an observer to this resolver. The observer will be notified of the |
122 // start and completion of all requests (excluding cancellation). |observer| | 128 // start and completion of all requests (excluding cancellation). |observer| |
123 // must remain valid for the duration of this HostResolver's lifetime. | 129 // must remain valid for the duration of this HostResolver's lifetime. |
124 virtual void AddObserver(Observer* observer) = 0; | 130 virtual void AddObserver(Observer* observer) = 0; |
125 | 131 |
(...skipping 13 matching lines...) Expand all Loading... |
139 public: | 145 public: |
140 explicit SingleRequestHostResolver(HostResolver* resolver); | 146 explicit SingleRequestHostResolver(HostResolver* resolver); |
141 | 147 |
142 // If a completion callback is pending when the resolver is destroyed, the | 148 // If a completion callback is pending when the resolver is destroyed, the |
143 // host resolution is cancelled, and the completion callback will not be | 149 // host resolution is cancelled, and the completion callback will not be |
144 // called. | 150 // called. |
145 ~SingleRequestHostResolver(); | 151 ~SingleRequestHostResolver(); |
146 | 152 |
147 // Resolves the given hostname (or IP address literal), filling out the | 153 // Resolves the given hostname (or IP address literal), filling out the |
148 // |addresses| object upon success. See HostResolver::Resolve() for details. | 154 // |addresses| object upon success. See HostResolver::Resolve() for details. |
149 int Resolve(const HostResolver::RequestInfo& info, | 155 int Resolve(LoadLog* load_log, |
150 AddressList* addresses, CompletionCallback* callback); | 156 const HostResolver::RequestInfo& info, |
| 157 AddressList* addresses, |
| 158 CompletionCallback* callback); |
151 | 159 |
152 private: | 160 private: |
153 // Callback for when the request to |resolver_| completes, so we dispatch | 161 // Callback for when the request to |resolver_| completes, so we dispatch |
154 // to the user's callback. | 162 // to the user's callback. |
155 void OnResolveCompletion(int result); | 163 void OnResolveCompletion(int result); |
156 | 164 |
157 // The actual host resolver that will handle the request. | 165 // The actual host resolver that will handle the request. |
158 scoped_refptr<HostResolver> resolver_; | 166 scoped_refptr<HostResolver> resolver_; |
159 | 167 |
160 // The current request (if any). | 168 // The current request (if any). |
161 HostResolver::RequestHandle cur_request_; | 169 HostResolver::RequestHandle cur_request_; |
162 CompletionCallback* cur_request_callback_; | 170 CompletionCallback* cur_request_callback_; |
163 | 171 |
164 // Completion callback for when request to |resolver_| completes. | 172 // Completion callback for when request to |resolver_| completes. |
165 net::CompletionCallbackImpl<SingleRequestHostResolver> callback_; | 173 net::CompletionCallbackImpl<SingleRequestHostResolver> callback_; |
166 | 174 |
167 DISALLOW_COPY_AND_ASSIGN(SingleRequestHostResolver); | 175 DISALLOW_COPY_AND_ASSIGN(SingleRequestHostResolver); |
168 }; | 176 }; |
169 | 177 |
170 // Creates a HostResolver implementation that queries the underlying system. | 178 // Creates a HostResolver implementation that queries the underlying system. |
171 // (Except if a unit-test has changed the global HostResolverProc using | 179 // (Except if a unit-test has changed the global HostResolverProc using |
172 // ScopedHostResolverProc to intercept requests to the system). | 180 // ScopedHostResolverProc to intercept requests to the system). |
173 HostResolver* CreateSystemHostResolver(); | 181 HostResolver* CreateSystemHostResolver(); |
174 | 182 |
175 } // namespace net | 183 } // namespace net |
176 | 184 |
177 #endif // NET_BASE_HOST_RESOLVER_H_ | 185 #endif // NET_BASE_HOST_RESOLVER_H_ |
OLD | NEW |