#include "stg/user_ips.h"
#include "stg/store.h"
#include "stg/admin.h"
-#include "stg/notifer.h"
+#include "stg/subscriptions.h"
#include "stg/admin_conf.h"
#include "stg/logger.h"
-#include "stg/locker.h"
#include "stg/settings.h"
#include "stg/scriptexecuter.h"
#include "stg/common.h"
#include <unistd.h> // access
-extern volatile time_t stgTime;
-
namespace STG
{
//-----------------------------------------------------------------------------
-struct UserPropertyBase {
+struct UserPropertyBase
+{
virtual ~UserPropertyBase() = default;
virtual std::string ToString() const = 0;
};
using Registry = std::map<std::string, UserPropertyBase*>;
//-----------------------------------------------------------------------------
template<typename T>
-class UserProperty : public UserPropertyBase {
+class UserProperty : public UserPropertyBase
+{
public:
explicit UserProperty(T& val);
operator const T&() const noexcept { return value; }
- void AddBeforeNotifier(PropertyNotifierBase<T>* n);
- void DelBeforeNotifier(const PropertyNotifierBase<T>* n);
-
- void AddAfterNotifier(PropertyNotifierBase<T>* n);
- void DelAfterNotifier(const PropertyNotifierBase<T>* n);
+ template <typename F>
+ auto beforeChange(F&& f) { return m_beforeCallbacks.add(std::forward<F>(f)); }
+ template <typename F>
+ auto afterChange(F&& f) { return m_afterCallbacks.add(std::forward<F>(f)); }
time_t ModificationTime() const noexcept { return modificationTime; }
void ModifyTime() noexcept;
private:
T& value;
time_t modificationTime;
- std::set<PropertyNotifierBase<T>*> beforeNotifiers;
- std::set<PropertyNotifierBase<T>*> afterNotifiers;
+ Subscriptions<T, T> m_beforeCallbacks;
+ Subscriptions<T, T> m_afterCallbacks;
std::mutex mutex;
};
//-----------------------------------------------------------------------------
template<typename T>
-class UserPropertyLogged: public UserProperty<T> {
+class UserPropertyLogged: public UserProperty<T>
+{
public:
UserPropertyLogged(T& val,
const std::string& n,
const Settings& settings;
};
//-----------------------------------------------------------------------------
-class UserProperties {
+class UserProperties
+{
/*
В этом месте важен порядок следования приватной и открытой частей.
Это связано с тем, что часть которая находится в публичной секции
inline
UserProperty<T>::UserProperty(T& val)
: value(val),
- modificationTime(stgTime),
- beforeNotifiers(),
- afterNotifiers()
+ modificationTime(time(NULL))
{
}
//-----------------------------------------------------------------------------
inline
void UserProperty<T>::ModifyTime() noexcept
{
- modificationTime = stgTime;
+ modificationTime = time(NULL);
}
//-----------------------------------------------------------------------------
template <typename T>
inline
-void UserProperty<T>::Set(const T& rvalue)
+void UserProperty<T>::Set(const T& rhs)
{
std::lock_guard<std::mutex> lock(mutex);
T oldVal = value;
- auto ni = beforeNotifiers.begin();
- while (ni != beforeNotifiers.end())
- (*ni++)->Notify(oldVal, rvalue);
+ m_beforeCallbacks.notify(oldVal, rhs);
- value = rvalue;
- modificationTime = stgTime;
+ value = rhs;
+ modificationTime = time(NULL);
- ni = afterNotifiers.begin();
- while (ni != afterNotifiers.end())
- (*ni++)->Notify(oldVal, rvalue);
+ m_afterCallbacks.notify(oldVal, rhs);
}
//-----------------------------------------------------------------------------
template <typename T>
return *this;
}
//-----------------------------------------------------------------------------
-template <typename T>
-inline
-void UserProperty<T>::AddBeforeNotifier(PropertyNotifierBase<T>* n)
-{
- std::lock_guard<std::mutex> lock(mutex);
- beforeNotifiers.insert(n);
-}
-//-----------------------------------------------------------------------------
-template <typename T>
-inline
-void UserProperty<T>::DelBeforeNotifier(const PropertyNotifierBase<T>* n)
-{
- std::lock_guard<std::mutex> lock(mutex);
- beforeNotifiers.erase(const_cast<PropertyNotifierBase<T>*>(n));
-}
-//-----------------------------------------------------------------------------
-template <typename T>
-inline
-void UserProperty<T>::AddAfterNotifier(PropertyNotifierBase<T>* n)
-{
- std::lock_guard<std::mutex> lock(mutex);
- afterNotifiers.insert(n);
-}
-//-----------------------------------------------------------------------------
-template <typename T>
-inline
-void UserProperty<T>::DelAfterNotifier(const PropertyNotifierBase<T>* n)
-{
- std::lock_guard<std::mutex> lock(mutex);
- afterNotifiers.erase(const_cast<PropertyNotifierBase<T>*>(n));
-}
-//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
template <typename T>