OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "net/proxy/proxy_service.h" | 5 #include "net/proxy/proxy_service.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 #include "net/base/forwarding_net_log.h" | |
16 #include "net/base/net_log.h" | 15 #include "net/base/net_log.h" |
17 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
18 #include "net/base/net_util.h" | 17 #include "net/base/net_util.h" |
19 #include "net/proxy/init_proxy_resolver.h" | 18 #include "net/proxy/init_proxy_resolver.h" |
20 #include "net/proxy/multi_threaded_proxy_resolver.h" | 19 #include "net/proxy/multi_threaded_proxy_resolver.h" |
21 #include "net/proxy/proxy_config_service_fixed.h" | 20 #include "net/proxy/proxy_config_service_fixed.h" |
22 #include "net/proxy/proxy_script_fetcher.h" | 21 #include "net/proxy/proxy_script_fetcher.h" |
23 #if defined(OS_WIN) | 22 #if defined(OS_WIN) |
24 #include "net/proxy/proxy_config_service_win.h" | 23 #include "net/proxy/proxy_config_service_win.h" |
25 #include "net/proxy/proxy_resolver_winhttp.h" | 24 #include "net/proxy/proxy_resolver_winhttp.h" |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
150 | 149 |
151 private: | 150 private: |
152 const std::string pac_string_; | 151 const std::string pac_string_; |
153 }; | 152 }; |
154 | 153 |
155 // This factory creates V8ProxyResolvers with appropriate javascript bindings. | 154 // This factory creates V8ProxyResolvers with appropriate javascript bindings. |
156 class ProxyResolverFactoryForV8 : public ProxyResolverFactory { | 155 class ProxyResolverFactoryForV8 : public ProxyResolverFactory { |
157 public: | 156 public: |
158 // |async_host_resolver|, |io_loop| and |net_log| must remain | 157 // |async_host_resolver|, |io_loop| and |net_log| must remain |
159 // valid for the duration of our lifetime. | 158 // valid for the duration of our lifetime. |
160 // Both |async_host_resolver| and |net_log| will only be operated on | 159 // Both |async_host_resolver| and |net_log| will only be operated on |
eroman
2010/11/30 01:43:37
Please update this comment.
mmenke
2010/11/30 18:59:04
Done.
| |
161 // |io_loop|. | 160 // |io_loop|. |
162 ProxyResolverFactoryForV8(HostResolver* async_host_resolver, | 161 ProxyResolverFactoryForV8(HostResolver* async_host_resolver, |
163 MessageLoop* io_loop, | 162 MessageLoop* io_loop, |
164 NetLog* net_log) | 163 NetLog* net_log) |
165 : ProxyResolverFactory(true /*expects_pac_bytes*/), | 164 : ProxyResolverFactory(true /*expects_pac_bytes*/), |
166 async_host_resolver_(async_host_resolver), | 165 async_host_resolver_(async_host_resolver), |
167 io_loop_(io_loop), | 166 io_loop_(io_loop), |
168 forwarding_net_log_( | 167 net_log_(net_log) { |
169 net_log ? new ForwardingNetLog(net_log, io_loop) : NULL) { | |
170 } | 168 } |
171 | 169 |
172 virtual ProxyResolver* CreateProxyResolver() { | 170 virtual ProxyResolver* CreateProxyResolver() { |
173 // Create a synchronous host resolver wrapper that operates | 171 // Create a synchronous host resolver wrapper that operates |
174 // |async_host_resolver_| on |io_loop_|. | 172 // |async_host_resolver_| on |io_loop_|. |
175 SyncHostResolverBridge* sync_host_resolver = | 173 SyncHostResolverBridge* sync_host_resolver = |
176 new SyncHostResolverBridge(async_host_resolver_, io_loop_); | 174 new SyncHostResolverBridge(async_host_resolver_, io_loop_); |
177 | 175 |
178 ProxyResolverJSBindings* js_bindings = | 176 ProxyResolverJSBindings* js_bindings = |
179 ProxyResolverJSBindings::CreateDefault(sync_host_resolver, | 177 ProxyResolverJSBindings::CreateDefault(sync_host_resolver, net_log_); |
180 forwarding_net_log_.get()); | |
181 | 178 |
182 // ProxyResolverV8 takes ownership of |js_bindings|. | 179 // ProxyResolverV8 takes ownership of |js_bindings|. |
183 return new ProxyResolverV8(js_bindings); | 180 return new ProxyResolverV8(js_bindings); |
184 } | 181 } |
185 | 182 |
186 private: | 183 private: |
187 HostResolver* const async_host_resolver_; | 184 HostResolver* const async_host_resolver_; |
188 MessageLoop* io_loop_; | 185 MessageLoop* io_loop_; |
189 | 186 NetLog* net_log_; |
190 // Thread-safe wrapper around a non-threadsafe NetLog implementation. This | |
191 // enables the proxy resolver to emit log messages from the PAC thread. | |
192 scoped_ptr<ForwardingNetLog> forwarding_net_log_; | |
193 }; | 187 }; |
194 | 188 |
195 // Creates ProxyResolvers using a platform-specific implementation. | 189 // Creates ProxyResolvers using a platform-specific implementation. |
196 class ProxyResolverFactoryForSystem : public ProxyResolverFactory { | 190 class ProxyResolverFactoryForSystem : public ProxyResolverFactory { |
197 public: | 191 public: |
198 ProxyResolverFactoryForSystem() | 192 ProxyResolverFactoryForSystem() |
199 : ProxyResolverFactory(false /*expects_pac_bytes*/) {} | 193 : ProxyResolverFactory(false /*expects_pac_bytes*/) {} |
200 | 194 |
201 virtual ProxyResolver* CreateProxyResolver() { | 195 virtual ProxyResolver* CreateProxyResolver() { |
202 DCHECK(IsSupported()); | 196 DCHECK(IsSupported()); |
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
938 OnCompletion(result_); | 932 OnCompletion(result_); |
939 } | 933 } |
940 } | 934 } |
941 | 935 |
942 void SyncProxyServiceHelper::OnCompletion(int rv) { | 936 void SyncProxyServiceHelper::OnCompletion(int rv) { |
943 result_ = rv; | 937 result_ = rv; |
944 event_.Signal(); | 938 event_.Signal(); |
945 } | 939 } |
946 | 940 |
947 } // namespace net | 941 } // namespace net |
OLD | NEW |