-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargs_parser.hpp
More file actions
730 lines (655 loc) · 19.5 KB
/
Copy pathargs_parser.hpp
File metadata and controls
730 lines (655 loc) · 19.5 KB
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
#pragma once
#include <iomanip>
#include <string>
#include <sstream>
#include <vector>
struct QueryRequest {
std::string id;
std::string line;
};
// Helper function to parse IN list from tuple syntax: ('val1', 'val2', ...)
std::vector<std::string> parse_in_list(std::istringstream& iss) {
std::vector<std::string> result;
// Read opening parenthesis
char c;
iss >> std::ws >> c;
if (c != '(') {
std::ostringstream oss;
oss << "Expected '(' at start of IN list, but got '"
<< c << "' (int=" << static_cast<int>(static_cast<unsigned char>(c)) << ")";
throw std::runtime_error(oss.str());
}
bool first = true;
while (iss >> std::ws) {
// Check for closing parenthesis
if (iss.peek() == ')') {
iss.get(); // consume ')'
break;
}
// Skip comma after first element
if (!first) {
iss >> std::ws >> c;
if (c != ',') {
throw std::runtime_error("Expected ',' between IN list elements");
}
}
first = false;
std::string value;
iss >> std::ws;
if (iss.peek() == '\'') {
iss.get();
while (iss) {
const char ch = static_cast<char>(iss.get());
if (!iss) break;
if (ch == '\'') {
if (iss.peek() == '\'') {
iss.get();
value.push_back('\'');
continue;
}
break;
}
value.push_back(ch);
}
} else {
while (iss && iss.peek() != ',' && iss.peek() != ')') {
value.push_back(static_cast<char>(iss.get()));
}
const auto start = value.find_first_not_of(" \t\r\n");
const auto end = value.find_last_not_of(" \t\r\n");
if (start == std::string::npos) {
value.clear();
} else {
value = value.substr(start, end - start + 1);
}
}
result.push_back(value);
}
return result;
}
//Q1a
struct Q1aArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::vector<std::string> INFO1;
std::vector<std::string> INFO2;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
std::string YEAR1;
std::string YEAR2;
};
inline Q1aArgs parse_q1a(const QueryRequest& request) {
Q1aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q1a: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
args.INFO1 = parse_in_list(iss);
args.INFO2 = parse_in_list(iss);
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q1a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q1a: failed to parse YEAR2");
}
return args;
}
//Q2a
struct Q2aArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::vector<std::string> INFO1;
std::vector<std::string> INFO2;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
std::string YEAR1;
std::string YEAR2;
};
inline Q2aArgs parse_q2a(const QueryRequest& request) {
Q2aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q2a: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
args.INFO1 = parse_in_list(iss);
args.INFO2 = parse_in_list(iss);
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q2a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q2a: failed to parse YEAR2");
}
return args;
}
//Q2b
struct Q2bArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::vector<std::string> INFO1;
std::vector<std::string> INFO2;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> KEYWORD;
};
inline Q2bArgs parse_q2b(const QueryRequest& request) {
Q2bArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q2b: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
args.INFO1 = parse_in_list(iss);
args.INFO2 = parse_in_list(iss);
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q2b: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q2b: failed to parse YEAR2");
}
args.KEYWORD = parse_in_list(iss);
return args;
}
//Q2c
struct Q2cArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::vector<std::string> INFO1;
std::vector<std::string> INFO2;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> TITLE;
};
inline Q2cArgs parse_q2c(const QueryRequest& request) {
Q2cArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q2c: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
args.INFO1 = parse_in_list(iss);
args.INFO2 = parse_in_list(iss);
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q2c: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q2c: failed to parse YEAR2");
}
args.TITLE = parse_in_list(iss);
return args;
}
//Q3a
struct Q3aArgs {
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> KEYWORD;
std::vector<std::string> COUNTRY;
std::vector<std::string> KIND1;
std::vector<std::string> KIND2;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
};
inline Q3aArgs parse_q3a(const QueryRequest& request) {
Q3aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q3a: failed to parse query id");
}
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q3a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q3a: failed to parse YEAR2");
}
args.KEYWORD = parse_in_list(iss);
args.COUNTRY = parse_in_list(iss);
args.KIND1 = parse_in_list(iss);
args.KIND2 = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
return args;
}
//Q3b
struct Q3bArgs {
std::string TITLE;
std::string NAME_PCODE_NF;
std::string NAME;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
};
inline Q3bArgs parse_q3b(const QueryRequest& request) {
Q3bArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q3b: failed to parse query id");
}
if (!(iss >> std::quoted(args.TITLE))) {
throw std::runtime_error("Q3b: failed to parse TITLE");
}
if (!(iss >> std::quoted(args.NAME_PCODE_NF))) {
throw std::runtime_error("Q3b: failed to parse NAME_PCODE_NF");
}
if (!(iss >> std::quoted(args.NAME))) {
throw std::runtime_error("Q3b: failed to parse NAME");
}
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
return args;
}
//Q4a
struct Q4aArgs {
std::vector<std::string> GENDER;
std::vector<std::string> NAME_PCODE_NF;
std::vector<std::string> NOTE;
std::vector<std::string> ROLE;
std::vector<std::string> ID;
};
inline Q4aArgs parse_q4a(const QueryRequest& request) {
Q4aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q4a: failed to parse query id");
}
args.GENDER = parse_in_list(iss);
args.NAME_PCODE_NF = parse_in_list(iss);
args.NOTE = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.ID = parse_in_list(iss);
return args;
}
//Q5a
struct Q5aArgs {
std::vector<std::string> KIND;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> INFO1;
std::vector<std::string> ID1;
std::string ID2;
std::string ID3;
std::string INFO2;
std::string INFO3;
std::string INFO4;
std::string INFO5;
};
inline Q5aArgs parse_q5a(const QueryRequest& request) {
Q5aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q5a: failed to parse query id");
}
args.KIND = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q5a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q5a: failed to parse YEAR2");
}
args.INFO1 = parse_in_list(iss);
args.ID1 = parse_in_list(iss);
if (!(iss >> std::quoted(args.ID2))) {
throw std::runtime_error("Q5a: failed to parse ID2");
}
if (!(iss >> std::quoted(args.ID3))) {
throw std::runtime_error("Q5a: failed to parse ID3");
}
if (!(iss >> std::quoted(args.INFO2))) {
throw std::runtime_error("Q5a: failed to parse INFO2");
}
if (!(iss >> std::quoted(args.INFO3))) {
throw std::runtime_error("Q5a: failed to parse INFO3");
}
if (!(iss >> std::quoted(args.INFO4))) {
throw std::runtime_error("Q5a: failed to parse INFO4");
}
if (!(iss >> std::quoted(args.INFO5))) {
throw std::runtime_error("Q5a: failed to parse INFO5");
}
return args;
}
//Q6a
struct Q6aArgs {
std::vector<std::string> KIND;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> INFO1;
std::vector<std::string> ID1;
std::string ID2;
std::string ID3;
std::string INFO2;
std::string INFO3;
std::string INFO4;
std::string INFO5;
std::vector<std::string> GENDER;
std::vector<std::string> NAME_PCODE_NF;
std::vector<std::string> NOTE;
std::vector<std::string> ROLE;
std::vector<std::string> ID4;
};
inline Q6aArgs parse_q6a(const QueryRequest& request) {
Q6aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q6a: failed to parse query id");
}
args.KIND = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q6a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q6a: failed to parse YEAR2");
}
args.INFO1 = parse_in_list(iss);
args.ID1 = parse_in_list(iss);
if (!(iss >> std::quoted(args.ID2))) {
throw std::runtime_error("Q6a: failed to parse ID2");
}
if (!(iss >> std::quoted(args.ID3))) {
throw std::runtime_error("Q6a: failed to parse ID3");
}
if (!(iss >> std::quoted(args.INFO2))) {
throw std::runtime_error("Q6a: failed to parse INFO2");
}
if (!(iss >> std::quoted(args.INFO3))) {
throw std::runtime_error("Q6a: failed to parse INFO3");
}
if (!(iss >> std::quoted(args.INFO4))) {
throw std::runtime_error("Q6a: failed to parse INFO4");
}
if (!(iss >> std::quoted(args.INFO5))) {
throw std::runtime_error("Q6a: failed to parse INFO5");
}
args.GENDER = parse_in_list(iss);
args.NAME_PCODE_NF = parse_in_list(iss);
args.NOTE = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.ID4 = parse_in_list(iss);
return args;
}
//Q7a
struct Q7aArgs {
std::vector<std::string> KIND;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> INFO1;
std::vector<std::string> ID1;
std::string ID2;
std::string ID3;
std::string INFO2;
std::string INFO3;
std::string INFO4;
std::string INFO5;
std::vector<std::string> GENDER;
std::vector<std::string> NAME_PCODE_NF;
std::vector<std::string> NOTE;
std::vector<std::string> ROLE;
std::vector<std::string> ID4;
};
inline Q7aArgs parse_q7a(const QueryRequest& request) {
Q7aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q7a: failed to parse query id");
}
args.KIND = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q7a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q7a: failed to parse YEAR2");
}
args.INFO1 = parse_in_list(iss);
args.ID1 = parse_in_list(iss);
if (!(iss >> std::quoted(args.ID2))) {
throw std::runtime_error("Q7a: failed to parse ID2");
}
if (!(iss >> std::quoted(args.ID3))) {
throw std::runtime_error("Q7a: failed to parse ID3");
}
if (!(iss >> std::quoted(args.INFO2))) {
throw std::runtime_error("Q7a: failed to parse INFO2");
}
if (!(iss >> std::quoted(args.INFO3))) {
throw std::runtime_error("Q7a: failed to parse INFO3");
}
if (!(iss >> std::quoted(args.INFO4))) {
throw std::runtime_error("Q7a: failed to parse INFO4");
}
if (!(iss >> std::quoted(args.INFO5))) {
throw std::runtime_error("Q7a: failed to parse INFO5");
}
args.GENDER = parse_in_list(iss);
args.NAME_PCODE_NF = parse_in_list(iss);
args.NOTE = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.ID4 = parse_in_list(iss);
return args;
}
//Q8a
struct Q8aArgs {
std::vector<std::string> ID;
std::vector<std::string> INFO;
std::vector<std::string> KIND1;
std::vector<std::string> ROLE;
std::vector<std::string> GENDER;
std::vector<std::string> NAME_PCODE_CF;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> NAME;
std::vector<std::string> KIND2;
};
inline Q8aArgs parse_q8a(const QueryRequest& request) {
Q8aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q8a: failed to parse query id");
}
args.ID = parse_in_list(iss);
args.INFO = parse_in_list(iss);
args.KIND1 = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
args.GENDER = parse_in_list(iss);
args.NAME_PCODE_CF = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q8a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q8a: failed to parse YEAR2");
}
args.NAME = parse_in_list(iss);
args.KIND2 = parse_in_list(iss);
return args;
}
//Q9a
struct Q9aArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::string INFO1;
std::string INFO2;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
};
inline Q9aArgs parse_q9a(const QueryRequest& request) {
Q9aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q9a: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
if (!(iss >> std::quoted(args.INFO1))) {
throw std::runtime_error("Q9a: failed to parse INFO1");
}
if (!(iss >> std::quoted(args.INFO2))) {
throw std::runtime_error("Q9a: failed to parse INFO2");
}
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
return args;
}
//Q9b
struct Q9bArgs {
std::vector<std::string> ID1;
std::vector<std::string> ID2;
std::vector<std::string> INFO;
std::string NAME;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::string YEAR1;
std::string YEAR2;
};
inline Q9bArgs parse_q9b(const QueryRequest& request) {
Q9bArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q9b: failed to parse query id");
}
args.ID1 = parse_in_list(iss);
args.ID2 = parse_in_list(iss);
args.INFO = parse_in_list(iss);
if (!(iss >> std::quoted(args.NAME))) {
throw std::runtime_error("Q9b: failed to parse NAME");
}
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q9b: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q9b: failed to parse YEAR2");
}
return args;
}
//Q10a
struct Q10aArgs {
std::vector<std::string> ID;
std::vector<std::string> INFO;
std::string NAME;
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
};
inline Q10aArgs parse_q10a(const QueryRequest& request) {
Q10aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q10a: failed to parse query id");
}
args.ID = parse_in_list(iss);
args.INFO = parse_in_list(iss);
if (!(iss >> std::quoted(args.NAME))) {
throw std::runtime_error("Q10a: failed to parse NAME");
}
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
return args;
}
//Q11a
struct Q11aArgs {
std::string KIND;
std::vector<std::string> ROLE;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> ID;
std::string INFO;
std::string NAME;
};
inline Q11aArgs parse_q11a(const QueryRequest& request) {
Q11aArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q11a: failed to parse query id");
}
if (!(iss >> std::quoted(args.KIND))) {
throw std::runtime_error("Q11a: failed to parse KIND");
}
args.ROLE = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q11a: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q11a: failed to parse YEAR2");
}
args.ID = parse_in_list(iss);
if (!(iss >> std::quoted(args.INFO))) {
throw std::runtime_error("Q11a: failed to parse INFO");
}
if (!(iss >> std::quoted(args.NAME))) {
throw std::runtime_error("Q11a: failed to parse NAME");
}
return args;
}
//Q11b
struct Q11bArgs {
std::vector<std::string> KIND;
std::vector<std::string> ROLE;
std::string YEAR1;
std::string YEAR2;
std::vector<std::string> ID1;
std::string INFO1;
std::string INFO2;
std::vector<std::string> ID2;
};
inline Q11bArgs parse_q11b(const QueryRequest& request) {
Q11bArgs args;
std::istringstream iss(request.line);
std::string qid;
if (!(iss >> qid)) { // consume query id
throw std::runtime_error("Q11b: failed to parse query id");
}
args.KIND = parse_in_list(iss);
args.ROLE = parse_in_list(iss);
if (!(iss >> std::quoted(args.YEAR1))) {
throw std::runtime_error("Q11b: failed to parse YEAR1");
}
if (!(iss >> std::quoted(args.YEAR2))) {
throw std::runtime_error("Q11b: failed to parse YEAR2");
}
args.ID1 = parse_in_list(iss);
if (!(iss >> std::quoted(args.INFO1))) {
throw std::runtime_error("Q11b: failed to parse INFO1");
}
if (!(iss >> std::quoted(args.INFO2))) {
throw std::runtime_error("Q11b: failed to parse INFO2");
}
args.ID2 = parse_in_list(iss);
return args;
}