[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 5 | #ifndef NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ |
6 | #define NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 7 | |
[email protected] | c4c1b48 | 2011-07-22 17:24:26 | [diff] [blame] | 8 | #include "base/compiler_specific.h" |
Avi Drissman | 13fc893 | 2015-12-20 04:40:46 | [diff] [blame] | 9 | #include "base/macros.h" |
[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 10 | #include "base/memory/ref_counted.h" |
[email protected] | 66e96c4 | 2013-06-28 15:20:31 | [diff] [blame] | 11 | #include "base/time/time.h" |
bnc | 81c46c1f | 2016-10-04 16:25:59 | [diff] [blame] | 12 | #include "net/base/net_export.h" |
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 13 | #include "net/proxy_resolution/proxy_config_service.h" |
Ramin Halavati | ca8d525 | 2018-03-12 05:33:49 | [diff] [blame^] | 14 | #include "net/traffic_annotation/network_traffic_annotation.h" |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 15 | |
16 | namespace net { | ||||
17 | |||||
18 | // PollingProxyConfigService is a base class for creating ProxyConfigService | ||||
19 | // implementations that use polling to notice when settings have change. | ||||
20 | // | ||||
21 | // It runs code to get the current proxy settings on a background worker | ||||
22 | // thread, and notifies registered observers when the value changes. | ||||
[email protected] | 172da1b | 2011-08-12 15:52:26 | [diff] [blame] | 23 | class NET_EXPORT_PRIVATE PollingProxyConfigService : public ProxyConfigService { |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 24 | public: |
25 | // ProxyConfigService implementation: | ||||
dcheng | b03027d | 2014-10-21 12:00:20 | [diff] [blame] | 26 | void AddObserver(Observer* observer) override; |
27 | void RemoveObserver(Observer* observer) override; | ||||
Ramin Halavati | ca8d525 | 2018-03-12 05:33:49 | [diff] [blame^] | 28 | ConfigAvailability GetLatestProxyConfig( |
29 | ProxyConfigWithAnnotation* config) override; | ||||
dcheng | b03027d | 2014-10-21 12:00:20 | [diff] [blame] | 30 | void OnLazyPoll() override; |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 31 | |
32 | protected: | ||||
33 | // Function for retrieving the current proxy configuration. | ||||
34 | // Implementors must be threadsafe as the function will be invoked from | ||||
35 | // worker threads. | ||||
Ramin Halavati | ca8d525 | 2018-03-12 05:33:49 | [diff] [blame^] | 36 | typedef void (*GetConfigFunction)(NetworkTrafficAnnotationTag, |
37 | ProxyConfigWithAnnotation*); | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 38 | |
39 | // Creates a polling-based ProxyConfigService which will test for new | ||||
40 | // settings at most every |poll_interval| time by calling |get_config_func| | ||||
41 | // on a worker thread. | ||||
42 | PollingProxyConfigService( | ||||
43 | base::TimeDelta poll_interval, | ||||
Ramin Halavati | ca8d525 | 2018-03-12 05:33:49 | [diff] [blame^] | 44 | GetConfigFunction get_config_func, |
45 | const NetworkTrafficAnnotationTag& traffic_annotation); | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 46 | |
dcheng | b03027d | 2014-10-21 12:00:20 | [diff] [blame] | 47 | ~PollingProxyConfigService() override; |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 48 | |
[email protected] | e9b8d0af | 2010-08-17 04:10:29 | [diff] [blame] | 49 | // Polls for changes by posting a task to the worker pool. |
50 | void CheckForChangesNow(); | ||||
51 | |||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 52 | private: |
53 | class Core; | ||||
54 | scoped_refptr<Core> core_; | ||||
[email protected] | f4ffb7a | 2011-05-19 21:23:00 | [diff] [blame] | 55 | |
56 | DISALLOW_COPY_AND_ASSIGN(PollingProxyConfigService); | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 57 | }; |
58 | |||||
59 | } // namespace net | ||||
60 | |||||
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame] | 61 | #endif // NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ |