1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #include "ctkEvent.h"
- class ctkEventPrivate {
- public:
- ctkEventPrivate(const QString& topic, const ctkDictionary& properties)
- : ref(1), topic(topic), properties(properties)
- {
- }
- QAtomicInt ref;
- const QString topic;
- const ctkDictionary properties;
- };
- ctkEvent::ctkEvent(const QString& topic, const ctkDictionary& properties)
- : d(new ctkEventPrivate(topic, properties))
- {
- }
- /*
- * This is fast thanks to implicit sharing
- */
- ctkEvent::ctkEvent(const ctkEvent &event)
- : d(event.d)
- {
- d->ref.ref();
- }
- ctkEvent::~ctkEvent()
- {
- if (!d->ref.deref())
- delete d;
- }
- bool ctkEvent::operator==(const ctkEvent& other) const
- {
- if (d == other.d)
- return true;
- if (d->topic == other.d->topic &&
- d->properties == other.d->properties)
- return true;
- return false;
- }
- QVariant ctkEvent::property(const QString& name) const
- {
- return d->properties[name];
- }
- QStringList ctkEvent::propertyNames() const
- {
- return d->properties.keys();
- }
- const QString& ctkEvent::topic() const
- {
- return d->topic;
- }
- bool ctkEvent::matches(const ctkLDAPSearchFilter& filter) const
- {
- return filter.matchCase(d->properties);
- }
|