OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_STATS _H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_STATS _H_ |
6 #define COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_STATS _H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_STATS _H_ |
7 | 7 |
8 #include "base/message_loop/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
9 #include "base/prefs/pref_member.h" | |
9 #include "base/threading/thread_checker.h" | 10 #include "base/threading/thread_checker.h" |
10 #include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h" | 11 #include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h" |
11 #include "net/base/host_port_pair.h" | 12 #include "net/base/host_port_pair.h" |
12 #include "net/base/network_change_notifier.h" | 13 #include "net/base/network_change_notifier.h" |
14 #include "net/proxy/proxy_service.h" | |
15 #include "net/url_request/url_request.h" | |
13 | 16 |
14 namespace data_reduction_proxy { | 17 namespace data_reduction_proxy { |
15 | 18 |
16 class DataReductionProxyUsageStats | 19 class DataReductionProxyUsageStats |
17 : public net::NetworkChangeNotifier::NetworkChangeObserver { | 20 : public net::NetworkChangeNotifier::NetworkChangeObserver { |
18 public: | 21 public: |
19 // MessageLoopProxy instances are owned by io_thread. |params| outlives | 22 // MessageLoopProxy instances are owned by io_thread. |params| outlives |
20 // this class instance. | 23 // this class instance. |
21 DataReductionProxyUsageStats(DataReductionProxyParams* params, | 24 DataReductionProxyUsageStats(DataReductionProxyParams* params, |
22 base::MessageLoopProxy* ui_thread_proxy, | 25 base::MessageLoopProxy* ui_thread_proxy, |
23 base::MessageLoopProxy* io_thread_proxy); | 26 base::MessageLoopProxy* io_thread_proxy); |
24 virtual ~DataReductionProxyUsageStats(); | 27 virtual ~DataReductionProxyUsageStats(); |
25 | 28 |
26 /** | 29 // Callback intended to be called from |ChromeNetworkDelegate| when a |
27 * Callback intended to be called from |ChromeNetworkDelegate| when a | 30 // request completes. This method is used to gather usage stats. |
28 * request completes. This method is used to gather usage stats. | |
29 */ | |
30 void OnUrlRequestCompleted(const net::URLRequest* request, bool started); | 31 void OnUrlRequestCompleted(const net::URLRequest* request, bool started); |
31 | 32 |
32 /** | 33 // Determines whether the data reduction proxy is unreachable. |
33 * Determines whether the data reduction proxy is unreachable. | 34 // Returns true if data reduction proxy is unreachable. |
34 * Returns true if data reduction proxy is unreachable. | |
35 */ | |
36 bool isDataReductionProxyUnreachable(); | 35 bool isDataReductionProxyUnreachable(); |
37 | 36 |
37 // Records the last bypass reason to |bypass_type_| and sets | |
38 // |triggering_request_| to true. | |
bengr
2014/07/21 22:23:58
Say what it means to be the triggering request.
megjablon
2014/07/22 02:11:30
Done.
| |
39 void SetBypassType(net::ProxyService::DataReductionProxyBypassType type); | |
40 | |
41 // Records the number of bypassed bytes for various bypass reasons into their | |
42 // respective UMAs. | |
bengr
2014/07/21 22:23:58
Describe the parameters.
megjablon
2014/07/22 02:11:31
Done.
| |
43 void RecordBypassedBytesHistograms( | |
44 int64 content_length, | |
45 const net::URLRequest& request, | |
46 const BooleanPrefMember& data_reduction_proxy_enabled); | |
47 | |
38 private: | 48 private: |
49 enum BypassedBytesType { | |
50 // Not bypassed. | |
51 NOT_BYPASSED = 0, | |
bengr
2014/07/21 22:23:58
Can you condense? E.g.:
enum BypassedBytesType {
megjablon
2014/07/22 02:11:31
Done.
| |
52 | |
53 // Bypass due to SSL. | |
54 SSL = 1, | |
55 | |
56 // Bypass due to client-side bypass rules. | |
57 LOCAL_BYPASS_RULES = 2, | |
58 | |
59 // Audio/Video bypass. | |
60 AUDIO_VIDEO = 3, | |
61 | |
62 // Triggering request bypass. | |
63 TRIGGERING_REQUEST = 4, | |
64 | |
65 // Network error. | |
66 NETWORK_ERROR = 5, | |
67 | |
68 // This must always be last. | |
69 BYPASSED_BYTES_TYPE_MAX = 6 | |
70 }; | |
71 | |
39 DataReductionProxyParams* data_reduction_proxy_params_; | 72 DataReductionProxyParams* data_reduction_proxy_params_; |
73 net::ProxyService::DataReductionProxyBypassType bypass_type_; | |
bengr
2014/07/21 22:23:58
is the the last_bypass_type_? If so, rename. Add a
megjablon
2014/07/22 02:11:31
Done.
| |
74 bool triggering_request_; | |
bengr
2014/07/21 22:23:58
Comment.
megjablon
2014/07/22 02:11:30
Done.
| |
40 base::MessageLoopProxy* ui_thread_proxy_; | 75 base::MessageLoopProxy* ui_thread_proxy_; |
41 base::MessageLoopProxy* io_thread_proxy_; | 76 base::MessageLoopProxy* io_thread_proxy_; |
42 | 77 |
43 // The following 2 fields are used to determine if data reduction proxy is | 78 // The following 2 fields are used to determine if data reduction proxy is |
44 // unreachable. We keep a count of requests which should go through | 79 // unreachable. We keep a count of requests which should go through |
45 // data request proxy, as well as those which actually do. The proxy is | 80 // data request proxy, as well as those which actually do. The proxy is |
46 // unreachable if no successful requests are made through it despite a | 81 // unreachable if no successful requests are made through it despite a |
47 // non-zero number of requests being eligible. | 82 // non-zero number of requests being eligible. |
48 | 83 |
49 // Count of requests which will be tried to be sent through data reduction | 84 // Count of requests which will be tried to be sent through data reduction |
50 // proxy. The count is only based on the config and not the bad proxy list. | 85 // proxy. The count is only based on the config and not the bad proxy list. |
51 // Explicit bypasses are not part of this count. This is the desired behavior | 86 // Explicit bypasses are not part of this count. This is the desired behavior |
52 // since otherwise both counts would be identical. | 87 // since otherwise both counts would be identical. |
53 unsigned long eligible_num_requests_through_proxy_; | 88 unsigned long eligible_num_requests_through_proxy_; |
54 // Count of successfull requests through data reduction proxy. | 89 // Count of successfull requests through data reduction proxy. |
55 unsigned long actual_num_requests_through_proxy_; | 90 unsigned long actual_num_requests_through_proxy_; |
56 | 91 |
57 // NetworkChangeNotifier::NetworkChangeObserver: | 92 // NetworkChangeNotifier::NetworkChangeObserver: |
58 virtual void OnNetworkChanged( | 93 virtual void OnNetworkChanged( |
59 net::NetworkChangeNotifier::ConnectionType type) OVERRIDE; | 94 net::NetworkChangeNotifier::ConnectionType type) OVERRIDE; |
60 | 95 |
61 void IncRequestCountsOnUiThread(bool actual); | 96 void IncRequestCountsOnUiThread(bool actual); |
62 void ClearRequestCountsOnUiThread(); | 97 void ClearRequestCountsOnUiThread(); |
63 | 98 |
64 base::ThreadChecker thread_checker_; | 99 base::ThreadChecker thread_checker_; |
65 | 100 |
101 void RecordBypassedBytes( | |
102 net::ProxyService::DataReductionProxyBypassType bypass_type, | |
103 BypassedBytesType bypassed_bytes_type, | |
104 int64 content_length); | |
105 | |
66 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyUsageStats); | 106 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyUsageStats); |
67 }; | 107 }; |
68 | 108 |
69 } // namespace data_reduction_proxy | 109 } // namespace data_reduction_proxy |
70 | 110 |
71 #endif // COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_ST ATS_H_ | 111 #endif // COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_USAGE_ST ATS_H_ |
OLD | NEW |