Project
Loading...
Searching...
No Matches
TreeStream.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
15
16#ifndef ALICEO2_TREESTREAM_H
17#define ALICEO2_TREESTREAM_H
18
19#include <TString.h>
20#include <TTree.h>
21#include <vector>
22#include <type_traits>
23#include <concepts>
24#include "GPUCommonDef.h"
25
26class TBranch;
27class TClass;
28class TDataType;
29
30namespace o2
31{
32namespace utils
33{
44namespace details
45{
46template <typename T>
48 static constexpr bool value =
49 std::is_same_v<T, Float_t> || // Float_t
50 std::is_same_v<T, Double_t> || // Double_t
51 std::is_same_v<T, ULong64_t> || std::is_same_v<T, ULong_t> || // ULong64_t or ULong_t
52 std::is_same_v<T, Long64_t> || std::is_same_v<T, Long_t> || // Long64_t or Long_t
53 std::is_same_v<T, UInt_t> || // UInt_t
54 std::is_same_v<T, Int_t> || // Int_t
55 std::is_same_v<T, UShort_t> || // UShort_t
56 std::is_same_v<T, Short_t> || // Short_t
57 std::is_same_v<T, UChar_t> || // UChar_t
58 std::is_same_v<T, Char_t> || std::is_same_v<T, int8_t> || std::is_same_v<T, Bool_t>; // Char_t, int8_t, or Bool_t
59};
60
61template <typename T>
62struct IsTrivialRootType<T[]> {
63 static constexpr bool value = IsTrivialRootType<T>::value;
64};
65
66template <typename T, std::size_t N>
67struct IsTrivialRootType<T[N]> {
68 static constexpr bool value = IsTrivialRootType<T>::value;
69};
70
71template <typename T>
73
74template <typename T>
76
77template <TrivialRootType T>
78static constexpr char getRootTypeCode()
79{
80 if constexpr (std::is_array_v<T>) {
81 return getRootTypeCode<std::remove_all_extents_t<T>>();
82 } else if constexpr (std::is_same_v<T, Float_t>) {
83 return 'F';
84 } else if constexpr (std::is_same_v<T, Double_t>) {
85 return 'D';
86 } else if constexpr (std::is_same_v<T, ULong64_t> ||
87 std::is_same_v<T, ULong_t>) {
88 return 'l';
89 } else if constexpr (std::is_same_v<T, Long64_t> ||
90 std::is_same_v<T, Long_t>) {
91 return 'L';
92 } else if constexpr (std::is_same_v<T, UInt_t>) {
93 return 'i';
94 } else if constexpr (std::is_same_v<T, Int_t>) {
95 return 'I';
96 } else if constexpr (std::is_same_v<T, UShort_t>) {
97 return 's';
98 } else if constexpr (std::is_same_v<T, Short_t>) {
99 return 'S';
100 } else if constexpr (std::is_same_v<T, UChar_t>) {
101 return 'b';
102 } else if constexpr (std::is_same_v<T, Char_t> ||
103 std::is_same_v<T, int8_t> ||
104 std::is_same_v<T, Bool_t>) {
105 return 'B';
106 } else {
107 static_assert(false, "unsupported type!");
108 }
109}
110} // namespace details
111
113{
114 public:
116 int arsize = 1;
117 char type = 0;
118 const TClass* cls = nullptr;
119 const void* ptr = nullptr;
120 std::string name;
121 };
122
123 TreeStream(const char* treename);
124 TreeStream() = default;
125 virtual ~TreeStream() = default;
126 void Close() { mTree.Write(); }
127 Int_t CheckIn(Char_t type, const void* pointer);
128 void BuildTree();
129 void Fill();
130 Double_t getSize() { return mTree.GetZipBytes(); }
131 TreeStream& Endl();
132
133 TTree& getTree() { return mTree; }
134 const char* getName() const { return mTree.GetName(); }
135 void setID(int id) { mID = id; }
136 int getID() const { return mID; }
137
138 template <details::TrivialRootType T>
140 {
141 CheckIn(details::getRootTypeCode<T>(), &t);
142 return *this;
143 }
144
145 TreeStream& operator<<(const Char_t* name);
146
147 template <class T>
148 TreeStream& operator<<(const T* obj)
149 {
150 CheckIn(obj);
151 return *this;
152 }
153
154 template <details::ComplexRootType T, typename std::enable_if<!std::is_pointer<GPUgeneric() T>::value, bool>::type* = nullptr>
155 TreeStream& operator<<(const T& obj)
156 {
157 CheckIn(&obj);
158 return *this;
159 }
160
161 template <class T>
162 Int_t CheckIn(const T* obj);
163
164 private:
165 //
166 std::vector<TreeDataElement> mElements;
167 std::vector<TBranch*> mBranches;
168 TTree mTree;
169 int mCurrentIndex = 0;
170 int mID = -1;
171 int mNextNameCounter = 0;
172 int mNextArraySize = 0;
173 int mStatus = 0;
174 TString mNextName;
175
176 ClassDefNV(TreeStream, 0);
177};
178
179template <class T>
180Int_t TreeStream::CheckIn(const T* obj)
181{
182 // check in arbitrary class having dictionary
183 TClass* pClass = nullptr;
184 if (obj) {
185 pClass = TClass::GetClass(typeid(*obj));
186 }
187
188 if (mCurrentIndex >= static_cast<int>(mElements.size())) {
189 auto& element = mElements.emplace_back();
190 element.cls = pClass;
191 TString name = mNextName;
192 if (name.Length()) {
193 if (mNextNameCounter > 0) {
194 name += mNextNameCounter;
195 }
196 } else {
197 name = TString::Format("B%d", static_cast<int>(mElements.size()));
198 }
199 element.name = name.Data();
200 element.ptr = obj;
201 element.arsize = mNextArraySize;
202 mNextArraySize = 1; // reset
203 } else {
204 auto& element = mElements[mCurrentIndex];
205 if (!element.cls) {
206 element.cls = pClass;
207 } else {
208 if (element.cls != pClass && pClass) {
209 mStatus++;
210 return 1; // mismatched data element
211 }
212 }
213 element.ptr = obj;
214 }
215 mCurrentIndex++;
216 return 0;
217}
218
219} // namespace utils
220} // namespace o2
221
222#endif
TreeStream & operator<<(const T *obj)
Definition TreeStream.h:148
TreeStream & Endl()
Int_t CheckIn(Char_t type, const void *pointer)
const char * getName() const
Definition TreeStream.h:134
virtual ~TreeStream()=default
TreeStream & operator<<(const T &t)
Definition TreeStream.h:139
TreeStream & operator<<(const T &obj)
Definition TreeStream.h:155
GLenum void ** pointer
Definition glcorearb.h:805
GLuint const GLchar * name
Definition glcorearb.h:781
GLsizei const GLfloat * value
Definition glcorearb.h:819
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GLuint id
Definition glcorearb.h:650
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Common utility functions.
std::string name
name of the element
Definition TreeStream.h:120
const void * ptr
pointer to element
Definition TreeStream.h:119
const TClass * cls
data type pointer
Definition TreeStream.h:118