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
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
#ifndef PARSE_PLURAL_H_INCLUDED
#define PARSE_PLURAL_H_INCLUDED
#include <list>
#include <memory>
#include <zen/string_base.h>
//http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html
//http://translate.sourceforge.net/wiki/l10n/pluralforms
/*
Grammar for Plural forms parser
-------------------------------
expression:
conditional-expression
conditional-expression:
logical-or-expression
logical-or-expression ? expression : expression
logical-or-expression:
logical-and-expression
logical-or-expression || logical-and-expression
logical-and-expression:
equality-expression
logical-and-expression && equality-expression
equality-expression:
relational-expression
relational-expression == relational-expression
relational-expression != relational-expression
relational-expression:
multiplicative-expression
multiplicative-expression > multiplicative-expression
multiplicative-expression < multiplicative-expression
multiplicative-expression >= multiplicative-expression
multiplicative-expression <= multiplicative-expression
multiplicative-expression:
pm-expression
multiplicative-expression % pm-expression
pm-expression:
N
Number
( Expression )
*/
//expression interface
struct Expression { virtual ~Expression() {} };
template <class T>
struct Expr : public Expression
{
typedef T ValueType;
virtual ValueType eval() const = 0;
};
//specific binary expression based on STL function objects
template <class StlOp>
struct BinaryExp : public Expr<typename StlOp::result_type>
{
typedef const Expr<typename StlOp::first_argument_type> SourceExp;
BinaryExp(const SourceExp& lhs, const SourceExp& rhs, StlOp biop) : lhs_(lhs), rhs_(rhs), biop_(biop) {}
virtual typename StlOp::result_type eval() const { return biop_(lhs_.eval(), rhs_.eval()); }
const SourceExp& lhs_;
const SourceExp& rhs_;
StlOp biop_;
};
template <class StlOp>
inline
BinaryExp<StlOp> makeBiExp(const Expression& lhs, const Expression& rhs, StlOp biop) //throw (std::bad_cast)
{
return BinaryExp<StlOp>(dynamic_cast<const Expr<typename StlOp::first_argument_type >&>(lhs),
dynamic_cast<const Expr<typename StlOp::second_argument_type>&>(rhs), biop);
}
template <class Out>
struct TernaryExp : public Out
{
TernaryExp(const Expr<bool>& ifExp, const Out& thenExp, const Out& elseExp) : ifExp_(ifExp), thenExp_(thenExp), elseExp_(elseExp) {}
virtual typename Out::ValueType eval() const { return ifExp_.eval() ? thenExp_.eval() : elseExp_.eval(); }
const Expr<bool>& ifExp_;
const Out& thenExp_;
const Out& elseExp_;
};
struct LiteralNumberEx : public Expr<int>
{
LiteralNumberEx(int n) : n_(n) {}
virtual int eval() const { return n_; }
int n_;
};
struct NumberN : public Expr<int>
{
NumberN(int& n) : n_(n) {}
virtual int eval() const { return n_; }
int& n_;
};
typedef zen::Zbase<char> Wstring;
class PluralForm
{
public:
struct ParsingError {};
//.po format,e.g.: (n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)
PluralForm(const Wstring& phrase) : n_(0)
{
Parser(phrase, //in
expr, n_, dump); //out
}
int getForm(int n) const { n_ = n ; return expr->eval(); }
private:
typedef std::list<std::shared_ptr<Expression> > DumpList;
struct Token
{
enum Type
{
TK_TERNARY_QUEST,
TK_TERNARY_COLON,
TK_OR,
TK_AND,
TK_EQUAL,
TK_NOT_EQUAL,
TK_LESS,
TK_LESS_EQUAL,
TK_GREATER,
TK_GREATER_EQUAL,
TK_MODULUS,
TK_N,
TK_NUMBER,
TK_BRACKET_LEFT,
TK_BRACKET_RIGHT,
TK_END
};
Token(Type t) : type(t), number(0) {}
Type type;
int number; //if type == TK_NUMBER
};
class Scanner
{
public:
Scanner(const Wstring& phrase) : stream(phrase), pos(stream.begin())
{
tokens.push_back(std::make_pair("?" , Token::TK_TERNARY_QUEST));
tokens.push_back(std::make_pair(":" , Token::TK_TERNARY_COLON));
tokens.push_back(std::make_pair("||", Token::TK_OR ));
tokens.push_back(std::make_pair("&&", Token::TK_AND ));
tokens.push_back(std::make_pair("==", Token::TK_EQUAL ));
tokens.push_back(std::make_pair("!=", Token::TK_NOT_EQUAL ));
tokens.push_back(std::make_pair("<=", Token::TK_LESS_EQUAL ));
tokens.push_back(std::make_pair("<" , Token::TK_LESS ));
tokens.push_back(std::make_pair(">=", Token::TK_GREATER_EQUAL));
tokens.push_back(std::make_pair(">" , Token::TK_GREATER ));
tokens.push_back(std::make_pair("%" , Token::TK_MODULUS ));
tokens.push_back(std::make_pair("n" , Token::TK_N ));
tokens.push_back(std::make_pair("N" , Token::TK_N ));
tokens.push_back(std::make_pair("(" , Token::TK_BRACKET_LEFT ));
tokens.push_back(std::make_pair(")" , Token::TK_BRACKET_RIGHT));
}
Token nextToken()
{
//skip whitespace
pos = std::find_if(pos, stream.end(), std::not1(std::ptr_fun(std::iswspace)));
if (pos == stream.end()) return Token(Token::TK_END);
for (TokenList::const_iterator i = tokens.begin(); i != tokens.end(); ++i)
if (startsWith(i->first))
{
pos += i->first.size();
return Token(i->second);
}
Wstring::const_iterator digitEnd = std::find_if(pos, stream.end(), std::not1(std::ptr_fun(std::iswdigit)));
int digitCount = digitEnd - pos;
if (digitCount != 0)
{
Token out(Token::TK_NUMBER);
out.number = zen::toNumber<int>(Wstring(&*pos, digitCount));
pos += digitCount;
return out;
}
throw ParsingError(); //unknown token
}
private:
bool startsWith(const Wstring& prefix) const
{
if (stream.end() - pos < static_cast<ptrdiff_t>(prefix.size()))
return false;
return std::equal(prefix.begin(), prefix.end(), pos);
}
typedef std::vector<std::pair<Wstring, Token::Type> > TokenList;
TokenList tokens;
const Wstring stream;
Wstring::const_iterator pos;
};
class Parser
{
public:
Parser(const Wstring& phrase, //in
const Expr<int>*& expr, int& n, PluralForm::DumpList& dump) : //out
scn(phrase),
tk(scn.nextToken()),
n_(n),
dump_(dump)
{
try
{
const Expression& e = parse();
expr = &dynamic_cast<const Expr<int>&>(e);
}
catch (std::bad_cast&) { throw ParsingError(); }
consumeToken(Token::TK_END);
}
private:
void nextToken() { tk = scn.nextToken(); }
const Token& token() const { return tk; }
void consumeToken(Token::Type t)
{
if (token().type != t)
throw ParsingError();
nextToken();
}
const Expression& parse() { return parseConditional(); };
const Expression& parseConditional()
{
const Expression& e = parseLogicalOr();
if (token().type == Token::TK_TERNARY_QUEST)
{
nextToken();
const Expression& thenEx = parse(); //associativity: <-
consumeToken(Token::TK_TERNARY_COLON);
const Expression& elseEx = parse(); //
return manageObj(TernaryExp<Expr<int> >(dynamic_cast<const Expr<bool>&>(e),
dynamic_cast<const Expr<int>&>(thenEx),
dynamic_cast<const Expr<int>&>(elseEx)));
}
return e;
}
const Expression& parseLogicalOr()
{
const Expression* e = &parseLogicalAnd();
for (;;) //associativity: ->
if (token().type == Token::TK_OR)
{
nextToken();
const Expression& rhs = parseLogicalAnd();
e = &manageObj(makeBiExp(*e, rhs, std::logical_or<bool>()));
}
else break;
return *e;
}
const Expression& parseLogicalAnd()
{
const Expression* e = &parseEquality();
for (;;) //associativity: ->
if (token().type == Token::TK_AND)
{
nextToken();
const Expression& rhs = parseEquality();
e = &manageObj(makeBiExp(*e, rhs, std::logical_and<bool>()));
}
else break;
return *e;
}
const Expression& parseEquality()
{
const Expression& e = parseRelational();
Token::Type t = token().type;
if (t == Token::TK_EQUAL || t == Token::TK_NOT_EQUAL) //associativity: n/a
{
nextToken();
const Expression& rhs = parseRelational();
if (t == Token::TK_EQUAL) return manageObj(makeBiExp(e, rhs, std::equal_to <int>()));
if (t == Token::TK_NOT_EQUAL) return manageObj(makeBiExp(e, rhs, std::not_equal_to<int>()));
}
return e;
}
const Expression& parseRelational()
{
const Expression& e = parseMultiplicative();
Token::Type t = token().type;
if (t == Token::TK_LESS || //associativity: n/a
t == Token::TK_LESS_EQUAL ||
t == Token::TK_GREATER ||
t == Token::TK_GREATER_EQUAL)
{
nextToken();
const Expression& rhs = parseMultiplicative();
if (t == Token::TK_LESS) return manageObj(makeBiExp(e, rhs, std::less <int>()));
if (t == Token::TK_LESS_EQUAL) return manageObj(makeBiExp(e, rhs, std::less_equal <int>()));
if (t == Token::TK_GREATER) return manageObj(makeBiExp(e, rhs, std::greater <int>()));
if (t == Token::TK_GREATER_EQUAL) return manageObj(makeBiExp(e, rhs, std::greater_equal<int>()));
}
return e;
}
const Expression& parseMultiplicative()
{
const Expression* e = &parsePrimary();
for (;;) //associativity: ->
if (token().type == Token::TK_MODULUS)
{
nextToken();
const Expression& rhs = parsePrimary();
//"compile-time" check: n % 0
const LiteralNumberEx* literal = dynamic_cast<const LiteralNumberEx*>(&rhs);
if (literal && literal->eval() == 0)
throw ParsingError();
e = &manageObj(makeBiExp(*e, rhs, std::modulus<int>()));
}
else break;
return *e;
}
const Expression& parsePrimary()
{
if (token().type == Token::TK_N)
{
nextToken();
return manageObj(NumberN(n_));
}
else if (token().type == Token::TK_NUMBER)
{
const int number = token().number;
nextToken();
return manageObj(LiteralNumberEx(number));
}
else if (token().type == Token::TK_BRACKET_LEFT)
{
nextToken();
const Expression& e = parse();
consumeToken(Token::TK_BRACKET_RIGHT);
return e;
}
else
throw ParsingError();
}
template <class T>
const T& manageObj(const T& obj)
{
std::shared_ptr<Expression> newEntry(new T(obj));
dump_.push_back(newEntry);
return static_cast<T&>(*dump_.back());
}
Scanner scn;
Token tk;
int& n_;
DumpList& dump_; //manage polymorphc object lifetimes
};
const Expr<int>* expr;
mutable int n_;
PluralForm::DumpList dump; //manage polymorphc object lifetimes
};
#endif // PARSE_PLURAL_H_INCLUDED
|