cppvariant

cppvariant Commit Details


Date:2013-06-28 00:10:00 (11 years 9 months ago)
Author:Natalie Adams
Branch:default
Commit:39ba50dd77ee
Message:Adding source and sample

Changes:
Amain.cpp (full)
Avariant.h (full)

File differences

main.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
#include <iostream>
#include <map>
#include "variant.h"
class A { public: void woof() { cout << "woof" << endl; } };
class B : public A { public: void woof() { cout << "woof2" << endl; } };
int main()
{
variant<> v1 = 1;
variant<> v2 = "2";
variant<> v3 = v1 + v2;
cout << v3 << endl;
//variant<A> a = new A();
//a = 444;
//a = (int)v3;
//cout << a << endl;
variant<A> a = new A();
variant<B> b = new B();
a = (A*)b;
//variant<A> a = new A();
//variant<B> b = new B();
//a = 5;
/*variant<> v = 123;
variant<> v3 = 33;
v3 = v;
int x = v;
cout << x << endl;
x += 1;
v = x;
cout << v << endl;*/
/*string x;
//cin >> x;
variant<> v = "10";
cout << v << endl;
v += 10;*/
//cout << v << endl;
//cin >> v;
//cout << v << endl;
/*cout << x << endl;
cout << v3 << endl;
cout << v << endl;
v = v + 1;
cout << v << endl;
variant<A> v2 = new A();
((A)v2).f();*/
//v2 = v;
//cout << v << endl;
//std::map<string, variant> t;
//t["test"] = 123;
//cout << t["test"].getInt() << endl;
/*variant v = "a";
variant v2 = "bb";
if (v < v2)
cout << "true" << endl;*/
//cout << v.getString() << endl;
}
variant.h
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
#ifndef VARIANT_H
#define VARIANT_H
#include <iostream>
#include <exception>
#include <map>
#include <sstream>
#include <typeinfo>
#include <string>
using namespace std;
enum VAR_TYPES { INT, CHAR, DOUBLE, STRING, OBJECT, NONE };
//
// portable 64-bit integers
//
#if defined(_MSC_VER) || defined(__BORLANDC__)
   typedef __int64             large;
   typedef unsigned __int64    ularge;
#  define LLCONST(a) (a##i64)
#else
   typedef long long           large;
   typedef unsigned long long  ularge;
#  define LLCONST(a) (a##ll)
#endif
template<typename T>
T StrToType(std::string& str)
{
    std::istringstream ss(str);
    T ret;
    ss >> ret;
    return ret;
}
template <typename T>
std::string TypeToStr (const T & obj )
{
    std::ostringstream ss;
    ss << obj;
    return ss.str();
}
template <class T = void>
class variant
{
protected:
VAR_TYPES _type;
union {
large i;
char c;
double d;
string * s;
T * v;
} _container;
void releaseObject()
{
if (this->_type == STRING)
delete this->_container.s;
if (this->_type == OBJECT && typeid(this->_container.v) != typeid(void*))
delete this->_container.v;
this->_type = NONE;
}
void setString(const string& s)
{
this->_container.s = new string(s);
this->_type = STRING;
}
void setObject(const T* o)
{
this->_container.v = o;
this->_type = OBJECT;
}
public:
~variant() { releaseObject(); }
variant() { type = NONE; };
variant(int i)
{
this->_container.i = i;
this->_type = INT;
}
variant(const string& s)
{
setString(s);  
}
variant(const char* s)
{
setString(s);  
}
variant(char c)
{
this->_container.c = c;
this->_type = CHAR;
}
variant(double d)
{
this->_container.d = d;
this->_type = DOUBLE;
}
variant(T * o)
{
this->_container.v = o;
this->_type = OBJECT;
}
variant operator=(const string& s)
{
releaseObject();
setString(s);
return *this;
}
variant operator=(const char * s)
{
releaseObject();
setString(s);
return *this;
}
variant operator=(large i)
{
releaseObject();
this->_type = INT;
this->_container.i = i;
return *this;
}
variant operator=(char c)
{
releaseObject();
this->_type = CHAR;
this->_container.c = c;
return *this;
}
variant operator=(int i)
{
releaseObject();
this->_type = INT;
this->_container.i = i;
return *this;
}
variant operator=(double d)
{
releaseObject();
this->_type = DOUBLE;
this->_container.d = d;
return *this;
}
variant operator=(T * o)
{
releaseObject();
this->_type = OBJECT;
this->_container.v = o;
return *this;
}
variant operator=(variant<> & v)
{
if (this != &v)
{
switch (v._type)
{
case STRING:
this->_container.s = v._container.s;
v._type = NONE;
return *this;
break;
case INT:
this->_container.i = v._container.i;
return *this;
break;
case DOUBLE:
this->_container.d = v._container.d;
return *this;
break;
case CHAR:
this->_container.c = v._container.c;
return *this;
break;
case OBJECT:
v._type = NONE;
this->_container.v = v._container.v;
return *this;
break;
}
}
return *this;
}
bool operator>(const variant& v)
{
if (this->type == NONE || v.type == NONE)
return true;
if (this->type == STRING && v.type == STRING)
{
return *this->_container.s > *v._container.s;
} else if (this->_type == INT && v._type == INT)
{
return this->_container.i > this->_container.i;
} else {
return true;
}
}
bool operator<(const variant & v)
{
return !(*this > v);
}
operator large() const
{
switch (this->_type)
{
case INT:
return this->_container.i;
break;
case STRING:
return StrToType<int>(this->_container.s);
break;
case DOUBLE:
return (large)this->_container.d;
break;
case CHAR:
return (large)this->_container.c;
case OBJECT:
return (large)this->_container.v;
}
return NULL;
}
operator double() const
{
switch (this->_type)
{
case INT:
return (double)this->_container.i;
break;
case STRING:
return StrToType<double>(this->_container.s);
break;
case DOUBLE:
return (double)this->_container.d;
break;
case CHAR:
return (double)this->_container.c;
case OBJECT:
return (double)this->_container.v;
}
return NULL;
}
operator int() const
{
switch (this->_type)
{
case INT:
return (int)this->_container.i;
break;
case STRING:
return StrToType<int>(*this->_container.s);
break;
case DOUBLE:
return (int)this->_container.d;
break;
case CHAR:
return (int)this->_container.c;
case OBJECT:
return (int)this->_container.v;
}
return NULL;
}
operator char() const
{
switch (this->_type)
{
case INT:
return (char)this->_container.i;
break;
case STRING:
return StrToType<char>(*this->_container.s);
break;
case DOUBLE:
return (char)this->_container.d;
break;
case CHAR:
return this->_container.c;
case OBJECT:
return (char)this->_container.v;
}
return NULL;
}
operator string() const
{
switch (this->_type)
{
case INT:
return TypeToStr<large>(this->_container.i);
break;
case STRING:
return *this->_container.s;
break;
case DOUBLE:
return TypeToStr<double>(this->_container.d);
break;
case CHAR:
return TypeToStr<char>(this->_container.c);
break;
case OBJECT:
return TypeToStr<T*>(this->_container.v);
break;
}
return "";
}
variant & operator+(const variant & v)
{
*this += v;
/*if (this->_type == v._type)
{
switch (this->_type)
{
case INT:
this->_container.i += v._container.i;
break;
case DOUBLE:
this->_container.d += v._container.d;
break;
case STRING:
*this->_container.s += *v._container.s;
break;
case CHAR:
this->_container.c += v._container.c;
break;
case OBJECT:
//*this->_container.v += *v._container.v;
//if (typeid(this->_container.v) != typeid(void*) && typeid(v._container.v) != typeid(void*))
//{
//T a = *this->_container.v;
//}
break;
}
}*/
return *this;
}
variant & operator+(large i)
{
if (this->_type == INT)
{
this->_container.i += i;
}
else if (this->_type == STRING)
{
large i = StrToType(*this->_container.s) + i;
releaseObject();
this->_container.s = new string(TypeToStr<large>(i));
}
return *this;
}
variant & operator+(int i)
{
if (this->_type == INT)
{
this->_container.i += i;
} else if (this->_type == STRING)
{
large i2 = StrToType<large>(*this->_container.s) + i;
releaseObject();
this->_type = STRING;
this->_container.s = new string(TypeToStr<large>(i2));
}
return *this;
}
variant & operator+(const string & s)
{
if (this->_type == STRING)
(*this->_container.s) += s;
return *this;
}
variant & operator+(char c)
{
if (this->_type == CHAR)
{
this->_container.c += c;
} else if (this->_type == STRING)
{
(*this->_container.s) += c;
}
return *this;
}
variant & operator+(double d)
{
if (this->_type == DOUBLE)
this->_container.d += d;
return *this;
}
variant & operator+(T * obj)
{
if (this->_type == OBJECT)
(*this->_container.o) += *obj;
return *this;
}
/*variant & operator+=(void * o)
{
return *this;
}*/
variant & operator+=(const variant & v)
{
//if (this->_type == v._type)
//{
switch (this->_type)
{
case INT:
switch (v._type)
{
case INT:
this->_container.i += v._container.i;
break;
case CHAR:
this->_container.i += (large)v._container.c;
break;
case DOUBLE:
this->_container.i += (large)v._container.d;
break;
case STRING:
this->_container.i += StrToType<large>(*v._container.s);
break;
case OBJECT:
break;
}
break;
case DOUBLE:
switch (v._type)
{
case INT:
this->_container.d += (double)v._container.i;
break;
case CHAR:
this->_container.d += (double)v._container.c;
break;
case DOUBLE:
this->_container.d += v._container.d;
break;
case STRING:
this->_container.d += StrToType<double>(*v._container.s);
break;
case OBJECT:
break;
}
break;
case STRING:
switch (v._type)
{
case INT:
*this->_container.s += TypeToStr<large>(v._container.i);
break;
case CHAR:
*this->_container.s += v._container.c;
break;
case DOUBLE:
*this->_container.s += TypeToStr<double>(v._container.d);
break;
case STRING:
*this->_container.s += *v._container.s;
break;
case OBJECT:
break;
}
break;
case CHAR:
switch (v._type)
{
case INT:
this->_container.c += TypeToStr<large>(v._container.i)[0];
break;
case CHAR:
this->_container.c += v._container.c;
break;
case DOUBLE:
this->_container.c += TypeToStr<double>(v._container.d)[0];
break;
case STRING:
this->_container.c += (*v._container.s)[0];
break;
case OBJECT:
break;
}
break;
case OBJECT:
//this->_container.v += v._container.v;
break;
}
//}
return *this;
}
variant & operator+=(large i)
{
if (this->_type == INT)
{
this->_container.i += i;
}
else if (this->_type == STRING)
{
large i = StrToType(*this->_container.s) + i;
releaseObject();
this->_container.s = new string(TypeToStr<large>(i));
}
return *this;
}
variant & operator+=(int i)
{
if (this->_type == INT)
{
this->_container.i += i;
} else if (this->_type == STRING)
{
large i2 = StrToType<large>(*this->_container.s) + i;
releaseObject();
this->_type = STRING;
this->_container.s = new string(TypeToStr<large>(i2));
}
return *this;
}
variant & operator+=(const string & s)
{
if (this->_type == STRING)
{
(*this->_container.s) += s;
} else if (this->_type == INT) {
large i = StrToType<large>(const_cast<string>(s));
this->_container.i += i;
}
return *this;
}
variant & operator+=(const char * s)
{
if (this->_type == STRING)
{
(*this->_container.s) += s;
} else if (this->_type == INT)
{
string tmp = string(s);
large i = StrToType<large>(tmp);
this->_container.i += i;
}
return *this;
}
variant & operator+=(char c)
{
if (this->_type == CHAR)
{
this->_container.c += c;
} else if (this->_type == STRING)
{
(*this->_container.s) += c;
}
return *this;
}
variant & operator+=(double d)
{
if (this->_type == DOUBLE)
this->_container.d += d;
return *this;
}
variant & operator+=(T * obj)
{
if (this->_type == OBJECT)
(*this->_container.o) += *obj;
return *this;
}
friend ostream & operator<<(const ostream & o, variant<T> & v);
friend istream & operator>>(istream & i, variant<T> & v);
friend ostream & operator<<(const ostream & o, variant<> & v);
friend istream & operator>>(istream & i, variant<> & v);
operator T*() const
{
return this->_container.v;
}
operator T() const
{
return *this->_container.v;
}
VAR_TYPES type() { return this->_type; }
};
ostream & operator<<(ostream& o, variant<> & v)
{
o << (string)v;
return o;
}
istream & operator>>(istream & i, variant<> & v)
{
string * x = new string();
i >> *x;
v._type = STRING;
v._container.s = x;
return i;
}
template <class T>
ostream & operator<<(ostream& o, variant<T> & v)
{
o << (string)v;
return o;
}
template <class T>
istream & operator>>(istream & i, variant<T> & v)
{
string * x = new string();
i >> *x;
v._type = STRING;
v._container.s = x;
return i;
}
#endif

Archive Download the corresponding diff file

Branches

Tags

Page rendered in 1.72044s using 14 queries.