forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patho2sim_parallel.cxx
779 lines (706 loc) · 27.4 KB
/
o2sim_parallel.cxx
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
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
/// @author Sandro Wenzel
#include <fairmq/TransportFactory.h>
#include <fairmq/Channel.h>
#include <fairmq/Message.h>
#include <cstdlib>
#include <unistd.h>
#include <ctime>
#include <sstream>
#include <iostream>
#include <cstdio>
#include <fcntl.h>
#include <SimConfig/SimConfig.h>
#include <sys/wait.h>
#include <vector>
#include <functional>
#include <thread>
#include <csignal>
#include "TStopwatch.h"
#include <fairlogger/Logger.h>
#include "CommonUtils/ShmManager.h"
#include "TFile.h"
#include "TTree.h"
#include <sys/types.h>
#include "CommonUtils/NameConf.h"
#include "SimulationDataFormat/MCEventHeader.h"
#include "O2Version.h"
#include <cstdio>
#include <unordered_map>
#include <filesystem>
#include <atomic>
#include "Framework/SourceInfoHeader.h"
#include "Headers/Stack.h"
#include "SimPublishChannelHelper.h"
#include <CommonUtils/FileSystemUtils.h>
#include <CCDB/BasicCCDBManager.h>
std::string getServerLogName()
{
auto& conf = o2::conf::SimConfig::Instance();
std::stringstream str;
str << conf.getOutPrefix() << "_serverlog";
return str.str();
}
std::string getWorkerLogName()
{
auto& conf = o2::conf::SimConfig::Instance();
std::stringstream str;
str << conf.getOutPrefix() << "_workerlog";
return str.str();
}
std::string getMergerLogName()
{
auto& conf = o2::conf::SimConfig::Instance();
std::stringstream str;
str << conf.getOutPrefix() << "_mergerlog";
return str.str();
}
void remove_tmp_files()
{
// remove all (known) socket files in /tmp
// using the naming convention /tmp/o2sim-.*PID
std::stringstream searchstr;
searchstr << "o2sim-.*-" << getpid() << "$";
auto filenames = o2::utils::listFiles("/tmp/", searchstr.str());
// remove those files
for (auto& fn : filenames) {
try {
std::filesystem::remove(std::filesystem::path(fn));
} catch (...) {
LOG(warn) << "Couldn't remove tmp file " << fn;
}
}
}
void cleanup()
{
auto& conf = o2::conf::SimConfig::Instance();
if (conf.forwardKine()) {
auto factory = fair::mq::TransportFactory::CreateTransportFactory("zeromq");
auto forwardchannel = fair::mq::Channel{"kineforward", "pair", factory};
auto address = std::string{"ipc:///tmp/o2sim-hitmerger-kineforward-"} + std::to_string(getpid());
forwardchannel.Bind(address.c_str());
forwardchannel.Validate();
fair::mq::Parts parts;
fair::mq::MessagePtr payload(forwardchannel.NewMessage());
o2::framework::SourceInfoHeader sih;
sih.state = o2::framework::InputChannelState::Completed;
auto channelAlloc = o2::pmr::getTransportAllocator(forwardchannel.Transport());
auto header = o2::pmr::getMessage(o2::header::Stack{channelAlloc, sih});
parts.AddPart(std::move(header));
parts.AddPart(std::move(payload));
int timeoutinMS = 1000; // block for 1s max (other side might have disconnected already)
if (forwardchannel.Send(parts, timeoutinMS) > 0) {
LOGP(info, "SENDING END-OF-STREAM TO PROXY AT {}", address.c_str());
} else {
LOGP(warn, "SENDING END-OF-STREAM TIMED OUT; PEER PROBABLY NO LONGER CONNECTED");
}
}
remove_tmp_files();
o2::utils::ShmManager::Instance().release();
// special mode in which we dump the output from various
// log files to terminal (mainly interesting for CI mode)
if (getenv("ALICE_O2SIM_DUMPLOG")) {
std::cerr << "------------- START OF EVENTSERVER LOG ----------" << std::endl;
std::stringstream catcommand1;
catcommand1 << "cat " << getServerLogName() << ";";
if (system(catcommand1.str().c_str()) != 0) {
LOG(warn) << "error executing system call";
}
std::cerr << "------------- START OF SIM WORKER(S) LOG --------" << std::endl;
std::stringstream catcommand2;
catcommand2 << "cat " << getWorkerLogName() << "*;";
if (system(catcommand2.str().c_str()) != 0) {
LOG(warn) << "error executing system call";
}
std::cerr << "------------- START OF MERGER LOG ---------------" << std::endl;
std::stringstream catcommand3;
catcommand3 << "cat " << getMergerLogName() << ";";
if (system(catcommand3.str().c_str()) != 0) {
LOG(warn) << "error executing system call";
}
}
}
// quick cross check of simulation output
int checkresult()
{
int errors = 0;
// We can put more or less complex things
// here.
auto& conf = o2::conf::SimConfig::Instance();
if (!conf.writeToDisc()) {
return 0;
}
// easy check: see if we have number of entries in output tree == number of events asked
std::string filename = o2::base::NameConf::getMCKinematicsFileName(conf.getOutPrefix().c_str());
TFile f(filename.c_str(), "OPEN");
if (f.IsZombie()) {
LOG(warn) << "Kinematics file corrupted or does not exist";
return 1;
}
auto tr = static_cast<TTree*>(f.Get("o2sim"));
if (!tr) {
errors++;
} else {
if (!conf.isFilterOutNoHitEvents()) {
if (tr->GetEntries() != conf.getNEvents()) {
LOG(warn) << "There are fewer events in the output than asked";
}
}
}
// add more simple checks
return errors;
}
// ---> THE FOLLOWING CAN BE PUT INTO A "STATE" STRUCT
std::vector<int> gChildProcesses; // global vector of child pids
// record distributed events in a container
std::vector<int> gDistributedEvents;
// record finished events in a container
std::vector<int> gFinishedEvents;
int gAskedEvents;
std::atomic<bool> gPrimServerIsInitialized = false;
std::string getControlAddress()
{
std::stringstream controlsocketname;
controlsocketname << "ipc:///tmp/o2sim-control-" << getpid();
return controlsocketname.str();
}
std::string getInternalControlAddress()
{
// creates names for an internal-only socket
// hashing to distinguish from more "public" sockets
std::hash<std::string> hasher;
std::stringstream str;
str << "o2sim-internal_" << getpid();
std::string tmp(std::to_string(hasher(str.str())));
std::stringstream controlsocketname;
controlsocketname << "ipc:///tmp/" << tmp.substr(0, 10) << "_" << getpid();
return controlsocketname.str();
}
bool isBusy()
{
if (gFinishedEvents.size() != gAskedEvents) {
return true;
}
return false;
}
// launches a thread that listens for control command from outside
// or that propagates control strings to all children
void launchControlThread()
{
static std::vector<std::thread> threads;
auto controladdress = getControlAddress();
auto internalcontroladdress = getInternalControlAddress();
LOG(info) << "Control address is: " << controladdress;
setenv("ALICE_O2SIMCONTROL", internalcontroladdress.c_str(), 1);
auto lambda = [controladdress, internalcontroladdress]() {
auto factory = fair::mq::TransportFactory::CreateTransportFactory("zeromq");
// used for internal distribution of control commands
auto internalchannel = fair::mq::Channel{"o2sim-internal", "pub", factory};
internalchannel.Bind(internalcontroladdress);
internalchannel.Validate();
std::unique_ptr<fair::mq::Message> message(internalchannel.NewMessage());
// the channel with which outside entities can control this simulator
auto outsidechannel = fair::mq::Channel{"o2sim-control", "rep", factory};
outsidechannel.Bind(controladdress);
outsidechannel.Validate();
std::unique_ptr<fair::mq::Message> request(outsidechannel.NewMessage());
bool keepgoing = true;
while (keepgoing) {
outsidechannel.Init();
outsidechannel.Bind(controladdress);
outsidechannel.Validate();
if (outsidechannel.Receive(request) > 0) {
std::string command(reinterpret_cast<char const*>(request->GetData()), request->GetSize());
LOG(info) << "Control message: " << command << " received ";
int code = -1;
if (isBusy()) {
code = 1; // code = 1 --> busy
std::unique_ptr<fair::mq::Message> reply(outsidechannel.NewSimpleMessage(code));
outsidechannel.Send(reply);
} else {
code = 0; // code = 0 --> ok
o2::conf::SimReconfigData reconfig;
auto success = o2::conf::parseSimReconfigFromString(command, reconfig);
if (!success) {
LOG(warn) << "CONTROL REQUEST COULD NOT BE PARSED";
code = 2; // code = 2 --> error with request data
}
std::unique_ptr<fair::mq::Message> reply(outsidechannel.NewSimpleMessage(code));
outsidechannel.Send(reply);
if (code == 0) {
gAskedEvents = reconfig.nEvents;
gDistributedEvents.clear();
gFinishedEvents.clear();
// forward request from outside to all internal processes
internalchannel.Send(request);
keepgoing = !reconfig.stop;
}
}
}
}
};
threads.push_back(std::thread(lambda));
threads.back().detach();
}
// launches a thread that listens for control command from outside
// or that propagates control strings to all children
void launchWorkerListenerThread()
{
static std::vector<std::thread> threads;
auto lambda = []() {
auto factory = fair::mq::TransportFactory::CreateTransportFactory("zeromq");
auto listenchannel = fair::mq::Channel{"channel0", "sub", factory};
listenchannel.Init();
std::stringstream address;
address << "ipc:///tmp/o2sim-worker-notifications-" << getpid();
listenchannel.Connect(address.str());
listenchannel.Validate();
std::unique_ptr<fair::mq::Message> message(listenchannel.NewMessage());
while (true) {
if (listenchannel.Receive(message) > 0) {
std::string msg(reinterpret_cast<char const*>(message->GetData()), message->GetSize());
LOG(info) << "Worker message: " << msg;
}
}
};
threads.push_back(std::thread(lambda));
threads.back().detach();
}
// monitors a certain incoming event pipes and displays new information
// gives possibility to exec a callback at these events
void launchThreadMonitoringEvents(
int pipefd, std::string text, std::vector<int>& eventcontainer,
std::function<bool(std::vector<int> const&)> callback = [](std::vector<int> const&) { return true; })
{
static std::vector<std::thread> threads;
auto lambda = [pipefd, text, callback, &eventcontainer]() {
int eventcounter; // event id or some other int message
while (1) {
ssize_t count = read(pipefd, &eventcounter, sizeof(eventcounter));
if (count == -1) {
LOG(info) << "ERROR READING";
if (errno == EINTR) {
continue;
} else {
return;
}
} else if (count == 0) {
break;
} else {
eventcontainer.push_back(eventcounter);
if (callback(eventcontainer)) {
LOG(info) << text.c_str() << eventcounter;
}
}
};
};
threads.push_back(std::thread(lambda));
threads.back().detach();
}
void launchShutdownThread()
{
static std::vector<std::thread> threads;
auto lambda = []() {
// once started ... we are waiting for some seconds
// then **force** shutdown all remaining children by killing them.
// This is to make sure that the process does not hang during a final wait
// and interrupted/blocked signal delivery.
struct timespec initial, remaining;
initial.tv_sec = 5;
// wait for specified time ... (and account for possible signal interruptions)
while (nanosleep(&initial, &remaining) == -1 && remaining.tv_sec > 0) {
initial = remaining;
}
LOG(info) << "Shutdown timer expired ... force killing remaining children";
for (auto p : gChildProcesses) {
killpg(p, SIGKILL);
}
};
threads.push_back(std::thread(lambda));
threads.back().detach();
}
void empty(int) {}
// signal handler for graceful exit
void sighandler(int sig)
{
if (sig == SIGINT || sig == SIGTERM) {
signal(sig, empty); // ignore further deliveries of these signals
LOG(info) << "o2-sim driver: Signal caught ... clean up and exit (please be patient)";
// forward signal to all children
for (auto& pid : gChildProcesses) {
killpg(pid, sig);
}
cleanup();
// make sure everyone is really shutting down
int status, cpid;
launchShutdownThread();
while ((cpid = wait(&status))) {
if (cpid == -1) {
break;
}
}
exit(1); // exiting upon external signal is abnormal so exit code != 0
}
}
// We do some early checks on the arguments passed. In particular we fix
// missing timestamps for consistent application in all sub-processes. An empty
// vector is returned upon errors.
std::vector<char*> checkArgs(int argc, char* argv[])
{
auto conf = o2::conf::SimConfig::make();
std::vector<std::string> modifiedArgs;
#ifdef SIM_RUN5
conf.setRun5();
#endif
if (conf.resetFromArguments(argc, argv)) {
for (int i = 0; i < argc; ++i) {
modifiedArgs.push_back(argv[i]);
}
// Check the run and the time arguments and enforce consistency.
// This is important as queries to CCDB are done using the timestamp.
if (conf.getRunNumber() != -1) {
// if we have a run number we should fix or check the timestamp
// fetch the actual timestamp ranges for this run
auto& ccdbmgr = o2::ccdb::BasicCCDBManager::instance();
auto soreor = ccdbmgr.getRunDuration(conf.getRunNumber());
auto timestamp = conf.getTimestamp();
if (conf.getConfigData().mTimestampMode == o2::conf::TimeStampMode::kNow) {
timestamp = soreor.first;
LOG(info) << "Fixing timestamp to " << timestamp << " based on run number";
modifiedArgs.push_back("--timestamp");
modifiedArgs.push_back(std::to_string(timestamp));
} else if (conf.getConfigData().mTimestampMode == o2::conf::TimeStampMode::kManual && (timestamp < soreor.first || timestamp > soreor.second)) {
LOG(fatal) << "The given timestamp " << timestamp << " is incompatible with the given run number " << conf.getRunNumber() << " starting at " << soreor.first << " and ending at " << soreor.second;
}
}
}
std::vector<char*> final(modifiedArgs.size(), nullptr);
for (int i = 0; i < modifiedArgs.size(); ++i) {
final[i] = new char[modifiedArgs[i].size() + 1];
strcpy(final[i], modifiedArgs[i].c_str());
}
return final;
}
// helper executable to launch all the devices/processes
// for parallel simulation
int main(int argc, char* argv[])
{
LOG(info) << "This is o2-sim version " << o2::fullVersion() << " (" << o2::gitRevision() << ")";
LOG(info) << o2::getBuildInfo();
signal(SIGINT, sighandler);
signal(SIGTERM, sighandler);
// we enable the forked version of the code by default
setenv("ALICE_SIMFORKINTERNAL", "ON", 1);
TStopwatch timer;
timer.Start();
auto o2env = getenv("O2_ROOT");
if (!o2env) {
LOG(fatal) << "O2_ROOT environment not defined";
}
std::string rootpath(o2env);
std::string installpath = rootpath + "/bin";
// copy topology file to working dir and update ports
std::stringstream configss;
configss << rootpath << "/share/config/o2simtopology_template.json";
auto localconfig = std::string("o2simtopology_") + std::to_string(getpid()) + std::string(".json");
// need to add pid to channel urls to allow simultaneous deploys!
// we simply insert the PID into the topology template
std::ifstream in(configss.str());
std::ofstream out(localconfig);
std::string wordToReplace("#PID#");
std::string wordToReplaceWith = std::to_string(getpid());
std::string line;
size_t len = wordToReplace.length();
while (std::getline(in, line)) {
size_t pos = line.find(wordToReplace);
if (pos != std::string::npos) {
line.replace(pos, len, wordToReplaceWith);
}
out << line << '\n';
}
in.close();
out.close();
// create a channel for outside event notifications --> factor out into common function
// auto factory = fair::mq::TransportFactory::CreateTransportFactory("zeromq");
auto externalpublishchannel = o2::simpubsub::createPUBChannel(o2::simpubsub::getPublishAddress("o2sim-notifications"));
// check initial arguments and complete
auto finalArgs = checkArgs(argc, argv);
if (finalArgs.size() == 0) {
return 1;
}
auto& conf = o2::conf::SimConfig::Instance();
#ifdef SIM_RUN5
conf.setRun5();
#endif
if (!conf.resetFromArguments(finalArgs.size(), &finalArgs[0])) {
return 1;
}
// in case of zero events asked (only setup geometry etc) we just call the non-distributed version
// (otherwise we would need to add more synchronization between the actors)
if (conf.getNEvents() <= 0 && !conf.asService()) {
LOG(info) << "No events to be simulated; Switching to non-distributed mode";
const int Nargs = finalArgs.size() + 1;
#ifdef SIM_RUN5
std::string name("o2-sim-serial-run5");
#else
std::string name("o2-sim-serial");
#endif
const char* arguments[Nargs];
arguments[0] = name.c_str();
for (int i = 1; i < finalArgs.size(); ++i) {
arguments[i] = finalArgs[i];
}
arguments[finalArgs.size()] = nullptr;
std::string path = installpath + "/" + name;
auto r = execv(path.c_str(), (char* const*)arguments);
if (r != 0) {
perror(nullptr);
}
return r;
}
gAskedEvents = conf.getNEvents();
if (conf.asService()) {
launchControlThread();
// launchWorkerListenerThread();
}
// we create the global shared mem pool; just enough to serve
// n simulation workers
int nworkers = conf.getNSimWorkers();
setenv("ALICE_NSIMWORKERS", std::to_string(nworkers).c_str(), 1);
LOG(info) << "Running with " << nworkers << " sim workers ";
o2::utils::ShmManager::Instance().createGlobalSegment(nworkers);
// we can try to disable it here
if (getenv("ALICE_NOSIMSHM")) {
o2::utils::ShmManager::Instance().disable();
}
int pipe_serverdriver_fd[2];
if (pipe(pipe_serverdriver_fd) != 0) {
perror("problem in creating pipe");
}
// the server
int pid = fork();
if (pid == 0) {
int fd = open(getServerLogName().c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
setenv("ALICE_O2SIMSERVERTODRIVER_PIPE", std::to_string(pipe_serverdriver_fd[1]).c_str(), 1);
dup2(fd, 1); // make stdout go to file
dup2(fd, 2); // make stderr go to file - you may choose to not do this
// or perhaps send stderr to another file
close(pipe_serverdriver_fd[0]);
close(fd); // fd no longer needed - the dup'ed handles are sufficient
const std::string name("o2-sim-primary-server-device-runner");
const std::string path = installpath + "/" + name;
const std::string config = localconfig;
// copy all arguments into a common vector
#ifdef SIM_RUN5
const int addNArgs = 12;
#else
const int addNArgs = 11;
#endif
const int Nargs = finalArgs.size() + addNArgs;
const char* arguments[Nargs];
arguments[0] = name.c_str();
arguments[1] = "--control";
arguments[2] = "static";
arguments[3] = "--id";
arguments[4] = "primary-server";
arguments[5] = "--mq-config";
arguments[6] = config.c_str();
arguments[7] = "--severity";
arguments[8] = "debug";
arguments[9] = "--color";
arguments[10] = "false"; // switch off colored output
#ifdef SIM_RUN5
arguments[11] = "--isRun5";
#endif
for (int i = 1; i < finalArgs.size(); ++i) {
arguments[addNArgs - 1 + i] = finalArgs[i];
}
arguments[Nargs - 1] = nullptr;
for (int i = 0; i < Nargs; ++i) {
if (arguments[i]) {
std::cerr << arguments[i] << "\n";
}
}
std::cerr << "$$$$\n";
auto r = execv(path.c_str(), (char* const*)arguments);
LOG(info) << "Starting the server"
<< "\n";
if (r != 0) {
perror(nullptr);
}
return r;
} else {
gChildProcesses.push_back(pid);
setpgid(pid, pid);
close(pipe_serverdriver_fd[1]);
std::cout << "Spawning particle server on PID " << pid << "; Redirect output to " << getServerLogName() << "\n";
// A simple callback for distributed primary-chunk "events"
auto distributionCallback = [&conf, &externalpublishchannel](std::vector<int> const& v) {
std::stringstream str;
if (v.back() == -111) {
// message that server is initialized
gPrimServerIsInitialized = true;
return false; // silent
} else {
str << "EVENT " << v.back() << " DISTRIBUTED";
o2::simpubsub::publishMessage(externalpublishchannel, o2::simpubsub::simStatusString("O2SIM", "INFO", str.str()));
return true;
}
};
launchThreadMonitoringEvents(pipe_serverdriver_fd[0], "DISTRIBUTING EVENT : ", gDistributedEvents, distributionCallback);
}
// we wait until the particle server is initialized before constructing the worker
// since the worker needs an operating server to initialize
while (!gPrimServerIsInitialized) {
int status;
auto result = waitpid(gChildProcesses.back(), &status, WNOHANG);
if (result != 0) {
break; // exit this busy loop if the server process exited for some reason
}
sleep(1); // otherwise wait until server is initialized
}
auto internalfork = getenv("ALICE_SIMFORKINTERNAL");
if (internalfork) {
// forking will be done internally to profit from copy-on-write
nworkers = 1;
}
for (int id = 0; id < nworkers; ++id) {
// the workers
std::stringstream workerlogss;
workerlogss << getWorkerLogName() << id;
// the workers
std::stringstream workerss;
workerss << "worker" << id;
pid = fork();
if (pid == 0) {
int fd = open(workerlogss.str().c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
dup2(fd, 1); // make stdout go to file
dup2(fd, 2); // make stderr go to file - you may choose to not do this
// or perhaps send stderr to another file
close(fd); // fd no longer needed - the dup'ed handles are sufficient
const std::string name("o2-sim-device-runner");
const std::string path = installpath + "/" + name;
execl(path.c_str(), name.c_str(), "--control", "static", "--id", workerss.str().c_str(), "--config-key",
"worker", "--mq-config", localconfig.c_str(), "--severity", "info", (char*)nullptr);
return 0;
} else {
gChildProcesses.push_back(pid);
setpgid(pid, pid); // the worker processes will form their own group
std::cout << "Spawning sim worker " << id << " on PID " << pid
<< "; Redirect output to " << workerlogss.str() << "\n";
}
}
// the hit merger
int pipe_mergerdriver_fd[2];
if (pipe(pipe_mergerdriver_fd) != 0) {
perror("problem in creating pipe");
}
pid = fork();
std::atomic<bool> shutdown_initiated = false;
if (pid == 0) {
int fd = open(getMergerLogName().c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
dup2(fd, 1); // make stdout go to file
dup2(fd, 2); // make stderr go to file - you may choose to not do this
// or perhaps send stderr to another file
close(fd); // fd no longer needed - the dup'ed handles are sufficient
close(pipe_mergerdriver_fd[0]);
setenv("ALICE_O2SIMMERGERTODRIVER_PIPE", std::to_string(pipe_mergerdriver_fd[1]).c_str(), 1);
const std::string name("o2-sim-hit-merger-runner");
const std::string path = installpath + "/" + name;
execl(path.c_str(), name.c_str(), "--control", "static", "--catch-signals", "0", "--id", "hitmerger", "--mq-config", localconfig.c_str(), "--color", "false",
(char*)nullptr);
return 0;
} else {
std::cout << "Spawning hit merger on PID " << pid << "; Redirect output to " << getMergerLogName() << "\n";
setpgid(pid, pid);
gChildProcesses.push_back(pid);
close(pipe_mergerdriver_fd[1]);
// A simple callback that determines if the simulation is complete and triggers
// a shutdown of all child processes. This appears to be more robust than leaving
// that decision upon the children (sometimes there are problems with that).
auto finishCallback = [&shutdown_initiated, &conf, &externalpublishchannel](std::vector<int> const& v) {
std::stringstream str;
str << "EVENT " << v.back() << " FINISHED " << gAskedEvents << " " << v.size();
o2::simpubsub::publishMessage(externalpublishchannel, o2::simpubsub::simStatusString("O2SIM", "INFO", str.str()));
if (gAskedEvents == v.size()) {
o2::simpubsub::publishMessage(externalpublishchannel, o2::simpubsub::simStatusString("O2SIM", "STATE", "DONE"));
if (!conf.asService()) {
LOG(info) << "SIMULATION IS DONE. INITIATING SHUTDOWN.";
if (!shutdown_initiated) {
shutdown_initiated = true;
for (auto p : gChildProcesses) {
killpg(p, SIGTERM);
}
}
} else {
LOG(info) << "SIMULATION DONE. STAYING AS DAEMON.";
}
}
return true;
};
launchThreadMonitoringEvents(pipe_mergerdriver_fd[0], "EVENT FINISHED : ", gFinishedEvents, finishCallback);
}
// wait on merger (which when exiting completes the workflow)
auto mergerpid = gChildProcesses.back();
int status, cpid;
// wait just blocks and waits until any child returns; but we make sure to wait until merger is here
bool errored = false;
while ((cpid = wait(&status)) != mergerpid) {
if (WEXITSTATUS(status) || WIFSIGNALED(status)) {
if (!shutdown_initiated) {
LOG(info) << "Process " << cpid << " EXITED WITH CODE " << WEXITSTATUS(status) << " SIGNALED "
<< WIFSIGNALED(status) << " SIGNAL " << WTERMSIG(status);
// we bring down all processes if one of them had problems or got a termination signal
// if (WTERMSIG(status) == SIGABRT || WTERMSIG(status) == SIGSEGV || WTERMSIG(status) == SIGBUS || WTERMSIG(status) == SIGTERM) {
LOG(info) << "Problem detected (or child received termination signal) ... shutting down whole system ";
for (auto p : gChildProcesses) {
LOG(info) << "TERMINATING " << p;
killpg(p, SIGTERM); // <--- makes sure to shutdown "unknown" child pids via the group property
}
LOG(error) << "SHUTTING DOWN DUE TO SIGNALED EXIT IN COMPONENT " << cpid;
o2::simpubsub::publishMessage(externalpublishchannel, o2::simpubsub::simStatusString("O2SIM", "STATE", "FAILURE"));
errored = true;
}
}
}
// This marks the actual end of the computation (since results are available)
LOG(info) << "Merger process " << mergerpid << " returned";
LOG(info) << "Simulation process took " << timer.RealTime() << " s";
if (!errored && !shutdown_initiated) {
shutdown_initiated = true;
// ordinary shutdown of the rest
for (auto p : gChildProcesses) {
if (p != mergerpid) {
LOG(info) << "SHUTTING DOWN CHILD PROCESS (normal thread)" << p;
killpg(p, SIGTERM);
}
}
}
// Final shutdown section. Here we definitely wait on all children
// otherwise this breaks accounting in the /usr/bin/time command. But we install
// an asynchronous timeout thread which triggers an emergency kill after some seconds in order to not block.
launchShutdownThread();
while ((cpid = wait(&status))) {
if (cpid == -1) {
break;
}
}
LOG(debug) << "ShmManager operation " << o2::utils::ShmManager::Instance().isOperational() << "\n";
// do a quick check to see if simulation produced something reasonable
// (mainly useful for continuous integration / automated testing suite)
auto returncode = errored ? 1 : checkresult();
if (returncode == 0) {
LOG(info) << "SIMULATION RETURNED SUCCESFULLY";
}
cleanup();
return returncode;
}