blob: dccdab481a076f4fa8991b641f360563fa50ce6c [file] [log] [blame]
[email protected]3b63f8f42011-03-28 01:54:151// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]119655002010-07-23 06:02:402// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Lily Houghton582d4622018-01-22 22:43:405#ifndef NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_
6#define NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_
[email protected]119655002010-07-23 06:02:407
[email protected]c4c1b482011-07-22 17:24:268#include "base/compiler_specific.h"
Avi Drissman13fc8932015-12-20 04:40:469#include "base/macros.h"
[email protected]3b63f8f42011-03-28 01:54:1510#include "base/memory/ref_counted.h"
[email protected]66e96c42013-06-28 15:20:3111#include "base/time/time.h"
bnc81c46c1f2016-10-04 16:25:5912#include "net/base/net_export.h"
Lily Houghton582d4622018-01-22 22:43:4013#include "net/proxy_resolution/proxy_config_service.h"
[email protected]119655002010-07-23 06:02:4014
15namespace 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]172da1b2011-08-12 15:52:2622class NET_EXPORT_PRIVATE PollingProxyConfigService : public ProxyConfigService {
[email protected]119655002010-07-23 06:02:4023 public:
24 // ProxyConfigService implementation:
dchengb03027d2014-10-21 12:00:2025 void AddObserver(Observer* observer) override;
26 void RemoveObserver(Observer* observer) override;
27 ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) override;
28 void OnLazyPoll() override;
[email protected]119655002010-07-23 06:02:4029
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
dchengb03027d2014-10-21 12:00:2043 ~PollingProxyConfigService() override;
[email protected]119655002010-07-23 06:02:4044
[email protected]e9b8d0af2010-08-17 04:10:2945 // Polls for changes by posting a task to the worker pool.
46 void CheckForChangesNow();
47
[email protected]119655002010-07-23 06:02:4048 private:
49 class Core;
50 scoped_refptr<Core> core_;
[email protected]f4ffb7a2011-05-19 21:23:0051
52 DISALLOW_COPY_AND_ASSIGN(PollingProxyConfigService);
[email protected]119655002010-07-23 06:02:4053};
54
55} // namespace net
56
Lily Houghton582d4622018-01-22 22:43:4057#endif // NET_PROXY_RESOLUTION_POLLING_PROXY_CONFIG_SERVICE_H_