This repository was archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparse2hpp.cpp
132 lines (123 loc) · 3.29 KB
/
parse2hpp.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
#include <fstream>
#include <string>
#include <iostream>
enum STATE {Empty, KeyWaiting, KeyLoading, ValueWaiting, ValueLoading, ArrayLoading};
int main(int argc, char** argv) {
if (argv[1] == "--version") {
std::cout << "0.2" << std::endl;
return 0;
}
std::ifstream file(argv[1]);
std::ofstream ofile;
if (argc == 3) {
ofile.open(argv[2], std::ios::out);
std::cout << "Parsing " << argv[1] << " into " << argv[2] << std::endl;
}
std::ostream & output = (argc == 3) ? ofile : std::cout;
STATE state = Empty;
int indent = 0;
char c;
std::string bufferK;
std::string bufferV;
while (file.get(c)) {
switch (state) {
case Empty :
switch (c) {
case '{':
state = KeyWaiting;
break;
}
break;
case KeyWaiting:
switch (c) {
case '"':
state = KeyLoading;
if (bufferK != "") {
output << std::string(indent, ' ') << "class " << bufferK << "\n" << std::string(indent, ' ') << "{\n";
bufferK = "";
indent += 2;
}
break;
case '}':
if (bufferK != "") {
output << std::string(indent, ' ') << "class " << bufferK << "{};\n";
bufferK = "";
} else {
if (indent != 0) {
indent -= 2;
output << std::string(indent, ' ') << "};\n";
}
}
}
break;
case KeyLoading:
switch (c) {
case '"':
state = ValueWaiting;
break;
default:
bufferK += c;
}
break;
case ValueWaiting:
switch (c) {
case ':':
break;
case '{':
state = KeyWaiting;
break;
case '[':
state = ArrayLoading;
bufferK += "[]";
case ' ':
break;
default:
state = ValueLoading;
bufferV += c;
}
break;
case ValueLoading:
switch (c) {
case '}':
state = KeyWaiting;
output << std::string(indent, ' ') << bufferK << " = " << bufferV << ";\n";
indent -= 2;
output << std::string(indent, ' ') << "};\n";
bufferK = "";
bufferV = "";
break;
case ',':
state = KeyWaiting;
output << std::string(indent, ' ') << bufferK << " = " << bufferV << ";\n";
bufferK = "";
bufferV = "";
break;
default:
bufferV += c;
}
break;
case ArrayLoading:
switch (c) {
case '}':
state = KeyWaiting;
output << std::string(indent, ' ') << bufferK << " = {" << bufferV << "};\n";
indent -= 2;
output << std::string(indent, ' ') << "};\n";
bufferK = "";
bufferV = "";
break;
case ']':
state = KeyWaiting;
output << std::string(indent, ' ') << bufferK << " = {" << bufferV << "};\n";
bufferK = "";
bufferV = "";
break;
case '[':
break;
default:
bufferV += c;
}
break;
}
}
}