]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
Merge tag 'v2.0.25' into master.
[user/henk/code/inspircd.git] / include / inspstring.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #pragma once
22
23 // This (config) is needed as inspstring doesn't pull in the central header
24 #include "config.h"
25 #include <cstring>
26
27 /** Sets ret to the formated string. last is the last parameter before ..., and format is the format in printf-style */
28 #define VAFORMAT(ret, last, format) \
29         do { \
30         va_list _vaList; \
31         va_start(_vaList, last); \
32         ret = InspIRCd::Format(_vaList, format); \
33         va_end(_vaList); \
34         } while (false);
35
36 /** Compose a hex string from raw data.
37  * @param raw The raw data to compose hex from (can be NULL if rawsize is 0)
38  * @param rawsize The size of the raw data buffer
39  * @return The hex string
40  */
41 CoreExport std::string BinToHex(const void* raw, size_t rawsize);
42
43 /** Base64 encode */
44 CoreExport std::string BinToBase64(const std::string& data, const char* table = NULL, char pad = 0);
45 /** Base64 decode */
46 CoreExport std::string Base64ToBin(const std::string& data, const char* table = NULL);
47
48 /** Compose a hex string from the data in a std::string.
49  * @param data The data to compose hex from
50  * @return The hex string.
51  */
52 inline std::string BinToHex(const std::string& data)
53 {
54         return BinToHex(data.data(), data.size());
55 }