OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_NET_DNS_PROBE_RUNNER_H_ | |
6 #define CHROME_BROWSER_NET_DNS_PROBE_RUNNER_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "base/bind.h" | |
10 #include "base/memory/scoped_ptr.h" | |
11 #include "base/memory/weak_ptr.h" | |
12 | |
13 namespace net { | |
14 class DnsClient; | |
15 class DnsResponse; | |
16 class DnsTransaction; | |
17 } | |
18 | |
19 namespace chrome_browser_net { | |
20 | |
21 // Runs DNS probes using a single DnsClient and evaluates the responses. | |
22 // (Currently requests A records for google.com and expects at least one IP | |
23 // address in the response.) | |
24 // Used by DnsProbeService to probe the system and public DNS configurations. | |
25 class DnsProbeRunner { | |
26 public: | |
27 enum Result { | |
28 UNKNOWN, | |
mmenke
2013/06/26 15:48:20
I think it's worth adding a note that these are us
Deprecated (see juliatuttle)
2013/06/26 22:23:56
Done.
| |
29 CORRECT, // Response contains at least one A record. | |
30 INCORRECT, // Response claimed success but included no A records. | |
31 FAILING, // Response included an error or was malformed. | |
32 UNREACHABLE // No response received (timeout, network unreachable, etc.). | |
33 }; | |
34 | |
35 DnsProbeRunner(); | |
36 ~DnsProbeRunner(); | |
37 | |
38 // Starts a probe using the client specified with SetClient, which must have | |
39 // been called before RunProbe. |callback| will be called asynchronously | |
40 // when the result is ready (even if it is ready synchronously). Must not | |
41 // be called again until the callback is called (but may be called during the | |
42 // callback). | |
mmenke
2013/06/26 15:48:20
Instead of all the parentheses, use commas before
Deprecated (see juliatuttle)
2013/06/26 22:23:56
Done.
| |
43 void RunProbe(const base::Closure& callback); | |
44 | |
45 // Sets the DnsClient that will be used for DNS probes sent by this runner. | |
46 // Must be called before RunProbe; can be called repeatedly, including during | |
47 // a probe. (It will not, of course, affect the in-flight probe.) | |
mmenke
2013/06/26 15:48:20
Parenthesis not needed. Also suggest removing the
Deprecated (see juliatuttle)
2013/06/26 22:23:56
Done.
| |
48 void SetClient(scoped_ptr<net::DnsClient> client); | |
49 | |
50 // Returns true if a probe is running. Guaranteed to return true after | |
51 // RunProbe returns, and false during and after the callback. | |
52 bool IsRunning() const; | |
53 | |
54 // Returns the result of the last probe. | |
55 Result result() const { return result_; } | |
56 | |
57 private: | |
58 void OnTransactionComplete(net::DnsTransaction* transaction, | |
59 int net_error, | |
60 const net::DnsResponse* response); | |
61 void CallCallback(); | |
62 | |
63 base::WeakPtrFactory<DnsProbeRunner> weak_factory_; | |
64 scoped_ptr<net::DnsClient> client_; | |
65 base::Closure callback_; | |
66 scoped_ptr<net::DnsTransaction> transaction_; | |
67 Result result_; | |
68 | |
69 DISALLOW_COPY_AND_ASSIGN(DnsProbeRunner); | |
70 }; | |
71 | |
72 } // namespace chrome_browser_net | |
73 | |
74 #endif // CHROME_BROWSER_NET_DNS_PROBE_RUNNER_H_ | |
OLD | NEW |