From a18ca7764abbe24b601885ef06fcc98f0b7ed10b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 18 Aug 2016 14:53:00 +0200 Subject: options: factor out connector out of bundle --- options/connector.cpp | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 options/connector.cpp (limited to 'options/connector.cpp') diff --git a/options/connector.cpp b/options/connector.cpp new file mode 100644 index 00000000..4ba532d4 --- /dev/null +++ b/options/connector.cpp @@ -0,0 +1,71 @@ +#include "connector.hpp" +#include "value.hpp" + +namespace options { +namespace detail { + +connector::~connector() {} + +void connector::on_bundle_destructed(const QString& name, const base_value* val) +{ + QMutexLocker l(get_mtx()); + + auto it = connected_values.find(name); + if (it != connected_values.end()) + { + std::vector& values = (*it).second; + for (auto it = values.begin(); it != values.end(); ) + { + if (*it == val) + { + values.erase(it); + break; + } + } + } +} + +void connector::on_bundle_created(const QString& name, const base_value* val) +{ + QMutexLocker l(get_mtx()); + auto it = connected_values.find(name); + + if (it != connected_values.end()) + { + std::vector& values = (*it).second; + values.push_back(val); + } + else + { + std::vector vec; + vec.push_back(val); + connected_values[name] = vec; + } +} + +void connector::notify_values(const QString& name) const +{ + auto it = connected_values.find(name); + if (it != connected_values.end()) + { + for (const base_value* val : (*it).second) + { + val->bundle_value_changed(); + } + } +} + +void connector::notify_all_values() const +{ + for (auto& pair : connected_values) + for (const base_value* val : pair.second) + val->bundle_value_changed(); +} + +connector::connector() +{ +} + +} + +} -- cgit v1.2.3