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
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
|
#include <algorithm>
#include <chrono>
#include <memory>
#include <sstream>
#include <unistd.h>
#include <vector>
#include "EventFilter/Utilities/interface/SourceRawFile.h"
#include "EventFilter/Utilities/interface/DAQSource.h"
#include "EventFilter/Utilities/interface/DAQSourceModels.h"
#include "EventFilter/Utilities/interface/DAQSourceModelsFRD.h"
#include "EventFilter/Utilities/interface/DAQSourceModelsScoutingRun3.h"
#include "EventFilter/Utilities/interface/DAQSourceModelsDTH.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/InputSourceDescription.h"
#include "FWCore/Framework/interface/InputSourceMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/UnixSignalHandlers.h"
#include "DataFormats/Provenance/interface/EventAuxiliary.h"
#include "DataFormats/Provenance/interface/EventID.h"
#include "DataFormats/Provenance/interface/Timestamp.h"
#include "EventFilter/Utilities/interface/SourceCommon.h"
#include "EventFilter/Utilities/interface/DataPointDefinition.h"
#include "EventFilter/Utilities/interface/FFFNamingSchema.h"
#include "EventFilter/Utilities/interface/crc32c.h"
//JSON file reader
#include "EventFilter/Utilities/interface/reader.h"
using namespace evf::FastMonState;
DAQSource::DAQSource(edm::ParameterSet const& pset, edm::InputSourceDescription const& desc)
: edm::RawInputSource(pset, desc),
dataModeConfig_(pset.getUntrackedParameter<std::string>("dataMode")),
eventChunkSize_(uint64_t(pset.getUntrackedParameter<unsigned int>("eventChunkSize")) << 20),
maxChunkSize_(uint64_t(pset.getUntrackedParameter<unsigned int>("maxChunkSize")) << 20),
eventChunkBlock_(uint64_t(pset.getUntrackedParameter<unsigned int>("eventChunkBlock")) << 20),
numConcurrentReads_(pset.getUntrackedParameter<int>("numConcurrentReads", -1)),
numBuffers_(pset.getUntrackedParameter<unsigned int>("numBuffers")),
maxBufferedFiles_(pset.getUntrackedParameter<unsigned int>("maxBufferedFiles")),
alwaysStartFromFirstLS_(pset.getUntrackedParameter<bool>("alwaysStartFromFirstLS", false)),
verifyChecksum_(pset.getUntrackedParameter<bool>("verifyChecksum")),
inputConsistencyChecks_(pset.getUntrackedParameter<bool>("inputConsistencyChecks")),
useL1EventID_(pset.getUntrackedParameter<bool>("useL1EventID")),
testTCDSFEDRange_(pset.getUntrackedParameter<std::vector<unsigned int>>("testTCDSFEDRange")),
listFileNames_(pset.getUntrackedParameter<std::vector<std::string>>("fileNames")),
fileListMode_(pset.getUntrackedParameter<bool>("fileListMode")),
fileDiscoveryMode_(pset.getUntrackedParameter<bool>("fileDiscoveryMode", false)),
fileListLoopMode_(pset.getUntrackedParameter<bool>("fileListLoopMode", false)),
runNumber_(edm::Service<evf::EvFDaqDirector>()->getRunNumber()),
processHistoryID_(),
currentLumiSection_(0),
eventsThisLumi_(0),
rng_(std::chrono::system_clock::now().time_since_epoch().count()) {
char thishost[256];
gethostname(thishost, 255);
if (maxChunkSize_ == 0)
maxChunkSize_ = eventChunkSize_;
else if (maxChunkSize_ < eventChunkSize_)
throw cms::Exception("DAQSource::DAQSource") << "maxChunkSize must be equal or larger than eventChunkSize";
if (eventChunkBlock_ == 0)
eventChunkBlock_ = eventChunkSize_;
else if (eventChunkBlock_ > eventChunkSize_)
throw cms::Exception("DAQSource::DAQSource") << "eventChunkBlock must be equal or smaller than eventChunkSize";
edm::LogInfo("DAQSource") << "Construction. read-ahead chunk size -: " << std::endl
<< (eventChunkSize_ >> 20) << " MB on host " << thishost << " in mode " << dataModeConfig_;
uint16_t MINTCDSuTCAFEDID = FEDNumbering::MINTCDSuTCAFEDID;
uint16_t MAXTCDSuTCAFEDID = FEDNumbering::MAXTCDSuTCAFEDID;
if (!testTCDSFEDRange_.empty()) {
if (testTCDSFEDRange_.size() != 2) {
throw cms::Exception("DAQSource::DAQSource") << "Invalid TCDS Test FED range parameter";
}
MINTCDSuTCAFEDID = testTCDSFEDRange_[0];
MAXTCDSuTCAFEDID = testTCDSFEDRange_[1];
}
//load mode class based on parameter
if (dataModeConfig_ == "FRD") {
dataMode_ = std::make_shared<DataModeFRD>(this, inputConsistencyChecks_);
} else if (dataModeConfig_ == "FRDPreUnpack") {
dataMode_ = std::make_shared<DataModeFRDPreUnpack>(this, inputConsistencyChecks_);
} else if (dataModeConfig_ == "FRDStriped") {
dataMode_ = std::make_shared<DataModeFRDStriped>(this, inputConsistencyChecks_);
} else if (dataModeConfig_ == "ScoutingRun3") {
dataMode_ = std::make_shared<DataModeScoutingRun3>(this);
} else if (dataModeConfig_ == "DTH") {
dataMode_ = std::make_shared<DataModeDTH>(this, verifyChecksum_);
} else
throw cms::Exception("DAQSource::DAQSource") << "Unknown data mode " << dataModeConfig_;
daqDirector_ = edm::Service<evf::EvFDaqDirector>().operator->();
dataMode_->setTCDSSearchRange(MINTCDSuTCAFEDID, MAXTCDSuTCAFEDID);
dataMode_->setTesting(pset.getUntrackedParameter<bool>("testing", false));
long autoRunNumber = -1;
if (fileListMode_) {
autoRunNumber = initFileList();
daqDirector_->setFileListMode();
if (!fileListLoopMode_) {
if (autoRunNumber < 0)
throw cms::Exception("DAQSource::DAQSource") << "Run number not found from filename";
//override run number
runNumber_ = (edm::RunNumber_t)autoRunNumber;
daqDirector_->overrideRunNumber((unsigned int)autoRunNumber);
}
}
dataMode_->makeDirectoryEntries(daqDirector_->getBUBaseDirs(),
daqDirector_->getBUBaseDirsNSources(),
daqDirector_->getBUBaseDirsSourceIDs(),
daqDirector_->getSourceIdentifier(),
daqDirector_->runString());
auto& daqProvenanceHelpers = dataMode_->makeDaqProvenanceHelpers();
for (const auto& daqProvenanceHelper : daqProvenanceHelpers)
processHistoryID_ = daqProvenanceHelper->daqInit(productRegistryUpdate(), processHistoryRegistryForUpdate());
setNewRun();
//todo:autodetect from file name (assert if names differ)
setRunAuxiliary(new edm::RunAuxiliary(runNumber_, edm::Timestamp::beginOfTime(), edm::Timestamp::invalidTimestamp()));
//make sure that chunk size is N * block size
assert(eventChunkSize_ >= eventChunkBlock_);
readBlocks_ = eventChunkSize_ / eventChunkBlock_;
if (readBlocks_ * eventChunkBlock_ != eventChunkSize_)
eventChunkSize_ = readBlocks_ * eventChunkBlock_;
if (!numBuffers_)
throw cms::Exception("DAQSource::DAQSource") << "no reading enabled with numBuffers parameter 0";
if (numConcurrentReads_ <= 0)
numConcurrentReads_ = numBuffers_ - 1;
assert(numBuffers_ > 1);
readingFilesCount_ = 0;
heldFilesCount_ = 0;
if (!crc32c_hw_test())
edm::LogError("DAQSource::DAQSource") << "Intel crc32c checksum computation unavailable";
//get handles to DaqDirector and FastMonitoringService because getting them isn't possible in readSupervisor thread
if (fileListMode_) {
try {
fms_ = static_cast<evf::FastMonitoringService*>(edm::Service<evf::FastMonitoringService>().operator->());
} catch (cms::Exception const&) {
edm::LogInfo("DAQSource") << "No FastMonitoringService found in the configuration";
}
} else {
fms_ = static_cast<evf::FastMonitoringService*>(edm::Service<evf::FastMonitoringService>().operator->());
if (!fms_) {
throw cms::Exception("DAQSource") << "FastMonitoringService not found";
}
}
daqDirector_ = edm::Service<evf::EvFDaqDirector>().operator->();
if (!daqDirector_)
cms::Exception("DAQSource") << "EvFDaqDirector not found";
edm::LogInfo("DAQSource") << "EvFDaqDirector/Source configured to use file service";
if (fms_) {
daqDirector_->setFMS(fms_);
fms_->setInputSource(this);
fms_->setInState(inInit);
fms_->setInStateSup(inInit);
}
//should delete chunks when run stops
for (unsigned int i = 0; i < numBuffers_; i++) {
freeChunks_.push(new InputChunk(eventChunkSize_));
}
quit_threads_ = false;
//prepare data shared by threads
for (unsigned int i = 0; i < (unsigned)numConcurrentReads_; i++) {
thread_quit_signal.push_back(false);
workerJob_.push_back(ReaderInfo(nullptr, nullptr));
cvReader_.push_back(std::make_unique<std::condition_variable>());
tid_active_.push_back(0);
}
//start threads
for (unsigned int i = 0; i < (unsigned)numConcurrentReads_; i++) {
//wait for each thread to complete initialization
std::unique_lock<std::mutex> lk(startupLock_);
workerThreads_.push_back(new std::thread(&DAQSource::readWorker, this, i));
startupCv_.wait(lk);
}
runAuxiliary()->setProcessHistoryID(processHistoryID_);
}
DAQSource::~DAQSource() {
quit_threads_ = true;
if (startedSupervisorThread_)
fileDeleterThread_->join();
//delete any remaining open files
if (!fms_ || !fms_->exceptionDetected()) {
std::unique_lock<std::mutex> lkw(fileDeleteLock_);
for (auto it = filesToDelete_.begin(); it != filesToDelete_.end(); it++)
it->second.reset();
} else {
//skip deleting files with exception
std::unique_lock<std::mutex> lkw(fileDeleteLock_);
for (auto it = filesToDelete_.begin(); it != filesToDelete_.end(); it++) {
if (fms_->isExceptionOnData(it->second->lumi_))
it->second->unsetDeleteFile();
else
it->second.reset();
}
//disable deleting current file with exception
if (currentFile_.get())
if (fms_->isExceptionOnData(currentFile_->lumi_))
currentFile_->unsetDeleteFile();
}
if (startedSupervisorThread_) {
readSupervisorThread_->join();
} else {
//join aux threads in case the supervisor thread was not started
for (unsigned int i = 0; i < workerThreads_.size(); i++) {
std::unique_lock<std::mutex> lk(mReader_);
thread_quit_signal[i] = true;
cvReader_[i]->notify_one();
lk.unlock();
workerThreads_[i]->join();
delete workerThreads_[i];
}
}
}
void DAQSource::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.setComment("File-based Filter Farm input source for reading raw data from BU ramdisk (unified)");
desc.addUntracked<std::string>("dataMode", "FRD")->setComment("Data mode: event 'FRD', 'FRSStriped', 'ScoutingRun2'");
desc.addUntracked<unsigned int>("eventChunkSize", 64)->setComment("Input buffer (chunk) size");
desc.addUntracked<unsigned int>("maxChunkSize", 0)
->setComment("Maximum chunk size allowed if buffer is resized to fit data. If 0 is specifier, use chunk size");
desc.addUntracked<unsigned int>("eventChunkBlock", 0)
->setComment(
"Block size used in a single file read call (must be smaller or equal to the initial chunk buffer size). If "
"0 is specified, use chunk size.");
desc.addUntracked<int>("numConcurrentReads", -1)
->setComment(
"Max number of concurrent reads. If not positive, it will "
"be set to numBuffers - 1");
desc.addUntracked<unsigned int>("numBuffers", 2)->setComment("Number of buffers used for reading input");
desc.addUntracked<unsigned int>("maxBufferedFiles", 2)
->setComment("Maximum number of simultaneously buffered raw files");
desc.addUntracked<unsigned int>("alwaysStartFromfirstLS", false)
->setComment("Force source to start from LS 1 if server provides higher lumisection number");
desc.addUntracked<bool>("verifyChecksum", true)
->setComment("Verify event CRC-32C checksum of FRDv5 and higher or Adler32 with v3 and v4");
desc.addUntracked<bool>("inputConsistencyChecks", true)
->setComment("Additional consistency checks such as checking that the FED ID set is the same in all events");
desc.addUntracked<bool>("useL1EventID", false)
->setComment("Use L1 event ID from FED header if true or from TCDS FED if false");
desc.addUntracked<std::vector<unsigned int>>("testTCDSFEDRange", std::vector<unsigned int>())
->setComment("[min, max] range to search for TCDS FED ID in test setup");
desc.addUntracked<bool>("fileListMode", false)
->setComment("Use fileNames parameter to directly specify raw files to open");
desc.addUntracked<bool>("fileDiscoveryMode", false)
->setComment("Use filesystem discovery and assignment of files by renaming");
desc.addUntracked<std::vector<std::string>>("fileNames", std::vector<std::string>())
->setComment("file list used when fileListMode is enabled");
desc.setAllowAnything();
descriptions.add("source", desc);
}
edm::RawInputSource::Next DAQSource::checkNext() {
if (!startedSupervisorThread_) {
std::unique_lock<std::mutex> lk(startupLock_);
//this thread opens new files and dispatches reading to worker readers
readSupervisorThread_ = std::make_unique<std::thread>(&DAQSource::readSupervisor, this);
//this thread deletes files out of the main loop
fileDeleterThread_ = std::make_unique<std::thread>(&DAQSource::fileDeleter, this);
startedSupervisorThread_ = true;
startupCv_.wait(lk);
}
//signal hltd to start event accounting
if (!currentLumiSection_)
daqDirector_->createProcessingNotificationMaybe();
setMonState(inWaitInput);
auto nextEvent = [this]() {
auto getNextEvent = [this]() {
//for some models this is always true (if one event is one block)
if (dataMode_->dataBlockCompleted()) {
return getNextDataBlock();
} else {
return getNextEventFromDataBlock();
}
};
evf::EvFDaqDirector::FileStatus status = evf::EvFDaqDirector::noFile;
while ((status = getNextEvent()) == evf::EvFDaqDirector::noFile) {
if (edm::shutdown_flag.load(std::memory_order_relaxed))
break;
}
return status;
};
switch (nextEvent()) {
case evf::EvFDaqDirector::runEnded: {
//maybe create EoL file in working directory before ending run
struct stat buf;
//also create EoR file in FU data directory
bool eorFound = (stat(daqDirector_->getEoRFilePathOnFU().c_str(), &buf) == 0);
if (!eorFound) {
int eor_fd = open(daqDirector_->getEoRFilePathOnFU().c_str(),
O_RDWR | O_CREAT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
close(eor_fd);
}
reportEventsThisLumiInSource(currentLumiSection_, eventsThisLumi_);
eventsThisLumi_ = 0;
resetLuminosityBlockAuxiliary();
edm::LogInfo("DAQSource") << "----------------RUN ENDED----------------";
return Next::kStop;
}
case evf::EvFDaqDirector::noFile: {
//this is not reachable
return Next::kEvent;
}
case evf::EvFDaqDirector::newLumi: {
//std::cout << "--------------NEW LUMI---------------" << std::endl;
return Next::kEvent;
}
default: {
if (fileListMode_ || fileListLoopMode_)
eventRunNumber_ = runNumber_;
else
eventRunNumber_ = dataMode_->run();
setEventCached();
return Next::kEvent;
}
}
}
void DAQSource::maybeOpenNewLumiSection(const uint32_t lumiSection) {
if (!luminosityBlockAuxiliary() || luminosityBlockAuxiliary()->luminosityBlock() != lumiSection) {
currentLumiSection_ = lumiSection;
resetLuminosityBlockAuxiliary();
timeval tv;
gettimeofday(&tv, nullptr);
const edm::Timestamp lsopentime((unsigned long long)tv.tv_sec * 1000000 + (unsigned long long)tv.tv_usec);
edm::LuminosityBlockAuxiliary* lumiBlockAuxiliary = new edm::LuminosityBlockAuxiliary(
runAuxiliary()->run(), lumiSection, lsopentime, edm::Timestamp::invalidTimestamp());
setLuminosityBlockAuxiliary(lumiBlockAuxiliary);
luminosityBlockAuxiliary()->setProcessHistoryID(processHistoryID_);
edm::LogInfo("DAQSource") << "New lumi section was opened. LUMI -: " << lumiSection;
}
}
evf::EvFDaqDirector::FileStatus DAQSource::getNextEventFromDataBlock() {
setMonState(inChecksumEvent);
bool found = dataMode_->nextEventView(currentFile_.get());
//file(s) completely parsed
if (!found) {
if (dataMode_->dataBlockInitialized()) {
dataMode_->setDataBlockInitialized(false);
//roll position to the end of the file to close it
currentFile_->bufferPosition_ = currentFile_->fileSize_;
}
return evf::EvFDaqDirector::noFile;
}
if (verifyChecksum_ && !dataMode_->checksumValid()) {
if (fms_)
fms_->setExceptionDetected(currentLumiSection_);
throw cms::Exception("DAQSource::getNextEventFromDataBlock")
<< "InvalidChecksum - " << dataMode_->getChecksumError();
}
setMonState(inCachedEvent);
currentFile_->nProcessed_++;
return evf::EvFDaqDirector::sameFile;
}
evf::EvFDaqDirector::FileStatus DAQSource::getNextDataBlock() {
if (setExceptionState_)
threadError();
if (!currentFile_.get()) {
evf::EvFDaqDirector::FileStatus status = evf::EvFDaqDirector::noFile;
setMonState(inWaitInput);
{
IdleSourceSentry ids(fms_);
if (!fileQueue_.try_pop(currentFile_)) {
//sleep until wakeup (only in single-buffer mode) or timeout
std::unique_lock<std::mutex> lkw(mWakeup_);
if (cvWakeup_.wait_for(lkw, std::chrono::milliseconds(100)) == std::cv_status::timeout || !currentFile_.get())
return evf::EvFDaqDirector::noFile;
}
}
status = currentFile_->status_;
if (status == evf::EvFDaqDirector::runEnded) {
setMonState(inRunEnd);
currentFile_.reset();
return status;
} else if (status == evf::EvFDaqDirector::runAbort) {
throw cms::Exception("DAQSource::getNextDataBlock") << "Run has been aborted by the input source reader thread";
} else if (status == evf::EvFDaqDirector::newLumi) {
setMonState(inNewLumi);
if (currentFile_->lumi_ > currentLumiSection_) {
reportEventsThisLumiInSource(currentLumiSection_, eventsThisLumi_);
eventsThisLumi_ = 0;
maybeOpenNewLumiSection(currentFile_->lumi_);
}
currentFile_.reset();
return status;
} else if (status == evf::EvFDaqDirector::newFile) {
currentFileIndex_++;
} else
assert(false);
}
setMonState(inProcessingFile);
//file is empty
if (!currentFile_->fileSize_) {
readingFilesCount_--;
heldFilesCount_--;
//try to open new lumi
assert(currentFile_->nChunks_ == 0);
if (currentFile_->lumi_ > currentLumiSection_) {
reportEventsThisLumiInSource(currentLumiSection_, eventsThisLumi_);
eventsThisLumi_ = 0;
maybeOpenNewLumiSection(currentFile_->lumi_);
}
//immediately delete empty file
currentFile_.reset();
return evf::EvFDaqDirector::noFile;
}
//file is finished
if (currentFile_->complete() || (dataMode_->isMultiDir() && currentFile_->buffersComplete())) {
readingFilesCount_--;
if (fileListMode_)
heldFilesCount_--;
//release last chunk (it is never released elsewhere)
freeChunks_.push(currentFile_->chunks_[currentFile_->currentChunk_]);
if (currentFile_->nEvents_ >= 0 && currentFile_->nEvents_ != int(currentFile_->nProcessed_)) {
std::stringstream str;
for (auto& s : currentFile_->fileNames_) {
struct stat bufs;
if (stat(s.c_str(), &bufs) != 0)
throw cms::Exception("DAQSource::getNextDataBlock") << "Could not stat file " << s;
str << s << " (size:" << (bufs.st_size / 1000) << " kB)" << std::endl;
}
throw cms::Exception("DAQSource::getNextDataBlock")
<< "Fully processed " << currentFile_->nProcessed_ << " from:" << std::endl
<< str.str() << "but according to RAW header there should be " << currentFile_->nEvents_
<< " events. Check previous error log for details.";
} else if (dataMode_->errorDetected()) {
std::stringstream str;
for (auto& s : currentFile_->fileNames_) {
struct stat bufs;
if (stat(s.c_str(), &bufs) != 0)
throw cms::Exception("DAQSource::getNextDataBlock") << "Could not stat file " << s;
str << s << " (size:" << (bufs.st_size / 1000) << " kB)" << std::endl;
}
throw cms::Exception("DAQSource::getNextDataBlock")
<< "Processed " << currentFile_->nProcessed_ << " from:" << std::endl
<< str.str() << "but there was a mismatch detected by the data model. Check previous error log for details.";
}
setMonState(inReadCleanup);
if (!daqDirector_->isSingleStreamThread() && !fileListMode_) {
//put the file in pending delete list;
std::unique_lock<std::mutex> lkw(fileDeleteLock_);
filesToDelete_.push_back(
std::pair<int, std::unique_ptr<RawInputFile>>(currentFileIndex_, std::move(currentFile_)));
} else {
//in single-thread and stream jobs, events are already processed
currentFile_.reset();
}
setMonState(inProcessingFile);
return evf::EvFDaqDirector::noFile;
}
//handle RAW file header in new file
bool chunkReadyChecked = false;
if (currentFile_->bufferPosition_ == 0 && currentFile_->rawHeaderSize_ > 0) {
if (currentFile_->fileSize_ <= currentFile_->rawHeaderSize_) {
if (currentFile_->fileSize_ < currentFile_->rawHeaderSize_)
throw cms::Exception("DAQSource::getNextDataBlock") << "Premature end of input file while reading file header";
edm::LogWarning("DAQSource") << "File with only raw header and no events received in LS " << currentFile_->lumi_;
if (currentFile_->lumi_ > currentLumiSection_) {
reportEventsThisLumiInSource(currentLumiSection_, eventsThisLumi_);
eventsThisLumi_ = 0;
maybeOpenNewLumiSection(currentFile_->lumi_);
}
}
setMonState(inWaitChunk);
{
IdleSourceSentry ids(fms_);
while (!currentFile_->waitForChunk(currentFile_->currentChunk_)) {
std::unique_lock<std::mutex> lkw(mWakeup_);
cvWakeupAll_.wait_for(lkw, std::chrono::milliseconds(100));
if (setExceptionState_)
threadError();
}
}
setMonState(inChunkReceived);
chunkReadyChecked = true;
//advance buffer position to skip file header (chunk will be acquired later)
//also move pointer in multi-dir setting with each file expected to have a file header
currentFile_->advance(currentFile_->rawHeaderSize_);
currentFile_->advanceBuffers(currentFile_->rawHeaderSize_);
}
LogDebug("DAQSource") << "after header bufferPosition: " << currentFile_->bufferPosition_
<< " fileSizeLeft:" << currentFile_->fileSizeLeft();
//file is too short to fit event (or event block, orbit...) header
if (currentFile_->fileSizeLeft() < dataMode_->headerSize())
throw cms::Exception("DAQSource::getNextDataBlock")
<< "Premature end of input file while reading event header. Missing: "
<< (dataMode_->headerSize() - currentFile_->fileSizeLeft()) << " bytes";
//multibuffer mode
//wait for the current chunk to become added to the vector
if (!chunkReadyChecked) {
setMonState(inWaitChunk);
{
IdleSourceSentry ids(fms_);
while (!currentFile_->waitForChunk(currentFile_->currentChunk_)) {
std::unique_lock<std::mutex> lkw(mWakeup_);
cvWakeupAll_.wait_for(lkw, std::chrono::milliseconds(100));
if (setExceptionState_)
threadError();
}
}
}
setMonState(inChunkReceived);
chunkIsFree_ = false;
bool chunkEnd;
unsigned char* dataPosition;
//read event header, copy it to a single chunk if necessary
chunkEnd = currentFile_->advance(mWakeup_, cvWakeupAll_, dataPosition, dataMode_->headerSize());
//get buffer size of current chunk (can be resized) for multibuffer models
uint64_t currentChunkSize = currentFile_->currentChunkSize();
//prepare view based on header that was read. It could parse through the whole buffer for fitToBuffer models
dataMode_->makeDataBlockView(dataPosition, currentFile_.get());
if (verifyChecksum_ && !dataMode_->blockChecksumValid()) {
if (fms_)
fms_->setExceptionDetected(currentLumiSection_);
throw cms::Exception("DAQSource::getNextDataBlock") << dataMode_->getChecksumError();
}
//check that the (remaining) payload size is within the file
const size_t msgSize = dataMode_->dataBlockSize() - dataMode_->headerSize();
//not useful in multidir
if (currentFile_->fileSizeLeft() < (int64_t)msgSize)
throw cms::Exception("DAQSource::getNextDataBlock")
<< "Premature end of input file (missing:" << (msgSize - currentFile_->fileSizeLeft())
<< ") while parsing block";
//for cross-buffer models
if (chunkEnd) {
//header was at the chunk boundary, move payload into the starting chunk as well. No need to update block view here
currentFile_->moveToPreviousChunk(msgSize, dataMode_->headerSize());
//mark to release old chunk
chunkIsFree_ = true;
} else if (currentChunkSize - currentFile_->chunkPosition_ < msgSize) {
//header was contiguous, but payload does not fit in the chunk
//rewind to header start position and then together with payload will be copied together to the old chunk
currentFile_->rewindChunk(dataMode_->headerSize());
setMonState(inWaitChunk);
{
IdleSourceSentry ids(fms_);
//do the copy to the beginning of the starting chunk. move pointers for next event in the next chunk
chunkEnd = currentFile_->advance(mWakeup_, cvWakeupAll_, dataPosition, dataMode_->headerSize() + msgSize);
assert(chunkEnd);
//mark to release old chunk
chunkIsFree_ = true;
}
setMonState(inChunkReceived);
//header and payload is moved, update view
dataMode_->makeDataBlockView(dataPosition, currentFile_.get());
} else {
//everything is in a single chunk, only move pointers forward. Also used for fitToBuffer models
chunkEnd = currentFile_->advance(mWakeup_, cvWakeupAll_, dataPosition, msgSize);
assert(!chunkEnd);
chunkIsFree_ = false;
}
//sanity-check check that the buffer position has not exceeded file size after preparing event
if (currentFile_->fileSize_ < currentFile_->bufferPosition_)
throw cms::Exception("DAQSource::getNextEventDataBlock")
<< "Exceeded file size by " << (currentFile_->bufferPosition_ - currentFile_->fileSize_);
//prepare event
return getNextEventFromDataBlock();
}
void DAQSource::read(edm::EventPrincipal& eventPrincipal) {
setMonState(inReadEvent);
dataMode_->readEvent(eventPrincipal);
eventsThisLumi_++;
setMonState(inReadCleanup);
//resize vector if needed (lock if resizing needed)
while (streamFileTracker_.size() <= eventPrincipal.streamID()) {
std::unique_lock<std::mutex> lkw(fileDeleteLock_);
streamFileTracker_.push_back(-1);
}
streamFileTracker_[eventPrincipal.streamID()] = currentFileIndex_;
setMonState(inNoRequest);
if (dataMode_->dataBlockCompleted() && chunkIsFree_) {
freeChunks_.push(currentFile_->chunks_[currentFile_->currentChunk_ - 1]);
chunkIsFree_ = false;
}
return;
}
void DAQSource::rewind_() {}
void DAQSource::fileDeleter() {
bool stop = false;
while (!stop) {
std::vector<InputFile*> deleteVec;
{
unsigned int lastFileLS = 0;
bool fileLSOpen = false;
std::unique_lock<std::mutex> lkw(fileDeleteLock_);
auto it = filesToDelete_.begin();
while (it != filesToDelete_.end()) {
bool fileIsBeingProcessed = false;
//check if file LS has already reached global EoL, reuse cached check
if (!(lastFileLS && lastFileLS == it->second->lumi_)) {
lastFileLS = it->second->lumi_;
fileLSOpen = daqDirector_->lsWithFilesOpen(lastFileLS);
}
for (unsigned int i = 0; i < streamFileTracker_.size(); i++) {
if (it->first == streamFileTracker_.at(i)) {
//only skip if LS is open
if (fileLSOpen && (!fms_ || !fms_->streamIsIdle(i))) {
fileIsBeingProcessed = true;
break;
}
}
}
if (!fileIsBeingProcessed && (!fms_ || !fms_->isExceptionOnData(it->second->lumi_))) {
std::string fileToDelete = it->second->fileName_;
//do not actuallt delete, but do it later
deleteVec.push_back(it->second.get());
//deletion will happen later
it->second.release();
it = filesToDelete_.erase(it);
} else
it++;
}
}
//do this after lock is released to avoid contention
for (auto v : deleteVec) {
//deletion happens here
delete v;
heldFilesCount_--;
}
deleteVec.clear();
if (quit_threads_.load(std::memory_order_relaxed) || edm::shutdown_flag.load(std::memory_order_relaxed))
stop = true;
usleep(500000);
}
}
void DAQSource::dataArranger() {}
void DAQSource::readSupervisor() {
bool stop = false;
unsigned int currentLumiSection = 0;
{
std::unique_lock<std::mutex> lk(startupLock_);
startupCv_.notify_one();
}
uint32_t ls = 0;
uint32_t monLS = 1;
uint32_t lockCount = 0;
uint64_t sumLockWaitTimeUs = 0.;
bool requireHeader = dataMode_->requireHeader();
while (!stop) {
//wait for at least one free thread and chunk
int counter = 0;
//held files include files queued in the deleting thread.
//We require no more than maxBufferedFiles + 2 of total held files until deletion
while (workerPool_.empty() || freeChunks_.empty() || readingFilesCount_ >= maxBufferedFiles_ ||
heldFilesCount_ >= maxBufferedFiles_ + 2) {
//report state to monitoring
if (fms_) {
bool copy_active = false;
for (auto j : tid_active_)
if (j)
copy_active = true;
if (readingFilesCount_ >= maxBufferedFiles_)
setMonStateSup(inSupFileLimit);
if (heldFilesCount_ >= maxBufferedFiles_ + 2)
setMonStateSup(inSupFileHeldLimit);
else if (freeChunks_.empty()) {
if (copy_active)
setMonStateSup(inSupWaitFreeChunkCopying);
else
setMonStateSup(inSupWaitFreeChunk);
} else {
if (copy_active)
setMonStateSup(inSupWaitFreeThreadCopying);
else
setMonStateSup(inSupWaitFreeThread);
}
}
std::unique_lock<std::mutex> lkw(mWakeup_);
//sleep until woken up by condition or a timeout
if (cvWakeup_.wait_for(lkw, std::chrono::milliseconds(100)) == std::cv_status::timeout) {
counter++;
if (!(counter % 6000)) {
edm::LogWarning("DAQSource") << "No free chunks or threads. Worker pool empty:" << workerPool_.empty()
<< ", free chunks empty:" << freeChunks_.empty()
<< ", number of files buffered (held):" << readingFilesCount_ << "("
<< heldFilesCount_ << ")"
<< " / " << maxBufferedFiles_;
}
LogDebug("DAQSource") << "No free chunks or threads...";
}
if (quit_threads_.load(std::memory_order_relaxed) || edm::shutdown_flag.load(std::memory_order_relaxed)) {
stop = true;
break;
}
}
//if this is reached, there are enough buffers and threads to proceed or processing is instructed to stop
if (stop)
break;
//look for a new file
std::string nextFile;
int64_t fileSizeFromMetadata;
if (fms_) {
setMonStateSup(inSupBusy);
fms_->startedLookingForFile();
}
bool fitToBuffer = dataMode_->fitToBuffer();
evf::EvFDaqDirector::FileStatus status = evf::EvFDaqDirector::noFile;
uint16_t rawHeaderSize = 0;
uint32_t lsFromRaw = 0;
int32_t serverEventsInNewFile = -1;
int rawFd = -1;
int backoff_exp = 0;
//entering loop which tries to grab new file from ramdisk
while (status == evf::EvFDaqDirector::noFile) {
//check if hltd has signalled to throttle input
counter = 0;
while (daqDirector_->inputThrottled()) {
if (quit_threads_.load(std::memory_order_relaxed) || edm::shutdown_flag.load(std::memory_order_relaxed))
break;
unsigned int nConcurrentLumis = daqDirector_->numConcurrentLumis();
unsigned int nOtherLumis = nConcurrentLumis > 0 ? nConcurrentLumis - 1 : 0;
unsigned int checkLumiStart = currentLumiSection > nOtherLumis ? currentLumiSection - nOtherLumis : 1;
bool hasDiscardedLumi = false;
for (unsigned int i = checkLumiStart; i <= currentLumiSection; i++) {
if (daqDirector_->lumisectionDiscarded(i)) {
edm::LogWarning("DAQSource") << "Source detected that the lumisection is discarded -: " << i;
hasDiscardedLumi = true;
break;
}
}
if (hasDiscardedLumi)
break;
setMonStateSup(inThrottled);
if (!(counter % 50))
edm::LogWarning("DAQSource") << "Input throttled detected, reading files is paused...";
usleep(100000);
counter++;
}
if (quit_threads_.load(std::memory_order_relaxed) || edm::shutdown_flag.load(std::memory_order_relaxed)) {
stop = true;
break;
}
assert(rawFd == -1);
uint64_t thisLockWaitTimeUs = 0.;
setMonStateSup(inSupLockPolling);
if (fileListMode_) {
//return LS if LS not set, otherwise return file
status = getFile(ls, nextFile, thisLockWaitTimeUs);
if (status == evf::EvFDaqDirector::newFile) {
uint16_t rawDataType;
if (evf::EvFDaqDirector::parseFRDFileHeader(nextFile,
rawFd,
rawHeaderSize, ///possibility to use by new formats
rawDataType,
lsFromRaw,
serverEventsInNewFile,
fileSizeFromMetadata,
requireHeader,
false,
false) != 0) {
//error
setExceptionState_ = true;
stop = true;
break;
}
}
} else {
RawFileEvtCounter countFunc =
[&](std::string const& name, int& fd, int64_t& fsize, uint32_t sLS, bool& found) -> unsigned int {
return dataMode_->eventCounterCallback(name, fd, fsize, sLS, found);
};
status = daqDirector_->getNextFromFileBroker(currentLumiSection,
ls,
nextFile,
rawFd,
rawHeaderSize, //which format?
serverEventsInNewFile,
fileSizeFromMetadata,
thisLockWaitTimeUs,
requireHeader,
fileDiscoveryMode_,
dataMode_->hasEventCounterCallback() ? countFunc : nullptr);
}
setMonStateSup(inSupBusy);
//cycle through all remaining LS even if no files get assigned
if (currentLumiSection != ls && status == evf::EvFDaqDirector::runEnded)
status = evf::EvFDaqDirector::noFile;
//monitoring of lock wait time
if (thisLockWaitTimeUs > 0.)
sumLockWaitTimeUs += thisLockWaitTimeUs;
lockCount++;
if (ls > monLS) {
monLS = ls;
if (lockCount)
if (fms_)
fms_->reportLockWait(monLS, sumLockWaitTimeUs, lockCount);
lockCount = 0;
sumLockWaitTimeUs = 0;
}
if (status == evf::EvFDaqDirector::runEnded) {
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::runEnded));
stop = true;
break;
}
//error from filelocking function
if (status == evf::EvFDaqDirector::runAbort) {
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::runAbort, 0));
stop = true;
break;
}
//queue new lumisection
if (ls > currentLumiSection) {
//new file service
if (currentLumiSection == 0 && !alwaysStartFromFirstLS_) {
if (daqDirector_->getStartLumisectionFromEnv() > 1) {
//start transitions from LS specified by env, continue if not reached
if (ls < daqDirector_->getStartLumisectionFromEnv()) {
//skip file if from earlier LS than specified by env
if (rawFd != -1) {
close(rawFd);
rawFd = -1;
}
status = evf::EvFDaqDirector::noFile;
continue;
} else {
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::newLumi, ls));
}
} else if (ls < 100) {
//look at last LS file on disk to start from that lumisection (only within first 100 LS)
unsigned int lsToStart = daqDirector_->getLumisectionToStart();
for (unsigned int nextLS = std::min(lsToStart, ls); nextLS <= ls; nextLS++) {
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::newLumi, nextLS));
}
} else {
//start from current LS
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::newLumi, ls));
}
} else {
//queue all lumisections after last one seen to avoid gaps
for (unsigned int nextLS = currentLumiSection + 1; nextLS <= ls; nextLS++) {
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::newLumi, nextLS));
}
}
currentLumiSection = ls;
//wakeup main thread for the new non-data file obj
std::unique_lock<std::mutex> lkw(mWakeup_);
cvWakeupAll_.notify_all();
}
//else
if (currentLumiSection > 0 && ls < currentLumiSection) {
edm::LogError("DAQSource") << "Got old LS (" << ls
<< ") file from EvFDAQDirector! Expected LS:" << currentLumiSection
<< ". Aborting execution." << std::endl;
if (rawFd != -1)
close(rawFd);
rawFd = -1;
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::runAbort, 0));
stop = true;
break;
}
int dbgcount = 0;
if (status == evf::EvFDaqDirector::noFile) {
setMonStateSup(inSupNoFile);
dbgcount++;
if (!(dbgcount % 20))
LogDebug("DAQSource") << "No file for me... sleep and try again...";
backoff_exp = std::min(4, backoff_exp); // max 1.6 seconds
//backoff_exp=0; // disabled!
int sleeptime = (int)(100000. * pow(2, backoff_exp));
usleep(sleeptime);
backoff_exp++;
} else
backoff_exp = 0;
}
//end of file grab loop, parse result
if (status == evf::EvFDaqDirector::newFile) {
setMonStateSup(inSupNewFile);
LogDebug("DAQSource") << "The director says to grab -: " << nextFile;
std::string rawFile;
//file service will report raw extension
rawFile = nextFile;
struct stat st;
int stat_res = stat(rawFile.c_str(), &st);
if (stat_res == -1) {
edm::LogError("DAQSource") << "Can not stat file (" << errno << ") :- " << rawFile << std::endl;
setExceptionState_ = true;
break;
}
uint64_t fileSize = st.st_size;
if (fms_) {
setMonStateSup(inSupBusy);
fms_->stoppedLookingForFile(ls);
setMonStateSup(inSupNewFile);
}
int eventsInNewFile;
if (fileListMode_) {
if (fileSize == 0)
eventsInNewFile = 0;
else
eventsInNewFile = -1;
} else {
eventsInNewFile = serverEventsInNewFile;
assert(eventsInNewFile >= 0);
assert((eventsInNewFile > 0) ==
(fileSize > rawHeaderSize)); //file without events must be empty or contain only header
}
std::pair<bool, std::vector<std::string>> additionalFiles =
dataMode_->defineAdditionalFiles(rawFile, fileListMode_);
/*
if (!additionalFiles.first) {
//skip secondary files from file broker
if (rawFd > -1)
close(rawFd);
continue;
}*/
std::unique_ptr<RawInputFile> newInputFile(new RawInputFile(evf::EvFDaqDirector::FileStatus::newFile,
ls,
rawFile,
!fileListMode_,
rawFd,
fileSize,
rawHeaderSize, //for which format
0,
eventsInNewFile,
this));
uint64_t neededSize = fileSize;
for (const auto& addFile : additionalFiles.second) {
struct stat buf;
//wait for secondary files to appear
unsigned int fcnt = 0;
while (stat(addFile.c_str(), &buf) != 0) {
if (fileListMode_) {
edm::LogError("DAQSource") << "additional file is missing -: " << addFile;
stop = true;
setExceptionState_ = true;
break;
}
usleep(10000);
fcnt++;
//report and EoR check every 30 seconds
if ((fcnt && fcnt % 3000 == 0) || quit_threads_.load(std::memory_order_relaxed)) {
edm::LogWarning("DAQSource") << "Additional file is still missing after 30 seconds -: " << addFile;
struct stat bufEoR;
auto secondaryPath = std::filesystem::path(addFile).parent_path();
auto eorName = std::filesystem::path(daqDirector_->getEoRFileName());
std::string mainEoR = (std::filesystem::path(daqDirector_->buBaseRunDir()) / eorName).generic_string();
std::string secondaryEoR = (secondaryPath / eorName).generic_string();
bool prematureEoR = false;
if (stat(secondaryEoR.c_str(), &bufEoR) == 0) {
if (stat(addFile.c_str(), &bufEoR) != 0) {
edm::LogError("DAQSource")
<< "EoR file appeared in -: " << secondaryPath << " while waiting for index file " << addFile;
prematureEoR = true;
}
} else if (stat(mainEoR.c_str(), &bufEoR) == 0) {
//wait another 10 seconds
usleep(10000000);
if (stat(addFile.c_str(), &bufEoR) != 0) {
edm::LogError("DAQSource")
<< "Main EoR file appeared -: " << mainEoR << " while waiting for index file " << addFile;
prematureEoR = true;
}
}
if (prematureEoR) {
//queue EoR since this is not FU error
fileQueue_.push(std::make_unique<RawInputFile>(evf::EvFDaqDirector::runEnded, 0));
stop = true;
break;
}
}
if (quit_threads_) {
edm::LogError("DAQSource") << "Quitting while waiting for file -: " << addFile;
stop = true;
setExceptionState_ = true;
break;
}
}
LogDebug("DAQSource") << " APPEND NAME " << addFile;
if (stop)
break;
newInputFile->appendFile(addFile, buf.st_size);
neededSize += buf.st_size;
}
if (stop)
break;
//calculate number of needed chunks and size if resizing will be applied
uint16_t neededChunks;
uint64_t chunkSize;
if (fitToBuffer) {
chunkSize = std::min(maxChunkSize_, std::max(eventChunkSize_, neededSize));
neededChunks = 1;
} else {
chunkSize = eventChunkSize_;
neededChunks = neededSize / eventChunkSize_ + uint16_t((neededSize % eventChunkSize_) > 0);
}
newInputFile->setChunks(neededChunks);
newInputFile->randomizeOrder(rng_);
readingFilesCount_++;
heldFilesCount_++;
auto newInputFilePtr = newInputFile.get();
fileQueue_.push(std::move(newInputFile));
for (size_t i = 0; i < neededChunks; i++) {
if (fms_) {
bool copy_active = false;
for (auto j : tid_active_)
if (j)
copy_active = true;
if (copy_active)
setMonStateSup(inSupNewFileWaitThreadCopying);
else
setMonStateSup(inSupNewFileWaitThread);
}
//get thread
unsigned int newTid = 0xffffffff;
while (!workerPool_.try_pop(newTid)) {
usleep(100000);
if (quit_threads_.load(std::memory_order_relaxed)) {
stop = true;
break;
}
}
if (fms_) {
bool copy_active = false;
for (auto j : tid_active_)
if (j)
copy_active = true;
if (copy_active)
setMonStateSup(inSupNewFileWaitChunkCopying);
else
setMonStateSup(inSupNewFileWaitChunk);
}
InputChunk* newChunk = nullptr;
while (!freeChunks_.try_pop(newChunk)) {
usleep(100000);
if (quit_threads_.load(std::memory_order_relaxed)) {
stop = true;
break;
}
}
if (newChunk == nullptr) {
//return unused tid if we received shutdown (nullptr chunk)
if (newTid != 0xffffffff)
workerPool_.push(newTid);
stop = true;
break;
}
if (stop)
break;
setMonStateSup(inSupNewFile);
std::unique_lock<std::mutex> lk(mReader_);
uint64_t toRead = chunkSize;
if (i == (uint64_t)neededChunks - 1 && neededSize % chunkSize)
toRead = neededSize % chunkSize;
newChunk->reset(i * chunkSize, toRead, i);
workerJob_[newTid].first = newInputFilePtr;
workerJob_[newTid].second = newChunk;
//wake up the worker thread
cvReader_[newTid]->notify_one();
}
}
}
setMonStateSup(inRunEnd);
//make sure threads finish reading
unsigned int numFinishedThreads = 0;
while (numFinishedThreads < workerThreads_.size()) {
unsigned int tid = 0;
while (!workerPool_.try_pop(tid)) {
usleep(10000);
}
std::unique_lock<std::mutex> lk(mReader_);
thread_quit_signal[tid] = true;
cvReader_[tid]->notify_one();
numFinishedThreads++;
}
for (unsigned int i = 0; i < workerThreads_.size(); i++) {
workerThreads_[i]->join();
delete workerThreads_[i];
}
}
void DAQSource::readWorker(unsigned int tid) {
bool init = true;
threadInit_.exchange(true, std::memory_order_acquire);
while (true) {
tid_active_[tid] = false;
std::unique_lock<std::mutex> lk(mReader_);
workerJob_[tid].first = nullptr;
workerJob_[tid].second = nullptr;
assert(!thread_quit_signal[tid]); //should never get it here
workerPool_.push(tid);
if (init) {
std::unique_lock<std::mutex> lks(startupLock_);
init = false;
startupCv_.notify_one();
}
cvWakeup_.notify_all();
cvReader_[tid]->wait(lk);
lk.unlock();
if (thread_quit_signal[tid])
return;
tid_active_[tid] = true;
RawInputFile* file;
InputChunk* chunk;
assert(workerJob_[tid].first != nullptr && workerJob_[tid].second != nullptr);
file = workerJob_[tid].first;
chunk = workerJob_[tid].second;
bool fitToBuffer = dataMode_->fitToBuffer();
//resize if multi-chunked reading is not possible
if (fitToBuffer) {
uint64_t accum = 0;
for (auto s : file->diskFileSizes_)
accum += s;
if (accum > eventChunkSize_) {
if (!chunk->resize(accum, maxChunkSize_)) {
edm::LogError("DAQSource")
<< "maxChunkSize can not accomodate the file set. Try increasing chunk size and/or chunk maximum size.";
if (file->rawFd_ != -1 && (numConcurrentReads_ == 1 || chunk->offset_ == 0))
close(file->rawFd_);
setExceptionState_ = true;
continue;
} else {
edm::LogInfo("DAQSource") << "chunk size was increased to " << (chunk->size_ >> 20) << " MB";
}
}
}
//skip reading initial header size in first chunk if inheriting file descriptor (already set at appropriate position)
unsigned int bufferLeftInitial = (chunk->offset_ == 0 && file->rawFd_ != -1) ? file->rawHeaderSize_ : 0;
const uint16_t readBlocks = chunk->size_ / eventChunkBlock_ + uint16_t(chunk->size_ % eventChunkBlock_ > 0);
auto readPrimary = [&](uint64_t bufferLeft) {
//BEGIN reading primary file - check if file descriptor is already open
//in multi-threaded chunked mode, only first thread will use already open fd for reading the first file
//fd will not be closed in other case (used by other threads)
int fileDescriptor = -1;
bool fileOpenedHere = false;
if (numConcurrentReads_ == 1) {
fileDescriptor = file->rawFd_;
file->rawFd_ = -1;
if (fileDescriptor == -1) {
fileDescriptor = open(file->fileName_.c_str(), O_RDONLY);
fileOpenedHere = true;
}
} else {
if (chunk->offset_ == 0) {
fileDescriptor = file->rawFd_;
file->rawFd_ = -1;
if (fileDescriptor == -1) {
fileDescriptor = open(file->fileName_.c_str(), O_RDONLY);
fileOpenedHere = true;
}
} else {
fileDescriptor = open(file->fileName_.c_str(), O_RDONLY);
fileOpenedHere = true;
}
}
if (fileDescriptor == -1) {
edm::LogError("DAQSource") << "readWorker failed to open file -: " << file->fileName_
<< " fd:" << fileDescriptor << " error: " << strerror(errno);
setExceptionState_ = true;
return;
}
if (fileOpenedHere) { //fast forward to this chunk position
off_t pos = lseek(fileDescriptor, chunk->offset_, SEEK_SET);
if (pos == -1) {
edm::LogError("DAQSource") << "readWorker failed to seek file -: " << file->fileName_
<< " fd:" << fileDescriptor << " to offset " << chunk->offset_
<< " error: " << strerror(errno);
setExceptionState_ = true;
return;
}
}
LogDebug("DAQSource") << "Reader thread opened file -: TID: " << tid << " file: " << file->fileName_
<< " at offset " << lseek(fileDescriptor, 0, SEEK_CUR);
size_t skipped = bufferLeft;
auto start = std::chrono::high_resolution_clock::now();
for (unsigned int i = 0; i < readBlocks; i++) {
ssize_t last;
edm::LogInfo("DAQSource") << "readWorker read -: " << (int64_t)(chunk->usedSize_ - bufferLeft) << " or "
<< (int64_t)eventChunkBlock_;
//protect against reading into next block
last = ::read(fileDescriptor,
(void*)(chunk->buf_ + bufferLeft),
std::min((int64_t)(chunk->usedSize_ - bufferLeft), (int64_t)eventChunkBlock_));
if (last < 0) {
edm::LogError("DAQSource") << "readWorker failed to read file -: " << file->fileName_
<< " fd:" << fileDescriptor << " last: " << last << " error: " << strerror(errno);
setExceptionState_ = true;
break;
}
if (last > 0) {
bufferLeft += last;
}
if ((uint64_t)last < eventChunkBlock_) { //last read
LogDebug("DAQSource") << "chunkUsedSize:" << chunk->usedSize_ << " u-s:" << (chunk->usedSize_ - skipped)
<< " ix:" << i * eventChunkBlock_ << " " << (size_t)last;
//check if this is last block if single file, then total read size must match file size
if (file->numFiles_ == 1 && !(chunk->usedSize_ - skipped == i * eventChunkBlock_ + (size_t)last)) {
edm::LogError("DAQSource") << "readWorker failed to read file -: " << file->fileName_
<< " fd:" << fileDescriptor << " last:" << last
<< " expectedChunkSize:" << chunk->usedSize_
<< " readChunkSize:" << (skipped + i * eventChunkBlock_ + last)
<< " skipped:" << skipped << " block:" << (i + 1) << "/" << readBlocks
<< " error: " << strerror(errno);
setExceptionState_ = true;
}
break;
}
}
if (setExceptionState_)
return;
file->fileSizes_[0] = bufferLeft;
if (chunk->offset_ + bufferLeft == file->diskFileSizes_[0] || bufferLeft == chunk->size_) {
//file reading finished using this fd
//or the whole buffer is filled (single sequential file spread over more chunks)
close(fileDescriptor);
fileDescriptor = -1;
} else
assert(fileDescriptor == -1);
if (fitToBuffer && bufferLeft != file->diskFileSizes_[0]) {
edm::LogError("DAQSource") << "mismatch between read file size for file -: " << file->fileNames_[0]
<< " read:" << bufferLeft << " expected:" << file->diskFileSizes_[0];
setExceptionState_ = true;
return;
}
auto end = std::chrono::high_resolution_clock::now();
auto diff = end - start;
std::chrono::milliseconds msec = std::chrono::duration_cast<std::chrono::milliseconds>(diff);
LogDebug("DAQSource") << " finished reading block -: " << (bufferLeft >> 20) << " MB"
<< " in " << msec.count() << " ms (" << (bufferLeft >> 20) / double(msec.count())
<< " GB/s)";
};
//END primary function
//SECONDARY files function
auto readSecondary = [&](uint64_t bufferLeft, unsigned int j) {
size_t fileLen = 0;
std::string const& addFile = file->fileNames_[j];
int fileDescriptor = open(addFile.c_str(), O_RDONLY);
if (fileDescriptor < 0) {
edm::LogError("DAQSource") << "readWorker failed to open file -: " << addFile << " fd:" << fileDescriptor
<< " error: " << strerror(errno);
setExceptionState_ = true;
return;
}
LogDebug("DAQSource") << "Reader thread opened file -: TID: " << tid << " file: " << addFile << " at offset "
<< lseek(fileDescriptor, 0, SEEK_CUR);
//size_t skipped = 0;//file is newly opened, read with header
auto start = std::chrono::high_resolution_clock::now();
for (unsigned int i = 0; i < readBlocks; i++) {
ssize_t last;
//protect against reading into next block
//use bufferLeft for the write offset
last = ::read(fileDescriptor,
(void*)(chunk->buf_ + bufferLeft),
std::min((uint64_t)file->diskFileSizes_[j], (uint64_t)eventChunkBlock_));
if (last < 0) {
edm::LogError("DAQSource") << "readWorker failed to read file -: " << addFile << " fd:" << fileDescriptor
<< " error: " << strerror(errno);
setExceptionState_ = true;
close(fileDescriptor);
break;
}
if (last > 0) {
bufferLeft += last;
fileLen += last;
file->fileSize_ += last;
}
};
close(fileDescriptor);
file->fileSizes_[j] = fileLen;
assert(fileLen > 0);
if (fitToBuffer && fileLen != file->diskFileSizes_[j]) {
edm::LogError("DAQSource") << "mismatch between read file size for file -: " << file->fileNames_[j]
<< " read:" << fileLen << " expected:" << file->diskFileSizes_[j];
setExceptionState_ = true;
return;
}
auto end = std::chrono::high_resolution_clock::now();
auto diff = end - start;
std::chrono::milliseconds msec = std::chrono::duration_cast<std::chrono::milliseconds>(diff);
LogDebug("DAQSource") << " finished reading block -: " << (bufferLeft >> 20) << " MB"
<< " in " << msec.count() << " ms (" << (bufferLeft >> 20) / double(msec.count())
<< " GB/s)";
};
//randomized order multi-file loop
for (unsigned int j : file->fileOrder_) {
if (j == 0) {
readPrimary(bufferLeftInitial);
} else
readSecondary(file->bufferOffsets_[j], j);
if (setExceptionState_)
break;
}
if (setExceptionState_)
continue;
//detect FRD event version. Skip file Header if it exists
if (dataMode_->dataVersion() == 0 && chunk->offset_ == 0) {
dataMode_->detectVersion(chunk->buf_, file->rawHeaderSize_);
}
assert(dataMode_->versionCheck());
//for models that unpack RAW data in reader thread (must fit to buffer!)
//put the completed chunk in the file chunk vector at predetermined index
file->chunks_[chunk->fileIndex_] = chunk;
if (dataMode_->fitToBuffer())
dataMode_->unpackFile(file);
//possibly not needed (except for better timing on cvWakeupAll_)
std::unique_lock<std::mutex> lkw(mWakeup_);
//this is atomic to ensure all previous writes are consistent
chunk->readComplete_ = true;
//wakeup for chunk
cvWakeupAll_.notify_all();
//lkw.unlock();
}
}
void DAQSource::threadError() {
quit_threads_ = true;
throw cms::Exception("DAQSource:threadError") << " file reader thread error ";
}
void DAQSource::setMonState(evf::FastMonState::InputState state) {
if (fms_)
fms_->setInState(state);
}
void DAQSource::setMonStateSup(evf::FastMonState::InputState state) {
if (fms_)
fms_->setInStateSup(state);
}
bool RawInputFile::advance(std::mutex& m, std::condition_variable& cv, unsigned char*& dataPosition, const size_t size) {
sourceParent_->setMonState(inWaitChunk);
//wait for chunk
while (!waitForChunk(currentChunk_)) {
std::unique_lock<std::mutex> lk(m);
cv.wait_for(lk, std::chrono::milliseconds(100));
if (sourceParent_->exceptionState())
sourceParent_->threadError();
}
sourceParent_->setMonState(inChunkReceived);
dataPosition = chunks_[currentChunk_]->buf_ + chunkPosition_;
size_t currentLeft = chunks_[currentChunk_]->size_ - chunkPosition_;
if (currentLeft < size) {
//we need next chunk
assert(chunks_.size() > currentChunk_ + 1);
sourceParent_->setMonState(inWaitChunk);
while (!waitForChunk(currentChunk_ + 1)) {
std::unique_lock<std::mutex> lk(m);
cv.wait_for(lk, std::chrono::milliseconds(100));
if (sourceParent_->exceptionState())
sourceParent_->threadError();
}
sourceParent_->setMonState(inChunkReceived);
//copy everything to beginning of the first chunk
dataPosition -= chunkPosition_;
assert(dataPosition == chunks_[currentChunk_]->buf_);
memmove(chunks_[currentChunk_]->buf_, chunks_[currentChunk_]->buf_ + chunkPosition_, currentLeft);
memcpy(chunks_[currentChunk_]->buf_ + currentLeft, chunks_[currentChunk_ + 1]->buf_, size - currentLeft);
//set pointers at the end of the old data position
bufferPosition_ += size;
chunkPosition_ = size - currentLeft;
currentChunk_++;
return true;
} else {
chunkPosition_ += size;
bufferPosition_ += size;
return false;
}
}
void DAQSource::reportEventsThisLumiInSource(unsigned int lumi, unsigned int events) {
std::lock_guard<std::mutex> lock(monlock_);
auto itr = sourceEventsReport_.find(lumi);
if (itr != sourceEventsReport_.end())
itr->second += events;
else
sourceEventsReport_[lumi] = events;
}
std::pair<bool, unsigned int> DAQSource::getEventReport(unsigned int lumi, bool erase) {
std::lock_guard<std::mutex> lock(monlock_);
auto itr = sourceEventsReport_.find(lumi);
if (itr != sourceEventsReport_.end()) {
std::pair<bool, unsigned int> ret(true, itr->second);
if (erase)
sourceEventsReport_.erase(itr);
return ret;
} else
return std::pair<bool, unsigned int>(false, 0);
}
long DAQSource::initFileList() {
std::sort(listFileNames_.begin(), listFileNames_.end(), [](std::string a, std::string b) {
if (a.rfind('/') != std::string::npos)
a = a.substr(a.rfind('/'));
if (b.rfind('/') != std::string::npos)
b = b.substr(b.rfind('/'));
return b > a;
});
if (!listFileNames_.empty()) {
//get run number from first file in the vector
std::filesystem::path fileName = listFileNames_[0];
std::string fileStem = fileName.stem().string();
if (fileStem.find("file://") == 0)
fileStem = fileStem.substr(7);
else if (fileStem.find("file:") == 0)
fileStem = fileStem.substr(5);
auto end = fileStem.find('_');
if (fileStem.find("run") == 0) {
std::string runStr = fileStem.substr(3, end - 3);
try {
//get long to support test run numbers < 2^32
long rval = std::stol(runStr);
edm::LogInfo("DAQSource") << "Autodetected run number in fileListMode -: " << rval;
return rval;
} catch (const std::exception&) {
edm::LogWarning("DAQSource") << "Unable to autodetect run number in fileListMode from file -: " << fileName;
}
}
}
return -1;
}
evf::EvFDaqDirector::FileStatus DAQSource::getFile(unsigned int& ls, std::string& nextFile, uint64_t& lockWaitTime) {
if (fileListIndex_ < listFileNames_.size()) {
nextFile = listFileNames_[fileListIndex_];
if (nextFile.find("file://") == 0)
nextFile = nextFile.substr(7);
else if (nextFile.find("file:") == 0)
nextFile = nextFile.substr(5);
std::filesystem::path fileName = nextFile;
std::string fileStem = fileName.stem().string();
if (fileStem.find("ls"))
fileStem = fileStem.substr(fileStem.find("ls") + 2);
if (fileStem.find('_'))
fileStem = fileStem.substr(0, fileStem.find('_'));
if (!fileListLoopMode_)
ls = std::stoul(fileStem);
else //always starting from LS 1 in loop mode
ls = 1 + loopModeIterationInc_;
//fsize = 0;
//lockWaitTime = 0;
fileListIndex_++;
return evf::EvFDaqDirector::newFile;
} else {
if (!fileListLoopMode_)
return evf::EvFDaqDirector::runEnded;
else {
//loop through files until interrupted
loopModeIterationInc_++;
fileListIndex_ = 0;
return getFile(ls, nextFile, lockWaitTime);
}
}
}
|