Project
Loading...
Searching...
No Matches
qconfig_helpers.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
14
15#ifndef QCONFIG_HELPERS_H
16#define QCONFIG_HELPERS_H
17
18#include <string>
19#include <sstream>
20#include <type_traits>
21
22#define qon_mcat(a, b) a##b
23#define qon_mxcat(a, b) qon_mcat(a, b)
24#define qon_mcat3(a, b, c) a##b##c
25#define qon_mxcat3(a, b, c) qon_mcat3(a, b, c)
26#define qon_mstr(a) #a
27#define qon_mxstr(a) qon_mstr(a)
28#define qon_mexp(...) __VA_ARGS__
29#define qon_mxexp(X) qon_mexp X
30
31namespace qConfig
32{
33template <class T>
34inline std::string print_type(T val, bool precise = false)
35{
36 std::ostringstream s;
37 if constexpr (std::is_same_v<T, float> || std::is_same_v<T, double>) {
38 if (precise) {
39 s << std::hexfloat;
40 }
41 }
42 s << val;
43 return s.str();
44};
45template <>
46inline std::string print_type<char>(char val, bool precise)
47{
48 return std::to_string(val);
49};
50template <>
51inline std::string print_type<int8_t>(int8_t val, bool precise)
52{
53 return std::to_string(val);
54};
55template <>
56inline std::string print_type<uint8_t>(uint8_t val, bool precise)
57{
58 return std::to_string(val);
59};
60template <>
61inline std::string print_type<bool>(bool val, bool precise)
62{
63 return val ? "true" : "false";
64};
65} // namespace qConfig
66
67#endif
GLuint GLfloat * val
Definition glcorearb.h:1582
std::string print_type< char >(char val, bool precise)
std::string print_type< uint8_t >(uint8_t val, bool precise)
std::string print_type< int8_t >(int8_t val, bool precise)
std::string print_type(T val, bool precise=false)
std::string print_type< bool >(bool val, bool precise)
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52