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
|
#include "grammar.hh"
namespace G {
/*
* G::NT
*
*/
NT::NT(string& s)
{
s.erase(0, 1); s.pop_back(); // remove '[' and ']'
istringstream ss(s);
if (ss >> index) { // [i]
symbol = "";
index = stoi(s);
return;
} else { // [X]
symbol = s;
index = 0;
return;
}
string buf;
size_t j = 0;
index = 0; // default
while (ss.good() && getline(ss, buf, ',')) {
if (j == 0) {
symbol = buf;
} else {
index = stoi(buf);
}
j++;
}
}
string
NT::repr() const
{
ostringstream os;
os << "NT<" << symbol << "," << index << ">";
return os.str();
}
string
NT::escaped() const
{
ostringstream os;
os << "[" << symbol;
if (index > 0)
os << "," << index;
os << "]";
return os.str();
}
ostream&
operator<<(ostream& os, const NT& nt)
{
return os << nt.repr();
}
/*
* G::T
*
*/
T::T(const string& s)
{
word = s;
}
string
T::repr() const
{
ostringstream os;
os << "T<" << word << ">";
return os.str();
}
string
T::escaped() const
{
return util::json_escape(word);
}
ostream&
operator<<(ostream& os, const T& t)
{
return os << t.repr();
}
/*
* G::Item
*
* Better solve this by inheritance
* -> rhs, target as vector<base class> ?
*
*/
Item::Item(string& s)
{
if (s.front() == '[' && s.back() == ']') {
type = NON_TERMINAL;
nt = new NT(s);
} else {
type = TERMINAL;
t = new T(s);
}
}
string
Item::repr() const
{
ostringstream os;
if (type == TERMINAL)
os << t->repr();
else
os << nt->repr();
return os.str();
}
string
Item::escaped() const
{
ostringstream os;
if (type == TERMINAL)
os << t->escaped();
else
os << nt->escaped();
return os.str();
}
ostream&
operator<<(ostream& os, const Item& i)
{
return os << i.repr();
}
/*
* G::Rule
*
*/
Rule::Rule(const string& s)
{
from_s(this, s);
}
void
Rule::from_s(Rule* r, const string& s)
{
stringstream ss(s);
size_t j = 0;
string buf;
r->arity = 0;
size_t index = 1;
vector<G::NT*> rhs_nt;
r->f = new Sv::SparseVector<string, score_t>();
while (ss >> buf) {
if (buf == "|||") { j++; continue; }
if (j == 0) { // LHS
r->lhs = new NT(buf);
} else if (j == 1) { // RHS
r->rhs.push_back(new Item(buf));
if (r->rhs.back()->type == NON_TERMINAL) {
rhs_nt.push_back(r->rhs.back()->nt);
r->arity++;
}
} else if (j == 2) { // TARGET
r->target.push_back(new Item(buf));
if (r->target.back()->type == NON_TERMINAL) {
r->order.insert(make_pair(index, r->target.back()->nt->index));
if (r->target.back()->nt->symbol == "")
r->target.back()->nt->symbol = rhs_nt[r->target.back()->nt->index-1]->symbol;
index++;
}
} else if (j == 3) { // F TODO
Sv::SparseVector<string, score_t>::from_s(r->f, buf); // FIXME this is slow!!!
} else if (j == 4) { // A TODO
} else {
// ERROR
}
if (j == 4) break;
}
}
string
Rule::repr() const
{
ostringstream os;
os << "Rule<lhs=" << lhs->repr() << \
", rhs:{";
for (auto it = rhs.begin(); it != rhs.end(); it++) {
os << (**it).repr();
if (next(it) != rhs.end()) os << " ";
}
os << "}, target:{";
for (auto it = target.begin(); it != target.end(); it++) {
os << (**it).repr();
if (next(it) != target.end()) os << " ";
}
os << "}" \
", f:" << f->repr() << \
", arity=" << arity << \
", map:" << "TODO" << \
">";
return os.str();
}
string
Rule::escaped() const
{
ostringstream os;
os << lhs->escaped() << " ||| ";
for (auto it = rhs.begin(); it != rhs.end(); it++) {
os << (**it).escaped();
if (next(it) != rhs.end()) os << " ";
}
os << " ||| ";
for (auto it = target.begin(); it != target.end(); it++) {
os << (**it).escaped();
if (next(it) != target.end()) os << " ";
}
os << " ||| ";
os << f->escaped();
os << " ||| ";
os << "TODO(alignment)";
return os.str();
}
ostream&
operator<<(ostream& os, const Rule& r)
{
return os << r.repr();
}
/*
* G::Grammmar
*
*/
Grammar::Grammar(const string& fn)
{
ifstream ifs(fn);
string line;
while (getline(ifs, line)) {
G::Rule* r = new G::Rule(line);
rules.push_back(r);
if (r->arity == 0)
flat.push_back(r);
else if (r->rhs.front()->type == NON_TERMINAL)
start_nt.push_back(r);
else
start_t.push_back(r);
}
}
ostream&
operator<<(ostream& os, const Grammar& g)
{
for (const auto it: g.rules)
os << it->repr() << endl;
return os;
}
} // namespace G
|