summaryrefslogtreecommitdiffhomepage
path: root/options/connector.hpp
blob: 6aba79e24b5df80f5092c1291879b8ebc5dab68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once

#include <map>
#include <vector>
#include <tuple>
#include <typeinfo>
#include <typeindex>
#include <QVariant>
#include <QString>
#include <QMutex>
#include <QMutexLocker>

#include "export.hpp"

namespace options {

class base_value;

namespace detail {

class OPENTRACK_OPTIONS_EXPORT connector
{
    friend class ::options::base_value;

    using value_vec = std::vector<const base_value*>;
    using comparator = bool(*)(const QVariant&, const QVariant&);
    using tt = std::tuple<value_vec, comparator, std::type_index>;
    std::map<QString, tt> connected_values;

    void on_value_destructed(const QString& name, const base_value* val);
    void on_value_created(const QString& name, const base_value* val);
    bool on_value_destructed_impl(const QString& name, const base_value* val);

protected:
    void notify_values(const QString& name) const;
    void notify_all_values() const;
    virtual QMutex* get_mtx() const = 0;

public:
    connector();
    virtual ~connector();

    bool is_equal(const QString& name, const QVariant& val1, const QVariant& val2) const;

    connector(const connector&) = default;
    connector& operator=(const connector&) = default;
    connector(connector&&) = default;
    connector& operator=(connector&&) = default;
};

}
}