Project
Loading...
Searching...
No Matches
InputSpan.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_INPUTSPAN_H_
12#define O2_FRAMEWORK_INPUTSPAN_H_
13
14#include "Framework/DataRef.h"
15#include <functional>
16
17extern template class std::function<o2::framework::DataRef(size_t)>;
18extern template class std::function<o2::framework::DataRef(size_t, size_t)>;
19
20namespace o2::framework
21{
22
29{
30 public:
31 InputSpan() = delete;
32 InputSpan(InputSpan const&) = delete;
33 InputSpan(InputSpan&&) = default;
34
38 InputSpan(std::function<DataRef(size_t)> getter, size_t size);
39
43 InputSpan(std::function<DataRef(size_t, size_t)> getter, size_t size);
44
49 InputSpan(std::function<DataRef(size_t, size_t)> getter, std::function<size_t(size_t)> nofPartsGetter, std::function<int(size_t)> refCountGetter, size_t size);
50
52 [[nodiscard]] DataRef get(size_t i, size_t partidx = 0) const
53 {
54 return mGetter(i, partidx);
55 }
56
58 [[nodiscard]] size_t getNofParts(size_t i) const
59 {
60 if (i >= mSize) {
61 return 0;
62 }
63 if (!mNofPartsGetter) {
64 return 1;
65 }
66 return mNofPartsGetter(i);
67 }
68
69 // Get the refcount for a given part
70 [[nodiscard]] int getRefCount(size_t i) const
71 {
72 if (i >= mSize) {
73 return 0;
74 }
75 if (!mRefCountGetter) {
76 return -1;
77 }
78 return mRefCountGetter(i);
79 }
80
82 [[nodiscard]] size_t size() const
83 {
84 return mSize;
85 }
86
87 [[nodiscard]] const char* header(size_t i) const
88 {
89 return get(i).header;
90 }
91
92 [[nodiscard]] const char* payload(size_t i) const
93 {
94 return get(i).payload;
95 }
96
98 template <typename ParentT, typename T>
100 {
101 public:
102 using ParentType = ParentT;
104 using iterator_category = std::forward_iterator_tag;
105 using value_type = T;
106 using reference = T&;
107 using pointer = T*;
108 using difference_type = std::ptrdiff_t;
109 using ElementType = typename std::remove_const<value_type>::type;
110
111 Iterator() = delete;
112
113 Iterator(ParentType const* parent, size_t position = 0, size_t size = 0)
114 : mPosition(position), mSize(size > position ? size : position), mParent(parent), mElement{}
115 {
116 if (mPosition < mSize) {
117 mElement = mParent->get(mPosition);
118 }
119 }
120
121 ~Iterator() = default;
122
123 // prefix increment
125 {
126 if (mPosition < mSize && ++mPosition < mSize) {
127 mElement = mParent->get(mPosition);
128 } else {
129 // reset the element to the default value of the type
130 mElement = ElementType{};
131 }
132 return *this;
133 }
134 // postfix increment
135 SelfType operator++(int /*unused*/)
136 {
137 SelfType copy(*this);
138 operator++();
139 return copy;
140 }
141
142 // return reference
144 {
145 return mElement;
146 }
147
148 // comparison
149 bool operator==(const SelfType& rh) const
150 {
151 return mPosition == rh.mPosition;
152 }
153
154 // comparison
155 bool operator!=(const SelfType& rh) const
156 {
157 return mPosition != rh.mPosition;
158 }
159
160 // return pointer to parent instance
161 [[nodiscard]] ParentType const* parent() const
162 {
163 return mParent;
164 }
165
166 // return current position
167 [[nodiscard]] size_t position() const
168 {
169 return mPosition;
170 }
171
172 private:
173 size_t mPosition;
174 size_t mSize;
175 ParentType const* mParent;
176 ElementType mElement;
177 };
178
182 template <typename T>
183 class InputSpanIterator : public Iterator<InputSpan, T>
184 {
185 public:
190 using pointer = typename BaseType::pointer;
191 using ElementType = typename std::remove_const<value_type>::type;
194
195 InputSpanIterator(InputSpan const* parent, size_t position = 0, size_t size = 0)
197 {
198 }
199
201 [[nodiscard]] ElementType get(size_t pos) const
202 {
203 return this->parent()->get(this->position(), pos);
204 }
205
207 [[nodiscard]] bool isValid(size_t = 0) const
208 {
209 if (this->position() < this->parent()->size()) {
210 return this->parent()->isValid(this->position());
211 }
212 return false;
213 }
214
216 [[nodiscard]] size_t size() const
217 {
218 return this->parent()->getNofParts(this->position());
219 }
220
221 // iterator for the part access
222 [[nodiscard]] const_iterator begin() const
223 {
224 return const_iterator(this, 0, size());
225 }
226
227 [[nodiscard]] const_iterator end() const
228 {
229 return const_iterator(this, size());
230 }
231 };
232
235
236 // supporting read-only access and returning const_iterator
237 [[nodiscard]] const_iterator begin() const
238 {
239 return {this, 0, size()};
240 }
241
242 // supporting read-only access and returning const_iterator
243 [[nodiscard]] const_iterator end() const
244 {
245 return {this, size()};
246 }
247
248 private:
249 std::function<DataRef(size_t, size_t)> mGetter;
250 std::function<size_t(size_t)> mNofPartsGetter;
251 std::function<int(size_t)> mRefCountGetter;
252 size_t mSize;
253};
254
255} // namespace o2::framework
256
257#endif // FRAMEWORK_INPUTSSPAN_H
int32_t i
uint16_t pos
Definition RawData.h:3
ElementType get(size_t pos) const
Get element at {slotindex, partindex}.
Definition InputSpan.h:201
bool isValid(size_t=0) const
Check if slot is valid, index of part is not used.
Definition InputSpan.h:207
typename BaseType::value_type value_type
Definition InputSpan.h:188
InputSpanIterator(InputSpan const *parent, size_t position=0, size_t size=0)
Definition InputSpan.h:195
Iterator< SelfType, const T > const_iterator
Definition InputSpan.h:193
typename BaseType::reference reference
Definition InputSpan.h:189
size_t size() const
Get number of parts in input slot.
Definition InputSpan.h:216
typename std::remove_const< value_type >::type ElementType
Definition InputSpan.h:191
typename BaseType::pointer pointer
Definition InputSpan.h:190
an iterator class working on position within the a parent class
Definition InputSpan.h:100
bool operator==(const SelfType &rh) const
Definition InputSpan.h:149
typename std::remove_const< value_type >::type ElementType
Definition InputSpan.h:109
std::forward_iterator_tag iterator_category
Definition InputSpan.h:104
bool operator!=(const SelfType &rh) const
Definition InputSpan.h:155
ParentType const * parent() const
Definition InputSpan.h:161
Iterator(ParentType const *parent, size_t position=0, size_t size=0)
Definition InputSpan.h:113
const char * header(size_t i) const
Definition InputSpan.h:87
const_iterator end() const
Definition InputSpan.h:243
const_iterator begin() const
Definition InputSpan.h:237
InputSpan(InputSpan const &)=delete
size_t size() const
Number of elements in the InputSpan.
Definition InputSpan.h:82
InputSpan(InputSpan &&)=default
size_t getNofParts(size_t i) const
number of parts in the i-th element of the InputSpan
Definition InputSpan.h:58
DataRef get(size_t i, size_t partidx=0) const
i-th element of the InputSpan
Definition InputSpan.h:52
const char * payload(size_t i) const
Definition InputSpan.h:92
int getRefCount(size_t i) const
Definition InputSpan.h:70
GLsizeiptr size
Definition glcorearb.h:659
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
const char * header
Definition DataRef.h:27
const char * payload
Definition DataRef.h:28