forked from treefrogframework/treefrog-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabstractmodel.cpp
131 lines (110 loc) · 2.88 KB
/
tabstractmodel.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Copyright (c) 2010-2015, AOYAMA Kazuharu
* All rights reserved.
*
* This software may be used and distributed according to the terms of
* the New BSD License, which is incorporated herein by reference.
*/
#include <TAbstractModel>
#include <TSqlObject>
#include <TModelObject>
/*!
\class TAbstractModel
\brief The TAbstractModel class is the abstract base class of models,
providing functionality common to models.
*/
/*!
Returns true if this model is null; otherwise returns false.
*/
bool TAbstractModel::isNull() const
{
return modelData()->isNull();
}
/*!
Returns true if this model is new, not created; otherwise returns false.
*/
bool TAbstractModel::isNew() const
{
return modelData()->isNull();
}
/*!
Returns true if this model is not saved; otherwise returns false.
*/
bool TAbstractModel::isSaved() const
{
return !modelData()->isNull();
}
/*!
Creates the model as a new data to the data storage.
*/
bool TAbstractModel::create()
{
return modelData()->create();
}
/*!
Saves the model to the data storage.
If the model exists in the data storage, calls update();
otherwise calls create().
*/
bool TAbstractModel::save()
{
return (modelData()->isNull()) ? create() : update();
}
/*!
Updates the model to the data storage.
*/
bool TAbstractModel::update()
{
return modelData()->update();
}
/*!
Removes the model from the data storage.
*/
bool TAbstractModel::remove()
{
return modelData()->remove();
}
/*!
Returns a map with all properties of this text format.
*/
QVariantMap TAbstractModel::toVariantMap() const
{
QVariantMap ret;
QVariantMap map = modelData()->toVariantMap();
for (QMapIterator<QString, QVariant> it(map); it.hasNext(); ) {
it.next();
ret.insert(fieldNameToVariableName(it.key()), it.value());
}
return ret;
}
/*!
Sets the \a properties.
*/
void TAbstractModel::setProperties(const QVariantMap &properties)
{
// Creates a map of the original property name and the converted name
QStringList soprops = modelData()->propertyNames();
QMap<QString, QString> sopropMap;
for (QStringListIterator it(soprops); it.hasNext(); ) {
const QString &orig = it.next();
sopropMap.insert(fieldNameToVariableName(orig), orig);
}
QVariantMap props;
for (QMapIterator<QString, QVariant> it(properties); it.hasNext(); ) {
it.next();
const QString &p = sopropMap[it.key()];
if (!p.isEmpty()) {
props.insert(p, it.value());
}
}
modelData()->setProperties(props);
}
/*!
\fn virtual TModelObject *TAbstractModel::modelData()
This function is reimplemented in subclasses to return a pointer
to the data stored in the model object.
*/
/*!
\fn virtual const TModelObject *TAbstractModel::modelData() const
This function is reimplemented in subclasses to return a pointer
to the data stored in the model object.
*/