aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qtserialization/inc/qark/impl/savingrefmap.h
blob: 3258da7b910e2737d07bf2a11641f69f991eb4a4 (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
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "objectid.h"

#include <QMap>
#include <QPair>
#include <typeinfo>

namespace qark {
namespace impl {

class SavingRefMap
{
public:
    template<typename T>
    bool hasRef(const T *object)
    {
        return hasRef(reinterpret_cast<const void *>(object), typeid(*object).name());
    }

    template<typename T>
    bool hasDefinedRef(const T *object)
    {
        return hasDefinedRef(reinterpret_cast<const void *>(object), typeid(*object).name());
    }

    template<typename T>
    ObjectId ref(const T *object, bool define = false)
    {
        return ref(reinterpret_cast<const void *>(object), typeid(*object).name(), define);
    }

    int countDanglingReferences();

private:
    bool hasRef(const void *address, const char *typeName);
    bool hasDefinedRef(const void *address, const char *typeName);
    ObjectId ref(const void *address, const char *typeName, bool define);

    typedef QPair<const void *, const char *> KeyType;
    typedef QPair<ObjectId, bool> ValueType;
    typedef QMap<KeyType, ValueType> MapType;

    MapType m_references;
    ObjectId m_nextRef = ObjectId(1);
};

} // namespace impl
} // namespace qark