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

Unified Diff: components/subresource_filter/core/common/url_pattern.h

Issue 2793993002: [subresource_filter] Replace KMP by std::search. (Closed)
Patch Set: Fix tests. Created 3 years, 8 months 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 side-by-side diff with in-line comments
Download patch
Index: components/subresource_filter/core/common/url_pattern.h
diff --git a/components/subresource_filter/core/common/url_pattern.h b/components/subresource_filter/core/common/url_pattern.h
index f49b5ea610bbaa26a9bfeb98187a23762cdc9f1c..559a0b7ac45408fa10db4f3ff3c5e477c5d6015b 100644
--- a/components/subresource_filter/core/common/url_pattern.h
+++ b/components/subresource_filter/core/common/url_pattern.h
@@ -5,10 +5,14 @@
#ifndef COMPONENTS_SUBRESOURCE_FILTER_CORE_COMMON_URL_PATTERN_H_
#define COMPONENTS_SUBRESOURCE_FILTER_CORE_COMMON_URL_PATTERN_H_
+#include <iosfwd>
+
#include "base/macros.h"
#include "base/strings/string_piece.h"
#include "components/subresource_filter/core/common/proto/rules.pb.h"
+class GURL;
+
namespace subresource_filter {
namespace flat {
@@ -17,7 +21,8 @@ struct UrlRule; // The FlatBuffers version of UrlRule.
// The structure used to mirror a URL pattern regardless of the representation
// of the UrlRule that owns it.
-struct UrlPattern {
+class UrlPattern {
+ public:
UrlPattern();
// Creates a |url_pattern| of a certain |type|.
@@ -36,18 +41,35 @@ struct UrlPattern {
~UrlPattern();
- proto::UrlPatternType type = proto::URL_PATTERN_TYPE_UNSPECIFIED;
- base::StringPiece url_pattern;
+ proto::UrlPatternType type() const { return type_; }
+ base::StringPiece url_pattern() const { return url_pattern_; }
+ proto::AnchorType anchor_left() const { return anchor_left_; }
+ proto::AnchorType anchor_right() const { return anchor_right_; }
+ bool match_case() const { return match_case_; }
+
+ // Returns whether the |url| matches the URL |pattern|. Requires the type of
+ // |this| pattern to be either SUBSTRING or WILDCARDED.
+ // TODO(pkalinnikov): Outline algorithms implemented in this method.
+ bool MatchesUrl(const GURL& url) const;
- proto::AnchorType anchor_left = proto::ANCHOR_TYPE_NONE;
- proto::AnchorType anchor_right = proto::ANCHOR_TYPE_NONE;
+ private:
+ // TODO(pkalinnikov): Store flat:: types instead of proto::, in order to avoid
+ // convertions in IndexedRuleset.
+ proto::UrlPatternType type_ = proto::URL_PATTERN_TYPE_UNSPECIFIED;
+ base::StringPiece url_pattern_;
+
+ proto::AnchorType anchor_left_ = proto::ANCHOR_TYPE_NONE;
+ proto::AnchorType anchor_right_ = proto::ANCHOR_TYPE_NONE;
- bool match_case = false;
+ bool match_case_ = false;
private:
Charlie Harrison 2017/04/04 13:58:26 Not needed
pkalinnikov 2017/04/04 16:42:59 Done.
DISALLOW_COPY_AND_ASSIGN(UrlPattern);
};
+// Stream operator so UrlPattern can be used in testing assertions.
+std::ostream& operator<<(std::ostream& out, const UrlPattern& pattern);
+
} // namespace subresource_filter
#endif // COMPONENTS_SUBRESOURCE_FILTER_CORE_COMMON_URL_PATTERN_H_

Powered by Google App Engine
This is Rietveld 408576698