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

Side by Side Diff: net/url_request/url_request_job_manager.h

Issue 5634005: Add a new GetInstance() method for singleton classes under chrome/service and /net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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/url_request/url_request_http_job.cc ('k') | net/url_request/url_request_job_manager.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 #ifndef NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__
6 #define NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__ 6 #define NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/lock.h" 13 #include "base/lock.h"
14 #include "base/platform_thread.h" 14 #include "base/platform_thread.h"
15 #include "net/url_request/url_request.h" 15 #include "net/url_request/url_request.h"
16 16
17 template <typename T> struct DefaultSingletonTraits;
18
17 // This class is responsible for managing the set of protocol factories and 19 // This class is responsible for managing the set of protocol factories and
18 // request interceptors that determine how an URLRequestJob gets created to 20 // request interceptors that determine how an URLRequestJob gets created to
19 // handle an net::URLRequest. 21 // handle an net::URLRequest.
20 // 22 //
21 // MULTI-THREADING NOTICE: 23 // MULTI-THREADING NOTICE:
22 // net::URLRequest is designed to have all consumers on a single thread, and 24 // net::URLRequest is designed to have all consumers on a single thread, and
23 // so no attempt is made to support ProtocolFactory or Interceptor instances 25 // so no attempt is made to support ProtocolFactory or Interceptor instances
24 // being registered/unregistered or in any way poked on multiple threads. 26 // being registered/unregistered or in any way poked on multiple threads.
25 // However, we do support checking for supported schemes FROM ANY THREAD 27 // However, we do support checking for supported schemes FROM ANY THREAD
26 // (i.e., it is safe to call SupportsScheme on any thread). 28 // (i.e., it is safe to call SupportsScheme on any thread).
27 // 29 //
28 class URLRequestJobManager { 30 class URLRequestJobManager {
29 public: 31 public:
30 URLRequestJobManager(); 32 // Returns the singleton instance.
31 ~URLRequestJobManager(); 33 static URLRequestJobManager* GetInstance();
32 34
33 // Instantiate an URLRequestJob implementation based on the registered 35 // Instantiate an URLRequestJob implementation based on the registered
34 // interceptors and protocol factories. This will always succeed in 36 // interceptors and protocol factories. This will always succeed in
35 // returning a job unless we are--in the extreme case--out of memory. 37 // returning a job unless we are--in the extreme case--out of memory.
36 net::URLRequestJob* CreateJob(net::URLRequest* request) const; 38 net::URLRequestJob* CreateJob(net::URLRequest* request) const;
37 39
38 // Allows interceptors to hijack the request after examining the new location 40 // Allows interceptors to hijack the request after examining the new location
39 // of a redirect. Returns NULL if no interceptor intervenes. 41 // of a redirect. Returns NULL if no interceptor intervenes.
40 net::URLRequestJob* MaybeInterceptRedirect(net::URLRequest* request, 42 net::URLRequestJob* MaybeInterceptRedirect(net::URLRequest* request,
41 const GURL& location) const; 43 const GURL& location) const;
(...skipping 18 matching lines...) Expand all
60 // Register/unregister a request interceptor. 62 // Register/unregister a request interceptor.
61 void RegisterRequestInterceptor(net::URLRequest::Interceptor* interceptor); 63 void RegisterRequestInterceptor(net::URLRequest::Interceptor* interceptor);
62 void UnregisterRequestInterceptor(net::URLRequest::Interceptor* interceptor); 64 void UnregisterRequestInterceptor(net::URLRequest::Interceptor* interceptor);
63 65
64 void set_enable_file_access(bool enable) { enable_file_access_ = enable; } 66 void set_enable_file_access(bool enable) { enable_file_access_ = enable; }
65 bool enable_file_access() const { return enable_file_access_; } 67 bool enable_file_access() const { return enable_file_access_; }
66 68
67 private: 69 private:
68 typedef std::map<std::string, net::URLRequest::ProtocolFactory*> FactoryMap; 70 typedef std::map<std::string, net::URLRequest::ProtocolFactory*> FactoryMap;
69 typedef std::vector<net::URLRequest::Interceptor*> InterceptorList; 71 typedef std::vector<net::URLRequest::Interceptor*> InterceptorList;
72 friend struct DefaultSingletonTraits<URLRequestJobManager>;
73
74 URLRequestJobManager();
75 ~URLRequestJobManager();
70 76
71 mutable Lock lock_; 77 mutable Lock lock_;
72 FactoryMap factories_; 78 FactoryMap factories_;
73 InterceptorList interceptors_; 79 InterceptorList interceptors_;
74 bool enable_file_access_; 80 bool enable_file_access_;
75 81
76 #ifndef NDEBUG 82 #ifndef NDEBUG
77 // We use this to assert that CreateJob and the registration functions all 83 // We use this to assert that CreateJob and the registration functions all
78 // run on the same thread. 84 // run on the same thread.
79 mutable PlatformThreadId allowed_thread_; 85 mutable PlatformThreadId allowed_thread_;
(...skipping 21 matching lines...) Expand all
101 // check back on. 107 // check back on.
102 return true; 108 return true;
103 #endif 109 #endif
104 } 110 }
105 #endif 111 #endif
106 112
107 DISALLOW_COPY_AND_ASSIGN(URLRequestJobManager); 113 DISALLOW_COPY_AND_ASSIGN(URLRequestJobManager);
108 }; 114 };
109 115
110 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__ 116 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_MANAGER_H__
OLDNEW
« no previous file with comments | « net/url_request/url_request_http_job.cc ('k') | net/url_request/url_request_job_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698