-
Notifications
You must be signed in to change notification settings - Fork 12
/
qtVault.h
85 lines (72 loc) · 2.11 KB
/
qtVault.h
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef QTVAULT_H
#define QTVAULT_H
#include <QMap>
#include <QFile>
#include <QMutex>
#include <QObject>
#include <QMetaType>
#include <QTreeWidgetItem>
#include <auth/pnVaultNode.h>
class qtVaultNode : public pnVaultNode
{
private:
static const char* TypeNames[];
static const char* FolderTypes[];
static const char* FieldNames[];
QList<qtVaultNode*> children;
QList<QTreeWidgetItem*> items;
QMutex nodeMutex;
public:
qtVaultNode();
qtVaultNode(const pnVaultNode& node);
qtVaultNode(const qtVaultNode& node);
void operator=(const qtVaultNode& node);
void copy(const qtVaultNode &init);
ST::string displayName();
ST::string fieldName(size_t field);
ST::string getFieldAsString(size_t field);
QIcon getIcon();
void setFieldFromString(size_t field, ST::string string);
const QList<qtVaultNode*> getChildren();
bool addChild(qtVaultNode* child);
void removeChild(qtVaultNode* child);
// special search functions
qtVaultNode* getBuddiesFolder();
qtVaultNode* getNeighborsFolder();
qtVaultNode* getAgeInfoNode();
QTreeWidgetItem* newItem();
void removeItem(QTreeWidgetItem* item);
const QList<QTreeWidgetItem*> getItems();
void lockNode();
void unlockNode();
bool tryLock();
};
Q_DECLARE_METATYPE(qtVaultNode*)
class qtVault : public QObject
{
Q_OBJECT
private:
QMap<uint32_t, qtVaultNode> nodes;
QList<pnVaultNodeRef> refQueue;
QList<pnVaultNodeRef> refList;
QList<uint32_t> rootQueue;
QMutex vaultMutex;
public:
qtVault();
~qtVault();
void addNode(const pnVaultNode& node);
void addRef(const pnVaultNodeRef& ref);
void removeRef(uint32_t parent, uint32_t child);
void queueRoot(uint32_t idx);
qtVaultNode* getNode(uint32_t idx);
bool hasNode(uint32_t idx);
void writeVault(hsFileStream& file);
void readVault(hsFileStream& file);
signals:
void addedNode(uint32_t parent, uint32_t child);
void removedNode(uint32_t parent, uint32_t child);
void updatedNode(uint32_t idx);
void gotRootNode(uint32_t idx);
void fetchComplete();
};
#endif // QTVAULT_H