[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" |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 14 | |
15 | namespace net { | ||||
16 | |||||
17 | // PollingProxyConfigService is a base class for creating ProxyConfigService | ||||
18 | // implementations that use polling to notice when settings have change. | ||||
19 | // | ||||
20 | // It runs code to get the current proxy settings on a background worker | ||||
21 | // thread, and notifies registered observers when the value changes. | ||||
[email protected] | 172da1b | 2011-08-12 15:52:26 | [diff] [blame] | 22 | class NET_EXPORT_PRIVATE PollingProxyConfigService : public ProxyConfigService { |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 23 | public: |
24 | // ProxyConfigService implementation: | ||||
dcheng | b03027d | 2014-10-21 12:00:20 | [diff] [blame] | 25 | void AddObserver(Observer* observer) override; |
26 | void RemoveObserver(Observer* observer) override; | ||||
27 | ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) override; | ||||
28 | void OnLazyPoll() override; | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 29 | |
30 | protected: | ||||
31 | // Function for retrieving the current proxy configuration. | ||||
32 | // Implementors must be threadsafe as the function will be invoked from | ||||
33 | // worker threads. | ||||
34 | typedef void (*GetConfigFunction)(ProxyConfig*); | ||||
35 | |||||
36 | // Creates a polling-based ProxyConfigService which will test for new | ||||
37 | // settings at most every |poll_interval| time by calling |get_config_func| | ||||
38 | // on a worker thread. | ||||
39 | PollingProxyConfigService( | ||||
40 | base::TimeDelta poll_interval, | ||||
41 | GetConfigFunction get_config_func); | ||||
42 | |||||
dcheng | b03027d | 2014-10-21 12:00:20 | [diff] [blame] | 43 | ~PollingProxyConfigService() override; |
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 44 | |
[email protected] | e9b8d0af | 2010-08-17 04:10:29 | [diff] [blame] | 45 | // Polls for changes by posting a task to the worker pool. |
46 | void CheckForChangesNow(); | ||||
47 | |||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 48 | private: |
49 | class Core; | ||||
50 | scoped_refptr<Core> core_; | ||||
[email protected] | f4ffb7a | 2011-05-19 21:23:00 | [diff] [blame] | 51 | |
52 | DISALLOW_COPY_AND_ASSIGN(PollingProxyConfigService); | ||||
[email protected] | 11965500 | 2010-07-23 06:02:40 | [diff] [blame] | 53 | }; |
54 | |||||
55 | } // namespace net | ||||
56 | |||||
Lily Houghton | 582d462 | 2018-01-22 22:43:40 | [diff] [blame^] | 57 | #endif // NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_ |