Project
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
DCSConfigObject.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#include <vector>
16#include <string>
17#include <iostream>
18#include <iterator>
19#include <regex>
20
21#include <TString.h>
22
23namespace o2
24{
25namespace dcs
26{
27
28typedef std::vector<char> DCSconfigObject_t;
29
30template <typename T>
31inline void addConfigItem(DCSconfigObject_t& configVector, std::string key, const T value)
32{
33 std::string keyValue = key + ":" + std::to_string(value) + ",";
34 std::copy(keyValue.begin(), keyValue.end(), std::back_inserter(configVector));
35}
36
37// explicit specialization for std::string
38template <>
39inline void addConfigItem(DCSconfigObject_t& configVector, std::string key, const std::string value)
40{
41 std::string keyValue = key + ":" + value + ",";
42 std::copy(keyValue.begin(), keyValue.end(), std::back_inserter(configVector));
43}
44
45// explicit specialization for char
46template <>
47inline void addConfigItem(DCSconfigObject_t& configVector, std::string key, const char value)
48{
49 std::string keyValue = key + ":" + value + ",";
50 std::copy(keyValue.begin(), keyValue.end(), std::back_inserter(configVector));
51}
52
53// explicit specialization for char*
54template <>
55inline void addConfigItem(DCSconfigObject_t& configVector, std::string key, const char* value)
56{
57 std::string keyValue = key + ":" + value + ",";
58 std::copy(keyValue.begin(), keyValue.end(), std::back_inserter(configVector));
59}
60
61// explicit specialization for TString
62template <>
63inline void addConfigItem(DCSconfigObject_t& configVector, std::string key, const TString value)
64{
65 std::string keyValue = key + ":" + value.Data() + ",";
66 std::copy(keyValue.begin(), keyValue.end(), std::back_inserter(configVector));
67}
68
69inline void printDCSConfig(const DCSconfigObject_t& configVector)
70{
71 std::string sConfig(configVector.begin(), configVector.end());
72 std::cout << "string "
73 << " --> " << sConfig << std::endl;
74 auto const re = std::regex{R"(,+)"};
75 auto vecRe = std::vector<std::string>(std::sregex_token_iterator{begin(sConfig), end(sConfig), re, -1},
76 std::sregex_token_iterator{});
77 for (size_t i = 0; i < vecRe.size(); ++i) {
78 // vecRe[i].erase(vecRe[i].end() - 1);
79 std::cout << i << " --> " << vecRe[i] << std::endl;
80 }
81}
82
83} // namespace dcs
84} // namespace o2
int32_t i
StringRef key
GLuint GLuint end
Definition glcorearb.h:469
GLsizei const GLfloat * value
Definition glcorearb.h:819
std::vector< char > DCSconfigObject_t
void printDCSConfig(const DCSconfigObject_t &configVector)
void addConfigItem(DCSconfigObject_t &configVector, std::string key, const T value)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52