OLD | NEW |
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-present 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 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "../base.h" | 22 #include "../base.h" |
23 #include "Subscription.h" | 23 #include "Subscription.h" |
24 #include "../bindings/runtime.h" | 24 #include "../bindings/runtime.h" |
25 | 25 |
26 ABP_NS_BEGIN | 26 ABP_NS_BEGIN |
27 | 27 |
28 class DownloadableSubscription : public Subscription | 28 class DownloadableSubscription : public Subscription |
29 { | 29 { |
30 public: | 30 public: |
31 static constexpr Type classType = Type::DOWNLOADABLE; | 31 static constexpr Type classType = Type::DOWNLOADABLE; |
32 explicit DownloadableSubscription(const String& id); | 32 explicit DownloadableSubscription(const String& id, const KeyValues& propertie
s); |
33 | 33 |
34 SUBSCRIPTION_PROPERTY(bool, mFixedTitle, SUBSCRIPTION_FIXEDTITLE, | 34 SUBSCRIPTION_PROPERTY(bool, mFixedTitle, SUBSCRIPTION_FIXEDTITLE, |
35 GetFixedTitle, SetFixedTitle); | 35 GetFixedTitle, SetFixedTitle); |
36 SUBSCRIPTION_STRING_PROPERTY(mHomepage, SUBSCRIPTION_HOMEPAGE, | 36 SUBSCRIPTION_STRING_PROPERTY(mHomepage, SUBSCRIPTION_HOMEPAGE, |
37 GetHomepage, SetHomepage); | 37 GetHomepage, SetHomepage); |
38 SUBSCRIPTION_PROPERTY(uint64_t, mLastCheck, SUBSCRIPTION_LASTCHECK, | 38 SUBSCRIPTION_PROPERTY(uint64_t, mLastCheck, SUBSCRIPTION_LASTCHECK, |
39 GetLastCheck, SetLastCheck); | 39 GetLastCheck, SetLastCheck); |
40 SUBSCRIPTION_PROPERTY(uint64_t, mHardExpiration, NONE, | 40 SUBSCRIPTION_PROPERTY(uint64_t, mHardExpiration, NONE, |
41 GetHardExpiration, SetHardExpiration); | 41 GetHardExpiration, SetHardExpiration); |
42 SUBSCRIPTION_PROPERTY(uint64_t, mSoftExpiration, NONE, | 42 SUBSCRIPTION_PROPERTY(uint64_t, mSoftExpiration, NONE, |
43 GetSoftExpiration, SetSoftExpiration); | 43 GetSoftExpiration, SetSoftExpiration); |
44 SUBSCRIPTION_PROPERTY(uint64_t, mLastDownload, SUBSCRIPTION_LASTDOWNLOAD, | 44 SUBSCRIPTION_PROPERTY(uint64_t, mLastDownload, SUBSCRIPTION_LASTDOWNLOAD, |
45 GetLastDownload, SetLastDownload); | 45 GetLastDownload, SetLastDownload); |
46 SUBSCRIPTION_STRING_PROPERTY(mDownloadStatus, SUBSCRIPTION_DOWNLOADSTATUS, | 46 SUBSCRIPTION_STRING_PROPERTY(mDownloadStatus, SUBSCRIPTION_DOWNLOADSTATUS, |
47 GetDownloadStatus, SetDownloadStatus); | 47 GetDownloadStatus, SetDownloadStatus); |
48 SUBSCRIPTION_PROPERTY(uint64_t, mLastSuccess, NONE, | 48 SUBSCRIPTION_PROPERTY(uint64_t, mLastSuccess, NONE, |
49 GetLastSuccess, SetLastSuccess); | 49 GetLastSuccess, SetLastSuccess); |
50 SUBSCRIPTION_PROPERTY(int, mErrorCount, SUBSCRIPTION_ERRORS, | 50 SUBSCRIPTION_PROPERTY(int, mErrorCount, SUBSCRIPTION_ERRORS, |
51 GetErrorCount, SetErrorCount); | 51 GetErrorCount, SetErrorCount); |
52 SUBSCRIPTION_PROPERTY(uint64_t, mDataRevision, NONE, | 52 SUBSCRIPTION_PROPERTY(uint64_t, mDataRevision, NONE, |
53 GetDataRevision, SetDataRevision); | 53 GetDataRevision, SetDataRevision); |
54 SUBSCRIPTION_STRING_PROPERTY(mRequiredVersion, NONE, | 54 SUBSCRIPTION_STRING_PROPERTY(mRequiredVersion, NONE, |
55 GetRequiredVersion, SetRequiredVersion); | 55 GetRequiredVersion, SetRequiredVersion); |
56 SUBSCRIPTION_PROPERTY(int, mDownloadCount, NONE, | 56 SUBSCRIPTION_PROPERTY(int, mDownloadCount, NONE, |
57 GetDownloadCount, SetDownloadCount); | 57 GetDownloadCount, SetDownloadCount); |
58 | 58 |
59 OwnedString BINDINGS_EXPORTED Serialize() const; | 59 OwnedString SerializeProperties() const; |
60 }; | 60 }; |
61 | 61 |
62 typedef intrusive_ptr<DownloadableSubscription> DownloadableSubscriptionPtr; | 62 typedef intrusive_ptr<DownloadableSubscription> DownloadableSubscriptionPtr; |
63 | 63 |
64 ABP_NS_END | 64 ABP_NS_END |
OLD | NEW |