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
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
|
// ----------------------------------------------------------------------
// definition of Entry's function members
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// prerequisite source files and headers
// ----------------------------------------------------------------------
#include "FWCore/ParameterSet/interface/Entry.h"
#include "FWCore/Utilities/interface/EDMException.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ParameterSet/interface/types.h"
#include "FWCore/Utilities/interface/Digest.h"
#include <map>
#include <sstream>
#include <ostream>
#include <cassert>
#include <iostream>
#include <string_view>
enum : char {
kTbool = 'B',
kTvBool = 'b',
kTint32 = 'I',
kTvint32 = 'i',
kTuint32 = 'U',
kTvuint32 = 'u',
kTint64 = 'L',
kTvint64 = 'l',
kTuint64 = 'X',
kTvuint64 = 'x',
kTstringHex = 'S',
kTvstringHex = 's',
kTstringRaw = 'Z',
kTvstringRaw = 'z',
kTdouble = 'D',
kTvdouble = 'd',
kTPSet = 'P',
kTvPSet = 'p',
kTpath = 'T',
kTFileInPath = 'F',
kTInputTag = 't',
kTVInputTag = 'v',
kTESInputTag = 'g',
kTVESInputTag = 'G',
kTEventID = 'E',
kTVEventID = 'e',
kTLuminosityBlockID = 'M',
kTVLuminosityBlockID = 'm',
kTLuminosityBlockRange = 'A',
kTVLuminosityBlockRange = 'a',
kTEventRange = 'R',
kTVEventRange = 'r'
};
static constexpr const std::array<std::string_view, 32> s_types = {{"bool",
"double",
"int32",
"int64",
"path",
"string",
"deprecated_string",
"uint32",
"uint64",
"vdouble",
"vint32",
"vint64",
"vstring",
"vstring_deprecated",
"vuint32",
"vuint64",
"vBool",
"vPSet",
"EventID",
"EventRange",
"ESInputTag",
"FileInPath",
"InputTag",
"LuminosityBlockID",
"LuminosityBlockRange",
"PSet",
"VEventID",
"VEventRange",
"VESInputTag",
"VInputTag",
"VLuminosityBlockID",
"VLuminosityBlockRange"}};
static constexpr const std::array<char, 32> s_codes = {{kTbool,
kTdouble,
kTint32,
kTint64,
kTpath,
kTstringRaw,
kTstringHex,
kTuint32,
kTuint64,
kTvdouble,
kTvint32,
kTvint64,
kTvstringRaw,
kTvstringHex,
kTvuint32,
kTvuint64,
kTvBool,
kTvPSet,
kTEventID,
kTEventRange,
kTESInputTag,
kTFileInPath,
kTInputTag,
kTLuminosityBlockID,
kTLuminosityBlockRange,
kTPSet,
kTVEventID,
kTVEventRange,
kTVESInputTag,
kTVInputTag,
kTVLuminosityBlockID,
kTVLuminosityBlockRange}};
//a compile time function to convert code to type
// not used at runtime since does linear search
static constexpr std::string_view c2t(char iCode) {
static_assert(s_codes.size() == s_types.size());
for (size_t index = 0; index < s_codes.size(); ++index) {
if (s_codes[index] == iCode) {
return s_types[index];
}
}
return std::string_view();
}
static constexpr std::array<std::string_view, 255> fillTable() {
std::array<std::string_view, 255> table_ = {{std::string_view()}};
static_assert(not c2t(kTvBool).empty());
table_[kTvBool] = c2t(kTvBool);
static_assert(not c2t(kTbool).empty());
table_[kTbool] = c2t(kTbool);
static_assert(not c2t(kTvint32).empty());
table_[kTvint32] = c2t(kTvint32);
static_assert(not c2t(kTint32).empty());
table_[kTint32] = c2t(kTint32);
static_assert(not c2t(kTvuint32).empty());
table_[kTvuint32] = c2t(kTvuint32);
static_assert(not c2t(kTuint32).empty());
table_[kTuint32] = c2t(kTuint32);
static_assert(not c2t(kTvint64).empty());
table_[kTvint64] = c2t(kTvint64);
static_assert(not c2t(kTint64).empty());
table_[kTint64] = c2t(kTint64);
static_assert(not c2t(kTvuint64).empty());
table_[kTvuint64] = c2t(kTvuint64);
static_assert(not c2t(kTuint64).empty());
table_[kTuint64] = c2t(kTuint64);
static_assert(not c2t(kTvstringRaw).empty());
table_[kTvstringRaw] = c2t(kTvstringRaw);
static_assert(not c2t(kTvstringHex).empty());
table_[kTvstringHex] = c2t(kTvstringHex);
static_assert(not c2t(kTstringRaw).empty());
table_[kTstringRaw] = c2t(kTstringRaw);
static_assert(not c2t(kTstringHex).empty());
table_[kTstringHex] = c2t(kTstringHex);
static_assert(not c2t(kTvdouble).empty());
table_[kTvdouble] = c2t(kTvdouble);
static_assert(not c2t(kTdouble).empty());
table_[kTdouble] = c2t(kTdouble);
static_assert(not c2t(kTvPSet).empty());
table_[kTvPSet] = c2t(kTvPSet);
static_assert(not c2t(kTPSet).empty());
table_[kTPSet] = c2t(kTPSet);
static_assert(not c2t(kTpath).empty());
table_[kTpath] = c2t(kTpath);
static_assert(not c2t(kTFileInPath).empty());
table_[kTFileInPath] = c2t(kTFileInPath);
static_assert(not c2t(kTInputTag).empty());
table_[kTInputTag] = c2t(kTInputTag);
static_assert(not c2t(kTVInputTag).empty());
table_[kTVInputTag] = c2t(kTVInputTag);
static_assert(not c2t(kTESInputTag).empty());
table_[kTESInputTag] = c2t(kTESInputTag);
static_assert(not c2t(kTVESInputTag).empty());
table_[kTVESInputTag] = c2t(kTVESInputTag);
static_assert(not c2t(kTVEventID).empty());
table_[kTVEventID] = c2t(kTVEventID);
static_assert(not c2t(kTFileInPath).empty());
table_[kTEventID] = c2t(kTEventID);
static_assert(not c2t(kTVLuminosityBlockID).empty());
table_[kTVLuminosityBlockID] = c2t(kTVLuminosityBlockID);
static_assert(not c2t(kTLuminosityBlockID).empty());
table_[kTLuminosityBlockID] = c2t(kTLuminosityBlockID);
static_assert(not c2t(kTVLuminosityBlockRange).empty());
table_[kTVLuminosityBlockRange] = c2t(kTVLuminosityBlockRange);
static_assert(not c2t(kTLuminosityBlockRange).empty());
table_[kTLuminosityBlockRange] = c2t(kTLuminosityBlockRange);
static_assert(not c2t(kTVEventRange).empty());
table_[kTVEventRange] = c2t(kTVEventRange);
static_assert(not c2t(kTEventRange).empty());
table_[kTEventRange] = c2t(kTEventRange);
return table_;
}
static constexpr const std::array<std::string_view, 255> s_table = fillTable();
static constexpr std::string_view typeFromCode(char iCode) { return s_table[iCode]; }
static char codeFromType(std::string_view iType) {
auto itFound = std::lower_bound(s_types.begin(), s_types.end(), iType);
if (itFound == s_types.end() or *itFound != iType) {
throw edm::Exception(edm::errors::Configuration) << "bad type name used for Entry : " << iType;
}
return s_codes[itFound - s_types.begin()];
}
namespace edm {
// ----------------------------------------------------------------------
// consistency-checker
// ----------------------------------------------------------------------
void Entry::validate() const {
// tracked
assert(tracked_ == '+' || tracked_ == '-');
// if(tracked_ != '+' && tracked_ != '-')
// throw EntryError(std::string("invalid tracked code ") + tracked_);
// type and rep
switch (type_) {
case kTbool: { // Bool
bool val;
if (!decode(val, rep_))
throwEntryError("bool", rep_);
break;
}
case kTvBool: { // vBool
std::vector<bool> val;
if (!decode(val, rep_))
throwEntryError("vector<bool>", rep_);
break;
}
case kTint32: { // Int32
int val;
if (!decode(val, rep_))
throwEntryError("int", rep_);
break;
}
case kTvint32: { // vInt32
std::vector<int> val;
if (!decode(val, rep_))
throwEntryError("vector<int>", rep_);
break;
}
case kTuint32: { // Uint32
unsigned val;
if (!decode(val, rep_))
throwEntryError("unsigned int", rep_);
break;
}
case kTvuint32: { // vUint32
std::vector<unsigned> val;
if (!decode(val, rep_))
throwEntryError("vector<unsigned int>", rep_);
break;
}
case kTint64: { // Int64
long long int val;
if (!decode(val, rep_))
throwEntryError("int64", rep_);
break;
}
case kTvint64: { // vInt64
std::vector<long long int> val;
if (!decode(val, rep_))
throwEntryError("vector<int64>", rep_);
break;
}
case kTuint64: { // Uint64
unsigned long long int val;
if (!decode(val, rep_))
throwEntryError("unsigned int64", rep_);
break;
}
case kTvuint64: { // vUint64
std::vector<unsigned long long int> val;
if (!decode(val, rep_))
throwEntryError("vector<unsigned int64>", rep_);
break;
}
case kTstringRaw: { // String
std::string val;
if (!decode(val, rep_))
throwEntryError("string", rep_);
break;
}
case kTvstringRaw: { // vString
std::vector<std::string> val;
if (!decode(val, rep_))
throwEntryError("vector<string>", rep_);
break;
}
case kTstringHex: { // String
std::string val;
if (!decode_deprecated(val, rep_))
throwEntryError("string_hex", rep_);
break;
}
case kTvstringHex: { // vString
std::vector<std::string> val;
if (!decode_deprecated(val, rep_))
throwEntryError("vector<string_hex>", rep_);
break;
}
case kTFileInPath: { // FileInPath
FileInPath val;
if (!decode(val, rep_))
throwEntryError("FileInPath", rep_);
break;
}
case kTInputTag: { // InputTag
InputTag val;
if (!decode(val, rep_))
throwEntryError("InputTag", rep_);
break;
}
case kTVInputTag: { // VInputTag
std::vector<InputTag> val;
if (!decode(val, rep_))
throwEntryError("VInputTag", rep_);
break;
}
case kTESInputTag: { //ESInputTag
ESInputTag val;
if (!decode(val, rep_))
throwEntryError("ESInputTag", rep_);
break;
}
case kTVESInputTag: { //ESInputTag
std::vector<ESInputTag> val;
if (!decode(val, rep_))
throwEntryError("VESInputTag", rep_);
break;
}
case kTEventID: { // EventID
EventID val;
if (!decode(val, rep_))
throwEntryError("EventID", rep_);
break;
}
case kTVEventID: { // VEventID
std::vector<EventID> val;
if (!decode(val, rep_))
throwEntryError("VEventID", rep_);
break;
}
case kTLuminosityBlockID: { // LuminosityBlockID
LuminosityBlockID val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockID", rep_);
break;
}
case kTVLuminosityBlockID: { // VLuminosityBlockID
std::vector<LuminosityBlockID> val;
if (!decode(val, rep_))
throwEntryError("VLuminosityBlockID", rep_);
break;
}
case kTdouble: { // Double
double val;
if (!decode(val, rep_))
throwEntryError("double", rep_);
break;
}
case kTvdouble: { // vDouble
std::vector<double> val;
if (!decode(val, rep_))
throwEntryError("vector<double>", rep_);
break;
}
case kTPSet: { // ParameterSet
ParameterSet val;
if (!decode(val, rep_))
throwEntryError("ParameterSet", rep_);
break;
}
case kTvPSet: { // vParameterSet
std::vector<ParameterSet> val;
if (!decode(val, rep_))
throwEntryError("vector<ParameterSet>", rep_);
break;
}
case kTLuminosityBlockRange: { // LuminosityBlockRange
LuminosityBlockRange val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockRange", rep_);
break;
}
case kTVLuminosityBlockRange: { // VLuminosityBlockRange
std::vector<LuminosityBlockRange> val;
if (!decode(val, rep_))
throwEntryError("VLuminosityBlockRange", rep_);
break;
}
case kTEventRange: { // EventRange
EventRange val;
if (!decode(val, rep_))
throwEntryError("EventRange", rep_);
break;
}
case kTVEventRange: { // VEventRange
std::vector<EventRange> val;
if (!decode(val, rep_))
throwEntryError("VEventRange", rep_);
break;
}
default: {
// We should never get here.
throw edm::Exception(edm::errors::Configuration) << "Unknown ParameterSet Entry type encoding: '" << type_
<< "'.\n This could be caused by reading a file which was "
"written using a newer incompatible software release.";
break;
}
} // switch(type)
} // Entry::validate()
// ----------------------------------------------------------------------
// constructors
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// Bool
Entry::Entry(std::string const& name, bool val, bool is_tracked)
: name_(name), rep_(), type_(kTbool), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("bool");
validate();
}
// ----------------------------------------------------------------------
// Int32
Entry::Entry(std::string const& name, int val, bool is_tracked)
: name_(name), rep_(), type_(kTint32), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("int");
validate();
}
// ----------------------------------------------------------------------
// vInt32
Entry::Entry(std::string const& name, std::vector<int> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvint32), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<int>");
validate();
}
// ----------------------------------------------------------------------
// Uint32
Entry::Entry(std::string const& name, unsigned val, bool is_tracked)
: name_(name), rep_(), type_(kTuint32), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("unsigned int");
validate();
}
// ----------------------------------------------------------------------
// vUint32
Entry::Entry(std::string const& name, std::vector<unsigned> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvuint32), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<unsigned int>");
validate();
}
// ----------------------------------------------------------------------
// Int64
Entry::Entry(std::string const& name, long long val, bool is_tracked)
: name_(name), rep_(), type_(kTint64), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("int64");
validate();
}
// ----------------------------------------------------------------------
// vInt64
Entry::Entry(std::string const& name, std::vector<long long> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvint64), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<int64>");
validate();
}
// ----------------------------------------------------------------------
// Uint64
Entry::Entry(std::string const& name, unsigned long long val, bool is_tracked)
: name_(name), rep_(), type_(kTuint64), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("unsigned int64");
validate();
}
// ----------------------------------------------------------------------
// vUint64
Entry::Entry(std::string const& name, std::vector<unsigned long long> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvuint64), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<unsigned int64>");
validate();
}
// ----------------------------------------------------------------------
// Double
Entry::Entry(std::string const& name, double val, bool is_tracked)
: name_(name), rep_(), type_(kTdouble), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("double");
validate();
}
// ----------------------------------------------------------------------
// vDouble
Entry::Entry(std::string const& name, std::vector<double> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvdouble), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<double>");
validate();
}
// ----------------------------------------------------------------------
// String
Entry::Entry(std::string const& name, std::string const& val, bool is_tracked)
: name_(name), rep_(), type_(kTstringRaw), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("string");
validate();
}
// ----------------------------------------------------------------------
// vString
Entry::Entry(std::string const& name, std::vector<std::string> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvstringRaw), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<string>");
validate();
}
// ----------------------------------------------------------------------
// FileInPath
Entry::Entry(std::string const& name, FileInPath const& val, bool is_tracked)
: name_(name), rep_(), type_(kTFileInPath), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("FileInPath");
validate();
}
// ----------------------------------------------------------------------
// InputTag
Entry::Entry(std::string const& name, InputTag const& val, bool is_tracked)
: name_(name), rep_(), type_(kTInputTag), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("InputTag");
validate();
}
// ----------------------------------------------------------------------
// VInputTag
Entry::Entry(std::string const& name, std::vector<InputTag> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVInputTag), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VInputTag");
validate();
}
// ----------------------------------------------------------------------
// ESInputTag
Entry::Entry(std::string const& name, ESInputTag const& val, bool is_tracked)
: name_(name), rep_(), type_(kTESInputTag), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("InputTag");
validate();
}
// ----------------------------------------------------------------------
// VESInputTag
Entry::Entry(std::string const& name, std::vector<ESInputTag> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVESInputTag), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VESInputTag");
validate();
}
// ----------------------------------------------------------------------
// EventID
Entry::Entry(std::string const& name, EventID const& val, bool is_tracked)
: name_(name), rep_(), type_(kTEventID), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("EventID");
validate();
}
// ----------------------------------------------------------------------
// VEventID
Entry::Entry(std::string const& name, std::vector<EventID> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVEventID), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VEventID");
validate();
}
// ----------------------------------------------------------------------
// LuminosityBlockID
Entry::Entry(std::string const& name, LuminosityBlockID const& val, bool is_tracked)
: name_(name), rep_(), type_(kTLuminosityBlockID), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("LuminosityBlockID");
validate();
}
// ----------------------------------------------------------------------
// VLuminosityBlockID
Entry::Entry(std::string const& name, std::vector<LuminosityBlockID> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVLuminosityBlockID), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VLuminosityBlockID");
validate();
}
// ----------------------------------------------------------------------
// LuminosityBlockRange
Entry::Entry(std::string const& name, LuminosityBlockRange const& val, bool is_tracked)
: name_(name), rep_(), type_(kTLuminosityBlockRange), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("LuminosityBlockRange");
validate();
}
// ----------------------------------------------------------------------
// VLuminosityBlockRange
Entry::Entry(std::string const& name, std::vector<LuminosityBlockRange> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVLuminosityBlockRange), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VLuminosityBlockRange");
validate();
}
// ----------------------------------------------------------------------
// EventRange
Entry::Entry(std::string const& name, EventRange const& val, bool is_tracked)
: name_(name), rep_(), type_(kTEventRange), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("EventRange");
validate();
}
// ----------------------------------------------------------------------
// VEventRange
Entry::Entry(std::string const& name, std::vector<EventRange> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTVEventRange), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("VEventRange");
validate();
}
// ----------------------------------------------------------------------
// ParameterSet
Entry::Entry(std::string const& name, ParameterSet const& val, bool is_tracked)
: name_(name), rep_(), type_(kTPSet), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("ParameterSet");
validate();
}
// ----------------------------------------------------------------------
// vPSet
Entry::Entry(std::string const& name, std::vector<ParameterSet> const& val, bool is_tracked)
: name_(name), rep_(), type_(kTvPSet), tracked_(is_tracked ? '+' : '-') {
if (!encode(rep_, val))
throwEncodeError("vector<ParameterSet>");
validate();
}
// ----------------------------------------------------------------------
// coded string
Entry::Entry(std::string name, std::string_view code) : name_(std::move(name)), rep_(), type_('?'), tracked_('?') {
if (!fromString(code.begin(), code.end()))
throwEncodeError("coded string");
validate();
}
Entry::Entry(std::string name, std::string_view type, std::string_view value, bool is_tracked)
: name_(std::move(name)), rep_(), type_('?'), tracked_('?') {
std::string codedString(is_tracked ? "-" : "+");
codedString += codeFromType(type);
codedString += '(';
codedString += value;
codedString += ')';
std::string_view v = codedString;
if (!fromString(v.begin(), v.end())) {
throw Exception(errors::Configuration) << "bad encoded Entry string " << codedString;
}
validate();
}
Entry::Entry(std::string name, std::string_view type, std::vector<std::string> const& value, bool is_tracked)
: name_(std::move(name)), rep_(), type_('?'), tracked_('?') {
std::string codedString(is_tracked ? "-" : "+");
codedString += codeFromType(type);
codedString += '(';
codedString += '{';
std::vector<std::string>::const_iterator i = value.begin();
std::vector<std::string>::const_iterator e = value.end();
std::string const kSeparator(",");
std::string sep("");
for (; i != e; ++i) {
codedString += sep;
codedString += *i;
sep = kSeparator;
}
codedString += '}';
codedString += ')';
std::string_view v = codedString;
if (!fromString(v.begin(), v.end())) {
throw Exception(errors::Configuration) << "bad encoded Entry string " << codedString;
}
validate();
}
std::string_view Entry::bounds(std::string_view iView, std::size_t iEndHint) {
if (iView.size() < 4) {
return {};
}
if (iView[1] == kTPSet) {
auto extent = edm::decode_pset_extent(iView.substr(3));
if (not extent) {
return {};
}
return iView.substr(0, extent->size() + 3 + 1);
} else if (iView[1] == kTvPSet) {
auto extent = edm::decode_vpset_extent(iView.substr(3));
if (not extent) {
return {};
}
return iView.substr(0, extent->size() + 3 + 1);
} else if (iView[1] != kTstringRaw and iView[1] != kTvstringRaw) {
return iView.substr(0, iEndHint);
}
if (iView[1] == kTstringRaw) {
// is of the form
// [trackiness][type](...\0)[endHintChar]
// where decode returns the ...\0 part
auto extent = edm::decode_string_extent(iView.substr(3));
if (not extent) {
return {};
}
return iView.substr(0, extent->size() + 3 + 1);
}
// is of the form
// [trackiness][type]({...})[endHitChar]
// where decode returns the {...} part
auto extent = edm::decode_vstring_extent(iView.substr(3));
if (not extent) {
return {};
}
return iView.substr(0, extent->size() + 3 + 1);
}
// ----------------------------------------------------------------------
// coding
// ----------------------------------------------------------------------
void Entry::toString(std::string& result) const {
result.reserve(result.size() + sizeOfString());
result += tracked_;
result += type_;
result += '(';
result += rep_;
result += ')';
}
void Entry::toDigest(cms::Digest& digest) const {
digest.append(&tracked_, 1);
digest.append(&type_, 1);
digest.append("(", 1);
digest.append(rep_);
digest.append(")", 1);
}
std::string Entry::toString() const {
std::string result;
toString(result);
return result;
}
// ----------------------------------------------------------------------
bool Entry::fromString(std::string_view::const_iterator const b, std::string_view::const_iterator const e) {
if (static_cast<unsigned int>(e - b) < 4u || b[2] != '(' || e[-1] != ')')
return false;
tracked_ = b[0];
type_ = b[1];
rep_ = std::string(b + 3, e - 1);
return true;
} // from_string()
// ----------------------------------------------------------------------
// value accessors
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// Bool
bool Entry::getBool() const {
if (type_ != kTbool)
throwValueError("bool");
bool val;
if (!decode(val, rep_))
throwEntryError("bool", rep_);
return val;
}
// ----------------------------------------------------------------------
// Int32
int Entry::getInt32() const {
if (type_ != kTint32)
throwValueError("int");
int val;
if (!decode(val, rep_))
throwEntryError("int", rep_);
return val;
}
// ----------------------------------------------------------------------
// vInt32
std::vector<int> Entry::getVInt32() const {
if (type_ != kTvint32)
throwValueError("vector<int>");
std::vector<int> val;
if (!decode(val, rep_))
throwEntryError("vector<int>", rep_);
return val;
}
// ----------------------------------------------------------------------
// Int32
long long Entry::getInt64() const {
if (type_ != kTint64)
throwValueError("int64");
long long val;
if (!decode(val, rep_))
throwEntryError("int64", rep_);
return val;
}
// ----------------------------------------------------------------------
// vInt32
std::vector<long long> Entry::getVInt64() const {
if (type_ != kTvint64)
throwValueError("vector<int64>");
std::vector<long long> val;
if (!decode(val, rep_))
throwEntryError("vector<int64>", rep_);
return val;
}
// ----------------------------------------------------------------------
// Uint32
unsigned Entry::getUInt32() const {
if (type_ != kTuint32)
throwValueError("unsigned int");
unsigned val;
if (!decode(val, rep_))
throwEntryError("unsigned int", rep_);
return val;
}
// ----------------------------------------------------------------------
// vUint32
std::vector<unsigned> Entry::getVUInt32() const {
if (type_ != kTvuint32)
throwValueError("vector<unsigned int>");
std::vector<unsigned> val;
if (!decode(val, rep_))
throwEntryError("vector<unsigned int>", rep_);
return val;
}
// ----------------------------------------------------------------------
// Uint64
unsigned long long Entry::getUInt64() const {
if (type_ != kTuint64)
throwValueError("uint64");
unsigned long long val;
if (!decode(val, rep_))
throwEntryError("uint64", rep_);
return val;
}
// ----------------------------------------------------------------------
// vUint64
std::vector<unsigned long long> Entry::getVUInt64() const {
if (type_ != kTvuint64)
throwValueError("vector<uint64>");
std::vector<unsigned long long> val;
if (!decode(val, rep_))
throwEntryError("vector<uint64>", rep_);
return val;
}
// ----------------------------------------------------------------------
// Double
double Entry::getDouble() const {
if (type_ != kTdouble)
throwValueError("double");
double val;
if (!decode(val, rep_))
throwEntryError("double", rep_);
return val;
}
// ----------------------------------------------------------------------
// vDouble
std::vector<double> Entry::getVDouble() const {
if (type_ != kTvdouble)
throwValueError("vector<double>");
std::vector<double> val;
if (!decode(val, rep_))
throwEntryError("vector<double>", rep_);
return val;
}
// ----------------------------------------------------------------------
// String
std::string Entry::getString() const {
if (type_ != kTstringRaw and type_ != kTstringHex)
throwValueError("string");
std::string val;
if (type_ == kTstringHex) {
if (!decode_deprecated(val, rep_)) {
throwEntryError("string", rep_);
}
} else if (!decode(val, rep_)) {
throwEntryError("string", rep_);
}
return val;
}
// ----------------------------------------------------------------------
// vString
std::vector<std::string> Entry::getVString() const {
if (type_ != kTvstringRaw and type_ != kTvstringHex)
throwValueError("vector<string>");
std::vector<std::string> val;
if (type_ == kTvstringHex) {
if (!decode_deprecated(val, rep_))
throwEntryError("vector<string>", rep_);
} else if (!decode(val, rep_)) {
throwEntryError("vector<string>", rep_);
}
return val;
}
// ----------------------------------------------------------------------
// FileInPath
FileInPath Entry::getFileInPath() const {
if (type_ != kTFileInPath)
throwValueError("FileInPath");
FileInPath val;
if (!decode(val, rep_))
throwEntryError("FileInPath", rep_);
return val;
}
// ----------------------------------------------------------------------
// InputTag
InputTag Entry::getInputTag() const {
if (type_ != kTInputTag)
throwValueError("InputTag");
InputTag val;
if (!decode(val, rep_))
throwEntryError("InputTag", rep_);
return val;
}
// ----------------------------------------------------------------------
// VInputTag
std::vector<InputTag> Entry::getVInputTag() const {
if (type_ != kTVInputTag)
throwValueError("VInputTag");
std::vector<InputTag> val;
if (!decode(val, rep_))
throwEntryError("VInputTag", rep_);
return val;
}
// ----------------------------------------------------------------------
// ESInputTag
ESInputTag Entry::getESInputTag() const {
if (type_ != kTESInputTag)
throwValueError("ESInputTag");
ESInputTag val;
if (!decode(val, rep_))
throwEntryError("ESInputTag", rep_);
return val;
}
// ----------------------------------------------------------------------
// VESInputTag
std::vector<ESInputTag> Entry::getVESInputTag() const {
if (type_ != kTVESInputTag)
throwValueError("VESInputTag");
std::vector<ESInputTag> val;
if (!decode(val, rep_))
throwEntryError("VESInputTag", rep_);
return val;
}
// ----------------------------------------------------------------------
// EventID
EventID Entry::getEventID() const {
if (type_ != kTEventID)
throwValueError("EventID");
EventID val;
if (!decode(val, rep_))
throwEntryError("EventID", rep_);
return val;
}
// ----------------------------------------------------------------------
// VEventID
std::vector<EventID> Entry::getVEventID() const {
if (type_ != kTVEventID)
throwValueError("VEventID");
std::vector<EventID> val;
if (!decode(val, rep_))
throwEntryError("EventID", rep_);
return val;
}
// ----------------------------------------------------------------------
// LuminosityBlockID
LuminosityBlockID Entry::getLuminosityBlockID() const {
if (type_ != kTLuminosityBlockID)
throwValueError("LuminosityBlockID");
LuminosityBlockID val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockID", rep_);
return val;
}
// ----------------------------------------------------------------------
// VLuminosityBlockID
std::vector<LuminosityBlockID> Entry::getVLuminosityBlockID() const {
if (type_ != kTVLuminosityBlockID)
throwValueError("VLuminosityBlockID");
std::vector<LuminosityBlockID> val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockID", rep_);
return val;
}
// LuminosityBlockRange
LuminosityBlockRange Entry::getLuminosityBlockRange() const {
if (type_ != kTLuminosityBlockRange)
throwValueError("LuminosityBlockRange");
LuminosityBlockRange val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockRange", rep_);
return val;
}
// ----------------------------------------------------------------------
// VLuminosityBlockRange
std::vector<LuminosityBlockRange> Entry::getVLuminosityBlockRange() const {
if (type_ != kTVLuminosityBlockRange)
throwValueError("VLuminosityBlockRange");
std::vector<LuminosityBlockRange> val;
if (!decode(val, rep_))
throwEntryError("LuminosityBlockRange", rep_);
return val;
}
// ----------------------------------------------------------------------
// EventRange
EventRange Entry::getEventRange() const {
if (type_ != kTEventRange)
throwValueError("EventRange");
EventRange val;
if (!decode(val, rep_))
throwEntryError("EventRange", rep_);
return val;
}
// ----------------------------------------------------------------------
// VEventRange
std::vector<EventRange> Entry::getVEventRange() const {
if (type_ != kTVEventRange)
throwValueError("VEventRange");
std::vector<EventRange> val;
if (!decode(val, rep_))
throwEntryError("EventRange", rep_);
return val;
}
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// ParameterSet
ParameterSet Entry::getPSet() const {
if (type_ != kTPSet)
throwValueError("ParameterSet");
ParameterSet val;
if (!decode(val, rep_))
throwEntryError("ParameterSet", rep_);
return val;
}
// ----------------------------------------------------------------------
// vPSet
std::vector<ParameterSet> Entry::getVPSet() const {
if (type_ != kTvPSet)
throwValueError("vector<ParameterSet>");
std::vector<ParameterSet> val;
if (!decode(val, rep_))
throwEntryError("vector<ParameterSet>", rep_);
return val;
}
std::ostream& operator<<(std::ostream& os, Entry const& entry) {
os << typeFromCode(entry.typeCode()) << " " << (entry.isTracked() ? "tracked " : "untracked ") << " = ";
// now handle the difficult cases
switch (entry.typeCode()) {
case kTPSet: // ParameterSet
{
os << entry.getPSet();
break;
}
case 'p': // vector<ParameterSet>
{
// Make sure we get the representation of each contained
// ParameterSet including *only* tracked parameters
std::vector<ParameterSet> whole = entry.getVPSet();
std::vector<ParameterSet>::const_iterator i = whole.begin();
std::vector<ParameterSet>::const_iterator e = whole.end();
std::string start = "";
std::string const between(",\n");
os << "{" << std::endl;
for (; i != e; ++i) {
os << start << *i;
start = between;
}
if (!whole.empty()) {
os << std::endl;
}
os << "}";
break;
}
case kTstringRaw: {
os << "'" << entry.getString() << "'";
break;
}
case kTvstringRaw: {
os << "{";
std::string_view start = "'";
std::string_view const between(",'");
std::vector<std::string> strings = entry.getVString();
for (auto const& s : strings) {
os << start << s << "'";
start = between;
}
os << "}";
break;
}
case kTstringHex: {
os << "'" << entry.getString() << "'";
break;
}
case kTvstringHex: {
os << "{";
std::string_view start = "'";
std::string_view const between(",'");
std::vector<std::string> strings = entry.getVString();
for (auto const& s : strings) {
os << start << s << "'";
start = between;
}
os << "}";
break;
}
case kTint32: {
os << entry.getInt32();
break;
}
case kTuint32: {
os << entry.getUInt32();
break;
}
case kTVInputTag: {
//VInputTag needs to be treated seperately because it is encode like
// vector<string> rather than using the individual encodings of each InputTag
os << "{";
std::string start = "";
std::string const between(",");
std::vector<InputTag> tags = entry.getVInputTag();
for (std::vector<InputTag>::const_iterator it = tags.begin(), itEnd = tags.end(); it != itEnd; ++it) {
os << start << it->encode();
start = between;
}
os << "}";
break;
}
case kTVESInputTag: {
//VESInputTag needs to be treated seperately because it is encode like
// vector<string> rather than using the individual encodings of each ESInputTag
os << "{";
std::string start = "";
std::string const between(",");
std::vector<ESInputTag> tags = entry.getVESInputTag();
for (std::vector<ESInputTag>::const_iterator it = tags.begin(), itEnd = tags.end(); it != itEnd; ++it) {
os << start << it->encode();
start = between;
}
os << "}";
break;
}
default: {
os << entry.rep_;
break;
}
}
return os;
}
// Helper functions for throwing exceptions
void Entry::throwValueError(char const* expectedType) const {
throw Exception(errors::Configuration, "ValueError")
<< "type of " << name_ << " is expected to be " << expectedType << " but declared as " << typeFromCode(type_);
}
void Entry::throwEntryError(char const* expectedType, std::string const& badRep) const {
throw Exception(errors::Configuration, "EntryError") << "can not convert representation of " << name_ << ": "
<< badRep << " to value of type " << expectedType << " ";
}
void Entry::throwEncodeError(char const* type) const {
throw Exception(errors::Configuration, "EncodingError") << "can not encode " << name_ << " as type: " << type;
}
} // namespace edm
|