MySQL
9.1.0
Source Code Documentation
concat.h
Go to the documentation of this file.
1
/* Copyright (c) 2023, 2024, Oracle and/or its affiliates.
2
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License, version 2.0,
5
as published by the Free Software Foundation.
6
7
This program is designed to work with certain software (including
8
but not limited to OpenSSL) that is licensed under separate terms,
9
as designated in a particular file or component or in included license
10
documentation. The authors of MySQL hereby grant you an additional
11
permission to link the program and your derivative works with the
12
separately licensed software that they have either included with
13
the program or referenced in the documentation.
14
15
This program is distributed in the hope that it will be useful,
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
GNU General Public License, version 2.0, for more details.
19
20
You should have received a copy of the GNU General Public License
21
along with this program; if not, write to the Free Software
22
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24
/// @file
25
///
26
/// Convenience function that concatenates arbitrary arguments, by
27
/// feeding them to an ostringstream.
28
29
#ifndef MYSQL_UTILS_CONCAT_H
30
#define MYSQL_UTILS_CONCAT_H
31
32
#include <sstream>
// std::ostringstream
33
#include <string>
// std::string
34
35
/// @addtogroup GroupLibsMysqlUtils
36
/// @{
37
38
namespace
mysql::utils
{
39
40
namespace
internal {
41
42
// Helper for 'concat' (base case)
43
inline
void
concat_to_stringstream
([[maybe_unused]]
std::ostringstream
&out) {}
44
45
// Helper for 'concat' (recursive)
46
template
<
class
T,
class
... Args>
47
void
concat_to_stringstream
(
std::ostringstream
&out, T first,
48
Args... remainder) {
49
out << first;
50
concat_to_stringstream
(out, remainder...);
51
}
52
53
}
// namespace internal
54
55
/// Convert all the arguments to strings and concatenate the strings.
56
///
57
/// This feeds all arguments to a `std::ostringstream`, so supports all
58
/// types for which `operator<<(std::ostringstream&, ...)` is defined.
59
///
60
/// @param args Arguments to concatenate.
61
///
62
/// @return The resulting std::string.
63
template
<
class
... Args>
64
std::string
concat
(Args... args) {
65
std::ostringstream
out;
66
internal::concat_to_stringstream
(out, args...);
67
return
out.str();
68
}
69
70
}
// namespace mysql::utils
71
72
/// @}
73
74
#endif
// MYSQL_UTILS_CONCAT_H
mysql::utils::internal::concat_to_stringstream
void concat_to_stringstream(std::ostringstream &out)
Definition:
concat.h:43
mysql::utils
Definition:
gtid_format.h:46
mysql::utils::concat
std::string concat(Args... args)
Convert all the arguments to strings and concatenate the strings.
Definition:
concat.h:64
ut::ostringstream
std::basic_ostringstream< char, std::char_traits< char >, ut::allocator< char > > ostringstream
Specialization of basic_ostringstream which uses ut::allocator.
Definition:
ut0new.h:2872
libs
mysql
utils
concat.h
Generated by
1.9.2