forked from Disane/eda-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSON.h
58 lines (47 loc) · 1.13 KB
/
JSON.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
// JSON.h -- July 22, 2009
// by geohot
// part of "The Embedded Disassembler"
// released under GPLv3, see http://gplv3.fsf.org/
#ifndef EDA_JSON_H_
#define EDA_JSON_H_
#include "data_atomic.h"
#include <vector>
#include <string>
#include <sstream>
using namespace std;
namespace eda {
class JSON;
class JSON {
public:
JSON();
// root
void add(const string& name, const string& object);
void add(const string& name, int object);
// recursion
void add(const string& name, const JSON& object);
// primitives
void add(const string& name, uint32_t object);
// array and pointers(err maybe)
//template <typename T>
//void add(const string& name, const vector<T>& objects);
// output
string serialize() const;
private:
void preface(const string& name);
string internal_;
bool first_;
public:
template <typename T>
void add(const string& name, const vector<T>& objects) {
preface(name);
internal_ += "[";
first_ = true;
for(typename vector<T>::const_iterator it = objects.begin(); it != objects.end(); ++it) {
add("", *it);
}
internal_ += "]";
first_ = false;
}
};
}
#endif