Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 #pragma once | 1 #pragma once |
2 | 2 |
3 #include "Filter.h" | 3 #include "Filter.h" |
4 #include "ActiveFilter.h" | 4 #include "ActiveFilter.h" |
5 | 5 |
6 enum class TrippleState {YES, NO, ANY}; | 6 enum class TrippleState {YES, NO, ANY}; |
7 | 7 |
8 struct RegExpFilterData | 8 struct RegExpFilterData |
9 { | 9 { |
10 mutable String::size_type mPatternStart; | 10 mutable String::size_type mPatternStart; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
67 { | 67 { |
68 mSitekeysStart = String::npos; | 68 mSitekeysStart = String::npos; |
69 } | 69 } |
70 | 70 |
71 const DependentString GetSitekeysSource(const String& text) const | 71 const DependentString GetSitekeysSource(const String& text) const |
72 { | 72 { |
73 return DependentString(text, mSitekeysStart, mSitekeysEnd - mSitekeysStart); | 73 return DependentString(text, mSitekeysStart, mSitekeysEnd - mSitekeysStart); |
74 } | 74 } |
75 }; | 75 }; |
76 | 76 |
77 class RegExpFilter : public ActiveFilter, protected RegExpFilterData | 77 class RegExpFilter : public ActiveFilter |
sergei
2016/06/16 21:16:39
It seems RegExpFilterData should be a member inste
Wladimir Palant
2016/12/06 10:47:29
Done.
| |
78 { | 78 { |
79 private: | 79 private: |
80 void ParseSitekeys(const String& sitekeys) const; | 80 void ParseSitekeys(const String& sitekeys) const; |
81 | 81 |
82 protected: | 82 protected: |
83 RegExpFilterData mData; | |
84 | |
83 DomainMap* GetDomains() const override; | 85 DomainMap* GetDomains() const override; |
84 SitekeySet* GetSitekeys() const override; | 86 SitekeySet* GetSitekeys() const override; |
85 public: | 87 public: |
86 RegExpFilter(const String& text, const RegExpFilterData& data); | 88 explicit RegExpFilter(Type type, const String& text, const RegExpFilterData& d ata); |
87 ~RegExpFilter(); | 89 ~RegExpFilter(); |
88 static Type Parse(DependentString& text, DependentString& error, | 90 static Type Parse(DependentString& text, DependentString& error, |
89 RegExpFilterData& data); | 91 RegExpFilterData& data); |
90 EMSCRIPTEN_KEEPALIVE static void InitJSTypes(); | 92 EMSCRIPTEN_KEEPALIVE static void InitJSTypes(); |
91 static OwnedString RegExpFromSource(const String& source); | 93 static OwnedString RegExpFromSource(const String& source); |
92 EMSCRIPTEN_KEEPALIVE bool Matches(const String& location, int typeMask, | 94 EMSCRIPTEN_KEEPALIVE bool Matches(const String& location, int typeMask, |
93 DependentString& docDomain, bool thirdParty, const String& sitekey) const; | 95 DependentString& docDomain, bool thirdParty, const String& sitekey) const; |
94 }; | 96 }; |
LEFT | RIGHT |