Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 16 matching lines...) Expand all Loading... | |
27 namespace AdblockPlus | 27 namespace AdblockPlus |
28 { | 28 { |
29 /** | 29 /** |
30 * Stores a mapping between URLs and their referrers. | 30 * Stores a mapping between URLs and their referrers. |
31 * This can be used to build a frame structure for any URL | 31 * This can be used to build a frame structure for any URL |
32 * (see `BuildFrameStructure()`), it's useful for FilterEngine::Matches(). | 32 * (see `BuildFrameStructure()`), it's useful for FilterEngine::Matches(). |
33 */ | 33 */ |
34 class ReferrerMapping | 34 class ReferrerMapping |
35 { | 35 { |
36 public: | 36 public: |
37 /// The type for URL. | |
38 typedef std::string Url; | |
39 | |
40 /// Contains an ordered list of URLs. | |
41 typedef std::vector<Url> Urls; | |
42 | |
43 /// Indicates whether the URL is a frame or not. | |
44 enum FrameIndicator | |
45 { | |
46 FRAME_INDICATOR_NOT_FRAME = 0, FRAME_INDICATOR_FRAME = 1 | |
47 }; | |
37 /** | 48 /** |
38 * Constructor. | 49 * Constructor. |
39 * @param maxCachedUrls Number of URL mappings to store. The higher the | 50 * @param maxCachedUrls Number of URL mappings to store. The higher the |
40 * better - clients typically cache requests, and a single cached | 51 * better - clients typically cache requests, and a single cached |
41 * request will break the referrer chain. | 52 * request will break the referrer chain. |
42 */ | 53 */ |
43 ReferrerMapping(const int maxCachedUrls = 5000); | 54 ReferrerMapping(const int maxCachedUrls = 5000); |
44 | 55 |
45 /** | 56 /** |
46 * Records the refferer for a URL. | 57 * Records the refferer for a URL. |
47 * @param url Request URL. | 58 * @param url Request URL. |
48 * @param referrer Request referrer. | 59 * @param referrer Request referrer. |
49 * @param requestType Request type. | 60 * @param isFrame Indicates whether the url is a frame. |
50 */ | 61 */ |
51 void Add(const std::string& url, const std::string& referrer, | 62 void Add(const Url& url, const Url& referrer, FrameIndicator isFrame); |
52 FilterEngine::ContentType requestType); | |
53 | 63 |
54 /** | 64 /** |
55 * Builds a frame structure for the supplied URL. | 65 * Builds a frame structure for the supplied URL. |
56 * This should reconstruct a document's parent frame URLs. | 66 * This should reconstruct a document's parent frame URLs. |
57 * @param url URL to build the chain for. | 67 * @param url URL to build the chain for, it is referrer as well. |
58 * @return List of URLs, finishing with `url`. | 68 * @return List of URLs, finishing with `url`. |
59 */ | 69 */ |
60 std::vector<std::string> BuildFrameStructure(const std::string& url) const; | 70 Urls BuildFrameStructure(const Url& url) const; |
61 | 71 |
62 private: | 72 private: |
63 const int maxCachedUrls; | 73 const int maxCachedUrls; |
64 struct RequestInfo | 74 struct RequestInfo |
65 { | 75 { |
66 RequestInfo(const std::string& referrerArg, FilterEngine::ContentType type Arg) | 76 explicit RequestInfo(const Url& referrerArg = Url(), |
67 : referrer(referrerArg) , type(typeArg) | 77 FrameIndicator frameIndicatorArg = FrameIndicator::FRAME_INDICATOR_NOT_F RAME) |
78 : referrer(referrerArg), frameIndicator(frameIndicatorArg) | |
68 { | 79 { |
69 } | 80 } |
70 std::string referrer; | 81 bool IsFrame() const |
71 FilterEngine::ContentType type; | 82 { |
Wladimir Palant
2014/11/25 15:46:37
It is unnecessary to store the actual type here -
sergei
2014/11/26 10:34:43
I would use `isFrame` because it's not necessary t
| |
83 return frameIndicator == FrameIndicator::FRAME_INDICATOR_FRAME; | |
84 } | |
85 Url referrer; | |
86 FrameIndicator frameIndicator; | |
72 }; | 87 }; |
73 std::map</*url*/std::string, RequestInfo> mapping; | 88 typedef std::map<Url, RequestInfo> ReferrerMap; |
Wladimir Palant
2014/11/25 15:46:37
How about |using URL = std::string| so that you ca
sergei
2014/11/26 10:34:43
Added typedef for `Url` and `Urls`.
| |
74 std::list<std::string> cachedUrls; | 89 ReferrerMap mapping; |
90 std::list<Url> cachedUrls; | |
75 }; | 91 }; |
76 } | 92 } |
77 | 93 |
78 #endif | 94 #endif |
LEFT | RIGHT |