summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_resolver_mojo.h
blob: 10a512e8ee7d91fb5a4e0507679008af53a874e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_PROXY_PROXY_RESOLVER_MOJO_H_
#define NET_PROXY_PROXY_RESOLVER_MOJO_H_

#include <set>

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
#include "net/base/completion_callback.h"
#include "net/base/load_states.h"
#include "net/interfaces/host_resolver_service.mojom.h"
#include "net/interfaces/proxy_resolver_service.mojom.h"
#include "net/proxy/proxy_resolver.h"
#include "net/proxy/proxy_resolver_script_data.h"
#include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"

class GURL;

namespace net {

class BoundNetLog;
class HostResolver;
class ProxyInfo;
class MojoProxyResolverFactory;

// Implementation of ProxyResolver that connects to a Mojo service to evaluate
// PAC scripts. This implementation only knows about Mojo services, and
// therefore that service may live in or out of process.
//
// This implementation handles disconnections from the Mojo service (i.e. if the
// service is out-of-process and that process crashes) and transparently
// re-connects to a new service.
class ProxyResolverMojo : public ProxyResolver, public mojo::ErrorHandler {
 public:
  // Constructs a ProxyResolverMojo and connects to a new Mojo proxy resolver
  // service using |mojo_proxy_resolver_factory|. The new Mojo proxy resolver
  // uses |host_resolver| as the DNS resolver.  |mojo_proxy_resolver_factory|
  // and |host_resolver| are not owned and must outlive this.
  // TODO(amistry): Add ProxyResolverErrorObserver and NetLog.
  ProxyResolverMojo(MojoProxyResolverFactory* mojo_proxy_resolver_factory,
                    HostResolver* host_resolver);
  ~ProxyResolverMojo() override;

  // ProxyResolver implementation:
  int GetProxyForURL(const GURL& url,
                     ProxyInfo* results,
                     const net::CompletionCallback& callback,
                     RequestHandle* request,
                     const BoundNetLog& net_log) override;
  void CancelRequest(RequestHandle request) override;
  LoadState GetLoadState(RequestHandle request) const override;
  void CancelSetPacScript() override;
  int SetPacScript(const scoped_refptr<ProxyResolverScriptData>& pac_script,
                   const net::CompletionCallback& callback) override;

 private:
  class Job;

  // Overridden from mojo::ErrorHandler:
  void OnConnectionError() override;

  // Callback for ProxyResolverService::SetPacScript.
  void OnSetPacScriptDone(
      const scoped_refptr<ProxyResolverScriptData>& pac_script,
      const net::CompletionCallback& callback,
      int32_t result);

  void SetUpServices();

  void RemoveJob(Job* job);

  // Connection to the Mojo proxy resolver.
  interfaces::ProxyResolverPtr mojo_proxy_resolver_ptr_;

  // Mojo host resolver service and binding.
  scoped_ptr<interfaces::HostResolver> mojo_host_resolver_;
  scoped_ptr<mojo::Binding<interfaces::HostResolver>>
      mojo_host_resolver_binding_;

  // Factory for connecting to new Mojo proxy resolvers.
  // Not owned.
  MojoProxyResolverFactory* mojo_proxy_resolver_factory_;

  // DNS resolver, saved for creating a new Mojo proxy resolver when the
  // existing one disconnects (i.e. when utility process crashes).
  HostResolver* host_resolver_;

  std::set<Job*> pending_jobs_;
  net::CancelableCompletionCallback set_pac_script_callback_;

  base::ThreadChecker thread_checker_;

  DISALLOW_COPY_AND_ASSIGN(ProxyResolverMojo);
};

}  // namespace net

#endif  // NET_PROXY_PROXY_RESOLVER_MOJO_H_