Project
Loading...
Searching...
No Matches
NameHeader.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
18
19#ifndef NAMEHEADER_H
20#define NAMEHEADER_H
21
22#include <string>
23#include "Headers/DataHeader.h"
24
25namespace o2
26{
27namespace header
28{
29
38template <size_t N>
39struct NameHeader : public BaseHeader {
40 static const uint32_t sVersion;
44 {
45 static_assert(N > 0, "Can not construct zero-length NameHeader");
46 // set length of padding in the last byte
47 uint8_t* lastByte = reinterpret_cast<uint8_t*>(this) + sizeof(NameHeader) - 1;
48 *lastByte =
49 reinterpret_cast<const uint8_t*>(this) + sizeof(NameHeader) - reinterpret_cast<const uint8_t*>(&name[N]);
50 // zero string
51 memset(&name[0], '\0', N);
52 }
53
54 template <size_t S>
56 {
57 static_assert(N > 0, "Can not construct zero-length NameHeader");
58 static_assert(S <= N, "Initializer string is exceeding NameHeader capacity");
59 // set length of padding in the last byte
60 uint8_t* lastByte = reinterpret_cast<uint8_t*>(this) + sizeof(NameHeader) - 1;
61 *lastByte =
62 reinterpret_cast<const uint8_t*>(this) + sizeof(NameHeader) - reinterpret_cast<const uint8_t*>(&name[N]);
63 // here we actually want a null terminated string
64 strncpy(name, in, N);
65 name[N - 1] = '\0';
66 }
67
68 const char* getName() const { return name; }
69 size_t getNameLength() const
70 {
71 // this only applies if the original buffer was created with N != 0
72 // and this is now strictly required in the constructors
73 const uint8_t* lastByte = reinterpret_cast<const uint8_t*>(this) + size() - 1;
74 return (lastByte - reinterpret_cast<const uint8_t*>(name)) - *lastByte + 1;
75 }
76
77 private:
78 char name[N];
79};
80
81template <size_t N>
83
84// dirty trick to always have access to the headertypeID of a templated header type
85// so when decoding an unknown length name use length 0
86// TODO: find out if this can be done in a nicer way + is this realy necessary?
87template <>
89
90template <size_t N>
92
93template <size_t N>
94const uint32_t NameHeader<N>::sVersion = 1;
95} // namespace header
96} // namespace o2
97
98#endif // NAMEHEADER_H
GLuint const GLchar * name
Definition glcorearb.h:781
constexpr o2::header::SerializationMethod gSerializationMethodNone
Definition DataHeader.h:327
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
the base header struct Every header type must begin (i.e. derive) with this. Don't use this struct di...
Definition DataHeader.h:351
constexpr uint32_t size() const noexcept
Definition DataHeader.h:421
an example data header containing a name of an object as a null terminated char arr....
Definition NameHeader.h:39
NameHeader(const char(&in)[S])
Definition NameHeader.h:55
const char * getName() const
Definition NameHeader.h:68
static const uint32_t sVersion
Definition NameHeader.h:40
static const o2::header::SerializationMethod sSerializationMethod
Definition NameHeader.h:42
size_t getNameLength() const
Definition NameHeader.h:69
static const o2::header::HeaderType sHeaderType
Definition NameHeader.h:41