32#if defined(__APPLE__) || defined(NDEBUG)
33#define O2_SIGNPOST_IMPLEMENTATION
57#include <fairmq/Parts.h>
58#include <fairmq/Socket.h>
59#include <fairmq/ProgOptions.h>
60#if __has_include(<fairmq/shmem/Message.h>)
61#include <fairmq/shmem/Message.h>
63#include <Configuration/ConfigurationInterface.h>
64#include <Configuration/ConfigurationFactory.h>
65#include <Monitoring/Monitoring.h>
67#include <TClonesArray.h>
69#include <fmt/ostream.h>
77#include <boost/property_tree/json_parser.hpp>
122 return std::all_of(spec.
inputs.cbegin(), spec.
inputs.cend(), [](
InputRoute const& route) ->
bool { return route.matcher.lifetime == Lifetime::Timer; });
127 return (spec.
inputChannels.size() == 1) && (spec.
inputs[0].matcher.lifetime == Lifetime::Timer || spec.
inputs[0].matcher.lifetime == Lifetime::Enumeration);
153 O2_SIGNPOST_START(device, dpid,
"state",
"Starting processing state %d", (
int)newState);
154 state.streaming = newState;
169 O2_SIGNPOST_EVENT_EMIT_INFO(calibration, cid,
"callback",
"Grace period for data processing expired. Switching to EndOfStreaming.");
172 O2_SIGNPOST_EVENT_EMIT_INFO(calibration, cid,
"callback",
"Grace period for data processing expired. Only calibrations from this point onwards.");
186 return devices[running.
index];
196 : mRunningDevice{running},
197 mConfigRegistry{nullptr},
198 mServiceRegistry{registry},
199 mProcessingPolicies{policies}
201 GetConfig()->Subscribe<std::string>(
"dpl", [®istry = mServiceRegistry](
const std::string&
key, std::string
value) {
202 if (
key ==
"cleanup") {
206 int64_t newCleanupCount = std::stoll(
value);
207 if (newCleanupCount <= cleanupCount) {
210 deviceState.cleanupCount.store(newCleanupCount);
211 for (
auto& info : deviceState.inputChannelInfos) {
212 fair::mq::Parts parts;
213 while (info.channel->Receive(parts, 0)) {
214 LOGP(
debug,
"Dropping {} parts", parts.Size());
215 if (parts.Size() == 0) {
223 std::function<
void(
const fair::mq::State)> stateWatcher = [
this, ®istry = mServiceRegistry](
const fair::mq::State
state) ->
void {
228 control.notifyDeviceState(fair::mq::GetStateName(
state));
231 if (deviceState.nextFairMQState.empty() ==
false) {
232 auto state = deviceState.nextFairMQState.back();
234 deviceState.nextFairMQState.pop_back();
239 this->SubscribeToStateChange(
"99-dpl", stateWatcher);
250 mAwakeHandle->data = &
state;
252 LOG(
error) <<
"Unable to initialise subscription";
256 SubscribeToNewTransition(
"dpl", [wakeHandle = mAwakeHandle](fair::mq::Transition t) {
257 int res = uv_async_send(wakeHandle);
259 LOG(
error) <<
"Unable to notify subscription";
261 LOG(
debug) <<
"State transition requested";
275 O2_SIGNPOST_START(device, sid,
"run_callback",
"Starting run callback on stream %d", task->id.index);
278 O2_SIGNPOST_END(device, sid,
"run_callback",
"Done processing data for stream %d", task->id.index);
291 using o2::monitoring::Metric;
292 using o2::monitoring::Monitoring;
293 using o2::monitoring::tags::Key;
294 using o2::monitoring::tags::Value;
298 stats.totalConsumedBytes += accumulatedConsumed.
sharedMemory;
301 dpStats.processCommandQueue();
309 dpStats.processCommandQueue();
312 for (
auto& consumer :
state.offerConsumers) {
313 quotaEvaluator.consume(task->id.index, consumer, reportConsumedOffer);
315 state.offerConsumers.clear();
316 quotaEvaluator.handleExpired(reportExpiredOffer);
317 quotaEvaluator.dispose(task->id.index);
318 task->running =
false;
346 O2_SIGNPOST_EVENT_EMIT(device, sid,
"socket_state",
"Data pending on socket for channel %{public}s", context->name);
350 O2_SIGNPOST_END(device, sid,
"socket_state",
"Socket connected for channel %{public}s", context->name);
352 O2_SIGNPOST_START(device, sid,
"socket_state",
"Socket connected for read in context %{public}s", context->name);
353 uv_poll_start(poller, UV_READABLE | UV_DISCONNECT | UV_PRIORITIZED, &
on_socket_polled);
356 O2_SIGNPOST_START(device, sid,
"socket_state",
"Socket connected for write for channel %{public}s", context->name);
364 case UV_DISCONNECT: {
365 O2_SIGNPOST_END(device, sid,
"socket_state",
"Socket disconnected in context %{public}s", context->name);
367 case UV_PRIORITIZED: {
368 O2_SIGNPOST_EVENT_EMIT(device, sid,
"socket_state",
"Socket prioritized for context %{public}s", context->name);
380 LOGP(fatal,
"Error while polling {}: {}", context->name, status);
385 O2_SIGNPOST_EVENT_EMIT(device, sid,
"socket_state",
"Data pending on socket for channel %{public}s", context->name);
387 assert(context->channelInfo);
388 context->channelInfo->readPolled =
true;
391 O2_SIGNPOST_END(device, sid,
"socket_state",
"OOB socket connected for channel %{public}s", context->name);
393 O2_SIGNPOST_START(device, sid,
"socket_state",
"OOB socket connected for read in context %{public}s", context->name);
396 O2_SIGNPOST_START(device, sid,
"socket_state",
"OOB socket connected for write for channel %{public}s", context->name);
400 case UV_DISCONNECT: {
401 O2_SIGNPOST_END(device, sid,
"socket_state",
"OOB socket disconnected in context %{public}s", context->name);
404 case UV_PRIORITIZED: {
405 O2_SIGNPOST_EVENT_EMIT(device, sid,
"socket_state",
"OOB socket prioritized for context %{public}s", context->name);
426 context.statelessProcess = spec.algorithm.onProcess;
428 context.error = spec.algorithm.onError;
429 context.
initError = spec.algorithm.onInitError;
432 if (configStore ==
nullptr) {
433 std::vector<std::unique_ptr<ParamRetriever>> retrievers;
434 retrievers.emplace_back(std::make_unique<FairOptionsRetriever>(GetConfig()));
435 configStore = std::make_unique<ConfigParamStore>(spec.options, std::move(retrievers));
436 configStore->preload();
437 configStore->activate();
440 using boost::property_tree::ptree;
443 for (
auto&
entry : configStore->store()) {
444 std::stringstream ss;
446 if (
entry.second.empty() ==
false) {
447 boost::property_tree::json_parser::write_json(ss,
entry.second,
false);
451 str =
entry.second.get_value<std::string>();
453 std::string configString = fmt::format(
"[CONFIG] {}={} 1 {}",
entry.first,
str, configStore->provenance(
entry.first.c_str())).c_str();
457 mConfigRegistry = std::make_unique<ConfigParamRegistry>(std::move(configStore));
460 if (context.initError) {
461 context.initErrorHandling = [&errorCallback = context.initError,
474 errorCallback(errorContext);
477 context.initErrorHandling = [&serviceRegistry = mServiceRegistry](
RuntimeErrorRef e) {
492 context.expirationHandlers.clear();
493 context.init = spec.algorithm.onInit;
495 static bool noCatch = getenv(
"O2_NO_CATCHALL_EXCEPTIONS") && strcmp(getenv(
"O2_NO_CATCHALL_EXCEPTIONS"),
"0");
496 InitContext initContext{*mConfigRegistry, mServiceRegistry};
500 context.statefulProcess = context.init(initContext);
502 if (context.initErrorHandling) {
503 (context.initErrorHandling)(e);
508 context.statefulProcess = context.init(initContext);
509 }
catch (std::exception& ex) {
514 (context.initErrorHandling)(e);
516 (context.initErrorHandling)(e);
521 state.inputChannelInfos.resize(spec.inputChannels.size());
525 int validChannelId = 0;
526 for (
size_t ci = 0; ci < spec.inputChannels.size(); ++ci) {
527 auto&
name = spec.inputChannels[ci].name;
528 if (
name.find(spec.channelPrefix +
"from_internal-dpl-clock") == 0) {
533 state.inputChannelInfos[ci].id = {validChannelId++};
538 if (spec.callbacksPolicy.policy !=
nullptr) {
539 InitContext initContext{*mConfigRegistry, mServiceRegistry};
544 auto* options = GetConfig();
545 for (
size_t si = 0; si < mStreams.size(); ++si) {
559 O2_SIGNPOST_END(device, sid,
"signal_state",
"No registry active. Ignoring signal.");
568 while (ri != quotaEvaluator.mOffers.size()) {
569 auto& offer = quotaEvaluator.mOffers[ri];
575 if (offer.valid && offer.sharedMemory != 0) {
576 O2_SIGNPOST_END(device, sid,
"signal_state",
"Memory already offered.");
582 for (
auto& offer : quotaEvaluator.mOffers) {
583 if (offer.valid ==
false) {
586 offer.sharedMemory = 1000000000;
593 O2_SIGNPOST_END(device, sid,
"signal_state",
"Done processing signals.");
596static auto toBeForwardedHeader = [](
void* header) ->
bool {
601 if (header ==
nullptr) {
604 auto sih = o2::header::get<SourceInfoHeader*>(header);
609 auto dih = o2::header::get<DomainInfoHeader*>(header);
614 auto dh = o2::header::get<DataHeader*>(header);
618 auto dph = o2::header::get<DataProcessingHeader*>(header);
625static auto toBeforwardedMessageSet = [](std::vector<ChannelIndex>& cachedForwardingChoices,
627 std::unique_ptr<fair::mq::Message>& header,
628 std::unique_ptr<fair::mq::Message>& payload,
631 if (header.get() ==
nullptr) {
638 if (payload.get() ==
nullptr && consume ==
true) {
642 header.reset(
nullptr);
646 auto fdph = o2::header::get<DataProcessingHeader*>(header->GetData());
647 if (fdph ==
nullptr) {
648 LOG(error) <<
"Data is missing DataProcessingHeader";
651 auto fdh = o2::header::get<DataHeader*>(header->GetData());
652 if (fdh ==
nullptr) {
653 LOG(error) <<
"Data is missing DataHeader";
660 if (fdh->splitPayloadIndex == 0 || fdh->splitPayloadParts <= 1 || total > 1) {
661 proxy.getMatchingForwardChannelIndexes(cachedForwardingChoices, *fdh, fdph->startTime);
663 return cachedForwardingChoices.empty() ==
false;
677 if (oldestTimeslice.timeslice.value <= decongestion.lastTimeslice) {
678 LOG(
debug) <<
"Not sending already sent oldest possible timeslice " << oldestTimeslice.timeslice.value;
681 for (
int fi = 0; fi < proxy.getNumForwardChannels(); fi++) {
682 auto& info = proxy.getForwardChannelInfo(
ChannelIndex{fi});
687 O2_SIGNPOST_EVENT_EMIT(async_queue, aid,
"forwardInputsCallback",
"Skipping channel %{public}s because it's not a DPL channel",
693 O2_SIGNPOST_EVENT_EMIT(async_queue, aid,
"forwardInputsCallback",
"Forwarding to channel %{public}s oldest possible timeslice %zu, prio 20",
694 info.name.c_str(), oldestTimeslice.timeslice.value);
707 std::vector<fair::mq::Parts> forwardedParts;
708 forwardedParts.resize(proxy.getNumForwards());
709 std::vector<ChannelIndex> cachedForwardingChoices{};
711 O2_SIGNPOST_START(forwarding, sid,
"forwardInputs",
"Starting forwarding for slot %zu with oldestTimeslice %zu %{public}s%{public}s%{public}s",
712 slot.index, oldestTimeslice.timeslice.value, copy ?
"with copy" :
"", copy && consume ?
" and " :
"", consume ?
"with consume" :
"");
714 for (
size_t ii = 0, ie = currentSetOfInputs.size(); ii < ie; ++ii) {
715 auto& messageSet = currentSetOfInputs[ii];
717 if (messageSet.size() == 0) {
720 if (!toBeForwardedHeader(messageSet.header(0)->GetData())) {
723 cachedForwardingChoices.clear();
725 for (
size_t pi = 0; pi < currentSetOfInputs[ii].size(); ++pi) {
726 auto& messageSet = currentSetOfInputs[ii];
727 auto& header = messageSet.header(pi);
728 auto& payload = messageSet.payload(pi);
729 auto total = messageSet.getNumberOfPayloads(pi);
731 if (!toBeforwardedMessageSet(cachedForwardingChoices, proxy, header, payload, total, consume)) {
737 if (cachedForwardingChoices.size() > 1) {
740 auto* dh = o2::header::get<DataHeader*>(header->GetData());
741 auto* dph = o2::header::get<DataProcessingHeader*>(header->GetData());
744 for (
auto& cachedForwardingChoice : cachedForwardingChoices) {
745 auto&& newHeader = header->GetTransport()->CreateMessage();
747 fmt::format(
"{}/{}/{}@timeslice:{} tfCounter:{}", dh->dataOrigin, dh->dataDescription, dh->subSpecification, dph->startTime, dh->tfCounter).c_str(), cachedForwardingChoice.value);
748 newHeader->Copy(*header);
749 forwardedParts[cachedForwardingChoice.value].AddPart(std::move(newHeader));
751 for (
size_t payloadIndex = 0; payloadIndex < messageSet.getNumberOfPayloads(pi); ++payloadIndex) {
752 auto&& newPayload = header->GetTransport()->CreateMessage();
753 newPayload->Copy(*messageSet.payload(pi, payloadIndex));
754 forwardedParts[cachedForwardingChoice.value].AddPart(std::move(newPayload));
759 fmt::format(
"{}/{}/{}@timeslice:{} tfCounter:{}", dh->dataOrigin, dh->dataDescription, dh->subSpecification, dph->startTime, dh->tfCounter).c_str(), cachedForwardingChoices.back().value);
760 forwardedParts[cachedForwardingChoices.back().value].AddPart(std::move(messageSet.header(pi)));
761 for (
size_t payloadIndex = 0; payloadIndex < messageSet.getNumberOfPayloads(pi); ++payloadIndex) {
762 forwardedParts[cachedForwardingChoices.back().value].AddPart(std::move(messageSet.payload(pi, payloadIndex)));
767 O2_SIGNPOST_EVENT_EMIT(forwarding, sid,
"forwardInputs",
"Forwarding %zu messages", forwardedParts.size());
768 for (
int fi = 0; fi < proxy.getNumForwardChannels(); fi++) {
769 if (forwardedParts[fi].
Size() == 0) {
773 auto& parts = forwardedParts[fi];
774 if (info.
policy ==
nullptr) {
785 O2_SIGNPOST_EVENT_EMIT(async_queue, aid,
"forwardInputs",
"Queuing forwarding oldestPossible %zu", oldestTimeslice.timeslice.value);
797 if (infos.empty() ==
false) {
798 std::vector<fair::mq::RegionInfo> toBeNotified;
799 toBeNotified.swap(infos);
800 static bool dummyRead = getenv(
"DPL_DEBUG_MAP_ALL_SHM_REGIONS") && atoi(getenv(
"DPL_DEBUG_MAP_ALL_SHM_REGIONS"));
801 for (
auto const& info : toBeNotified) {
821void DataProcessingDevice::initPollers()
829 if ((context.statefulProcess !=
nullptr) || (context.statelessProcess !=
nullptr)) {
830 for (
auto& [channelName, channel] : GetChannels()) {
832 for (
size_t ci = 0; ci < spec.inputChannels.size(); ++ci) {
833 auto& channelSpec = spec.inputChannels[ci];
834 channelInfo = &
state.inputChannelInfos[ci];
835 if (channelSpec.name != channelName) {
838 channelInfo->
channel = &this->GetChannel(channelName, 0);
841 if ((
channelName.rfind(
"from_internal-dpl", 0) == 0) &&
842 (
channelName.rfind(
"from_internal-dpl-aod", 0) != 0) &&
843 (
channelName.rfind(
"from_internal-dpl-ccdb-backend", 0) != 0) &&
844 (
channelName.rfind(
"from_internal-dpl-injected", 0)) != 0) {
845 LOGP(detail,
"{} is an internal channel. Skipping as no input will come from there.", channelName);
849 if (
channelName.rfind(
"from_" + spec.name +
"_", 0) == 0) {
850 LOGP(detail,
"{} is to send data. Not polling.", channelName);
855 LOGP(detail,
"{} is not a DPL socket. Not polling.", channelName);
861 size_t zmq_fd_len =
sizeof(zmq_fd);
864 channel[0].GetSocket().GetOption(
"fd", &zmq_fd, &zmq_fd_len);
869 LOGP(detail,
"Polling socket for {}", channelName);
872 pCtx->loop =
state.loop;
874 pCtx->state = &
state;
876 assert(channelInfo !=
nullptr);
877 pCtx->channelInfo = channelInfo;
878 pCtx->socket = &channel[0].GetSocket();
881 uv_poll_init(
state.loop, poller, zmq_fd);
883 LOGP(detail,
"{} is an out of band channel.", channelName);
884 state.activeOutOfBandPollers.push_back(poller);
887 state.activeInputPollers.push_back(poller);
893 if (
state.activeInputPollers.empty() &&
894 state.activeOutOfBandPollers.empty() &&
895 state.activeTimers.empty() &&
896 state.activeSignals.empty()) {
900 if (
state.inputChannelInfos.empty()) {
901 LOGP(detail,
"No input channels. Setting exit transition timeout to 0.");
902 deviceContext.exitTransitionTimeout = 0;
904 for (
auto& [channelName, channel] : GetChannels()) {
905 if (
channelName.rfind(spec.channelPrefix +
"from_internal-dpl", 0) == 0) {
906 LOGP(detail,
"{} is an internal channel. Not polling.", channelName);
909 if (
channelName.rfind(spec.channelPrefix +
"from_" + spec.name +
"_", 0) == 0) {
910 LOGP(detail,
"{} is an out of band channel. Not polling for output.", channelName);
915 size_t zmq_fd_len =
sizeof(zmq_fd);
918 channel[0].GetSocket().GetOption(
"fd", &zmq_fd, &zmq_fd_len);
920 LOGP(
error,
"Cannot get file descriptor for channel {}", channelName);
923 LOG(detail) <<
"Polling socket for " << channel[0].GetName();
927 pCtx->loop =
state.loop;
929 pCtx->state = &
state;
933 uv_poll_init(
state.loop, poller, zmq_fd);
934 state.activeOutputPollers.push_back(poller);
938 LOGP(detail,
"This is a fake device so we exit after the first iteration.");
939 deviceContext.exitTransitionTimeout = 0;
945 uv_timer_init(
state.loop, timer);
946 timer->data = &
state;
947 uv_update_time(
state.loop);
949 state.activeTimers.push_back(timer);
953void DataProcessingDevice::startPollers()
959 for (
auto* poller :
state.activeInputPollers) {
961 O2_SIGNPOST_START(device, sid,
"socket_state",
"Input socket waiting for connection.");
965 for (
auto& poller :
state.activeOutOfBandPollers) {
969 for (
auto* poller :
state.activeOutputPollers) {
971 O2_SIGNPOST_START(device, sid,
"socket_state",
"Output socket waiting for connection.");
978 uv_timer_init(
state.loop, deviceContext.gracePeriodTimer);
981 deviceContext.dataProcessingGracePeriodTimer->data =
new ServiceRegistryRef(mServiceRegistry);
982 uv_timer_init(
state.loop, deviceContext.dataProcessingGracePeriodTimer);
985void DataProcessingDevice::stopPollers()
990 LOGP(detail,
"Stopping {} input pollers",
state.activeInputPollers.size());
991 for (
auto* poller :
state.activeInputPollers) {
994 uv_poll_stop(poller);
997 LOGP(detail,
"Stopping {} out of band pollers",
state.activeOutOfBandPollers.size());
998 for (
auto* poller :
state.activeOutOfBandPollers) {
999 uv_poll_stop(poller);
1002 LOGP(detail,
"Stopping {} output pollers",
state.activeOutOfBandPollers.size());
1003 for (
auto* poller :
state.activeOutputPollers) {
1005 O2_SIGNPOST_END(device, sid,
"socket_state",
"Output socket closed.");
1006 uv_poll_stop(poller);
1010 uv_timer_stop(deviceContext.gracePeriodTimer);
1012 free(deviceContext.gracePeriodTimer);
1013 deviceContext.gracePeriodTimer =
nullptr;
1015 uv_timer_stop(deviceContext.dataProcessingGracePeriodTimer);
1017 free(deviceContext.dataProcessingGracePeriodTimer);
1018 deviceContext.dataProcessingGracePeriodTimer =
nullptr;
1033 for (
auto&
di : distinct) {
1034 auto& route = spec.inputs[
di];
1035 if (route.configurator.has_value() ==
false) {
1040 .
name = route.configurator->name,
1042 .lifetime = route.matcher.lifetime,
1043 .creator = route.configurator->creatorConfigurator(
state, mServiceRegistry, *mConfigRegistry),
1044 .checker = route.configurator->danglingConfigurator(
state, *mConfigRegistry),
1045 .handler = route.configurator->expirationConfigurator(
state, *mConfigRegistry)};
1046 context.expirationHandlers.emplace_back(std::move(handler));
1049 if (
state.awakeMainThread ==
nullptr) {
1055 deviceContext.expectedRegionCallbacks = std::stoi(fConfig->GetValue<std::string>(
"expected-region-callbacks"));
1056 deviceContext.exitTransitionTimeout = std::stoi(fConfig->GetValue<std::string>(
"exit-transition-timeout"));
1057 deviceContext.dataProcessingTimeout = std::stoi(fConfig->GetValue<std::string>(
"data-processing-timeout"));
1059 for (
auto& channel : GetChannels()) {
1060 channel.second.at(0).Transport()->SubscribeToRegionEvents([&context = deviceContext,
1061 ®istry = mServiceRegistry,
1062 &pendingRegionInfos = mPendingRegionInfos,
1063 ®ionInfoMutex = mRegionInfoMutex](fair::mq::RegionInfo info) {
1064 std::lock_guard<std::mutex> lock(regionInfoMutex);
1065 LOG(detail) <<
">>> Region info event" << info.event;
1066 LOG(detail) <<
"id: " << info.id;
1067 LOG(detail) <<
"ptr: " << info.ptr;
1068 LOG(detail) <<
"size: " << info.size;
1069 LOG(detail) <<
"flags: " << info.flags;
1072 pendingRegionInfos.push_back(info);
1085 if (deviceContext.sigusr1Handle ==
nullptr) {
1087 deviceContext.sigusr1Handle->data = &mServiceRegistry;
1088 uv_signal_init(
state.loop, deviceContext.sigusr1Handle);
1092 for (
auto& handle :
state.activeSignals) {
1093 handle->data = &
state;
1096 deviceContext.sigusr1Handle->data = &mServiceRegistry;
1099 DataProcessingDevice::initPollers();
1107 LOG(
error) <<
"DataProcessor " <<
state.lastActiveDataProcessor.load()->spec->name <<
" was unexpectedly active";
1119 O2_SIGNPOST_END(device, cid,
"InitTask",
"Exiting InitTask callback waiting for the remaining region callbacks.");
1121 auto hasPendingEvents = [&mutex = mRegionInfoMutex, &pendingRegionInfos = mPendingRegionInfos](
DeviceContext& deviceContext) {
1122 std::lock_guard<std::mutex> lock(mutex);
1123 return (pendingRegionInfos.empty() ==
false) || deviceContext.expectedRegionCallbacks > 0;
1130 while (hasPendingEvents(deviceContext)) {
1132 uv_run(
state.loop, UV_RUN_ONCE);
1136 std::lock_guard<std::mutex> lock(mRegionInfoMutex);
1140 O2_SIGNPOST_END(device, cid,
"InitTask",
"Done waiting for registration events.");
1147 bool enableRateLimiting = std::stoi(fConfig->GetValue<std::string>(
"timeframes-rate-limit"));
1156 if (enableRateLimiting ==
false && spec.name.find(
"internal-dpl-injected-dummy-sink") != std::string::npos) {
1159 if (enableRateLimiting) {
1160 for (
auto& spec : spec.outputs) {
1161 if (spec.matcher.binding.value ==
"dpl-summary") {
1168 context.
registry = &mServiceRegistry;
1171 if (context.
error !=
nullptr) {
1185 errorCallback(errorContext);
1199 switch (errorPolicy) {
1210 auto decideEarlyForward = [&context, &spec,
this]() ->
bool {
1214 bool onlyConditions =
true;
1215 bool overriddenEarlyForward =
false;
1216 for (
auto& forwarded : spec.forwards) {
1217 if (forwarded.matcher.lifetime != Lifetime::Condition) {
1218 onlyConditions =
false;
1220#if !__has_include(<fairmq/shmem/Message.h>)
1223 overriddenEarlyForward =
true;
1230 overriddenEarlyForward =
true;
1234 if (forwarded.matcher.lifetime == Lifetime::Optional) {
1236 overriddenEarlyForward =
true;
1241 if (!overriddenEarlyForward && onlyConditions) {
1243 LOG(detail) <<
"Enabling early forwarding because only conditions to be forwarded";
1245 return canForwardEarly;
1257 state.quitRequested =
false;
1260 for (
auto& info :
state.inputChannelInfos) {
1272 for (
size_t i = 0;
i < mStreams.size(); ++
i) {
1275 context.preStartStreamCallbacks(streamRef);
1277 }
catch (std::exception& e) {
1278 O2_SIGNPOST_EVENT_EMIT_ERROR(device, cid,
"PreRun",
"Exception of type std::exception caught in PreRun: %{public}s. Rethrowing.", e.what());
1279 O2_SIGNPOST_END(device, cid,
"PreRun",
"Exiting PreRun due to exception thrown.");
1283 O2_SIGNPOST_EVENT_EMIT_ERROR(device, cid,
"PreRun",
"Exception of type o2::framework::RuntimeErrorRef caught in PreRun: %{public}s. Rethrowing.", err.what);
1284 O2_SIGNPOST_END(device, cid,
"PreRun",
"Exiting PreRun due to exception thrown.");
1287 O2_SIGNPOST_END(device, cid,
"PreRun",
"Unknown exception being thrown. Rethrowing.");
1295 using o2::monitoring::Metric;
1296 using o2::monitoring::Monitoring;
1297 using o2::monitoring::tags::Key;
1298 using o2::monitoring::tags::Value;
1301 monitoring.send(
Metric{(uint64_t)1,
"device_state"}.addTag(Key::Subsystem, Value::DPL));
1309 using o2::monitoring::Metric;
1310 using o2::monitoring::Monitoring;
1311 using o2::monitoring::tags::Key;
1312 using o2::monitoring::tags::Value;
1315 monitoring.send(
Metric{(uint64_t)0,
"device_state"}.addTag(Key::Subsystem, Value::DPL));
1334 bool firstLoop =
true;
1336 O2_SIGNPOST_START(device, lid,
"device_state",
"First iteration of the device loop");
1338 bool dplEnableMultithreding = getenv(
"DPL_THREADPOOL_SIZE") !=
nullptr;
1339 if (dplEnableMultithreding) {
1340 setenv(
"UV_THREADPOOL_SIZE",
"1", 1);
1344 if (
state.nextFairMQState.empty() ==
false) {
1345 (
void)this->ChangeState(
state.nextFairMQState.back());
1346 state.nextFairMQState.pop_back();
1351 std::lock_guard<std::mutex> lock(mRegionInfoMutex);
1364 state.lastActiveDataProcessor.compare_exchange_strong(lastActive,
nullptr);
1366 auto shouldNotWait = (lastActive !=
nullptr &&
1370 shouldNotWait =
true;
1373 if (lastActive !=
nullptr) {
1376 if (NewStatePending()) {
1378 shouldNotWait =
true;
1391 if (deviceContext.dataProcessingTimeout > 0 && deviceContext.dataProcessingTimeout < deviceContext.exitTransitionTimeout) {
1392 uv_update_time(
state.loop);
1393 O2_SIGNPOST_EVENT_EMIT(calibration, lid,
"timer_setup",
"Starting %d s timer for dataProcessingTimeout.", deviceContext.dataProcessingTimeout);
1394 uv_timer_start(deviceContext.dataProcessingGracePeriodTimer,
on_data_processing_expired, deviceContext.dataProcessingTimeout * 1000, 0);
1399 uv_update_time(
state.loop);
1400 O2_SIGNPOST_EVENT_EMIT(calibration, lid,
"timer_setup",
"Starting %d s timer for exitTransitionTimeout.",
1401 deviceContext.exitTransitionTimeout);
1404 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state requested. Waiting for %d seconds before quitting.", (
int)deviceContext.exitTransitionTimeout);
1406 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state requested. Waiting for %d seconds before switching to READY state.", (
int)deviceContext.exitTransitionTimeout);
1411 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state requested. No timeout set, quitting immediately as per --completion-policy");
1413 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state requested. No timeout set, switching to READY state immediately");
1415 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state pending and we are already idle, quitting immediately as per --completion-policy");
1417 O2_SIGNPOST_EVENT_EMIT_INFO(device, lid,
"run_loop",
"New state pending and we are already idle, switching to READY immediately.");
1423 O2_SIGNPOST_EVENT_EMIT(device, lid,
"run_loop",
"State transition requested and we are now in Idle. We can consider it to be completed.");
1426 if (
state.severityStack.empty() ==
false) {
1427 fair::Logger::SetConsoleSeverity((fair::Severity)
state.severityStack.back());
1428 state.severityStack.pop_back();
1434 state.firedTimers.clear();
1436 state.severityStack.push_back((
int)fair::Logger::GetConsoleSeverity());
1437 fair::Logger::SetConsoleSeverity(fair::Severity::trace);
1444 O2_SIGNPOST_START(device, lid,
"run_loop",
"Dropping message from slot %" PRIu64
". Forwarding as needed.", (uint64_t)slot.index);
1452 forwardInputs(registry, slot, dropped, oldestOutputInfo,
false,
true);
1457 auto oldestPossibleTimeslice = relayer.getOldestPossibleOutput();
1459 if (shouldNotWait ==
false) {
1463 O2_SIGNPOST_END(device, lid,
"run_loop",
"Run loop completed. %{}s", shouldNotWait ?
"Will immediately schedule a new one" :
"Waiting for next event.");
1464 uv_run(
state.loop, shouldNotWait ? UV_RUN_NOWAIT : UV_RUN_ONCE);
1466 if ((
state.loopReason &
state.tracingFlags) != 0) {
1467 state.severityStack.push_back((
int)fair::Logger::GetConsoleSeverity());
1468 fair::Logger::SetConsoleSeverity(fair::Severity::trace);
1469 }
else if (
state.severityStack.empty() ==
false) {
1470 fair::Logger::SetConsoleSeverity((fair::Severity)
state.severityStack.back());
1471 state.severityStack.pop_back();
1476 O2_SIGNPOST_EVENT_EMIT(device, lid,
"run_loop",
"Out of band activity detected. Rescanning everything.");
1480 if (!
state.pendingOffers.empty()) {
1481 O2_SIGNPOST_EVENT_EMIT(device, lid,
"run_loop",
"Pending %" PRIu64
" offers. updating the ComputingQuotaEvaluator.", (uint64_t)
state.pendingOffers.size());
1493 std::lock_guard<std::mutex> lock(mRegionInfoMutex);
1497 assert(mStreams.size() == mHandles.size());
1500 for (
size_t ti = 0; ti < mStreams.size(); ti++) {
1501 auto& taskInfo = mStreams[ti];
1502 if (taskInfo.running) {
1506 streamRef.index = ti;
1508 using o2::monitoring::Metric;
1509 using o2::monitoring::Monitoring;
1510 using o2::monitoring::tags::Key;
1511 using o2::monitoring::tags::Value;
1514 if (streamRef.index != -1) {
1517 uv_work_t& handle = mHandles[streamRef.index];
1519 handle.data = &mStreams[streamRef.index];
1526 dpStats.processCommandQueue();
1539 stream.registry = &mServiceRegistry;
1540 if (dplEnableMultithreding) [[unlikely]] {
1554 O2_SIGNPOST_END(device, lid,
"run_loop",
"Run loop completed. Transition handling state %d.",
state.transitionHandling);
1557 for (
size_t ci = 0; ci < spec.inputChannels.size(); ++ci) {
1558 auto& info =
state.inputChannelInfos[ci];
1559 info.parts.fParts.clear();
1570 O2_SIGNPOST_START(device, dpid,
"do_prepare",
"Starting DataProcessorContext::doPrepare.");
1588 context.allDone = std::any_of(
state.inputChannelInfos.begin(),
state.inputChannelInfos.end(), [cid](
const auto& info) {
1590 O2_SIGNPOST_EVENT_EMIT(device, cid,
"do_prepare",
"Input channel %{public}s%{public}s has %zu parts left and is in state %d.",
1591 info.channel->GetName().c_str(), (info.id.value == ChannelIndex::INVALID ?
" (non DPL)" :
""), info.parts.fParts.size(), (int)info.state);
1593 O2_SIGNPOST_EVENT_EMIT(device, cid,
"do_prepare",
"External channel %d is in state %d.", info.id.value, (int)info.state);
1598 O2_SIGNPOST_EVENT_EMIT(device, dpid,
"do_prepare",
"Processing %zu input channels.", spec.inputChannels.size());
1601 static std::vector<int> pollOrder;
1602 pollOrder.resize(
state.inputChannelInfos.size());
1603 std::iota(pollOrder.begin(), pollOrder.end(), 0);
1604 std::sort(pollOrder.begin(), pollOrder.end(), [&infos =
state.inputChannelInfos](
int a,
int b) {
1605 return infos[a].oldestForChannel.value < infos[b].oldestForChannel.value;
1609 if (pollOrder.empty()) {
1610 O2_SIGNPOST_END(device, dpid,
"do_prepare",
"Nothing to poll. Waiting for next iteration.");
1613 auto currentOldest =
state.inputChannelInfos[pollOrder.front()].oldestForChannel;
1614 auto currentNewest =
state.inputChannelInfos[pollOrder.back()].oldestForChannel;
1615 auto delta = currentNewest.value - currentOldest.value;
1616 O2_SIGNPOST_EVENT_EMIT(device, dpid,
"do_prepare",
"Oldest possible timeframe range %" PRIu64
" => %" PRIu64
" delta %" PRIu64,
1617 (int64_t)currentOldest.value, (int64_t)currentNewest.value, (int64_t)delta);
1618 auto& infos =
state.inputChannelInfos;
1620 if (context.balancingInputs) {
1622 static uint64_t ahead = getenv(
"DPL_MAX_CHANNEL_AHEAD") ? std::atoll(getenv(
"DPL_MAX_CHANNEL_AHEAD")) :
std::
max(8,
std::
min(pipelineLength - 48, pipelineLength / 2));
1623 auto newEnd = std::remove_if(pollOrder.begin(), pollOrder.end(), [&infos, limitNew = currentOldest.value + ahead](
int a) ->
bool {
1624 return infos[a].oldestForChannel.value > limitNew;
1626 for (
auto it = pollOrder.begin(); it < pollOrder.end(); it++) {
1627 const auto& channelInfo =
state.inputChannelInfos[*it];
1633 bool shouldBeRunning = it < newEnd;
1634 if (running != shouldBeRunning) {
1635 uv_poll_start(poller, shouldBeRunning ? UV_READABLE | UV_DISCONNECT | UV_PRIORITIZED : 0, &
on_socket_polled);
1641 pollOrder.erase(newEnd, pollOrder.end());
1643 O2_SIGNPOST_END(device, dpid,
"do_prepare",
"%zu channels pass the channel inbalance balance check.", pollOrder.size());
1645 for (
auto sci : pollOrder) {
1646 auto& info =
state.inputChannelInfos[sci];
1647 auto& channelSpec = spec.inputChannels[sci];
1649 O2_SIGNPOST_START(device, cid,
"channels",
"Processing channel %s", channelSpec.name.c_str());
1652 context.allDone =
false;
1657 if (info.parts.Size()) {
1660 O2_SIGNPOST_END(device, cid,
"channels",
"Flushing channel %s which is in state %d and has %zu parts still pending.",
1661 channelSpec.name.c_str(), (
int)info.state, info.parts.Size());
1664 if (info.
channel ==
nullptr) {
1665 O2_SIGNPOST_END(device, cid,
"channels",
"Channel %s which is in state %d is nullptr and has %zu parts still pending.",
1666 channelSpec.name.c_str(), (
int)info.state, info.parts.Size());
1671 O2_SIGNPOST_END(device, cid,
"channels",
"Channel %s which is in state %d is not a DPL channel and has %zu parts still pending.",
1672 channelSpec.name.c_str(), (
int)info.state, info.parts.Size());
1675 auto& socket = info.
channel->GetSocket();
1680 if (info.hasPendingEvents == 0) {
1681 socket.Events(&info.hasPendingEvents);
1683 if ((info.hasPendingEvents & 1) == 0 && (info.parts.Size() == 0)) {
1684 O2_SIGNPOST_END(device, cid,
"channels",
"No pending events and no remaining parts to process for channel %{public}s", channelSpec.name.c_str());
1690 info.readPolled =
false;
1699 bool newMessages =
false;
1701 O2_SIGNPOST_EVENT_EMIT(device, cid,
"channels",
"Receiving loop called for channel %{public}s (%d) with oldest possible timeslice %zu",
1702 channelSpec.name.c_str(), info.id.value, info.oldestForChannel.value);
1703 if (info.parts.Size() < 64) {
1704 fair::mq::Parts parts;
1705 info.
channel->Receive(parts, 0);
1707 O2_SIGNPOST_EVENT_EMIT(device, cid,
"channels",
"Received %zu parts from channel %{public}s (%d).", parts.Size(), channelSpec.name.c_str(), info.id.value);
1709 for (
auto&& part : parts) {
1710 info.parts.fParts.emplace_back(std::move(part));
1712 newMessages |=
true;
1715 if (info.parts.Size() >= 0) {
1727 socket.Events(&info.hasPendingEvents);
1728 if (info.hasPendingEvents) {
1729 info.readPolled =
false;
1732 state.lastActiveDataProcessor.store(&context);
1735 O2_SIGNPOST_END(device, cid,
"channels",
"Done processing channel %{public}s (%d).",
1736 channelSpec.name.c_str(), info.id.value);
1751 context.completed.clear();
1752 context.completed.reserve(16);
1754 state.lastActiveDataProcessor.store(&context);
1758 context.preDanglingCallbacks(danglingContext);
1759 if (
state.lastActiveDataProcessor.load() ==
nullptr) {
1762 auto activity =
ref.get<
DataRelayer>().processDanglingInputs(context.expirationHandlers, *context.registry,
true);
1763 if (activity.expiredSlots > 0) {
1764 state.lastActiveDataProcessor = &context;
1767 context.completed.clear();
1769 state.lastActiveDataProcessor = &context;
1772 context.postDanglingCallbacks(danglingContext);
1780 state.lastActiveDataProcessor = &context;
1803 timingInfo.timeslice = relayer.getOldestPossibleOutput().timeslice.value;
1804 timingInfo.tfCounter = -1;
1805 timingInfo.firstTForbit = -1;
1807 timingInfo.creation = std::chrono::time_point_cast<std::chrono::milliseconds>(std::chrono::system_clock::now()).time_since_epoch().count();
1808 O2_SIGNPOST_EVENT_EMIT(calibration, dpid,
"calibration",
"TimingInfo.keepAtEndOfStream %d", timingInfo.keepAtEndOfStream);
1812 context.preEOSCallbacks(eosContext);
1816 streamContext.postEOSCallbacks(eosContext);
1817 context.postEOSCallbacks(eosContext);
1819 for (
auto& channel : spec.outputChannels) {
1820 O2_SIGNPOST_EVENT_EMIT(device, dpid,
"state",
"Sending end of stream to %{public}s.", channel.name.c_str());
1827 if (shouldProcess) {
1828 state.lastActiveDataProcessor = &context;
1832 for (
auto& poller :
state.activeOutputPollers) {
1833 uv_poll_stop(poller);
1841 for (
auto& poller :
state.activeOutputPollers) {
1842 uv_poll_stop(poller);
1858 if (deviceContext.sigusr1Handle) {
1864 handle->data =
nullptr;
1893 auto getInputTypes = [&info, &context]() -> std::optional<std::vector<InputInfo>> {
1898 auto& parts = info.
parts;
1901 std::vector<InputInfo> results;
1903 results.reserve(parts.Size() / 2);
1904 size_t nTotalPayloads = 0;
1908 if (
type != InputType::Invalid &&
length > 1) {
1909 nTotalPayloads +=
length - 1;
1913 for (
size_t pi = 0; pi < parts.Size(); pi += 2) {
1914 auto* headerData = parts.At(pi)->GetData();
1915 auto sih = o2::header::get<SourceInfoHeader*>(headerData);
1917 O2_SIGNPOST_EVENT_EMIT(device, cid,
"handle_data",
"Got SourceInfoHeader with state %d", (
int)sih->state);
1918 info.
state = sih->state;
1919 insertInputInfo(pi, 2, InputType::SourceInfo, info.
id);
1920 state.lastActiveDataProcessor = &context;
1923 auto dih = o2::header::get<DomainInfoHeader*>(headerData);
1925 O2_SIGNPOST_EVENT_EMIT(device, cid,
"handle_data",
"Got DomainInfoHeader with oldestPossibleTimeslice %d", (
int)dih->oldestPossibleTimeslice);
1926 insertInputInfo(pi, 2, InputType::DomainInfo, info.
id);
1927 state.lastActiveDataProcessor = &context;
1930 auto dh = o2::header::get<DataHeader*>(headerData);
1932 insertInputInfo(pi, 0, InputType::Invalid, info.
id);
1936 if (dh->payloadSize > parts.At(pi + 1)->GetSize()) {
1937 insertInputInfo(pi, 0, InputType::Invalid, info.
id);
1941 auto dph = o2::header::get<DataProcessingHeader*>(headerData);
1946 O2_SIGNPOST_START(parts,
pid,
"parts",
"Processing DataHeader %{public}-4s/%{public}-16s/%d with splitPayloadParts %d and splitPayloadIndex %d",
1947 dh->dataOrigin.str, dh->dataDescription.str, dh->subSpecification, dh->splitPayloadParts, dh->splitPayloadIndex);
1949 insertInputInfo(pi, 2, InputType::Invalid, info.
id);
1953 if (dh->splitPayloadParts > 0 && dh->splitPayloadParts == dh->splitPayloadIndex) {
1956 insertInputInfo(pi, dh->splitPayloadParts + 1, InputType::Data, info.
id);
1957 pi += dh->splitPayloadParts - 1;
1963 size_t finalSplitPayloadIndex = pi + (dh->splitPayloadParts > 0 ? dh->splitPayloadParts : 1) * 2;
1964 if (finalSplitPayloadIndex > parts.Size()) {
1966 insertInputInfo(pi, 0, InputType::Invalid, info.
id);
1969 insertInputInfo(pi, 2, InputType::Data, info.
id);
1970 for (; pi + 2 < finalSplitPayloadIndex; pi += 2) {
1971 insertInputInfo(pi + 2, 2, InputType::Data, info.
id);
1975 if (results.size() + nTotalPayloads != parts.Size()) {
1976 O2_SIGNPOST_EVENT_EMIT_ERROR(device, cid,
"handle_data",
"inconsistent number of inputs extracted. %zu vs parts (%zu)", results.size() + nTotalPayloads, parts.Size());
1977 return std::nullopt;
1982 auto reportError = [
ref](
const char*
message) {
1987 auto handleValidMessages = [&info,
ref, &reportError](std::vector<InputInfo>
const& inputInfos) {
1991 auto& parts = info.
parts;
1994 bool hasBackpressure =
false;
1995 size_t minBackpressureTimeslice = -1;
1997 size_t oldestPossibleTimeslice = -1;
1998 static std::vector<int> ordering;
2000 ordering.resize(inputInfos.size());
2001 std::iota(ordering.begin(), ordering.end(), 0);
2003 std::stable_sort(ordering.begin(), ordering.end(), [&inputInfos](
int const&
a,
int const&
b) {
2004 auto const& ai = inputInfos[a];
2005 auto const& bi = inputInfos[b];
2006 if (ai.type != bi.type) {
2007 return ai.type < bi.type;
2009 return ai.position < bi.position;
2011 for (
size_t ii = 0; ii < inputInfos.size(); ++ii) {
2012 auto const& input = inputInfos[ordering[ii]];
2013 switch (input.type) {
2014 case InputType::Data: {
2016 auto headerIndex = input.position;
2018 auto nPayloadsPerHeader = 0;
2019 if (input.size > 2) {
2021 nMessages = input.size;
2022 nPayloadsPerHeader = nMessages - 1;
2025 auto dh = o2::header::get<DataHeader*>(parts.At(headerIndex)->GetData());
2026 nMessages = dh->splitPayloadParts > 0 ? dh->splitPayloadParts * 2 : 2;
2027 nPayloadsPerHeader = 1;
2028 ii += (nMessages / 2) - 1;
2032 O2_SIGNPOST_EVENT_EMIT(async_queue, cid,
"onDrop",
"Dropping message from slot %zu. Forwarding as needed. Timeslice %zu",
2033 slot.
index, oldestOutputInfo.timeslice.value);
2040 forwardInputs(
ref, slot, dropped, oldestOutputInfo,
false,
true);
2042 auto relayed = relayer.relay(parts.At(headerIndex)->GetData(),
2043 &parts.At(headerIndex),
2048 switch (relayed.type) {
2051 LOGP(alarm,
"Backpressure on channel {}. Waiting.", info.
channel->GetName());
2052 auto& monitoring =
ref.get<o2::monitoring::Monitoring>();
2053 monitoring.send(o2::monitoring::Metric{1, fmt::format(
"backpressure_{}", info.
channel->GetName())});
2057 policy.backpressure(info);
2058 hasBackpressure =
true;
2059 minBackpressureTimeslice = std::min<size_t>(minBackpressureTimeslice, relayed.timeslice.value);
2065 LOGP(info,
"Back to normal on channel {}.", info.
channel->GetName());
2066 auto& monitoring =
ref.get<o2::monitoring::Monitoring>();
2067 monitoring.send(o2::monitoring::Metric{0, fmt::format(
"backpressure_{}", info.
channel->GetName())});
2074 case InputType::SourceInfo: {
2075 LOGP(detail,
"Received SourceInfo");
2077 state.lastActiveDataProcessor = &context;
2078 auto headerIndex = input.position;
2079 auto payloadIndex = input.position + 1;
2080 assert(payloadIndex < parts.Size());
2083 parts.At(headerIndex).reset(
nullptr);
2084 parts.At(payloadIndex).reset(
nullptr);
2091 case InputType::DomainInfo: {
2095 state.lastActiveDataProcessor = &context;
2096 auto headerIndex = input.position;
2097 auto payloadIndex = input.position + 1;
2098 assert(payloadIndex < parts.Size());
2102 auto dih = o2::header::get<DomainInfoHeader*>(parts.At(headerIndex)->GetData());
2103 if (hasBackpressure && dih->oldestPossibleTimeslice >= minBackpressureTimeslice) {
2106 oldestPossibleTimeslice = std::min(oldestPossibleTimeslice, dih->oldestPossibleTimeslice);
2107 LOGP(
debug,
"Got DomainInfoHeader, new oldestPossibleTimeslice {} on channel {}", oldestPossibleTimeslice, info.
id.
value);
2108 parts.At(headerIndex).reset(
nullptr);
2109 parts.At(payloadIndex).reset(
nullptr);
2111 case InputType::Invalid: {
2112 reportError(
"Invalid part found.");
2118 if (oldestPossibleTimeslice != (
size_t)-1) {
2121 context.domainInfoUpdatedCallback(*context.registry, oldestPossibleTimeslice, info.
id);
2123 state.lastActiveDataProcessor = &context;
2125 auto it = std::remove_if(parts.fParts.begin(), parts.fParts.end(), [](
auto&
msg) ->
bool { return msg.get() == nullptr; });
2126 parts.fParts.erase(it, parts.end());
2127 if (parts.fParts.size()) {
2128 LOG(
debug) << parts.fParts.size() <<
" messages backpressured";
2140 auto inputTypes = getInputTypes();
2141 if (
bool(inputTypes) ==
false) {
2142 reportError(
"Parts should come in couples. Dropping it.");
2145 handleValidMessages(*inputTypes);
2151struct InputLatency {
2156auto calculateInputRecordLatency(
InputRecord const& record, uint64_t currentTime) -> InputLatency
2160 for (
auto& item : record) {
2161 auto* header = o2::header::get<DataProcessingHeader*>(item.header);
2162 if (header ==
nullptr) {
2165 int64_t partLatency = (0x7fffffffffffffff & currentTime) - (0x7fffffffffffffff & header->creation);
2166 if (partLatency < 0) {
2169 result.minLatency = std::min(
result.minLatency, (uint64_t)partLatency);
2170 result.maxLatency = std::max(
result.maxLatency, (uint64_t)partLatency);
2175auto calculateTotalInputRecordSize(
InputRecord const& record) ->
int
2177 size_t totalInputSize = 0;
2178 for (
auto& item : record) {
2179 auto* header = o2::header::get<DataHeader*>(item.header);
2180 if (header ==
nullptr) {
2183 totalInputSize += header->payloadSize;
2185 return totalInputSize;
2188template <
typename T>
2189void update_maximum(std::atomic<T>& maximum_value, T
const&
value)
noexcept
2191 T prev_value = maximum_value;
2192 while (prev_value <
value &&
2193 !maximum_value.compare_exchange_weak(prev_value,
value)) {
2201 LOGP(
debug,
"DataProcessingDevice::tryDispatchComputation");
2206 std::vector<MessageSet> currentSetOfInputs;
2209 auto getInputSpan = [
ref, ¤tSetOfInputs](
TimesliceSlot slot,
bool consume =
true) {
2214 currentSetOfInputs = relayer.consumeExistingInputsForTimeslice(slot);
2216 auto getter = [¤tSetOfInputs](
size_t i,
size_t partindex) ->
DataRef {
2217 if (currentSetOfInputs[
i].getNumberOfPairs() > partindex) {
2218 const char* headerptr =
nullptr;
2219 const char* payloadptr =
nullptr;
2220 size_t payloadSize = 0;
2226 auto const& headerMsg = currentSetOfInputs[
i].associatedHeader(partindex);
2227 auto const& payloadMsg = currentSetOfInputs[
i].associatedPayload(partindex);
2228 headerptr =
static_cast<char const*
>(headerMsg->GetData());
2229 payloadptr = payloadMsg ?
static_cast<char const*
>(payloadMsg->GetData()) :
nullptr;
2230 payloadSize = payloadMsg ? payloadMsg->GetSize() : 0;
2231 return DataRef{
nullptr, headerptr, payloadptr, payloadSize};
2235 auto nofPartsGetter = [¤tSetOfInputs](
size_t i) ->
size_t {
2236 return currentSetOfInputs[
i].getNumberOfPairs();
2238#if __has_include(<fairmq/shmem/Message.h>)
2239 auto refCountGetter = [¤tSetOfInputs](
size_t idx) ->
int {
2240 auto& header =
static_cast<const fair::mq::shmem::Message&
>(*currentSetOfInputs[idx].header(0));
2241 return header.GetRefCount();
2244 std::function<
int(
size_t)> refCountGetter =
nullptr;
2246 return InputSpan{getter, nofPartsGetter, refCountGetter, currentSetOfInputs.
size()};
2261 auto timeslice = relayer.getTimesliceForSlot(
i);
2263 timingInfo.timeslice = timeslice.value;
2273 auto timeslice = relayer.getTimesliceForSlot(
i);
2275 timingInfo.globalRunNumberChanged = !
TimingInfo::timesliceIsTimer(timeslice.value) && dataProcessorContext.lastRunNumberProcessed != timingInfo.runNumber;
2277 timingInfo.globalRunNumberChanged &= (dataProcessorContext.lastRunNumberProcessed == -1 || timingInfo.runNumber != 0);
2281 timingInfo.streamRunNumberChanged = timingInfo.globalRunNumberChanged;
2289 assert(record.size() == currentSetOfInputs.size());
2290 for (
size_t ii = 0, ie = record.size(); ii < ie; ++ii) {
2294 DataRef input = record.getByPos(ii);
2298 if (input.
header ==
nullptr) {
2302 currentSetOfInputs[ii].clear();
2313 for (
size_t pi = 0, pe = record.size(); pi < pe; ++pi) {
2314 DataRef input = record.getByPos(pi);
2315 if (input.
header ==
nullptr) {
2318 auto sih = o2::header::get<SourceInfoHeader*>(input.
header);
2323 auto dh = o2::header::get<DataHeader*>(input.
header);
2333 if (dh->splitPayloadParts > 0 && dh->splitPayloadParts == dh->splitPayloadIndex) {
2336 pi += dh->splitPayloadParts - 1;
2338 size_t pi = pi + (dh->splitPayloadParts > 0 ? dh->splitPayloadParts : 1) * 2;
2344 if (completed.empty() ==
true) {
2345 LOGP(
debug,
"No computations available for dispatching.");
2352 std::atomic_thread_fence(std::memory_order_release);
2353 char relayerSlotState[1024];
2355 char*
buffer = relayerSlotState + written;
2356 for (
size_t ai = 0; ai != record.size(); ai++) {
2357 buffer[ai] = record.isValid(ai) ?
'3' :
'0';
2359 buffer[record.size()] = 0;
2361 .size = (
int)(record.size() +
buffer - relayerSlotState),
2362 .
data = relayerSlotState});
2363 uint64_t tEnd = uv_hrtime();
2365 int64_t wallTimeMs = (tEnd - tStart) / 1000000;
2373 auto latency = calculateInputRecordLatency(record, tStartMilli);
2376 static int count = 0;
2383 std::atomic_thread_fence(std::memory_order_release);
2384 char relayerSlotState[1024];
2386 char*
buffer = strchr(relayerSlotState,
' ') + 1;
2387 for (
size_t ai = 0; ai != record.size(); ai++) {
2388 buffer[ai] = record.isValid(ai) ?
'2' :
'0';
2390 buffer[record.size()] = 0;
2408 switch (spec.completionPolicy.order) {
2410 std::sort(completed.begin(), completed.end(), [](
auto const&
a,
auto const&
b) { return a.timeslice.value < b.timeslice.value; });
2413 std::sort(completed.begin(), completed.end(), [](
auto const&
a,
auto const&
b) { return a.slot.index < b.slot.index; });
2420 for (
auto action : completed) {
2422 O2_SIGNPOST_START(device, aid,
"device",
"Processing action on slot %lu for action %{public}s", action.
slot.
index, fmt::format(
"{}", action.
op).c_str());
2446 dpContext.preProcessingCallbacks(processContext);
2449 context.postDispatchingCallbacks(processContext);
2450 if (spec.forwards.empty() ==
false) {
2452 forwardInputs(
ref, action.
slot, currentSetOfInputs, timesliceIndex.getOldestPossibleOutput(),
false);
2453 O2_SIGNPOST_END(device, aid,
"device",
"Forwarding inputs consume: %d.",
false);
2461 bool hasForwards = spec.forwards.empty() ==
false;
2464 if (context.canForwardEarly && hasForwards && consumeSomething) {
2465 O2_SIGNPOST_EVENT_EMIT(device, aid,
"device",
"Early forwainding: %{public}s.", fmt::format(
"{}", action.
op).c_str());
2469 markInputsAsDone(action.
slot);
2471 uint64_t tStart = uv_hrtime();
2473 preUpdateStats(action, record, tStart);
2475 static bool noCatch = getenv(
"O2_NO_CATCHALL_EXCEPTIONS") && strcmp(getenv(
"O2_NO_CATCHALL_EXCEPTIONS"),
"0");
2483 switch (action.
op) {
2494 if (
state.quitRequested ==
false) {
2498 streamContext.preProcessingCallbacks(processContext);
2504 if (context.statefulProcess && shouldProcess(action)) {
2508 (context.statefulProcess)(processContext);
2510 }
else if (context.statelessProcess && shouldProcess(action)) {
2512 (context.statelessProcess)(processContext);
2514 }
else if (context.statelessProcess || context.statefulProcess) {
2517 O2_SIGNPOST_EVENT_EMIT(device, pcid,
"device",
"No processing callback provided. Switching to %{public}s.",
"Idle");
2520 if (shouldProcess(action)) {
2522 if (timingInfo.globalRunNumberChanged) {
2523 context.lastRunNumberProcessed = timingInfo.runNumber;
2540 streamContext.finaliseOutputsCallbacks(processContext);
2546 streamContext.postProcessingCallbacks(processContext);
2552 state.severityStack.push_back((
int)fair::Logger::GetConsoleSeverity());
2553 fair::Logger::SetConsoleSeverity(fair::Severity::trace);
2559 (context.errorHandling)(e, record);
2564 }
catch (std::exception& ex) {
2569 (context.errorHandling)(e, record);
2571 (context.errorHandling)(e, record);
2574 if (
state.severityStack.empty() ==
false) {
2575 fair::Logger::SetConsoleSeverity((fair::Severity)
state.severityStack.back());
2576 state.severityStack.pop_back();
2579 postUpdateStats(action, record, tStart, tStartMilli);
2583 cleanupRecord(record);
2584 context.postDispatchingCallbacks(processContext);
2587 if ((context.canForwardEarly ==
false) && hasForwards && consumeSomething) {
2592 context.postForwardingCallbacks(processContext);
2594 cleanTimers(action.
slot, record);
2596 O2_SIGNPOST_END(device, aid,
"device",
"Done processing action on slot %lu for action %{public}s", action.
slot.
index, fmt::format(
"{}", action.
op).c_str());
2598 O2_SIGNPOST_END(device, sid,
"device",
"Start processing ready actions");
2602 LOGP(detail,
"Broadcasting end of stream");
2603 for (
auto& channel : spec.outputChannels) {
2626 cfg.getRecursive(
name);
2627 std::vector<std::unique_ptr<ParamRetriever>> retrievers;
2628 retrievers.emplace_back(std::make_unique<ConfigurationOptionsRetriever>(&cfg,
name));
2629 auto configStore = std::make_unique<ConfigParamStore>(options, std::move(retrievers));
2630 configStore->preload();
2631 configStore->activate();
struct uv_timer_s uv_timer_t
struct uv_signal_s uv_signal_t
struct uv_async_s uv_async_t
struct uv_poll_s uv_poll_t
struct uv_loop_s uv_loop_t
o2::monitoring::Metric Metric
o2::configuration::ConfigurationInterface ConfigurationInterface
constexpr int DEFAULT_MAX_CHANNEL_AHEAD
std::enable_if_t< std::is_signed< T >::value, bool > hasData(const CalArray< T > &cal)
#define O2_SIGNPOST_EVENT_EMIT_ERROR(log, id, name, format,...)
#define O2_DECLARE_DYNAMIC_LOG(name)
#define O2_SIGNPOST_ID_FROM_POINTER(name, log, pointer)
#define O2_SIGNPOST_EVENT_EMIT_INFO(log, id, name, format,...)
#define O2_SIGNPOST_END(log, id, name, format,...)
#define O2_LOG_ENABLED(log)
#define O2_SIGNPOST_ID_GENERATE(name, log)
#define O2_SIGNPOST_EVENT_EMIT(log, id, name, format,...)
#define O2_SIGNPOST_START(log, id, name, format,...)
constexpr uint32_t runtime_hash(char const *str)
o2::monitoring::Monitoring Monitoring
@ DeviceStateChanged
Invoked the device undergoes a state change.
decltype(auto) make(const Output &spec, Args... args)
static void doRun(ServiceRegistryRef)
void fillContext(DataProcessorContext &context, DeviceContext &deviceContext)
void error(const char *msg)
static void doPrepare(ServiceRegistryRef)
static bool tryDispatchComputation(ServiceRegistryRef ref, std::vector< DataRelayer::RecordAction > &completed)
static void handleData(ServiceRegistryRef, InputChannelInfo &)
DataProcessingDevice(RunningDeviceRef ref, ServiceRegistry &, ProcessingPolicies &policies)
uint32_t getFirstTFOrbitForSlot(TimesliceSlot slot)
Get the firstTForbit associate to a given slot.
void updateCacheStatus(TimesliceSlot slot, CacheEntryStatus oldStatus, CacheEntryStatus newStatus)
uint32_t getRunNumberForSlot(TimesliceSlot slot)
Get the runNumber associated to a given slot.
void prunePending(OnDropCallback)
Prune all the pending entries in the cache.
std::vector< MessageSet > consumeAllInputsForTimeslice(TimesliceSlot id)
uint64_t getCreationTimeForSlot(TimesliceSlot slot)
Get the creation time associated to a given slot.
ActivityStats processDanglingInputs(std::vector< ExpirationHandler > const &, ServiceRegistryRef context, bool createNew)
uint32_t getFirstTFCounterForSlot(TimesliceSlot slot)
Get the firstTFCounter associate to a given slot.
A service API to communicate with the driver.
bool active() const
Check if service of type T is currently active.
GLuint const GLchar * name
GLboolean GLboolean GLboolean b
GLsizei const GLfloat * value
GLint GLint GLsizei GLint GLenum GLenum type
GLuint GLsizei GLsizei * length
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint GLsizei const GLchar * message
GLboolean GLboolean GLboolean GLboolean a
Defining PrimaryVertex explicitly as messageable.
auto decongestionCallbackLate
RuntimeErrorRef runtime_error(const char *)
ServiceKind
The kind of service we are asking for.
void on_idle_timer(uv_timer_t *handle)
@ DPL
The channel is a normal input channel.
void run_completion(uv_work_t *handle, int status)
bool hasOnlyGenerated(DeviceSpec const &spec)
void on_socket_polled(uv_poll_t *poller, int status, int events)
void on_transition_requested_expired(uv_timer_t *handle)
void run_callback(uv_work_t *handle)
volatile int region_read_global_dummy_variable
void handleRegionCallbacks(ServiceRegistryRef registry, std::vector< fair::mq::RegionInfo > &infos)
Invoke the callbacks for the mPendingRegionInfos.
void on_out_of_band_polled(uv_poll_t *poller, int status, int events)
DeviceSpec const & getRunningDevice(RunningDeviceRef const &running, ServiceRegistryRef const &services)
@ EndOfStreaming
End of streaming requested, but not notified.
@ Streaming
Data is being processed.
@ Idle
End of streaming notified.
void on_communication_requested(uv_async_t *s)
@ Expired
A transition needs to be fullfilled ASAP.
@ NoTransition
No pending transitions.
@ Requested
A transition was notified to be requested.
RuntimeError & error_from_ref(RuntimeErrorRef)
auto switchState(ServiceRegistryRef &ref, StreamingState newState) -> void
void on_awake_main_thread(uv_async_t *handle)
@ SHM_OFFER_BYTES_CONSUMED
@ Completed
The channel was signaled it will not receive any data.
@ Running
The channel is actively receiving data.
void on_signal_callback(uv_signal_t *handle, int signum)
@ Me
Only quit this data processor.
void on_data_processing_expired(uv_timer_t *handle)
bool hasOnlyTimers(DeviceSpec const &spec)
constexpr const char * channelName(int channel)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.
static void run(AsyncQueue &queue, TimesliceId oldestPossibleTimeslice)
static void post(AsyncQueue &queue, AsyncTask const &task)
An actuatual task to be executed.
static void demangled_backtrace_symbols(void **backtrace, unsigned int total, int fd)
static constexpr int INVALID
CompletionOp
Action to take with the InputRecord:
@ Retry
Like Wait but mark the cacheline as dirty.
int64_t sharedMemory
How much shared memory it can allocate.
Statistics on the offers consumed, expired.
static void sendEndOfStream(ServiceRegistryRef const &ref, OutputChannelSpec const &channel)
static bool sendOldestPossibleTimeframe(ServiceRegistryRef const &ref, ForwardChannelInfo const &info, ForwardChannelState &state, size_t timeslice)
Helper struct to hold statistics about the data processing happening.
@ CumulativeRate
Set the value to the specified value if it is positive.
@ Add
Update the rate of the metric given the amount since the last time.
void updateStats(CommandSpec cmd)
std::function< void(o2::framework::RuntimeErrorRef e, InputRecord &record)> errorHandling
AlgorithmSpec::InitErrorCallback initError
void preLoopCallbacks(ServiceRegistryRef)
Invoke callbacks before we enter the event loop.
void postStopCallbacks(ServiceRegistryRef)
Invoke callbacks on stop.
void preProcessingCallbacks(ProcessingContext &)
Invoke callbacks to be executed before every process method invokation.
ServiceRegistry * registry
bool canForwardEarly
Wether or not the associated DataProcessor can forward things early.
AlgorithmSpec::ErrorCallback error
void preStartCallbacks(ServiceRegistryRef)
Invoke callbacks to be executed in PreRun(), before the User Start callbacks.
AlgorithmSpec::ProcessCallback statefulProcess
static std::vector< size_t > createDistinctRouteIndex(std::vector< InputRoute > const &)
CompletionPolicy::CompletionOp op
@ Invalid
Ownership of the data has been taken.
@ Backpressured
The incoming data was not valid and has been dropped.
@ Dropped
The incoming data was not relayed, because we are backpressured.
static bool partialMatch(InputSpec const &spec, o2::header::DataOrigin const &origin)
static std::string describe(InputSpec const &spec)
static header::DataOrigin asConcreteOrigin(InputSpec const &spec)
TimesliceIndex::OldestOutputInfo oldestTimeslice
static unsigned int pipelineLength()
get max number of timeslices in the queue
static std::unique_ptr< ConfigParamStore > getConfiguration(ServiceRegistryRef registry, const char *name, std::vector< ConfigParamSpec > const &options)
uv_signal_t * sigusr1Handle
int expectedRegionCallbacks
std::vector< InputRoute > inputs
std::vector< InputChannelSpec > inputChannels
Running state information of a given device.
uv_async_t * awakeMainThread
std::atomic< int64_t > cleanupCount
Forward channel information.
ChannelAccountingType channelType
Wether or not it's a DPL internal channel.
fair::mq::Channel & channel
std::string name
The name of the channel.
ForwardingPolicy const * policy
ForwardingCallback forward
InputChannelInfo * channelInfo
fair::mq::Socket * socket
DataProcessingDevice * device
enum TerminationPolicy termination
enum EarlyForwardPolicy earlyForward
enum TerminationPolicy error
Information about the running workflow.
static Salt streamSalt(short streamId, short dataProcessorId)
void lateBindStreamServices(DeviceState &state, fair::mq::ProgOptions &options, ServiceRegistry::Salt salt)
static Salt globalStreamSalt(short streamId)
static Salt globalDeviceSalt()
void * get(ServiceTypeHash typeHash, Salt salt, ServiceKind kind, char const *name=nullptr) const
void finaliseOutputsCallbacks(ProcessingContext &)
Invoke callbacks to be executed after every process method invokation.
void preProcessingCallbacks(ProcessingContext &pcx)
Invoke callbacks to be executed before every process method invokation.
void preEOSCallbacks(EndOfStreamContext &eosContext)
Invoke callbacks to be executed before every EOS user callback invokation.
void postProcessingCallbacks(ProcessingContext &pcx)
Invoke callbacks to be executed after every process method invokation.
static int64_t getRealtimeSinceEpochStandalone()
bool keepAtEndOfStream
Wether this kind of data should be flushed during end of stream.
static bool timesliceIsTimer(size_t timeslice)
static TimesliceId getTimeslice(data_matcher::VariableContext const &variables)
void backpressure(InputChannelInfo const &)
locked_execution(ServiceRegistryRef &ref_)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
uint64_t const void const *restrict const msg