Project
Loading...
Searching...
No Matches
StreamContext.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11#ifndef O2_FRAMEWORK_STREAMCONTEXT_H_
12#define O2_FRAMEWORK_STREAMCONTEXT_H_
13
15#include "ProcessingContext.h"
16#include "ServiceSpec.h"
17#include <functional>
18
19namespace o2::framework
20{
21
22struct ProcessingContext;
23
32
33 // Invoked once per stream before we start processing
34 // They are all guaranteed to be invoked before the PreRun
35 // function terminates.
36 // Notice this will mean that a StreamService which has
37 // a start callback might be created upfront.
39
45
47 void preEOSCallbacks(EndOfStreamContext& eosContext);
49 void postEOSCallbacks(EndOfStreamContext& eosContext);
50
52 std::vector<ServiceProcessingHandle> preProcessingHandles;
53 std::vector<ServiceProcessingHandle> finaliseOutputsHandles;
55 std::vector<ServiceProcessingHandle> postProcessingHandles;
56
58 std::vector<ServiceEOSHandle> preEOSHandles;
60 std::vector<ServiceEOSHandle> postEOSHandles;
61
62 // Callbacks for services to be executed before a stream starts processing
63 // Notice that in such a case all the services will be created upfront, so
64 // the callback will be called for all of them.
65 std::vector<ServiceStartStreamHandle> preStartStreamHandles;
66
67 // Information on wether or not all the required routes have been created.
68 // This is used to check if the LifetimeTimeframe routes were all created
69 // for a given iteration.
70 // This is in the stream context to allow tracking data creation on a per thread
71 // basis.
72 std::vector<bool> routeDPLCreated;
73 std::vector<bool> routeCreated;
74};
75
76} // namespace o2::framework
77
78#endif // O2_FRAMEWORK_DATAPROCESSINGCONTEXT_H_
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
ServiceKind
The kind of service we are asking for.
std::vector< ServiceProcessingHandle > postProcessingHandles
Callbacks for services to be executed after every process method invokation.
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.
std::vector< bool > routeDPLCreated
std::vector< ServiceStartStreamHandle > preStartStreamHandles
std::vector< ServiceProcessingHandle > finaliseOutputsHandles
void postProcessingCallbacks(ProcessingContext &pcx)
Invoke callbacks to be executed after every process method invokation.
std::vector< ServiceEOSHandle > postEOSHandles
Callbacks for services to be executed after every EOS user callback invokation.
std::vector< bool > routeCreated
void preStartStreamCallbacks(ServiceRegistryRef)
static constexpr ServiceKind service_kind
std::vector< ServiceEOSHandle > preEOSHandles
Callbacks for services to be executed before every EOS user callback invokation.
void postEOSCallbacks(EndOfStreamContext &eosContext)
Invoke callbacks to be executed after every EOS user callback invokation.
std::vector< ServiceProcessingHandle > preProcessingHandles
Callbacks for services to be executed before every process method invokation.