forked from leela-zero/leela-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSGFParser.cpp
224 lines (186 loc) · 5.68 KB
/
SGFParser.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
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
/*
This file is part of Leela Zero.
Copyright (C) 2017-2018 Gian-Carlo Pascutto and contributors
Leela Zero 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.
Leela Zero 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 Leela Zero. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SGFParser.h"
#include <cassert>
#include <cctype>
#include <fstream>
#include <stdexcept>
#include <string>
#include "SGFTree.h"
#include "Utils.h"
std::vector<std::string> SGFParser::chop_stream(std::istream& ins,
size_t stopat) {
std::vector<std::string> result;
std::string gamebuff;
ins >> std::noskipws;
int nesting = 0; // parentheses
bool intag = false; // brackets
int line = 0;
gamebuff.clear();
char c;
while (ins >> c && result.size() <= stopat) {
if (c == '\n') line++;
gamebuff.push_back(c);
if (c == '\\') {
// read literal char
ins >> c;
gamebuff.push_back(c);
// Skip special char parsing
continue;
}
if (c == '(' && !intag) {
if (nesting == 0) {
// eat ; too
do {
ins >> c;
} while (std::isspace(c) && c != ';');
gamebuff.clear();
}
nesting++;
} else if (c == ')' && !intag) {
nesting--;
if (nesting == 0) {
result.push_back(gamebuff);
}
} else if (c == '[' && !intag) {
intag = true;
} else if (c == ']') {
if (intag == false) {
Utils::myprintf("Tag error on line %d", line);
}
intag = false;
}
}
// No game found? Assume closing tag was missing (OGS)
if (result.size() == 0) {
result.push_back(gamebuff);
}
return result;
}
std::vector<std::string> SGFParser::chop_all(std::string filename,
size_t stopat) {
std::ifstream ins(filename.c_str(), std::ifstream::binary | std::ifstream::in);
if (ins.fail()) {
throw std::runtime_error("Error opening file");
}
auto result = chop_stream(ins, stopat);
ins.close();
return result;
}
// scan the file and extract the game with number index
std::string SGFParser::chop_from_file(std::string filename, size_t index) {
auto vec = chop_all(filename, index);
return vec[index];
}
std::string SGFParser::parse_property_name(std::istringstream & strm) {
std::string result;
char c;
while (strm >> c) {
// SGF property names are guaranteed to be uppercase,
// except that some implementations like IGS are retarded
// and don't folow the spec. So allow both upper/lowercase.
if (!std::isupper(c) && !std::islower(c)) {
strm.unget();
break;
} else {
result.push_back(c);
}
}
return result;
}
bool SGFParser::parse_property_value(std::istringstream & strm,
std::string & result) {
strm >> std::noskipws;
char c;
while (strm >> c) {
if (!std::isspace(c)) {
strm.unget();
break;
}
}
strm >> c;
if (c != '[') {
strm.unget();
return false;
}
while (strm >> c) {
if (c == ']') {
break;
} else if (c == '\\') {
strm >> c;
}
result.push_back(c);
}
strm >> std::skipws;
return true;
}
void SGFParser::parse(std::istringstream & strm, SGFTree * node) {
bool splitpoint = false;
char c;
while (strm >> c) {
if (strm.fail()) {
return;
}
if (std::isspace(c)) {
continue;
}
// parse a property
if (std::isalpha(c) && std::isupper(c)) {
strm.unget();
std::string propname = parse_property_name(strm);
bool success;
do {
std::string propval;
success = parse_property_value(strm, propval);
if (success) {
node->add_property(propname, propval);
}
} while (success);
continue;
}
if (c == '(') {
// eat first ;
char cc;
do {
strm >> cc;
} while (std::isspace(cc));
if (cc != ';') {
strm.unget();
}
// start a variation here
splitpoint = true;
// new node
SGFTree * newptr = node->add_child();
parse(strm, newptr);
} else if (c == ')') {
// variation ends, go back
// if the variation didn't start here, then
// push the "variation ends" mark back
// and try again one level up the tree
if (!splitpoint) {
strm.unget();
return;
} else {
splitpoint = false;
continue;
}
} else if (c == ';') {
// new node
SGFTree * newptr = node->add_child();
node = newptr;
continue;
}
}
}