OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITIO N_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITIO N_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITIO N_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITIO N_H_ |
7 | 7 |
8 #include <set> | |
8 #include <string> | 9 #include <string> |
9 #include <vector> | 10 #include <vector> |
10 | 11 |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
13 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_condit ion_attribute.h" | 14 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_condit ion_attribute.h" |
14 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_rule.h " | 15 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_rule.h " |
15 #include "chrome/common/extensions/matcher/url_matcher.h" | 16 #include "chrome/common/extensions/matcher/url_matcher.h" |
16 | 17 |
17 namespace extensions { | 18 namespace extensions { |
(...skipping 26 matching lines...) Expand all Loading... | |
44 // the description |condition| passed by the extension API. | 45 // the description |condition| passed by the extension API. |
45 static scoped_ptr<WebRequestCondition> Create( | 46 static scoped_ptr<WebRequestCondition> Create( |
46 URLMatcherConditionFactory* url_matcher_condition_factory, | 47 URLMatcherConditionFactory* url_matcher_condition_factory, |
47 const base::Value& condition, | 48 const base::Value& condition, |
48 std::string* error); | 49 std::string* error); |
49 | 50 |
50 // Returns whether the request is a match, given that the URLMatcher found | 51 // Returns whether the request is a match, given that the URLMatcher found |
51 // a match for |url_matcher_conditions_|. | 52 // a match for |url_matcher_conditions_|. |
52 bool IsFulfilled(const WebRequestRule::RequestData& request_data) const; | 53 bool IsFulfilled(const WebRequestRule::RequestData& request_data) const; |
53 | 54 |
55 // Returns true iff the request is a match and no condition attribute of this | |
56 // condition is a UrlFilter. | |
57 bool IsFulfilledIndependentlyOfURL( | |
58 const WebRequestRule::RequestData& request_data) const; | |
59 | |
54 // Returns a URLMatcherConditionSet::ID which is the canonical representation | 60 // Returns a URLMatcherConditionSet::ID which is the canonical representation |
55 // for all URL patterns that need to be matched by this WebRequestCondition. | 61 // for all URL patterns that need to be matched by this WebRequestCondition. |
56 // This ID is registered in a URLMatcher that can inform us in case of a | 62 // This ID is registered in a URLMatcher that can inform us in case of a |
57 // match. | 63 // match. |
58 URLMatcherConditionSet::ID url_matcher_condition_set_id() const { | 64 URLMatcherConditionSet::ID url_matcher_condition_set_id() const { |
65 DCHECK(url_matcher_conditions_.get()); | |
59 return url_matcher_conditions_->id(); | 66 return url_matcher_conditions_->id(); |
60 } | 67 } |
61 | 68 |
62 // Returns the set of conditions that are checked on the URL. This is the | 69 // Returns the set of conditions that are checked on the URL. This is the |
63 // primary trigger for WebRequestCondition and therefore never empty. | 70 // primary trigger for WebRequestCondition and therefore never empty. |
64 // (If it was empty, the URLMatcher would never notify us about network | 71 // (If it was empty, the URLMatcher would never notify us about network |
65 // requests which might fulfill the entire WebRequestCondition). | 72 // requests which might fulfill the entire WebRequestCondition). |
66 scoped_refptr<URLMatcherConditionSet> url_matcher_condition_set() const { | 73 scoped_refptr<URLMatcherConditionSet> url_matcher_condition_set() const { |
67 return url_matcher_conditions_; | 74 return url_matcher_conditions_; |
68 } | 75 } |
69 | 76 |
70 // Returns the condition attributes checked by this condition. | 77 // Returns the condition attributes checked by this condition. |
71 const WebRequestConditionAttributes condition_attributes() const { | 78 const WebRequestConditionAttributes condition_attributes() const { |
72 return condition_attributes_; | 79 return condition_attributes_; |
73 } | 80 } |
74 | 81 |
75 // Returns a bit vector representing extensions::RequestStage. The bit vector | 82 // Returns a bit vector representing extensions::RequestStage. The bit vector |
76 // contains a 1 for each request stage during which the condition can be | 83 // contains a 1 for each request stage during which the condition can be |
77 // tested. | 84 // tested. |
78 int stages() const { return applicable_request_stages_; } | 85 int stages() const { return applicable_request_stages_; } |
79 | 86 |
80 private: | 87 private: |
88 // The 'url' attribute of this condition. If NULL then there was no 'url' | |
Jeffrey Yasskin
2012/12/18 21:56:02
I'd say "Represents the 'url' attribute ..."
vabr (Chromium)
2012/12/19 08:38:19
Done.
| |
89 // attribute in this condition. | |
81 scoped_refptr<URLMatcherConditionSet> url_matcher_conditions_; | 90 scoped_refptr<URLMatcherConditionSet> url_matcher_conditions_; |
91 | |
92 // All non-UrlFilter attributes of this condition. | |
82 WebRequestConditionAttributes condition_attributes_; | 93 WebRequestConditionAttributes condition_attributes_; |
83 | 94 |
84 // Bit vector indicating all RequestStage during which all | 95 // Bit vector indicating all RequestStage during which all |
85 // |condition_attributes_| can be evaluated. | 96 // |condition_attributes_| can be evaluated. |
86 int applicable_request_stages_; | 97 int applicable_request_stages_; |
87 | 98 |
88 DISALLOW_COPY_AND_ASSIGN(WebRequestCondition); | 99 DISALLOW_COPY_AND_ASSIGN(WebRequestCondition); |
89 }; | 100 }; |
90 | 101 |
91 // This class stores a set of conditions that may be part of a WebRequestRule. | 102 // This class stores a set of conditions that may be part of a WebRequestRule. |
(...skipping 12 matching lines...) Expand all Loading... | |
104 // Sets |error| and returns NULL in case of an error. | 115 // Sets |error| and returns NULL in case of an error. |
105 static scoped_ptr<WebRequestConditionSet> Create( | 116 static scoped_ptr<WebRequestConditionSet> Create( |
106 URLMatcherConditionFactory* url_matcher_condition_factory, | 117 URLMatcherConditionFactory* url_matcher_condition_factory, |
107 const AnyVector& conditions, | 118 const AnyVector& conditions, |
108 std::string* error); | 119 std::string* error); |
109 | 120 |
110 const Conditions& conditions() const { | 121 const Conditions& conditions() const { |
111 return conditions_; | 122 return conditions_; |
112 } | 123 } |
113 | 124 |
114 // Returns whether any condition in the condition set is fulfilled | 125 // Returns whether any condition in the condition set is fulfilled. Filters |
115 // based on a match |url_match| and the value of |request_data.request|. | 126 // out conditions which have UrlFilter attributes but are not listed in |
116 // This function should be called for each URLMatcherConditionSet::ID | 127 // |url_matches|, and tests the rest against |request_data.request|. |
117 // that was found by the URLMatcher to ensure that the each trigger in | |
118 // |match_triggers_| is found. | |
119 bool IsFulfilled( | 128 bool IsFulfilled( |
120 URLMatcherConditionSet::ID url_match, | 129 const std::set<URLMatcherConditionSet::ID>& url_matches, |
121 const WebRequestRule::RequestData& request_data) const; | 130 const WebRequestRule::RequestData& request_data) const; |
122 | 131 |
123 // Appends the URLMatcherConditionSet from all conditions to |condition_sets|. | 132 // Appends the URLMatcherConditionSet from all conditions to |condition_sets|. |
124 void GetURLMatcherConditionSets( | 133 void GetURLMatcherConditionSets( |
125 URLMatcherConditionSet::Vector* condition_sets) const; | 134 URLMatcherConditionSet::Vector* condition_sets) const; |
126 | 135 |
136 // Returns whether there are some conditions without UrlFilter attributes. | |
137 bool has_conditions_without_urls() const { | |
138 return has_conditions_without_urls_; | |
139 } | |
140 | |
127 private: | 141 private: |
128 Conditions conditions_; | 142 const Conditions conditions_; |
129 | 143 const bool has_conditions_without_urls_; |
130 typedef std::map<URLMatcherConditionSet::ID, WebRequestCondition*> | |
131 MatchTriggers; | |
vabr (Chromium)
2012/12/18 18:26:42
With refactoring the IsFulfilled() method, trigger
| |
132 MatchTriggers match_triggers_; | |
133 | 144 |
134 DISALLOW_COPY_AND_ASSIGN(WebRequestConditionSet); | 145 DISALLOW_COPY_AND_ASSIGN(WebRequestConditionSet); |
135 }; | 146 }; |
136 | 147 |
137 } // namespace extensions | 148 } // namespace extensions |
138 | 149 |
139 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDI TION_H_ | 150 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDI TION_H_ |
OLD | NEW |