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
25
namespace
o2
26
{
27
namespace
header
28
{
29
38
template
<
size_t
N>
39
struct
NameHeader
:
public
BaseHeader
{
40
static
const
uint32_t
sVersion
;
41
static
const
o2::header::HeaderType
sHeaderType
;
42
static
const
o2::header::SerializationMethod
sSerializationMethod
;
43
NameHeader
() :
BaseHeader
(sizeof(
NameHeader
),
sHeaderType
,
sSerializationMethod
,
sVersion
),
name
()
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>
55
NameHeader
(
const
char
(&in)[
S
]) :
BaseHeader
(sizeof(
NameHeader
),
sHeaderType
,
sSerializationMethod
,
sVersion
),
name
()
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
81
template
<
size_t
N>
82
const
o2::header::HeaderType
NameHeader<N>::sHeaderType
=
"NameHead"
;
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?
87
template
<>
88
const
o2::header::HeaderType
NameHeader<0>::sHeaderType
;
89
90
template
<
size_t
N>
91
const
SerializationMethod
NameHeader<N>::sSerializationMethod
=
gSerializationMethodNone
;
92
93
template
<
size_t
N>
94
const
uint32_t
NameHeader<N>::sVersion
= 1;
95
}
// namespace header
96
}
// namespace o2
97
98
#endif
// NAMEHEADER_H
DataHeader.h
name
GLuint const GLchar * name
Definition
glcorearb.h:781
o2::header::gSerializationMethodNone
constexpr o2::header::SerializationMethod gSerializationMethodNone
Definition
DataHeader.h:327
o2
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Definition
BitstreamReader.h:24
S
Definition
cxx14-test-aggregate-initialization.cxx:18
o2::header::BaseHeader
the base header struct Every header type must begin (i.e. derive) with this. Don't use this struct di...
Definition
DataHeader.h:351
o2::header::BaseHeader::size
constexpr uint32_t size() const noexcept
Definition
DataHeader.h:421
o2::header::Descriptor< gSizeHeaderDescriptionString >
o2::header::NameHeader
an example data header containing a name of an object as a null terminated char arr....
Definition
NameHeader.h:39
o2::header::NameHeader::NameHeader
NameHeader(const char(&in)[S])
Definition
NameHeader.h:55
o2::header::NameHeader::getName
const char * getName() const
Definition
NameHeader.h:68
o2::header::NameHeader::sVersion
static const uint32_t sVersion
Definition
NameHeader.h:40
o2::header::NameHeader::NameHeader
NameHeader()
Definition
NameHeader.h:43
o2::header::NameHeader::sSerializationMethod
static const o2::header::SerializationMethod sSerializationMethod
Definition
NameHeader.h:42
o2::header::NameHeader::getNameLength
size_t getNameLength() const
Definition
NameHeader.h:69
o2::header::NameHeader::sHeaderType
static const o2::header::HeaderType sHeaderType
Definition
NameHeader.h:41
DataFormats
Headers
include
Headers
NameHeader.h
Generated on Fri Apr 4 2025 15:09:35 for Project by
1.9.8