summaryrefslogtreecommitdiff
path: root/src/variable.cpp
blob: b7899f15779293b092145fd9ac54c8d0f3640f77 (plain)
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
#include "variable.h"

#include <bu/formatter.h>
#include <stdlib.h>

typedef Bu::ExceptionBase VariableException;

Variable::Variable() :
	eType( tNull ),
	iValue( 0 )
{
}

Variable::Variable( const Variable &src ) :
	eType( tNull ),
	iValue( 0 )
{
	(*this) = src;
}

Variable::Variable( Type eType ) :
	eType( eType ),
	iValue( 0 )
{
	initType();
}

Variable::Variable( int64_t iValue ) :
	eType( tInt ),
	iValue( iValue )
{
}

Variable::Variable( double fValue ) :
	eType( tFloat ),
	fValue( fValue )
{
}

Variable::Variable( bool bValue ) :
	eType( tBool ),
	bValue( bValue )
{
}

Variable::Variable( const Bu::String &sValue ) :
	eType( tString ),
	iValue( 0 )
{
	this->sValue = new Bu::String( sValue );
}

Variable::~Variable()
{
	deinitType();
}

Variable Variable::newSituationName( const Bu::String &s )
{
	Variable v( tSituation );
	(*v.sValue) = s;
	return v;
}

Variable Variable::newVariableName( const Bu::String &s )
{
	Variable v( tVariable );
	(*v.sValue) = s;
	return v;
}

bool Variable::getBool() const
{
	return bValue;
}

int64_t Variable::getInt() const
{
	return iValue;
}

double Variable::getFloat() const
{
	return fValue;
}

Bu::String Variable::getString() const
{
	return *sValue;
}

Variable Variable::to( Type e ) const
{
	if( e == eType )
		return *this;

	switch( eType )
	{
		case tNull:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			break;
				case tFloat:		break;
				case tString:		return Variable("(null)");
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tBool:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			break;
				case tFloat:		break;
				case tString:
					return bValue?Variable("true"):Variable("false");
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tInt:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			break;
				case tFloat:		return Variable( (double)iValue );
				case tString:
					return Variable( Bu::String("%1").arg( iValue ) );
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tFloat:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			return Variable( (int64_t)fValue );
				case tFloat:		break;
				case tString:
					return Variable( Bu::String("%1").arg( fValue ) );
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tString:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:
					return Variable( strtoll(sValue->getStr(), NULL, 10 ) );
				case tFloat:
					return Variable( strtod(sValue->getStr(), NULL ) );
				case tString:		break;
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tList:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			break;
				case tFloat:		break;
				case tString:		break;
				case tList:			break;
				case tDictionary:	break;
			}
			break;

		case tDictionary:
			switch( e )
			{
				case tNull:			break;
				case tBool:			break;
				case tInt:			break;
				case tFloat:		break;
				case tString:		break;
				case tList:			break;
				case tDictionary:	break;
			}
			break;
	}

	throw VariableException("Could not convert from %d to %d.\n",
		eType, e );
}

Variable &Variable::operator=( const Variable &rhs )
{
	deinitType();
	eType = rhs.eType;
	initType();

	switch( eType )
	{
		case tNull:
			break;

		case tBool:
			bValue = rhs.bValue;
			break;

		case tInt:
			iValue = rhs.iValue;
			break;

		case tFloat:
			fValue = rhs.fValue;
			break;

		case tString:
		case tSituation:
		case tVariable:
			(*sValue) = *rhs.sValue;
			break;

		case tList:
			(*lValue) = *rhs.lValue;
			break;

		case tDictionary:
			(*hValue) = *rhs.hValue;
			break;
	}
}

Variable &Variable::operator+=( const Variable &rhs )
{
	switch( eType )
	{
		case tNull:
			throw VariableException("You cannot add nulls.");

		case tBool:
			throw VariableException("You cannot add bools.");

		case tInt:
			switch( rhs.eType )
			{
				case tInt:
					iValue += rhs.iValue;
					break;

				case tFloat:
					{
						double dTmp = iValue;
						eType = tFloat;
						fValue = dTmp + rhs.fValue;
					}
					break;

				default:
					throw VariableException("Int += invalid...");
			}
			break;

		case tFloat:
			switch( rhs.eType )
			{
				case tInt:
					fValue += rhs.iValue;
					break;

				case tFloat:
					fValue += rhs.fValue;
					break;

				default:
					throw VariableException("Int += invalid...");
			}
			break;

		case tString:
			(*sValue).append( *(rhs.to( tString ).sValue) );
			break;

		case tSituation:
			throw VariableException("You cannot add situations.");
			break;
		
		case tVariable:
			throw VariableException("You cannot add variable names.");
			break;
	}

	return *this;
}

/*
Variable &Variable::operator-=( const Variable &rhs );
Variable &Variable::operator*=( const Variable &rhs );
Variable &Variable::operator/=( const Variable &rhs );
*/
Variable Variable::operator+( const Variable &rhs ) const
{
	if( eType != rhs.eType )
	{
		throw VariableException("Adding between dissimilar types is not yet supported.");
	}
	else
	{
		switch( eType )
		{
			case tNull:
				throw VariableException("You cannot add nulls.");

			case tBool:
				throw VariableException("You cannot add booleans.");

			case tInt:
				return Variable( iValue + rhs.iValue );

			case tFloat:
				return Variable( fValue + rhs.fValue );

			case tString:
				return Variable( *sValue + *rhs.sValue );

			case tList:
				{
					Variable vRet( tList );
					vRet.lValue->append( *lValue );
					vRet.lValue->append( *rhs.lValue );
					return vRet;
				}

			case tDictionary:
				throw VariableException("You cannot add dictionaries.");
				break;
			
			case tSituation:
				throw VariableException("You cannot add situations.");
			
			case tVariable:
				throw VariableException("You cannot add variables.");
		}
	}
}

/*
Variable Variable::operator-( const Variable &rhs ) const;
Variable Variable::operator*( const Variable &rhs ) const;
Variable Variable::operator/( const Variable &rhs ) const;
*/

bool Variable::operator==( const Variable &rhs ) const
{
	if( eType != rhs.eType )
		return false;

	switch( eType )
	{
		case tNull:
			return true;

		case tBool:
			return bValue == rhs.bValue;

		case tInt:
			return iValue == rhs.iValue;

		case tFloat:
			return fValue == rhs.fValue;

		case tString:
		case tSituation:
		case tVariable:
			return (*sValue) == (*rhs.sValue);

		case tList:
			return (*lValue) == (*rhs.lValue);

		case tDictionary:
			return (*hValue) == (*rhs.hValue);
	}
}

bool Variable::operator!=( const Variable &rhs ) const
{
	return !(*this == rhs);
}

/*
Variable &Variable::operator>( const Variable &rhs );
Variable &Variable::operator<( const Variable &rhs );
Variable &Variable::operator>=( const Variable &rhs );
Variable &Variable::operator<=( const Variable &rhs );
*/
void Variable::initType()
{
	iValue = 0;
	switch( eType )
	{
		case tString:
		case tSituation:
		case tVariable:
			sValue = new Bu::String();
			break;

		case tList:
			lValue = new VList();
			break;

		case tDictionary:
			hValue = new VHash();
			break;
	}
}

void Variable::deinitType()
{
	switch( eType )
	{
		case tString:
		case tSituation:
		case tVariable:
			delete sValue;
			break;

		case tList:
			delete lValue;
			break;

		case tDictionary:
			delete hValue;
			break;
	}

	iValue = 0;
}

template<> uint32_t Bu::__calcHashCode<Variable>( const Variable &k )
{
	switch( k.getType() )
	{
		case Variable::tNull:
			return 0;

		case Variable::tInt:
			return k.iValue;
		
		case Variable::tFloat:
			return k.fValue;

		case Variable::tString:
		case Variable::tSituation:
		case Variable::tVariable:
			return Bu::__calcHashCode( *k.sValue );

		case Variable::tList:
			throw VariableException("You cannot use a list as a key in a dictionary.");
		case Variable::tDictionary:
			throw VariableException("You cannot use a dictionary as a key in a dictionary.");
	}
}

template<> bool Bu::__cmpHashKeys<Variable>( const Variable &a, const Variable &b )
{
	return a == b;
}

Bu::Formatter &operator<<( Bu::Formatter &f, const Variable &v )
{
	switch( v.eType )
	{
		case Variable::tNull:
			return f << "(null)";

		case Variable::tBool:
			return f << v.bValue;

		case Variable::tInt:
			return f << v.iValue;

		case Variable::tFloat:
			return f << v.fValue;

		case Variable::tString:
			return f << '"' << *v.sValue << '"';

		case Variable::tSituation:
			return f << "<<" << *v.sValue << ">>";
		
		case Variable::tVariable:
			return f << "(varref:\"" << *v.sValue << "\")";

		case Variable::tList:
			return f << *v.lValue;

		case Variable::tDictionary:
			return f << *v.hValue;
	}

	return f << "ERROR";
}