Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Side by Side Diff: net/proxy/proxy_service.cc

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Final sync with trunk Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/proxy/proxy_resolver_v8_unittest.cc ('k') | net/proxy/proxy_service_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 // |async_host_resolver| will only be operated on |io_loop|.
161 // |io_loop|.
162 ProxyResolverFactoryForV8(HostResolver* async_host_resolver, 160 ProxyResolverFactoryForV8(HostResolver* async_host_resolver,
163 MessageLoop* io_loop, 161 MessageLoop* io_loop,
164 NetLog* net_log) 162 NetLog* net_log)
165 : ProxyResolverFactory(true /*expects_pac_bytes*/), 163 : ProxyResolverFactory(true /*expects_pac_bytes*/),
166 async_host_resolver_(async_host_resolver), 164 async_host_resolver_(async_host_resolver),
167 io_loop_(io_loop), 165 io_loop_(io_loop),
168 forwarding_net_log_( 166 net_log_(net_log) {
169 net_log ? new ForwardingNetLog(net_log, io_loop) : NULL) {
170 } 167 }
171 168
172 virtual ProxyResolver* CreateProxyResolver() { 169 virtual ProxyResolver* CreateProxyResolver() {
173 // Create a synchronous host resolver wrapper that operates 170 // Create a synchronous host resolver wrapper that operates
174 // |async_host_resolver_| on |io_loop_|. 171 // |async_host_resolver_| on |io_loop_|.
175 SyncHostResolverBridge* sync_host_resolver = 172 SyncHostResolverBridge* sync_host_resolver =
176 new SyncHostResolverBridge(async_host_resolver_, io_loop_); 173 new SyncHostResolverBridge(async_host_resolver_, io_loop_);
177 174
178 ProxyResolverJSBindings* js_bindings = 175 ProxyResolverJSBindings* js_bindings =
179 ProxyResolverJSBindings::CreateDefault(sync_host_resolver, 176 ProxyResolverJSBindings::CreateDefault(sync_host_resolver, net_log_);
180 forwarding_net_log_.get());
181 177
182 // ProxyResolverV8 takes ownership of |js_bindings|. 178 // ProxyResolverV8 takes ownership of |js_bindings|.
183 return new ProxyResolverV8(js_bindings); 179 return new ProxyResolverV8(js_bindings);
184 } 180 }
185 181
186 private: 182 private:
187 HostResolver* const async_host_resolver_; 183 HostResolver* const async_host_resolver_;
188 MessageLoop* io_loop_; 184 MessageLoop* io_loop_;
189 185 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 }; 186 };
194 187
195 // Creates ProxyResolvers using a platform-specific implementation. 188 // Creates ProxyResolvers using a platform-specific implementation.
196 class ProxyResolverFactoryForSystem : public ProxyResolverFactory { 189 class ProxyResolverFactoryForSystem : public ProxyResolverFactory {
197 public: 190 public:
198 ProxyResolverFactoryForSystem() 191 ProxyResolverFactoryForSystem()
199 : ProxyResolverFactory(false /*expects_pac_bytes*/) {} 192 : ProxyResolverFactory(false /*expects_pac_bytes*/) {}
200 193
201 virtual ProxyResolver* CreateProxyResolver() { 194 virtual ProxyResolver* CreateProxyResolver() {
202 DCHECK(IsSupported()); 195 DCHECK(IsSupported());
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 OnCompletion(result_); 931 OnCompletion(result_);
939 } 932 }
940 } 933 }
941 934
942 void SyncProxyServiceHelper::OnCompletion(int rv) { 935 void SyncProxyServiceHelper::OnCompletion(int rv) {
943 result_ = rv; 936 result_ = rv;
944 event_.Signal(); 937 event_.Signal();
945 } 938 }
946 939
947 } // namespace net 940 } // namespace net
OLDNEW
« no previous file with comments | « net/proxy/proxy_resolver_v8_unittest.cc ('k') | net/proxy/proxy_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698