LEFT | RIGHT |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-present 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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 #pragma once | 18 #pragma once |
19 | 19 |
20 #include <emscripten.h> | |
21 | |
22 #include "Subscription.h" | 20 #include "Subscription.h" |
23 #include "../filter/Filter.h" | 21 #include "../filter/Filter.h" |
| 22 #include "../bindings/runtime.h" |
24 | 23 |
25 class UserDefinedSubscription : public Subscription | 24 class UserDefinedSubscription : public Subscription |
26 { | 25 { |
27 private: | 26 private: |
28 int mDefaults; | 27 int mDefaults; |
29 | 28 |
30 public: | 29 public: |
31 explicit UserDefinedSubscription(const String& id); | 30 explicit UserDefinedSubscription(const String& id); |
32 EMSCRIPTEN_KEEPALIVE bool IsDefaultFor(const Filter* filter) const; | 31 BINDINGS_EXPORTED bool IsDefaultFor(const Filter* filter) const; |
33 EMSCRIPTEN_KEEPALIVE void MakeDefaultFor(const Filter* filter); | 32 BINDINGS_EXPORTED void MakeDefaultFor(const Filter* filter); |
34 EMSCRIPTEN_KEEPALIVE bool IsGeneric() const | 33 BINDINGS_EXPORTED bool IsGeneric() const |
35 { | 34 { |
36 return mDefaults == 0; | 35 return mDefaults == 0; |
37 } | 36 } |
38 EMSCRIPTEN_KEEPALIVE void InsertFilterAt(Filter* filter, unsigned pos); | 37 BINDINGS_EXPORTED void InsertFilterAt(Filter* filter, unsigned pos); |
39 EMSCRIPTEN_KEEPALIVE bool RemoveFilterAt(unsigned pos); | 38 BINDINGS_EXPORTED bool RemoveFilterAt(unsigned pos); |
40 EMSCRIPTEN_KEEPALIVE OwnedString Serialize() const; | 39 BINDINGS_EXPORTED OwnedString Serialize() const; |
41 }; | 40 }; |
42 | 41 |
43 template<> | 42 template<> |
44 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() | 43 inline UserDefinedSubscription* Subscription::As<UserDefinedSubscription>() |
45 { | 44 { |
46 if (mType != Type::USERDEFINED) | 45 if (mType != Type::USERDEFINED) |
47 return nullptr; | 46 return nullptr; |
48 | 47 |
49 return static_cast<UserDefinedSubscription*>(this); | 48 return static_cast<UserDefinedSubscription*>(this); |
50 } | 49 } |
LEFT | RIGHT |