Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: net/base/sdch_manager.h

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Declare SdchProblemCode Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Provides global database of differential decompression dictionaries for the 5 // Provides global database of differential decompression dictionaries for the
6 // SDCH filter (processes sdch enconded content). 6 // SDCH filter (processes sdch enconded content).
7 7
8 // Exactly one instance of SdchManager is built, and all references are made 8 // Exactly one instance of SdchManager is built, and all references are made
9 // into that collection. 9 // into that collection.
10 // 10 //
(...skipping 12 matching lines...) Expand all
23 #include <map> 23 #include <map>
24 #include <set> 24 #include <set>
25 #include <string> 25 #include <string>
26 26
27 #include "base/gtest_prod_util.h" 27 #include "base/gtest_prod_util.h"
28 #include "base/memory/ref_counted.h" 28 #include "base/memory/ref_counted.h"
29 #include "base/memory/scoped_ptr.h" 29 #include "base/memory/scoped_ptr.h"
30 #include "base/threading/non_thread_safe.h" 30 #include "base/threading/non_thread_safe.h"
31 #include "base/time/time.h" 31 #include "base/time/time.h"
32 #include "net/base/net_export.h" 32 #include "net/base/net_export.h"
33 #include "net/base/sdch_problem_codes.h"
33 #include "url/gurl.h" 34 #include "url/gurl.h"
34 35
36 namespace base {
37 class Value;
38 }
39
35 namespace net { 40 namespace net {
36 41
37 //------------------------------------------------------------------------------ 42 //------------------------------------------------------------------------------
38 // Create a public interface to help us load SDCH dictionaries. 43 // Create a public interface to help us load SDCH dictionaries.
39 // The SdchManager class allows registration to support this interface. 44 // The SdchManager class allows registration to support this interface.
40 // A browser may register a fetcher that is used by the dictionary managers to 45 // A browser may register a fetcher that is used by the dictionary managers to
41 // get data from a specified URL. This allows us to use very high level browser 46 // get data from a specified URL. This allows us to use very high level browser
42 // functionality in this base (when the functionality can be provided). 47 // functionality in this base (when the functionality can be provided).
43 class NET_EXPORT SdchFetcher { 48 class NET_EXPORT SdchFetcher {
44 public: 49 public:
45 class NET_EXPORT Delegate { 50 class NET_EXPORT Delegate {
46 public: 51 public:
47 virtual ~Delegate() {} 52 virtual ~Delegate() {}
48 53
49 // Called whenever the SdchFetcher has successfully retrieved a 54 // Called whenever the SdchFetcher has successfully retrieved a
50 // dictionary. |dictionary_text| contains the body of the dictionary 55 // dictionary. |dictionary_text| contains the body of the dictionary
51 // retrieved from |dictionary_url|. 56 // retrieved from |dictionary_url|.
52 virtual void AddSdchDictionary(const std::string& dictionary_text, 57 virtual SdchProblemCode AddSdchDictionary(
53 const GURL& dictionary_url) = 0; 58 const std::string& dictionary_text,
59 const GURL& dictionary_url) = 0;
54 }; 60 };
55 61
56 SdchFetcher() {} 62 SdchFetcher() {}
57 virtual ~SdchFetcher() {} 63 virtual ~SdchFetcher() {}
58 64
59 // The Schedule() method is called when there is a need to get a dictionary 65 // The Schedule() method is called when there is a need to get a dictionary
60 // from a server. The callee is responsible for getting that dictionary_text, 66 // from a server. The callee is responsible for getting that dictionary_text,
61 // and then calling back to AddSdchDictionary() in the Delegate instance. 67 // and then calling back to AddSdchDictionary() in the Delegate instance.
62 virtual void Schedule(const GURL& dictionary_url) = 0; 68 virtual bool Schedule(const GURL& dictionary_url) = 0;
63 69
64 // The Cancel() method is called to cancel all pending dictionary fetches. 70 // The Cancel() method is called to cancel all pending dictionary fetches.
65 // This is used for implementation of ClearData() below. 71 // This is used for implementation of ClearData() below.
66 virtual void Cancel() = 0; 72 virtual void Cancel() = 0;
67 73
68 private: 74 private:
69 DISALLOW_COPY_AND_ASSIGN(SdchFetcher); 75 DISALLOW_COPY_AND_ASSIGN(SdchFetcher);
70 }; 76 };
71 77
72 //------------------------------------------------------------------------------ 78 //------------------------------------------------------------------------------
73 79
74 class NET_EXPORT SdchManager 80 class NET_EXPORT SdchManager
75 : public SdchFetcher::Delegate, 81 : public SdchFetcher::Delegate,
76 public NON_EXPORTED_BASE(base::NonThreadSafe) { 82 public NON_EXPORTED_BASE(base::NonThreadSafe) {
77 public: 83 public:
78 // A list of errors that appeared and were either resolved, or used to turn
79 // off sdch encoding.
80 enum ProblemCodes {
81 MIN_PROBLEM_CODE,
82
83 // Content-encoding correction problems.
84 ADDED_CONTENT_ENCODING = 1,
85 FIXED_CONTENT_ENCODING = 2,
86 FIXED_CONTENT_ENCODINGS = 3,
87
88 // Content decoding errors.
89 DECODE_HEADER_ERROR = 4,
90 DECODE_BODY_ERROR = 5,
91
92 // More content-encoding correction problems.
93 OPTIONAL_GUNZIP_ENCODING_ADDED = 6,
94
95 // Content encoding correction when we're not even tagged as HTML!?!
96 BINARY_ADDED_CONTENT_ENCODING = 7,
97 BINARY_FIXED_CONTENT_ENCODING = 8,
98 BINARY_FIXED_CONTENT_ENCODINGS = 9,
99
100 // Dictionary selection for use problems.
101 DICTIONARY_FOUND_HAS_WRONG_DOMAIN = 10,
102 DICTIONARY_FOUND_HAS_WRONG_PORT_LIST = 11,
103 DICTIONARY_FOUND_HAS_WRONG_PATH = 12,
104 DICTIONARY_FOUND_HAS_WRONG_SCHEME = 13,
105 DICTIONARY_HASH_NOT_FOUND = 14,
106 DICTIONARY_HASH_MALFORMED = 15,
107
108 // Dictionary saving problems.
109 DICTIONARY_HAS_NO_HEADER = 20,
110 DICTIONARY_HEADER_LINE_MISSING_COLON = 21,
111 DICTIONARY_MISSING_DOMAIN_SPECIFIER = 22,
112 DICTIONARY_SPECIFIES_TOP_LEVEL_DOMAIN = 23,
113 DICTIONARY_DOMAIN_NOT_MATCHING_SOURCE_URL = 24,
114 DICTIONARY_PORT_NOT_MATCHING_SOURCE_URL = 25,
115 DICTIONARY_HAS_NO_TEXT = 26,
116 DICTIONARY_REFERER_URL_HAS_DOT_IN_PREFIX = 27,
117
118 // Dictionary loading problems.
119 DICTIONARY_LOAD_ATTEMPT_FROM_DIFFERENT_HOST = 30,
120 DICTIONARY_SELECTED_FOR_SSL = 31,
121 DICTIONARY_ALREADY_LOADED = 32,
122 DICTIONARY_SELECTED_FROM_NON_HTTP = 33,
123 DICTIONARY_IS_TOO_LARGE= 34,
124 DICTIONARY_COUNT_EXCEEDED = 35,
125 DICTIONARY_ALREADY_SCHEDULED_TO_DOWNLOAD = 36,
126 DICTIONARY_ALREADY_TRIED_TO_DOWNLOAD = 37,
127 DICTIONARY_FETCH_READ_FAILED = 38,
128
129 // Failsafe hack.
130 ATTEMPT_TO_DECODE_NON_HTTP_DATA = 40,
131
132
133 // Content-Encoding problems detected, with no action taken.
134 MULTIENCODING_FOR_NON_SDCH_REQUEST = 50,
135 SDCH_CONTENT_ENCODE_FOR_NON_SDCH_REQUEST = 51,
136
137 // Dictionary manager issues.
138 DOMAIN_BLACKLIST_INCLUDES_TARGET = 61,
139
140 // Problematic decode recovery methods.
141 META_REFRESH_RECOVERY = 70, // Dictionary not found.
142 // defunct = 71, // Almost the same as META_REFRESH_UNSUPPORTED.
143 // defunct = 72, // Almost the same as CACHED_META_REFRESH_UNSUPPORTED.
144 // defunct = 73, // PASSING_THROUGH_NON_SDCH plus
145 // RESPONSE_TENTATIVE_SDCH in ../filter/sdch_filter.cc.
146 META_REFRESH_UNSUPPORTED = 74, // Unrecoverable error.
147 CACHED_META_REFRESH_UNSUPPORTED = 75, // As above, but pulled from cache.
148 PASSING_THROUGH_NON_SDCH = 76, // Tagged sdch but missing dictionary-hash.
149 INCOMPLETE_SDCH_CONTENT = 77, // Last window was not completely decoded.
150 PASS_THROUGH_404_CODE = 78, // URL not found message passing through.
151
152 // This next report is very common, and not really an error scenario, but
153 // it exercises the error recovery logic.
154 PASS_THROUGH_OLD_CACHED = 79, // Back button got pre-SDCH cached content.
155
156 // Common decoded recovery methods.
157 META_REFRESH_CACHED_RECOVERY = 80, // Probably startup tab loading.
158 // defunct = 81, // Now tracked by ResponseCorruptionDetectionCause histo.
159
160 // Non SDCH problems, only accounted for to make stat counting complete
161 // (i.e., be able to be sure all dictionary advertisements are accounted
162 // for).
163
164 UNFLUSHED_CONTENT = 90, // Possible error in filter chaining.
165 // defunct = 91, // MISSING_TIME_STATS (Should never happen.)
166 CACHE_DECODED = 92, // No timing stats recorded.
167 // defunct = 93, // OVER_10_MINUTES (No timing stats recorded.)
168 UNINITIALIZED = 94, // Filter never even got initialized.
169 PRIOR_TO_DICTIONARY = 95, // We hadn't even parsed a dictionary selector.
170 DECODE_ERROR = 96, // Something went wrong during decode.
171
172 // Problem during the latency test.
173 LATENCY_TEST_DISALLOWED = 100, // SDCH now failing, but it worked before!
174
175 MAX_PROBLEM_CODE // Used to bound histogram.
176 };
177
178 // Use the following static limits to block DOS attacks until we implement 84 // Use the following static limits to block DOS attacks until we implement
179 // a cached dictionary evicition strategy. 85 // a cached dictionary evicition strategy.
180 static const size_t kMaxDictionarySize; 86 static const size_t kMaxDictionarySize;
181 static const size_t kMaxDictionaryCount; 87 static const size_t kMaxDictionaryCount;
182 88
183 // There is one instance of |Dictionary| for each memory-cached SDCH 89 // There is one instance of |Dictionary| for each memory-cached SDCH
184 // dictionary. 90 // dictionary.
185 class NET_EXPORT_PRIVATE Dictionary : public base::RefCounted<Dictionary> { 91 class NET_EXPORT_PRIVATE Dictionary : public base::RefCounted<Dictionary> {
186 public: 92 public:
187 // Sdch filters can get our text to use in decoding compressed data. 93 // Sdch filters can get our text to use in decoding compressed data.
(...skipping 12 matching lines...) Expand all
200 const std::string& client_hash, 106 const std::string& client_hash,
201 const GURL& url, 107 const GURL& url,
202 const std::string& domain, 108 const std::string& domain,
203 const std::string& path, 109 const std::string& path,
204 const base::Time& expiration, 110 const base::Time& expiration,
205 const std::set<int>& ports); 111 const std::set<int>& ports);
206 virtual ~Dictionary(); 112 virtual ~Dictionary();
207 113
208 const GURL& url() const { return url_; } 114 const GURL& url() const { return url_; }
209 const std::string& client_hash() const { return client_hash_; } 115 const std::string& client_hash() const { return client_hash_; }
116 const std::string& domain() const { return domain_; }
117 const std::string& path() const { return path_; }
118 const base::Time& expiration() const { return expiration_; }
119 const std::set<int>& ports() const { return ports_; }
210 120
211 // Security method to check if we can advertise this dictionary for use 121 // Security method to check if we can advertise this dictionary for use
212 // if the |target_url| returns SDCH compressed data. 122 // if the |target_url| returns SDCH compressed data.
213 bool CanAdvertise(const GURL& target_url); 123 SdchProblemCode CanAdvertise(const GURL& target_url) const;
214 124
215 // Security methods to check if we can establish a new dictionary with the 125 // Security methods to check if we can establish a new dictionary with the
216 // given data, that arrived in response to get of dictionary_url. 126 // given data, that arrived in response to get of dictionary_url.
217 static bool CanSet(const std::string& domain, const std::string& path, 127 static SdchProblemCode CanSet(const std::string& domain,
218 const std::set<int>& ports, const GURL& dictionary_url); 128 const std::string& path,
129 const std::set<int>& ports,
130 const GURL& dictionary_url);
219 131
220 // Security method to check if we can use a dictionary to decompress a 132 // Security method to check if we can use a dictionary to decompress a
221 // target that arrived with a reference to this dictionary. 133 // target that arrived with a reference to this dictionary.
222 bool CanUse(const GURL& referring_url); 134 SdchProblemCode CanUse(const GURL& referring_url) const;
223 135
224 // Compare paths to see if they "match" for dictionary use. 136 // Compare paths to see if they "match" for dictionary use.
225 static bool PathMatch(const std::string& path, 137 static bool PathMatch(const std::string& path,
226 const std::string& restriction); 138 const std::string& restriction);
227 139
228 // Compare domains to see if the "match" for dictionary use. 140 // Compare domains to see if the "match" for dictionary use.
229 static bool DomainMatch(const GURL& url, const std::string& restriction); 141 static bool DomainMatch(const GURL& url, const std::string& restriction);
230 142
231
232 // The actual text of the dictionary. 143 // The actual text of the dictionary.
233 std::string text_; 144 std::string text_;
234 145
235 // Part of the hash of text_ that the client uses to advertise the fact that 146 // Part of the hash of text_ that the client uses to advertise the fact that
236 // it has a specific dictionary pre-cached. 147 // it has a specific dictionary pre-cached.
237 std::string client_hash_; 148 std::string client_hash_;
238 149
239 // The GURL that arrived with the text_ in a URL request to specify where 150 // The GURL that arrived with the text_ in a URL request to specify where
240 // this dictionary may be used. 151 // this dictionary may be used.
241 const GURL url_; 152 const GURL url_;
242 153
243 // Metadate "headers" in before dictionary text contained the following: 154 // Metadate "headers" in before dictionary text contained the following:
244 // Each dictionary payload consists of several headers, followed by the text 155 // Each dictionary payload consists of several headers, followed by the text
245 // of the dictionary. The following are the known headers. 156 // of the dictionary. The following are the known headers.
246 const std::string domain_; 157 const std::string domain_;
247 const std::string path_; 158 const std::string path_;
248 const base::Time expiration_; // Implied by max-age. 159 const base::Time expiration_; // Implied by max-age.
249 const std::set<int> ports_; 160 const std::set<int> ports_;
250 161
251 DISALLOW_COPY_AND_ASSIGN(Dictionary); 162 DISALLOW_COPY_AND_ASSIGN(Dictionary);
252 }; 163 };
253 164
254 SdchManager(); 165 SdchManager();
255 ~SdchManager() override; 166 ~SdchManager() override;
256 167
257 // Clear data (for browser data removal). 168 // Clear data (for browser data removal).
258 void ClearData(); 169 void ClearData();
259 170
260 // Record stats on various errors. 171 // Record stats on various errors.
261 static void SdchErrorRecovery(ProblemCodes problem); 172 static void SdchErrorRecovery(SdchProblemCode problem);
262 173
263 // Register a fetcher that this class can use to obtain dictionaries. 174 // Register a fetcher that this class can use to obtain dictionaries.
264 void set_sdch_fetcher(scoped_ptr<SdchFetcher> fetcher); 175 void set_sdch_fetcher(scoped_ptr<SdchFetcher> fetcher);
265 176
266 // Enables or disables SDCH compression. 177 // Enables or disables SDCH compression.
267 static void EnableSdchSupport(bool enabled); 178 static void EnableSdchSupport(bool enabled);
268 179
269 static bool sdch_enabled() { return g_sdch_enabled_; } 180 static bool sdch_enabled() { return g_sdch_enabled_; }
270 181
271 // Enables or disables SDCH compression over secure connection. 182 // Enables or disables SDCH compression over secure connection.
272 static void EnableSecureSchemeSupport(bool enabled); 183 static void EnableSecureSchemeSupport(bool enabled);
273 184
274 static bool secure_scheme_supported() { return g_secure_scheme_supported_; } 185 static bool secure_scheme_supported() { return g_secure_scheme_supported_; }
275 186
276 // Briefly prevent further advertising of SDCH on this domain (if SDCH is 187 // Briefly prevent further advertising of SDCH on this domain (if SDCH is
277 // enabled). After enough calls to IsInSupportedDomain() the blacklisting 188 // enabled). After enough calls to IsInSupportedDomain() the blacklisting
278 // will be removed. Additional blacklists take exponentially more calls 189 // will be removed. Additional blacklists take exponentially more calls
279 // to IsInSupportedDomain() before the blacklisting is undone. 190 // to IsInSupportedDomain() before the blacklisting is undone.
280 // Used when filter errors are found from a given domain, but it is plausible 191 // Used when filter errors are found from a given domain, but it is plausible
281 // that the cause is temporary (such as application startup, where cached 192 // that the cause is temporary (such as application startup, where cached
282 // entries are used, but a dictionary is not yet loaded). 193 // entries are used, but a dictionary is not yet loaded).
283 void BlacklistDomain(const GURL& url, ProblemCodes blacklist_reason); 194 void BlacklistDomain(const GURL& url, SdchProblemCode blacklist_reason);
284 195
285 // Used when SEVERE filter errors are found from a given domain, to prevent 196 // Used when SEVERE filter errors are found from a given domain, to prevent
286 // further use of SDCH on that domain. 197 // further use of SDCH on that domain.
287 void BlacklistDomainForever(const GURL& url, ProblemCodes blacklist_reason); 198 void BlacklistDomainForever(const GURL& url,
199 SdchProblemCode blacklist_reason);
288 200
289 // Unit test only, this function resets enabling of sdch, and clears the 201 // Unit test only, this function resets enabling of sdch, and clears the
290 // blacklist. 202 // blacklist.
291 void ClearBlacklistings(); 203 void ClearBlacklistings();
292 204
293 // Unit test only, this function resets the blacklisting count for a domain. 205 // Unit test only, this function resets the blacklisting count for a domain.
294 void ClearDomainBlacklisting(const std::string& domain); 206 void ClearDomainBlacklisting(const std::string& domain);
295 207
296 // Unit test only: indicate how many more times a domain will be blacklisted. 208 // Unit test only: indicate how many more times a domain will be blacklisted.
297 int BlackListDomainCount(const std::string& domain); 209 int BlackListDomainCount(const std::string& domain);
298 210
299 // Unit test only: Indicate what current blacklist increment is for a domain. 211 // Unit test only: Indicate what current blacklist increment is for a domain.
300 int BlacklistDomainExponential(const std::string& domain); 212 int BlacklistDomainExponential(const std::string& domain);
301 213
302 // Check to see if SDCH is enabled (globally), and the given URL is in a 214 // Check to see if SDCH is enabled (globally), and the given URL is in a
303 // supported domain (i.e., not blacklisted, and either the specific supported 215 // supported domain (i.e., not blacklisted, and either the specific supported
304 // domain, or all domains were assumed supported). If it is blacklist, reduce 216 // domain, or all domains were assumed supported). If it is blacklist, reduce
305 // by 1 the number of times it will be reported as blacklisted. 217 // by 1 the number of times it will be reported as blacklisted.
306 bool IsInSupportedDomain(const GURL& url); 218 SdchProblemCode IsInSupportedDomain(const GURL& url);
307 219
308 // Schedule the URL fetching to load a dictionary. This will always return 220 // Schedule the URL fetching to load a dictionary. This will always return
309 // before the dictionary is actually loaded and added. 221 // before the dictionary is actually loaded and added.
310 // After the implied task does completes, the dictionary will have been 222 // After the implied task does completes, the dictionary will have been
311 // cached in memory. 223 // cached in memory.
312 void FetchDictionary(const GURL& request_url, const GURL& dictionary_url); 224 SdchProblemCode FetchDictionary(const GURL& request_url,
225 const GURL& dictionary_url);
313 226
314 // Security test function used before initiating a FetchDictionary. 227 // Security test function used before initiating a FetchDictionary.
315 // Return true if fetch is legal. 228 // Return PROBLEM_CODE_OK if fetch is legal.
316 bool CanFetchDictionary(const GURL& referring_url, 229 SdchProblemCode CanFetchDictionary(const GURL& referring_url,
317 const GURL& dictionary_url) const; 230 const GURL& dictionary_url) const;
318 231
319 // Find the vcdiff dictionary (the body of the sdch dictionary that appears 232 // Find the vcdiff dictionary (the body of the sdch dictionary that appears
320 // after the meta-data headers like Domain:...) with the given |server_hash| 233 // after the meta-data headers like Domain:...) with the given |server_hash|
321 // to use to decompreses data that arrived as SDCH encoded content. Check to 234 // to use to decompreses data that arrived as SDCH encoded content. Check to
322 // be sure the returned |dictionary| can be used for decoding content supplied 235 // be sure the returned |dictionary| can be used for decoding content supplied
323 // in response to a request for |referring_url|. 236 // in response to a request for |referring_url|.
324 // Return null in |dictionary| if there is no matching legal dictionary. 237 // Return null in |dictionary| if there is no matching legal dictionary.
325 void GetVcdiffDictionary(const std::string& server_hash, 238 // Returns SDCH_OK if dictionary is not found, SDCH(-over-https) is disabled,
326 const GURL& referring_url, 239 // or if matching legal dictionary exists. Otherwise returns the
327 scoped_refptr<Dictionary>* dictionary); 240 // corresponding problem code.
Randy Smith (Not in Mondays) 2014/10/28 22:16:27 As I read the code, it only returns SDCH_OK if the
baranovich 2014/10/29 18:28:43 Done. Although code on the callsite changed a litt
241 SdchProblemCode GetVcdiffDictionary(const std::string& server_hash,
242 const GURL& referring_url,
243 scoped_refptr<Dictionary>* dictionary);
328 244
329 // Get list of available (pre-cached) dictionaries that we have already loaded 245 // Get list of available (pre-cached) dictionaries that we have already loaded
330 // into memory. The list is a comma separated list of (client) hashes per 246 // into memory. The list is a comma separated list of (client) hashes per
331 // the SDCH spec. 247 // the SDCH spec.
332 void GetAvailDictionaryList(const GURL& target_url, std::string* list); 248 void GetAvailDictionaryList(const GURL& target_url, std::string* list);
333 249
334 // Construct the pair of hashes for client and server to identify an SDCH 250 // Construct the pair of hashes for client and server to identify an SDCH
335 // dictionary. This is only made public to facilitate unit testing, but is 251 // dictionary. This is only made public to facilitate unit testing, but is
336 // otherwise private 252 // otherwise private
337 static void GenerateHash(const std::string& dictionary_text, 253 static void GenerateHash(const std::string& dictionary_text,
338 std::string* client_hash, std::string* server_hash); 254 std::string* client_hash, std::string* server_hash);
339 255
340 // For Latency testing only, we need to know if we've succeeded in doing a 256 // For Latency testing only, we need to know if we've succeeded in doing a
341 // round trip before starting our comparative tests. If ever we encounter 257 // round trip before starting our comparative tests. If ever we encounter
342 // problems with SDCH, we opt-out of the test unless/until we perform a 258 // problems with SDCH, we opt-out of the test unless/until we perform a
343 // complete SDCH decoding. 259 // complete SDCH decoding.
344 bool AllowLatencyExperiment(const GURL& url) const; 260 bool AllowLatencyExperiment(const GURL& url) const;
345 261
346 void SetAllowLatencyExperiment(const GURL& url, bool enable); 262 void SetAllowLatencyExperiment(const GURL& url, bool enable);
347 263
264 base::Value* SdchInfoToValue() const;
265
348 int GetFetchesCountForTesting() const { 266 int GetFetchesCountForTesting() const {
349 return fetches_count_for_testing_; 267 return fetches_count_for_testing_;
350 } 268 }
351 269
352 // Implementation of SdchFetcher::Delegate. 270 // Implementation of SdchFetcher::Delegate.
353 271
354 // Add an SDCH dictionary to our list of availible 272 // Add an SDCH dictionary to our list of availible
355 // dictionaries. This addition will fail if addition is illegal 273 // dictionaries. This addition will fail if addition is illegal
356 // (data in the dictionary is not acceptable from the 274 // (data in the dictionary is not acceptable from the
357 // dictionary_url; dictionary already added, etc.). 275 // dictionary_url; dictionary already added, etc.).
Randy Smith (Not in Mondays) 2014/10/28 22:16:27 Would you add a line indicating that SDCH_OK will
baranovich 2014/10/29 18:28:43 Done.
358 void AddSdchDictionary(const std::string& dictionary_text, 276 SdchProblemCode AddSdchDictionary(const std::string& dictionary_text,
359 const GURL& dictionary_url) override; 277 const GURL& dictionary_url) override;
360 278
361 private: 279 private:
362 struct BlacklistInfo { 280 struct BlacklistInfo {
363 BlacklistInfo() 281 BlacklistInfo() : count(0), exponential_count(0), reason(SDCH_OK) {}
364 : count(0),
365 exponential_count(0),
366 reason(MIN_PROBLEM_CODE) {}
367 282
368 int count; // # of times to refuse SDCH advertisement. 283 int count; // # of times to refuse SDCH advertisement.
369 int exponential_count; // Current exponential backoff ratchet. 284 int exponential_count; // Current exponential backoff ratchet.
370 ProblemCodes reason; // Why domain was blacklisted. 285 SdchProblemCode reason; // Why domain was blacklisted.
371
372 }; 286 };
373 typedef std::map<std::string, BlacklistInfo> DomainBlacklistInfo; 287 typedef std::map<std::string, BlacklistInfo> DomainBlacklistInfo;
374 typedef std::set<std::string> ExperimentSet; 288 typedef std::set<std::string> ExperimentSet;
375 289
376 // A map of dictionaries info indexed by the hash that the server provides. 290 // A map of dictionaries info indexed by the hash that the server provides.
377 typedef std::map<std::string, scoped_refptr<Dictionary> > DictionaryMap; 291 typedef std::map<std::string, scoped_refptr<Dictionary> > DictionaryMap;
378 292
379 // Support SDCH compression, by advertising in headers. 293 // Support SDCH compression, by advertising in headers.
380 static bool g_sdch_enabled_; 294 static bool g_sdch_enabled_;
381 295
382 // Support SDCH compression for HTTPS requests and responses. When supported, 296 // Support SDCH compression for HTTPS requests and responses. When supported,
383 // HTTPS applicable dictionaries MUST have been acquired securely via HTTPS. 297 // HTTPS applicable dictionaries MUST have been acquired securely via HTTPS.
384 static bool g_secure_scheme_supported_; 298 static bool g_secure_scheme_supported_;
385 299
386 // A simple implementation of a RFC 3548 "URL safe" base64 encoder. 300 // A simple implementation of a RFC 3548 "URL safe" base64 encoder.
387 static void UrlSafeBase64Encode(const std::string& input, 301 static void UrlSafeBase64Encode(const std::string& input,
388 std::string* output); 302 std::string* output);
303
389 DictionaryMap dictionaries_; 304 DictionaryMap dictionaries_;
390 305
391 // An instance that can fetch a dictionary given a URL. 306 // An instance that can fetch a dictionary given a URL.
392 scoped_ptr<SdchFetcher> fetcher_; 307 scoped_ptr<SdchFetcher> fetcher_;
393 308
394 // List domains where decode failures have required disabling sdch. 309 // List domains where decode failures have required disabling sdch.
395 DomainBlacklistInfo blacklisted_domains_; 310 DomainBlacklistInfo blacklisted_domains_;
396 311
397 // List of hostnames for which a latency experiment is allowed (because a 312 // List of hostnames for which a latency experiment is allowed (because a
398 // round trip test has recently passed). 313 // round trip test has recently passed).
399 ExperimentSet allow_latency_experiment_; 314 ExperimentSet allow_latency_experiment_;
400 315
401 int fetches_count_for_testing_; 316 int fetches_count_for_testing_;
402 317
403 DISALLOW_COPY_AND_ASSIGN(SdchManager); 318 DISALLOW_COPY_AND_ASSIGN(SdchManager);
404 }; 319 };
405 320
406 } // namespace net 321 } // namespace net
407 322
408 #endif // NET_BASE_SDCH_MANAGER_H_ 323 #endif // NET_BASE_SDCH_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698