Project
Loading...
Searching...
No Matches
TimesliceIndex.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
12#ifndef O2_FRAMEWORK_TIMESLICEINDEX_H_
13#define O2_FRAMEWORK_TIMESLICEINDEX_H_
14
21
22#include <cstdint>
23#include <vector>
24#include <algorithm>
25
26namespace o2::framework
27{
28
36{
37 public:
41
43 enum struct BackpressureOp {
44 Wait, // Do nothing and wait for the oldest slot to complete
45 DropAncient, // Drop the message with the least recent timestamp
46 DropRecent // Drop the message with the most recent timestamp
47 };
48
50 enum struct ActionTaken {
53 Wait,
56 };
57
65
76
82
83 TimesliceIndex(size_t maxLanes, std::vector<InputChannelInfo>& channels);
84 void resize(size_t s);
85 [[nodiscard]] inline size_t size() const;
86 [[nodiscard]] inline bool isValid(TimesliceSlot const& slot) const;
87 [[nodiscard]] inline bool isDirty(TimesliceSlot const& slot) const;
88 inline void markAsDirty(TimesliceSlot slot, bool value);
89 inline void markAsInvalid(TimesliceSlot slot);
91 inline void rescan();
93 inline void publishSlot(TimesliceSlot slot);
94
98 void associate(TimesliceId timestamp, TimesliceSlot slot);
99
104
109
115 std::tuple<ActionTaken, TimesliceSlot> replaceLRUWith(data_matcher::VariableContext& newContext, TimesliceId timestamp);
116
118 [[nodiscard]] bool didReceiveData() const;
122 [[nodiscard]] OldestInputInfo setOldestPossibleInput(TimesliceId timeslice, ChannelIndex channel);
125 bool validateSlot(TimesliceSlot slot, TimesliceId currentOldest);
126
133 [[nodiscard]] InputChannelInfo const& getChannelInfo(ChannelIndex channel) const;
134
135 // Reset the TimesliceIndex to its initial state
136 auto reset() -> void;
137
138 private:
141 [[nodiscard]] inline TimesliceSlot findOldestSlot(TimesliceId) const;
142
144 std::vector<data_matcher::VariableContext> mVariables;
145
147 std::vector<data_matcher::VariableContext> mPublishedVariables;
148
151 std::vector<bool> mDirty;
152
155 std::vector<InputChannelInfo>& mChannels;
158 OldestInputInfo mOldestPossibleInput = {};
159 OldestOutputInfo mOldestPossibleOutput = {};
160
162 BackpressureOp mBackpressurePolicy = BackpressureOp::Wait;
164 size_t mMaxLanes;
165};
166
167} // namespace o2::framework
168
169#include "TimesliceIndex.inc"
170#endif // FRAMEWORK_TIMESLICEINDEX_H
void publishSlot(TimesliceSlot slot)
Publish a slot to be sent via metrics.
static constexpr ServiceKind service_kind
void markAsDirty(TimesliceSlot slot, bool value)
data_matcher::VariableContext & getPublishedVariablesForSlot(TimesliceSlot slot)
OldestInputInfo setOldestPossibleInput(TimesliceId timeslice, ChannelIndex channel)
OldestOutputInfo getOldestPossibleOutput() const
bool isDirty(TimesliceSlot const &slot) const
InputChannelInfo const & getChannelInfo(ChannelIndex channel) const
ActionTaken
The outcome for the processing of a given timeslot.
@ DropObsolete
An invalid context is not inserted in the index and dropped.
@ DropInvalid
We wait for the oldest slot to complete.
@ ReplaceObsolete
An unused / invalid slot is used to hold the new context.
void rescan()
Mark all the cachelines as invalid, e.g. due to an out of band event.
BackpressureOp
What to do when there is backpressure.
bool validateSlot(TimesliceSlot slot, TimesliceId currentOldest)
bool isValid(TimesliceSlot const &slot) const
void markAsInvalid(TimesliceSlot slot)
void associate(TimesliceId timestamp, TimesliceSlot slot)
OldestInputInfo getOldestPossibleInput() const
std::tuple< ActionTaken, TimesliceSlot > replaceLRUWith(data_matcher::VariableContext &newContext, TimesliceId timestamp)
OldestOutputInfo updateOldestPossibleOutput(bool rewinded)
data_matcher::VariableContext & getVariablesForSlot(TimesliceSlot slot)
GLsizei const GLfloat * value
Definition glcorearb.h:819
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
ServiceKind
The kind of service we are asking for.
static constexpr int INVALID
The result of the replacing the LRU slot with a new one.
TimesliceSlot slot
The slot which was replaced.
ActionTaken action
The action taken.
ChannelIndex channel
The actual channel id of the oldest input.
std::vector< ChannelData > channels