-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCCPNet.cpp
403 lines (365 loc) · 8 KB
/
CCPNet.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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#include "CCPNet.h"
#include "CPlace.h"
#include "CTransition.h"
#include "CVal.h"
#include "CColorset.h"
#include "CVar.h"
CPlace* CCPNet::checkPlace(string strName)
{
map<string, CPlace*>::iterator iter= places.find(strName);
if(iter == places.end())
{
return NULL;
}
else
{
cout << "checkPlace Error." << endl;
return iter->second;
}
}
CPlace* CCPNet::getPlace(string strName)
{
map<string, CPlace*>::iterator iter= places.find(strName);
if(iter == places.end())
{
cout << "getPlace Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addPlace(CPlace *place)
{
if (checkPlace(place->name) != NULL)
{
cout << "addPlace Error." << endl;
return;
}
places.insert(map<string, CPlace*>::value_type(place->name, place));
}
void CCPNet::addPlace(string strPlaceName, string strColorset)
{
CPlace *place = new CPlace(strPlaceName, strColorset);
places.insert(map<string, CPlace*>::value_type(place->name, place));
}
void CCPNet::addPlace(string strPlaceName, string strColorset, CValue value)
{
CPlace *place = new CPlace(strPlaceName, strColorset, value);
places.insert(map<string, CPlace*>::value_type(place->name, place));
}
void CCPNet::addPlaceValue(string strPlaceName, CValue value)
{
CPlace *place = getPlace(strPlaceName);
if (place != NULL)
{
place->addValue(value);
}
}
CTransition* CCPNet::checkTransition(string strName)
{
map<string, CTransition*>::iterator iter= transitions.find(strName);
if(iter == transitions.end())
{
return NULL;
}
else
{
cout << "checkTransition Error." << endl;
return iter->second;
}
}
CTransition* CCPNet::getTransition(string strName)
{
map<string, CTransition*>::iterator iter= transitions.find(strName);
if(iter == transitions.end())
{
cout << "getTransition Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addTransition(CTransition *transition)
{
if (checkTransition(transition->name) != NULL)
{
cout << "addTransition Error." << endl;
return;
}
transitions.insert(map<string, CTransition*>::value_type(transition->name, transition));
}
void CCPNet::addTransition(string strTransitionName)
{
CTransition *transition = new CTransition(strTransitionName, this);
addTransition(transition);
}
void CCPNet::transitionAddFromPlaceAndValue(string strTransition, string strPlace, CValue value)
{
CTransition *transition = getTransition(strTransition);
if (transition != NULL)
{
transition->addFromPlaceAndValue(strPlace, value);
}
}
void CCPNet::transitionAddToPlaceAndValue(string strTransition, string strPlace, CValue value)
{
CTransition *transition = getTransition(strTransition);
if (transition != NULL)
{
transition->addToPlaceAndValue(strPlace, value);
}
}
void CCPNet::transitionAddFromToPlaceAndValue(string strTransition, string strPlace, CValue value)
{
CTransition *transition = getTransition(strTransition);
if (transition != NULL)
{
transition->addFromPlaceAndValue(strPlace, value);
transition->addToPlaceAndValue(strPlace, value);
}
}
void CCPNet::initAllTransitions()
{
map<string, CTransition*>::iterator iter;
for (iter = transitions.begin(); iter != transitions.end(); iter ++)
{
iter->second->init();
}
}
CVal* CCPNet::getVal(string strName)
{
map<string, CVal*>::iterator iter= vals.find(strName);
if(iter == vals.end())
{
cout << "getVal Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addVal(CVal *val)
{
if (getVal(val->name) != NULL)
cout << "addVal Error." << endl;
vals.insert(map<string, CVal*>::value_type(val->name, val));
}
CColorset* CCPNet::checkColorset(string strName)
{
map<string, CColorset*>::iterator iter= colorsets.find(strName);
if(iter == colorsets.end())
{
return NULL;
}
else
{
cout << "checkColorset Error." << endl;
return iter->second;
}
}
CColorset* CCPNet::getColorset(string strName)
{
map<string, CColorset*>::iterator iter= colorsets.find(strName);
if(iter == colorsets.end())
{
cout << "getColorset Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addColorset(CColorset *colorset)
{
if (checkColorset(colorset->name) != NULL)
{
cout << "addColorset Error." << endl;
return;
}
colorsets.insert(map<string, CColorset*>::value_type(colorset->name, colorset));
}
CVar* CCPNet::checkVar(string strName)
{
map<string, CVar*>::iterator iter= vars.find(strName);
if(iter == vars.end())
{
return NULL;
}
else
{
cout << "checkVar Error." << endl;
return iter->second;
}
}
CVar* CCPNet::getVar(string strName)
{
map<string, CVar*>::iterator iter= vars.find(strName);
if(iter == vars.end())
{
cout << "getVar Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addVar(CVar *var)
{
if (checkVar(var->name) != NULL)
{
cout << "addVar Error." << endl;
return;
}
vars.insert(map<string, CVar*>::value_type(var->name, var));
}
void CCPNet::addVar(string strVarName, string strColorset)
{
if (checkVar(strVarName) != NULL)
{
cout << "addVar Error." << endl;
return;
}
CColorset *colorset = getColorset(strColorset);
if (colorset == NULL)
{
cout << "addVar Error." << endl;
return;
}
CVar *var = new CVar(strVarName, colorset);
vars.insert(map<string, CVar*>::value_type(var->name, var));
}
CValue CCPNet::varname2Value(int iVar, string strVarName)
{
CVar *var = getVar(strVarName);
if (var == NULL)
{
cout << "varname2Value Error." << endl;
return CValue();
}
CValue value = CValue(var->colorset->name, iVar, "var", strVarName);
return value;
}
CValue CCPNet::VAR(int iVar, string strVarName)
{
return varname2Value(iVar, strVarName);
}
CValue CCPNet::FUN(string strFunName, string strArgVarName1)
{
CVar *var1 = getVar(strArgVarName1);
if (var1 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CValue value = CValue("", 1, "fun", strFunName, VAR(1, strArgVarName1));
return value;
}
CValue CCPNet::FUN(string strFunName, string strArgVarName1, string strArgVarName2)
{
CVar *var1 = getVar(strArgVarName1);
if (var1 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CVar *var2 = getVar(strArgVarName2);
if (var2 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CValue value = CValue("", 1, "fun", strFunName, VAR(1, strArgVarName1), VAR(1, strArgVarName2));
return value;
}
CValue CCPNet::FUN(string strFunName, string strArgVarName1, string strArgVarName2, string strArgVarName3)
{
CVar *var1 = getVar(strArgVarName1);
if (var1 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CVar *var2 = getVar(strArgVarName2);
if (var2 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CVar *var3 = getVar(strArgVarName3);
if (var3 == NULL)
{
cout << "FUN Error." << endl;
return CValue();
}
CValue value = CValue("", 1, "fun", strFunName, VAR(1, strArgVarName1), VAR(1, strArgVarName2), VAR(1, strArgVarName3));
return value;
}
FUN_POINTER CCPNet::checkFun(string strName)
{
map<string, FUN_POINTER>::iterator iter= funs.find(strName);
if(iter == funs.end())
{
return NULL;
}
else
{
cout << "checkFun Error." << endl;
return iter->second;
}
}
FUN_POINTER CCPNet::getFun(string strName)
{
map<string, FUN_POINTER>::iterator iter= funs.find(strName);
if(iter == funs.end())
{
cout << "getFun Error." << endl;
return NULL;
}
else
{
return iter->second;
}
}
void CCPNet::addFun(string strName, FUN_POINTER fun)
{
if (checkFun(strName) != NULL)
{
cout << "addFun Error." << endl;
return;
}
funs.insert(map<string, FUN_POINTER>::value_type(strName, fun));
}
int CCPNet::fire()
{
map<string, CTransition*>::iterator iter;
for (iter = transitions.begin(); iter != transitions.end(); iter ++)
{
if (iter->second->fire() == 1)
{
cout << iter->second->name << " fired succeed." << endl;
return 1;
}
}
return 0;
}
void CCPNet::fireToEnd()
{
while (fire() == 1);
}
string CCPNet::places2String()
{
string strResult;
map<string, CPlace*>::iterator iter;
for (iter = places.begin(); iter != places.end(); iter ++)
{
strResult += (iter->second->toString() + "\n");
}
return strResult;
}