-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdstructs.cpp
More file actions
267 lines (218 loc) · 6.02 KB
/
dstructs.cpp
File metadata and controls
267 lines (218 loc) · 6.02 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include "dstructs.hpp"
#include "dexception.hpp"
#include "protocol/protocol.hpp"
#include "drealvalue.hpp"
#include "dnullobject.hpp"
#include <iostream>
namespace Destruct
{
DStructs::DStructs() : __nameSpace(new NameSpace(""))
{
Protocol(this);
}
DStructs::~DStructs()
{
delete this->__nameSpace;
}
bool DStructs::unregister(DStruct* dstructDef)
{
//for (Iterator c = this->__structures.begin(); c != this->__structures.end(); ++c)
//{
//if (*c == dstructDef)
//{
//this->__structures.erase(c);
//*c = NULL;
//return true;
//}
//}
//unregister module /namespace
//XXX
return (false);
}
DStructs& DStructs::instance()
{
static DStructs destruct;
return (destruct);
}
void DStructs::registerDStruct(DStruct* dstruct)
{
//XXX check if already exist
this->__nameSpace->addStructure(dstruct);
}
void DStructs::registerDStruct(const DUnicodeString& nameSpaceName, DStruct* dstruct)
{
NameSpace* nameSpace = this->__nameSpace->create(nameSpaceName);
nameSpace->addStructure(dstruct);
}
/**
* Total DStruct count
*/
size_t DStructs::count(void)
{
return (this->__nameSpace->count());
}
DStruct* DStructs::find(const size_t index)
{
DStruct* dstruct = this->__nameSpace->findDStruct(index);
if (dstruct == NULL)
throw DException("Can't find DStruct at index " + index);
return (dstruct);
}
DStruct* DStructs::find(DUnicodeString const & dstructPath)
{
DStruct* dstruct = this->__nameSpace->findDStruct(dstructPath);
if (dstruct == NULL)
throw DException("Can't find DStruct : " + dstructPath);
return (dstruct);
}
//rename newObject(name)
DObject* DStructs::generate(DUnicodeString const& name)
{
return (this->generate(name, RealValue<DObject*>(DNone)));
}
//rename newObject(name)
DObject* DStructs::generate(DUnicodeString const& name, DValue const& args)
{
DStruct* dstruct = this->find(name);
if (dstruct == NULL)
throw DException("Can't find DStruct : " + name);
return (dstruct->newObject(args));
}
/**
* NameSpace
*/
NameSpace::NameSpace(DUnicodeString const& name) : __name(name)
{
}
NameSpace::~NameSpace(void)
{
//XXX FIX BECAUSE SOME struct are registred twice
std::vector<DStruct* >::const_iterator dstruct = this->__structures.begin();
for (; dstruct != this->__structures.end(); ++dstruct)
delete (*dstruct);
this->__structures.clear();
std::vector<NameSpace* >::const_iterator nameSpace = this->__nameSpaces.begin();
for (; nameSpace != this->__nameSpaces.end(); ++nameSpace)
delete (*nameSpace);
this->__nameSpaces.clear();
}
const DUnicodeString NameSpace::name(void) const
{
return (this->__name);
}
void NameSpace::addStructure(DStruct* dstruct)
{
this->__structures.push_back(dstruct);
}
/**
* Return nameSpace named name from this nameSpaces or return NULL
*/
NameSpace* NameSpace::nameSpace(DUnicodeString const& name) const
{
std::vector<NameSpace*>::const_iterator nameSpace = this->__nameSpaces.begin();
for (; nameSpace != this->__nameSpaces.end(); ++nameSpace)
{
if ((*nameSpace)->name() == name)
return (*nameSpace);
}
return (NULL);
}
/**
* Create and return nameSpace from nameSpaces recursively
*/
NameSpace* NameSpace::create(DUnicodeString const& nameSpaces)
{
DUnicodeString nameSpaceName = "";
DUnicodeString subNameSpace = "";
size_t idx = nameSpaces.find(".");
if (idx == std::string::npos)
nameSpaceName = nameSpaces;
else
{
nameSpaceName = nameSpaces.substr(0, idx);
subNameSpace = nameSpaces.substr(idx + 1);
}
NameSpace* nameSpace = this->nameSpace(nameSpaceName);
if (!nameSpace)
{
nameSpace = new NameSpace(nameSpaceName);
this->__nameSpaces.push_back(nameSpace);
}
if (subNameSpace != "")
return (nameSpace->create(subNameSpace));
return (nameSpace);
}
/**
* Return count of DStruct in recursive nameSpace
*/
size_t NameSpace::count(void) const
{
size_t size = 0;
std::vector<NameSpace*>::const_iterator nameSpace = this->__nameSpaces.begin();
for (; nameSpace != this->__nameSpaces.end(); ++nameSpace)
{
size += (*nameSpace)->count();
}
return (this->__structures.size() + size);
}
/**
* Return Dstruct at index : search in nameSpace tree recursively;
*/
DStruct* NameSpace::findDStruct(size_t index)
{
size_t dstructCount = this->__structures.size();
if (index < dstructCount)
return (this->dstruct(index));
index -= dstructCount;
std::vector<NameSpace*>::const_iterator nameSpace = this->__nameSpaces.begin();
for (; nameSpace != this->__nameSpaces.end(); ++nameSpace)
{
size_t subNameSpaceSize = (*nameSpace)->count();
if (index < subNameSpaceSize)
return ((*nameSpace)->findDStruct(index));
index -= subNameSpaceSize;
}
throw DException("NameSpace::findStruct index not found");
}
/**
* Return DStruct name : search in nameSpace tree recursively
*/
DStruct* NameSpace::findDStruct(DUnicodeString const& dstructPath)
{
DUnicodeString nameSpaceName = "";
DUnicodeString subNameSpace = "";
size_t idx = dstructPath.find(".");
if (idx == std::string::npos)
return (this->dstruct(dstructPath));
else
{
nameSpaceName = dstructPath.substr(0, idx);
subNameSpace = dstructPath.substr(idx + 1);
}
NameSpace* nameSpace = this->nameSpace(nameSpaceName);
if (!nameSpace)
return (NULL);
if (subNameSpace != "")
return (nameSpace->findDStruct(subNameSpace));
return (NULL);
}
/**
* return DStruct at index in structures of this NameSpace
*/
DStruct* NameSpace::dstruct(const size_t index)
{
if (index < this->__structures.size())
return (this->__structures[index]);
throw DException("NameSpace : Can't find DStruct at index in NameSpace " + this->name());
}
DStruct* NameSpace::dstruct(DUnicodeString const& name)
{
std::vector<DStruct*>::const_iterator dstruct = this->__structures.begin();
for (; dstruct != this->__structures.end(); ++dstruct)
{
if ((*dstruct)->name() == name)
return ((*dstruct));
}
return (NULL);
}
}