TDME2 1.9.121
BaseProperties.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <string>
5
6#include <tdme/tdme.h>
8
9using std::remove;
10using std::string;
11
14
15BaseProperties::BaseProperties(const string& name, const string& description)
16{
17 this->name = name;
18 this->description = description;
19}
20
22 for (auto property: properties) {
23 delete property;
24 }
25}
26
28{
29 for (auto property: properties) {
30 delete property;
31 }
32 properties.clear();
33 propertiesByName.clear();
34}
35
37{
38 auto propertyByNameIt = propertiesByName.find(name);
39 if (propertyByNameIt != propertiesByName.end()) {
40 return propertyByNameIt->second;
41 }
42 return nullptr;
43}
44
45int BaseProperties::getPropertyIndex(const string& name)
46{
47 for (auto i = 0; i < properties.size(); i++) {
48 if (properties[i]->getName() == name) {
49 return i;
50 }
51 }
52 return -1;
53}
54
55bool BaseProperties::addProperty(const string& name, const string& value)
56{
57 if (getProperty(name) != nullptr)
58 return false;
59
60 auto property = new BaseProperty(name, value);
61 propertiesByName[name] = property;
62 properties.push_back(property);
63 return true;
64}
65
66bool BaseProperties::renameProperty(const string& oldName, const string& name) {
67 auto propertyByNameIt = propertiesByName.find(oldName);
68 if (propertyByNameIt == propertiesByName.end())
69 return false;
70
71 if (oldName != name && getProperty(name) != nullptr) {
72 return false;
73 }
74
75 BaseProperty* property = propertyByNameIt->second;
76 property->setName(name);
77
78 propertiesByName.erase(propertyByNameIt);
79 propertiesByName[property->getName()] = property;
80
81 return true;
82}
83
84bool BaseProperties::updateProperty(const string& oldName, const string& name, const string& value)
85{
86 auto propertyByNameIt = propertiesByName.find(oldName);
87 if (propertyByNameIt == propertiesByName.end())
88 return false;
89
90 if (oldName != name && getProperty(name) != nullptr) {
91 return false;
92 }
93
94 BaseProperty* property = propertyByNameIt->second;
95 property->setName(name);
96 property->setValue(value);
97
98 propertiesByName.erase(propertyByNameIt);
99 propertiesByName[property->getName()] = property;
100
101 return true;
102}
103
104bool BaseProperties::removeProperty(const string& name)
105{
106 auto propertyByNameIt = propertiesByName.find(name);
107 if (propertyByNameIt != propertiesByName.end()) {
108 auto property = propertyByNameIt->second;
109 propertiesByName.erase(propertyByNameIt);
110 properties.erase(remove(properties.begin(), properties.end(), property), properties.end());
111 return true;
112 }
113
114 return false;
115}
void clearProperties()
Clears properties.
bool updateProperty(const string &oldName, const string &name, const string &value)
Update a property.
vector< BaseProperty * > properties
map< string, BaseProperty * > propertiesByName
BaseProperty * getProperty(const string &name)
Retrieve property by name.
int getPropertyIndex(const string &name)
Get property index.
bool addProperty(const string &name, const string &value)
Add a property.
bool removeProperty(const string &name)
Removes a property.
bool renameProperty(const string &oldName, const string &name)
Rename a property.
Base property model class.
Definition: BaseProperty.h:16
void setName(const string &name)
Set up name.
Definition: BaseProperty.h:45