OLD | NEW |
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-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 Subscription(JsValuePtr value); | 62 Subscription(JsValuePtr value); |
63 }; | 63 }; |
64 | 64 |
65 typedef std::tr1::shared_ptr<Filter> FilterPtr; | 65 typedef std::tr1::shared_ptr<Filter> FilterPtr; |
66 typedef std::tr1::shared_ptr<Subscription> SubscriptionPtr; | 66 typedef std::tr1::shared_ptr<Subscription> SubscriptionPtr; |
67 | 67 |
68 class FilterEngine | 68 class FilterEngine |
69 { | 69 { |
70 public: | 70 public: |
71 typedef std::tr1::function<void(const std::string&)> UpdaterCallback; | 71 typedef std::tr1::function<void(const std::string&)> UpdaterCallback; |
| 72 typedef std::tr1::function<void(const std::string&, const std::string&)> Fil
terChangeCallback; |
72 | 73 |
73 explicit FilterEngine(JsEnginePtr jsEngine); | 74 explicit FilterEngine(JsEnginePtr jsEngine); |
74 JsEnginePtr GetJsEngine() const { return jsEngine; } | 75 JsEnginePtr GetJsEngine() const { return jsEngine; } |
75 bool IsFirstRun() const; | 76 bool IsFirstRun() const; |
76 FilterPtr GetFilter(const std::string& text); | 77 FilterPtr GetFilter(const std::string& text); |
77 SubscriptionPtr GetSubscription(const std::string& url); | 78 SubscriptionPtr GetSubscription(const std::string& url); |
78 std::vector<FilterPtr> GetListedFilters() const; | 79 std::vector<FilterPtr> GetListedFilters() const; |
79 std::vector<SubscriptionPtr> GetListedSubscriptions() const; | 80 std::vector<SubscriptionPtr> GetListedSubscriptions() const; |
80 std::vector<SubscriptionPtr> FetchAvailableSubscriptions() const; | 81 std::vector<SubscriptionPtr> FetchAvailableSubscriptions() const; |
81 FilterPtr Matches(const std::string& url, | 82 FilterPtr Matches(const std::string& url, |
82 const std::string& contentType, | 83 const std::string& contentType, |
83 const std::string& documentUrl) const; | 84 const std::string& documentUrl) const; |
84 std::vector<std::string> GetElementHidingSelectors(const std::string& domain
) const; | 85 std::vector<std::string> GetElementHidingSelectors(const std::string& domain
) const; |
85 JsValuePtr GetPref(const std::string& pref) const; | 86 JsValuePtr GetPref(const std::string& pref) const; |
86 void SetPref(const std::string& pref, JsValuePtr value); | 87 void SetPref(const std::string& pref, JsValuePtr value); |
87 void ForceUpdateCheck(UpdaterCallback callback = 0); | 88 void ForceUpdateCheck(UpdaterCallback callback = 0); |
| 89 void SetFilterChangeCallback(FilterChangeCallback callback); |
| 90 void RemoveFilterChangeCallback(); |
88 | 91 |
89 private: | 92 private: |
90 JsEnginePtr jsEngine; | 93 JsEnginePtr jsEngine; |
91 bool initialized; | 94 bool initialized; |
92 bool firstRun; | 95 bool firstRun; |
93 int updateCheckId; | 96 int updateCheckId; |
94 | 97 |
95 void InitDone(JsValueList& params); | 98 void InitDone(JsValueList& params); |
96 void UpdateCheckDone(const std::string& eventName, UpdaterCallback callback,
JsValueList& params); | 99 void UpdateCheckDone(const std::string& eventName, UpdaterCallback callback,
JsValueList& params); |
| 100 void FilterChanged(const std::string& eventName, FilterChangeCallback callba
ck, JsValueList& params); |
97 }; | 101 }; |
98 } | 102 } |
99 | 103 |
100 #endif | 104 #endif |
OLD | NEW |