MySQL 8.4.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 concat.h
25///
26/// Convenience function that concatenates arbitrary arguments, by
27/// feeding them to an ostringstream.
28
29#ifndef MYSQL_STRING_CONCAT_H_
30#define MYSQL_STRING_CONCAT_H_
31
32#include <sstream> // std::ostringstream
33#include <string> // std::string
34
35/// @addtogroup GroupLibsMysqlBinlogEvent
36/// @{
37
39
40namespace internal {
41
42// Helper for 'concat' (base case)
43inline void concat_to_stringstream([[maybe_unused]] std::ostringstream &out) {}
44
45// Helper for 'concat' (recursive)
46template <class T, class... Args>
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.
63template <class... Args>
64std::string concat(Args... args) {
67 return out.str();
68}
69
70} // namespace mysql::binlog::event::string
71
72/// @}
73
74#endif // MYSQL_STRING_CONCAT_H_
void concat_to_stringstream(std::ostringstream &out)
Definition: concat.h:43
Definition: concat.h:38
std::string concat(Args... args)
Convert all the arguments to strings and concatenate the strings.
Definition: concat.h:64
std::basic_ostringstream< char, std::char_traits< char >, ut::allocator< char > > ostringstream
Specialization of basic_ostringstream which uses ut::allocator.
Definition: ut0new.h:2870