Project
Loading...
Searching...
No Matches
StaticSequenceAllocator.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
16
17namespace o2
18{
19namespace algorithm
20{
21
26template <typename HeaderT, typename TrailerT = void>
27struct Composite {
28 using HeaderType = HeaderT;
29 using TrailerType = TrailerT;
30 size_t compositeLength = 0;
31 size_t trailerLength = 0;
32 size_t dataLength = 0;
33
34 template <size_t N,
35 typename U = TrailerType>
36 constexpr Composite(const HeaderType h, const char (&d)[N],
37 typename std::conditional<!std::is_void<U>::value, const TrailerType, int>::type t,
38 typename std::enable_if<!std::is_void<U>::value>::type* = nullptr)
39 : header(h), data(d), trailer(t)
40 {
41 dataLength = N;
42 trailerLength = sizeof(TrailerType);
44 }
45
46 template <size_t N,
47 typename U = TrailerType>
48 constexpr Composite(const HeaderType& h, const char (&d)[N],
49 typename std::enable_if<std::is_void<U>::value>::type* = nullptr)
50 : header(h), data(d)
51 {
52 dataLength = N;
53 trailerLength = 0;
55 }
56
57 constexpr size_t getLength() const noexcept
58 {
59 return compositeLength;
60 }
61
62 constexpr size_t getDataLength() const noexcept
63 {
64 return dataLength;
65 }
66
67 template <typename BufferT>
68 constexpr size_t insert(BufferT* buffer) const noexcept
69 {
70 static_assert(sizeof(BufferT) == 1, "buffer required to be of byte-type");
71 size_t length = 0;
72 memcpy(buffer + length, &header, sizeof(HeaderType));
73 length += sizeof(HeaderType);
74 memcpy(buffer + length, data, dataLength);
76 if (trailerLength > 0) {
79 }
80 return length;
81 }
82
84 const char* data = nullptr;
85 typename std::conditional<!std::is_void<TrailerType>::value, const TrailerType, int>::type trailer;
86};
87
91// variable list
92template <typename T, typename... TArgs>
93constexpr size_t sequenceLength(const T& first, const TArgs... args) noexcept
94{
95 return sequenceLength(first) + sequenceLength(args...);
96}
97
101template <typename T>
102constexpr size_t sequenceLength(const T& first) noexcept
103{
104 return first.getLength();
105}
106
108template <typename BufferT, typename T, typename... TArgs>
109constexpr size_t sequenceInsert(BufferT* buffer, const T& first, const TArgs... args) noexcept
110{
111 static_assert(sizeof(BufferT) == 1, "buffer required to be of byte-type");
113 length += sequenceInsert(buffer + length, args...);
114 return length;
115}
116
118template <typename BufferT, typename T>
119constexpr size_t sequenceInsert(BufferT* buffer, const T& element) noexcept
120{
121 // TODO: make a general algorithm, at the moment this serves the
122 // Composite class as a special case
123 return element.insert(buffer);
124}
125
137 using value_type = unsigned char;
138 using BufferType = std::unique_ptr<value_type[]>;
139
142
143 size_t size() const { return bufferSize; }
144
146
147 template <typename... Targs>
149 {
150 bufferSize = sequenceLength(args...);
151 buffer = std::make_unique<value_type[]>(bufferSize);
152 sequenceInsert(buffer.get(), args...);
153 }
154};
155
156} // namespace algorithm
157} // namespace o2
Class for time synchronization of RawReader instances.
GLuint buffer
Definition glcorearb.h:655
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GLboolean * data
Definition glcorearb.h:298
GLuint GLsizei GLsizei * length
Definition glcorearb.h:790
constexpr size_t sequenceLength(const T &first, const TArgs... args) noexcept
constexpr size_t sequenceInsert(BufferT *buffer, const T &first, const TArgs... args) noexcept
recursive insert of variable number of objects
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
constexpr size_t insert(BufferT *buffer) const noexcept
constexpr size_t getDataLength() const noexcept
std::conditional<!std::is_void< TrailerType >::value, constTrailerType, int >::type trailer
constexpr Composite(const HeaderType &h, const char(&d)[N], typename std::enable_if< std::is_void< U >::value >::type *=nullptr)
constexpr size_t getLength() const noexcept
constexpr Composite(const HeaderType h, const char(&d)[N], typename std::conditional<!std::is_void< U >::value, const TrailerType, int >::type t, typename std::enable_if<!std::is_void< U >::value >::type *=nullptr)