| LEFT | RIGHT |
| 1 #ifndef ADBLOCK_PLUS_ACTIVE_FILTER_H | 1 #pragma once |
| 2 #define ADBLOCK_PLUS_ACTIVE_FILTER_H | |
| 3 | 2 |
| 4 #include <string> | 3 #include <emscripten.h> |
| 5 #include <unordered_map> | |
| 6 #include <unordered_set> | |
| 7 | 4 |
| 8 #include "Filter.h" | 5 #include "Filter.h" |
| 9 #include "api.h" | 6 #include "StringMap.h" |
| 7 |
| 8 #define FILTER_PROPERTY(type, name, getter, setter) \ |
| 9 private:\ |
| 10 type name;\ |
| 11 public:\ |
| 12 type EMSCRIPTEN_KEEPALIVE getter() const\ |
| 13 {\ |
| 14 return name;\ |
| 15 }\ |
| 16 void EMSCRIPTEN_KEEPALIVE setter(type value)\ |
| 17 {\ |
| 18 if (name != value)\ |
| 19 {\ |
| 20 type oldvalue = name;\ |
| 21 name = value;\ |
| 22 DependentString action(u"filter."_str #name);\ |
| 23 EM_ASM_ARGS({\ |
| 24 var filter = new (exports[Filter_mapping[$2]])($1);\ |
| 25 FilterNotifier.triggerListeners(readString($0), filter, $3, $4);\ |
| 26 }, &action, this, mType, value, oldvalue);\ |
| 27 }\ |
| 28 } |
| 10 | 29 |
| 11 class ActiveFilter : public Filter | 30 class ActiveFilter : public Filter |
| 12 { | 31 { |
| 32 protected: |
| 33 typedef StringMap<bool> DomainMap; |
| 34 typedef StringSet SitekeySet; |
| 35 void ParseDomains(const String& domains, String::value_type separator) const; |
| 36 void AddSitekey(const String& sitekey) const; |
| 37 virtual DomainMap* GetDomains() const; |
| 38 virtual SitekeySet* GetSitekeys() const; |
| 39 mutable std::unique_ptr<DomainMap> mDomains; |
| 40 mutable std::unique_ptr<SitekeySet> mSitekeys; |
| 13 private: | 41 private: |
| 14 bool ignoreTrailingDot; | 42 bool mIgnoreTrailingDot; |
| 15 protected: | |
| 16 std::unordered_map<std::u16string,bool> domains; | |
| 17 std::unordered_set<std::u16string> sitekeys; | |
| 18 void ParseDomains(const std::u16string& str, char16_t separator); | |
| 19 public: | 43 public: |
| 20 explicit ActiveFilter(const std::u16string& text, | 44 explicit ActiveFilter(Type type, const String& text, bool ignoreTrailingDot); |
| 21 bool ignoreTrailingDot); | 45 FILTER_PROPERTY(bool, mDisabled, GetDisabled, SetDisabled); |
| 22 FILTER_PROPERTY(bool, disabled, GetDisabled, SetDisabled); | 46 FILTER_PROPERTY(unsigned int, mHitCount, GetHitCount, SetHitCount); |
| 23 FILTER_PROPERTY(unsigned int, hitCount, GetHitCount, SetHitCount); | 47 FILTER_PROPERTY(unsigned int, mLastHit, GetLastHit, SetLastHit); |
| 24 FILTER_PROPERTY(unsigned int, lastHit, GetLastHit, SetLastHit); | 48 bool EMSCRIPTEN_KEEPALIVE IsActiveOnDomain(DependentString& docDomain, |
| 25 bool IsActiveOnDomain(const std::u16string& docDomain, | 49 const String& sitekey) const; |
| 26 const std::u16string& sitekey); | 50 bool EMSCRIPTEN_KEEPALIVE IsActiveOnlyOnDomain(DependentString& docDomain) con
st; |
| 27 bool IsActiveOnlyOnDomain(const std::u16string& docDomain); | 51 bool EMSCRIPTEN_KEEPALIVE IsGeneric() const; |
| 28 bool IsGeneric(); | 52 OwnedString EMSCRIPTEN_KEEPALIVE Serialize() const; |
| 29 const std::u16string Serialize(); | |
| 30 }; | 53 }; |
| 31 | |
| 32 #endif | |
| LEFT | RIGHT |