-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjsl-data.h
647 lines (539 loc) · 13 KB
/
jsl-data.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
/*
jsl-data.h
This scource file is part of the jsl-esp32 project.
Author: Lorenzo Pastrana
Copyright © 2019 Lorenzo Pastrana
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see http://www.gnu.org/licenses/.
*/
#ifndef JSL_DATA_H
#define JSL_DATA_H
#include <string>
#include <vector>
#include <map>
class jsl_data_dict;
class jsl_data_vect;
class jsl_data
{
public :
typedef enum {
TYPE_NULL,
TYPE_INT,
TYPE_REAL,
TYPE_BOOL,
TYPE_STR,
TYPE_DICT,
TYPE_VECT
} node_type_t;
jsl_data() :
m_type(TYPE_NULL),
m_parent(nullptr)
{}
inline operator node_type_t () const { return m_type; }
inline node_type_t type() const { return m_type; }
inline jsl_data* parent() const { return m_parent; }
void setParent(jsl_data& _parent)
{
if(m_parent != nullptr && m_parent != &_parent)
{
m_parent->removeChild(*this);
}
m_parent = &_parent;
}
virtual void encode(std::ostream& _out, bool _pretty = false, std::string _tabs = "") const
{
_out << "null";
}
virtual ~jsl_data();
virtual std::string to_string() const { return "null"; };
static std::string to_string(bool _val);
static std::string to_string(int32_t _val);
static std::string to_string(double _val);
static std::string to_string(const std::string& _val);
static std::string to_string(const char* _val);
inline virtual void clear() { m_parent = nullptr; }
inline virtual void fire() {}
static std::string escape(const std::string& _str);
protected :
friend class jsl_data_pool;
jsl_data(node_type_t _type) :
m_type(_type),
m_parent(nullptr)
{}
jsl_data(node_type_t _type, jsl_data& _parent) :
m_type(_type),
m_parent(&_parent)
{}
virtual void removeChild(const jsl_data& _child) {} // does nothing
node_type_t m_type;
jsl_data* m_parent;
typedef jsl_data* cont_type;
};
class jsl_data_scal : public jsl_data
{
public:
jsl_data_scal() :
jsl_data(TYPE_NULL),
m_scal(0)
{
}
jsl_data_scal(const jsl_data_scal& _scal) :
jsl_data(_scal.m_type)
{
switch (m_type)
{
case TYPE_INT:
m_scal.i = _scal.m_scal.i;
break;
case TYPE_REAL:
m_scal.d = _scal.m_scal.d;
break;
case TYPE_BOOL:
m_scal.b = _scal.m_scal.b;
break;
case TYPE_STR:
new (&m_scal.s) std::string(_scal.m_scal.s);
break;
default:
break;
}
}
jsl_data_scal(int32_t _i) :
jsl_data(TYPE_INT),
m_scal(_i)
{
}
jsl_data_scal(double _d) :
jsl_data(TYPE_REAL),
m_scal(_d)
{
}
jsl_data_scal(bool _b) :
jsl_data(TYPE_BOOL),
m_scal(_b)
{
}
jsl_data_scal(const std::string& _s) :
jsl_data(TYPE_STR),
m_scal(_s)
{
}
jsl_data_scal(const char* _s) :
jsl_data(TYPE_STR),
m_scal(_s)
{
}
jsl_data_scal(int32_t _i, jsl_data& _parent) :
jsl_data(TYPE_INT, _parent),
m_scal(_i)
{
}
jsl_data_scal(double _d, jsl_data& _parent) :
jsl_data(TYPE_REAL, _parent),
m_scal(_d)
{
}
jsl_data_scal(bool _b, jsl_data& _parent) :
jsl_data(TYPE_BOOL, _parent),
m_scal(_b)
{
}
jsl_data_scal(const std::string& _s, jsl_data& _parent) :
jsl_data(TYPE_STR, _parent),
m_scal(_s)
{
}
jsl_data_scal(const char* _s, jsl_data& _parent) :
jsl_data(TYPE_STR, _parent),
m_scal(_s)
{
}
virtual ~jsl_data_scal();
inline virtual void clear();
inline virtual void fire();
jsl_data_scal& operator= (int32_t _i)
{
clearStr();
m_type = TYPE_INT;
m_scal = _i;
return *this;
}
jsl_data_scal& operator= (double _d)
{
clearStr();
m_type = TYPE_REAL;
m_scal = _d;
return *this;
}
jsl_data_scal& operator= (bool _b)
{
clearStr();
m_type = TYPE_BOOL;
m_scal = _b;
return *this;
}
jsl_data_scal& operator= (const std::string& _s)
{
clearStr();
m_type = TYPE_STR;
m_scal = _s;
return *this;
}
jsl_data_scal& operator= (const char* _s)
{
clearStr();
m_type = TYPE_STR;
m_scal = _s;
return *this;
}
bool operator== (int32_t _i) const
{
return m_type == TYPE_INT && m_scal.i == _i;
}
bool operator== (double _d) const
{
return m_type == TYPE_REAL && m_scal.d == _d;
}
bool operator== (bool _b) const
{
return m_type == TYPE_BOOL && m_scal.b == _b;
}
bool operator== (const std::string& _s) const
{
return m_type == TYPE_STR && m_scal.s == _s;
}
bool operator== (const char* _s) const
{
return m_type == TYPE_STR && m_scal.s == std::string(_s);
}
operator int32_t() const
{
if(m_type == TYPE_INT) return m_scal.i;
if(m_type == TYPE_REAL) return (int32_t)(m_scal.d + 0.5);
return empty_int;
}
operator double() const
{
if(m_type == TYPE_REAL) return m_scal.d;
if(m_type == TYPE_INT) return m_scal.i;
return empty_double;
}
operator bool() const
{
if(m_type == TYPE_BOOL) return m_scal.b;
return empty_bool;
}
operator std::string () const
{
if(m_type == TYPE_STR) return m_scal.s;
return empty_str;
}
operator const char* () const
{
if(m_type == TYPE_STR) return m_scal.s.c_str();
return empty_str.c_str();
}
jsl_data_scal& from_string(const std::string& _str)
{
return from_string(_str.c_str());
}
jsl_data_scal& from_string(const char* _str);
virtual std::string to_string() const;
virtual void encode(std::ostream& _out, bool _pretty = false, std::string _tabs = "") const
{
_out << to_string();
if(_pretty && _tabs.size() == 0) _out << "\n";
}
protected:
union scalar
{
int32_t i;
double d;
bool b;
std::string s;
scalar(){}
scalar(int32_t _i) : i(_i) {}
scalar(double _d) : d(_d) {}
scalar(bool _b) : b(_b) {}
scalar(const std::string& _s)
{
new (&s) std::string(_s);
}
scalar(const char* _s)
{
new (&s) std::string(_s);
}
scalar& operator= (int32_t _i) { i = _i; return *this; }
scalar& operator= (double _d) { d = _d; return *this; }
scalar& operator= (bool _b) { b = _b; return *this; }
scalar& operator= (const char* _s)
{
new (&s) std::string(_s); return *this;
}
scalar& operator= (const std::string& _s)
{
new (&s) std::string(_s); return *this;
}
~scalar(){}
} m_scal;
void clearStr()
{
if(m_type == TYPE_STR)
{
m_scal.s.std::string::~string();
}
}
const static int32_t empty_int;
const static double empty_double;
const static bool empty_bool;
const static std::string empty_str;
};
class jsl_data_dict : public jsl_data
{
public:
jsl_data_dict()
{
m_type = TYPE_DICT;
}
typedef std::map<std::string, cont_type> dict_t;
typedef dict_t::iterator dict_i;
const cont_type& operator[] (const dict_t::key_type& _key)
{
return m_container[_key];
}
const cont_type& operator[] (const char* _key)
{
return m_container[_key];
}
dict_i find(const dict_t::key_type& _key) { return find(_key.c_str()); }
inline dict_i find(const char* _key) { return m_container.find(_key); }
inline int32_t size() { return m_container.size(); }
inline dict_i begin() { return m_container.begin(); }
inline dict_i end() { return m_container.end(); }
void set_prop(const dict_t::key_type& _key, jsl_data& _item)
{
set_prop(_key.c_str(),_item);
}
void set_prop(const char* _key, jsl_data& _item)
{
m_container[_key] = &_item;
_item.setParent(*this);
}
bool get(const char* _name, int32_t& _val) const
{
auto f = m_container.find(_name);
if(
f != m_container.end() && (
f->second->type() == TYPE_REAL ||
f->second->type() == TYPE_INT
)){
_val = (int32_t)*((jsl_data_scal*)f->second);
return true;
}
return false;
}
bool get(const char* _name, double& _val) const
{
auto f = m_container.find(_name);
if(
f != m_container.end() && (
f->second->type() == TYPE_INT ||
f->second->type() == TYPE_REAL
)){
_val = (double)*((jsl_data_scal*)f->second);
return true;
}
return false;
}
bool get(const char* _name, bool& _val) const
{
auto f = m_container.find(_name);
if(
f != m_container.end() &&
f->second->type() == TYPE_BOOL
){
_val = (bool)*((jsl_data_scal*)f->second);
return true;
}
return false;
}
bool get(const char* _name, std::string& _val) const
{
auto f = m_container.find(_name);
if(
f != m_container.end() &&
f->second->type() == TYPE_STR
){
_val = (const std::string&)*((jsl_data_scal*)f->second);
return true;
}
return false;
}
bool get(const char* _name, jsl_data_dict*& _val) const
{
_val = nullptr;
auto f = m_container.find(_name);
if(
f != m_container.end() &&
f->second->type() == TYPE_DICT
){
_val = (jsl_data_dict*)f->second;
return true;
}
return false;
}
bool get(const char* _name, jsl_data_vect*& _val) const
{
_val = nullptr;
auto f = m_container.find(_name);
if(
f != m_container.end() &&
f->second->type() == TYPE_VECT
){
_val = (jsl_data_vect*)f->second;
return true;
}
return false;
}
virtual ~jsl_data_dict();
virtual void encode(std::ostream& _out, bool _pretty = false, std::string _tabs = "") const;
virtual void clear();
virtual void fire();
protected:
dict_t m_container;
virtual void removeChild(const jsl_data& _child);
};
class jsl_data_vect : public jsl_data
{
public:
jsl_data_vect()
{
m_type = TYPE_VECT;
}
typedef std::vector<cont_type> vect_t;
typedef vect_t::iterator vect_i;
const cont_type& operator[] (int _key)
{
return m_container[_key];
}
inline int32_t size() { return m_container.size(); }
inline vect_i begin() { return m_container.begin(); }
inline vect_i end() { return m_container.end(); }
void push_back(jsl_data& _item)
{
m_container.push_back(&_item);
_item.setParent(*this);
}
bool get(int32_t _i, int32_t& _val) const
{
if(
_i >= 0 && _i < m_container.size() && (
m_container[_i]->type() == TYPE_REAL ||
m_container[_i]->type() == TYPE_INT
)){
_val = (int32_t)*((jsl_data_scal*)m_container[_i]);
return true;
}
return false;
}
bool get(int32_t _i, double& _val) const
{
if(
_i >= 0 && _i < m_container.size() && (
m_container[_i]->type() == TYPE_INT ||
m_container[_i]->type() == TYPE_REAL
)){
_val = (double)*((jsl_data_scal*)m_container[_i]);
return true;
}
return false;
}
bool get(int32_t _i, bool& _val) const
{
if(
_i >= 0 && _i < m_container.size() &&
m_container[_i]->type() == TYPE_BOOL
){
_val = (bool)*((jsl_data_scal*)m_container[_i]);
return true;
}
return false;
}
bool get(int32_t _i, std::string& _val) const
{
if(
_i >= 0 && _i < m_container.size() &&
m_container[_i]->type() == TYPE_STR
){
_val = (const std::string&)*((jsl_data_scal*)m_container[_i]);
return true;
}
return false;
}
bool get(int32_t _i, jsl_data_dict*& _val) const
{
_val = nullptr;
if(
_i >= 0 && _i < m_container.size() &&
m_container[_i]->type() == TYPE_DICT
){
_val = (jsl_data_dict*)m_container[_i];
return true;
}
return false;
}
bool get(int32_t _i, jsl_data_vect*& _val) const
{
_val = nullptr;
if(
_i >= 0 && _i < m_container.size() &&
m_container[_i]->type() == TYPE_VECT
){
_val = (jsl_data_vect*)m_container[_i];
return true;
}
return false;
}
virtual ~jsl_data_vect();
virtual void encode(std::ostream& _out, bool _pretty = false, std::string _tabs = "") const;
virtual void clear();
virtual void fire();
protected:
vect_t m_container;
virtual void removeChild(const jsl_data& _child);
};
class jsl_data_pool
{
public:
enum {
STORE_STEP = 2
};
static void init(uint16_t _s, uint16_t _d, uint16_t _v);
static jsl_data_scal* hire(int32_t _i);
static jsl_data_scal* hire(double _d);
static jsl_data_scal* hire(bool _b);
static jsl_data_scal* hire(const std::string& _s);
static jsl_data_scal* hire(const char* _s);
static jsl_data_scal* hire_scal();
static jsl_data_dict* hire_dict();
static jsl_data_vect* hire_vect();
static void fire(jsl_data_scal& _data);
static void fire(jsl_data_dict& _data);
static void fire(jsl_data_vect& _data);
protected:
static std::vector<jsl_data_scal> m_scals;
static std::vector<jsl_data_scal*> m_scals_for_hire;
static std::vector<jsl_data_dict> m_dicts;
static std::vector<jsl_data_dict*> m_dicts_for_hire;
static std::vector<jsl_data_vect> m_vects;
static std::vector<jsl_data_vect*> m_vects_for_hire;
};
#endif // #ifndef JSL_DATA_H