Index: compiled/subscription/Subscription.h |
=================================================================== |
--- a/compiled/subscription/Subscription.h |
+++ b/compiled/subscription/Subscription.h |
@@ -16,62 +16,47 @@ |
*/ |
#pragma once |
#include <vector> |
#include "../filter/Filter.h" |
#include "../String.h" |
+#include "../FilterNotifier.h" |
#include "../intrusive_ptr.h" |
#include "../debug.h" |
-#define SUBSCRIPTION_PROPERTY(type, name, getter, setter) \ |
+#define SUBSCRIPTION_PROPERTY_INTERNAL(field_type, param_type, name, topic, getter, setter) \ |
private:\ |
- type name;\ |
+ field_type name;\ |
public:\ |
- type EMSCRIPTEN_KEEPALIVE getter() const\ |
+ param_type EMSCRIPTEN_KEEPALIVE getter() const\ |
{\ |
return name;\ |
}\ |
- void EMSCRIPTEN_KEEPALIVE setter(type value)\ |
+ void EMSCRIPTEN_KEEPALIVE setter(param_type value)\ |
{\ |
if (name != value)\ |
{\ |
- type oldvalue = name;\ |
+ field_type oldvalue = name;\ |
name = value;\ |
- DependentString action(u"subscription."_str #name);\ |
- EM_ASM_ARGS({\ |
- var subscription = new (exports[Subscription_mapping[$2]])($1);\ |
- FilterNotifier.triggerListeners(readString($0), subscription, $3, $4);\ |
- }, &action, this, mType, value, oldvalue);\ |
+ if (FilterNotifier::Topic::topic != FilterNotifier::Topic::NONE)\ |
+ {\ |
+ FilterNotifier::PropertyChange(FilterNotifier::Topic::topic,\ |
+ this, value, oldvalue);\ |
+ }\ |
}\ |
} |
-#define SUBSCRIPTION_STRING_PROPERTY(name, getter, setter) \ |
- private:\ |
- OwnedString name;\ |
- public:\ |
- const String& EMSCRIPTEN_KEEPALIVE getter() const\ |
- {\ |
- return name;\ |
- }\ |
- void EMSCRIPTEN_KEEPALIVE setter(const String& value)\ |
- {\ |
- if (!name.equals(value))\ |
- {\ |
- OwnedString oldvalue(name);\ |
- name = value;\ |
- DependentString action(u"subscription."_str #name);\ |
- EM_ASM_ARGS({\ |
- var subscription = new (exports[Subscription_mapping[$2]])($1);\ |
- FilterNotifier.triggerListeners(readString($0), subscription, readString($3), readString($4));\ |
- }, &action, this, mType, &value, &oldvalue);\ |
- }\ |
- } |
+#define SUBSCRIPTION_PROPERTY(type, name, topic, getter, setter) \ |
+ SUBSCRIPTION_PROPERTY_INTERNAL(type, type, name, topic, getter, setter) |
+ |
+#define SUBSCRIPTION_STRING_PROPERTY(name, topic, getter, setter) \ |
+ SUBSCRIPTION_PROPERTY_INTERNAL(OwnedString, const String&, name, topic, getter, setter) |
class Subscription : public ref_counted |
{ |
protected: |
OwnedString mID; |
std::vector<FilterPtr> mFilters; |
public: |
@@ -87,18 +72,19 @@ public: |
Type mType; |
EMSCRIPTEN_KEEPALIVE const String& GetID() const |
{ |
return mID; |
} |
- SUBSCRIPTION_STRING_PROPERTY(mTitle, GetTitle, SetTitle); |
- SUBSCRIPTION_PROPERTY(bool, mDisabled, GetDisabled, SetDisabled); |
+ SUBSCRIPTION_STRING_PROPERTY(mTitle, SUBSCRIPTION_TITLE, GetTitle, SetTitle); |
+ SUBSCRIPTION_PROPERTY(bool, mDisabled, SUBSCRIPTION_DISABLED, |
+ GetDisabled, SetDisabled); |
EMSCRIPTEN_KEEPALIVE unsigned GetFilterCount() const |
{ |
return mFilters.size(); |
} |
EMSCRIPTEN_KEEPALIVE Filter* FilterAt(unsigned index); |
EMSCRIPTEN_KEEPALIVE int IndexOfFilter(Filter* filter); |