-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglsexpand.cpp
432 lines (367 loc) · 10.9 KB
/
glsexpand.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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
//
// Copyright (c) 2019 Sergiu Deitsch <sergiu.deitsch@gmail.com>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation and/or
// other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// #define BOOST_SPIRIT_X3_DEBUG
#include <algorithm>
#include <sstream>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <locale>
#include <map>
#include <string>
#include <vector>
#include <boost/filesystem/fstream.hpp>
#include <boost/spirit/home/support/iterators/istream_iterator.hpp>
#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/home/x3/support/ast/variant.hpp>
namespace ast {
enum Flags
{
None = 0,
Plural = 1 << 0,
Uppercase = 1 << 1,
First = 1 << 2
};
constexpr int ModifiersMask = Plural | Uppercase;
// Abbreviation definition
struct Abbreviation
{
std::string name;
std::string shortName;
std::string value;
};
// Reference to an abbreviation
struct Reference
{
std::string name;
unsigned flags;
};
} // namespace ast
namespace gls {
using namespace boost::spirit::x3;
const rule<struct options, std::string> options = "options";
const rule<struct addition, std::string> addition = "addition";
const rule<struct text, std::string> text = "text";
const rule<struct nested, std::string> nested = "nested";
const rule<struct group, std::string> group = "group";
const rule<struct nested_group, std::string> nested_group = "nested_group";
const auto text_def = lexeme[+(char_ - '{' - '}')];
const auto nested_def =
+(text | nested_group); // Allow to mix groups and text as in "{group1 {group2} text}"
// Make sure to capture the braces of nested groups
const auto nested_group_def = char_('{') >> nested >> char_('}');
const auto group_def = '{' >> -nested >> '}';
const auto options_def = '[' >> *(char_ - ']') >> ']';
BOOST_SPIRIT_DEFINE(text, nested, nested_group, group);
const auto addition_def =
"\\addition"
>> omit[options]
>> group
;
BOOST_SPIRIT_DEFINE(addition, options);
const auto newacronym_def =
"\\newacronym"
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
}
)
]
>> group
[
(
[] (auto& ctx)
{
_val(ctx).shortName = _attr(ctx);
}
)
]
>> group
[
(
[] (auto& ctx)
{
_val(ctx).value = _attr(ctx);
}
)
]
;
// Parse \gls
const auto gls_def =
lit("\\gls")
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
_val(ctx).flags = ast::None;
}
)
]
;
// Parse \Gls
const auto Gls_def =
lit("\\Gls")
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
_val(ctx).flags = ast::Uppercase;
}
)
]
;
// Parse \glspl
const auto glspl_def =
lit("\\glspl")
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
_val(ctx).flags = ast::Plural;
}
)
]
;
// Parse \Glspl
const auto Glspl_def =
lit("\\Glspl")
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
_val(ctx).flags = ast::Uppercase | ast::Plural;
}
)
]
;
// Parse \Glsfirst
const auto Glsfirst_def =
lit("\\Glsfirst")
>> group
[
(
[] (auto& ctx)
{
_val(ctx).name = _attr(ctx);
_val(ctx).flags = ast::Uppercase | ast::First;
}
)
]
;
const auto gls_other =
lit("\\gls") >> +alpha
;
const rule<struct Gls, ast::Reference> Gls = "Gls";
const rule<struct Glsfrst, ast::Reference> Glsfirst = "Glsfirst";
const rule<struct Glspl, ast::Reference> Glspl = "Glspl";
const rule<struct gls, ast::Reference> gls = "gls";
const rule<struct glspl, ast::Reference> glspl = "glspl";
const rule<struct newacronym, ast::Abbreviation> newacronym = "newacronym";
BOOST_SPIRIT_DEFINE(newacronym);
BOOST_SPIRIT_DEFINE(gls);
BOOST_SPIRIT_DEFINE(glspl);
BOOST_SPIRIT_DEFINE(Gls);
BOOST_SPIRIT_DEFINE(Glsfirst);
BOOST_SPIRIT_DEFINE(Glspl);
const auto gls_commands =
newacronym
| gls
| glspl
| Gls
| Glsfirst
| Glspl
;
const auto gls_tokens =
*(
gls_commands
| omit[gls_other]
|
+(
char_
- "\\newacronym"
- "\\gls"
- "\\glspl"
- "\\Gls"
- "\\Glspl"
)
) >> eoi;
const auto addition_tokens =
*(
addition
|
+(
char_
- "\\addition"
)
) >> eoi;
} // namespace gls
std::ostream& make_uppercase(std::ostream& out, const std::string& value)
{
if (!value.empty())
out << std::toupper(value[0], std::locale::classic()) << value.substr(1);
return out;
}
struct Expand
{
using result_type = void;
Expand(std::ostream& out, std::map<std::string, std::pair<ast::Abbreviation, bool> >& definitions)
: out(out)
, definitions(definitions)
{
}
void operator()(const std::string& value) const
{
out << value;
}
void operator()(const ast::Reference& value)
{
auto pos = definitions.find(value.name);
if (pos != definitions.end()) {
bool used = pos->second.second && (value.flags & ast::First) != ast::First;
switch (value.flags & ast::ModifiersMask) {
case ast::None:
if (!used)
out << pos->second.first.value << " (" << pos->second.first.shortName << ")";
else
out << pos->second.first.shortName;
break;
case ast::Plural:
if (!used)
out << pos->second.first.value << "s" << " (" << pos->second.first.shortName << "s)";
else
out << pos->second.first.shortName << "s";
break;
case ast::Uppercase:
if (!used)
make_uppercase(out, pos->second.first.value) << " (" << pos->second.first.shortName << ")";
else
make_uppercase(out, pos->second.first.shortName);
break;
case ast::Uppercase | ast::Plural:
if (!used)
make_uppercase(out, pos->second.first.value) << "s" << " (" << pos->second.first.shortName << "s)";
else
make_uppercase(out, pos->second.first.shortName) << "s";
break;
}
pos->second.second = true;
}
else
throw std::runtime_error("missing definition for " + value.name);
}
void operator()(const ast::Abbreviation& value) const
{
}
std::ostream& out;
std::map<std::string, std::pair<ast::Abbreviation, bool> >& definitions;
};
struct BuildDictionary
{
using result_type = void;
void operator()(const std::string& value) const
{
}
void operator()(const ast::Reference& value) const
{
//std::cout << value.name << std::endl;
}
void operator()(const ast::Abbreviation& value)
{
//std::cout << value.name << std::endl;
dict[value.name] = std::make_pair(value, false);
if (value.value.empty())
std::cerr << "warning: description of " << value.name << " is empty\n";
}
std::map<std::string, std::pair<ast::Abbreviation, bool> > dict;
};
int main(int argc, char** argv)
{
boost::filesystem::ifstream in(argv[1]);
if (!in) {
std::cerr << "error: failed to open input " << std::quoted(argv[1]) << std::endl;
return EXIT_FAILURE;
}
in.unsetf(std::ios_base::skipws);
using namespace boost::spirit::x3;
using Entry = variant
<
std::string
, ast::Reference
, ast::Abbreviation
>;
std::vector
<
Entry
> values;
bool parsed = parse
(
boost::spirit::istream_iterator(in)
, boost::spirit::istream_iterator()
, gls::gls_tokens
, values
);
if (!parsed) {
std::cerr << "error: failed to parse the input\n";
return EXIT_FAILURE;
}
BuildDictionary dict;
std::for_each(values.begin(), values.end(),
[&dict] (const auto& entry)
{
entry.apply_visitor(dict);
}
);
// Expansion of \addition requires a second pass
std::stringstream out;
Expand e{out, dict.dict};
for (auto val : values) {
val.apply_visitor(e);
}
std::string gls = out.str();
std::string expanded;
parsed = parse
(
gls.begin()
, gls.end()
, gls::addition_tokens
, expanded
);
if (!parsed) {
std::cerr << "error: failed to parse the input\n";
return EXIT_FAILURE;
}
std::copy(expanded.begin(), expanded.end(), std::ostreambuf_iterator<char>(std::cout));
}