blob: d844e5e125f7b7da73a10f17e4147a866cc1fb69 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef RTC_BASE_STRING_UTILS_H_
12#define RTC_BASE_STRING_UTILS_H_
henrike@webrtc.orgf0488722014-05-13 18:00:2613
Henrik Kjellanderec78f1c2017-06-29 05:52:5014#include <ctype.h>
15#include <stdarg.h>
16#include <stdio.h>
17#include <string.h>
henrike@webrtc.orgf0488722014-05-13 18:00:2618
Henrik Kjellanderec78f1c2017-06-29 05:52:5019#if defined(WEBRTC_WIN)
20#include <malloc.h>
21#include <wchar.h>
Patrik Höglunda8005cf2017-12-13 15:05:4222#include <windows.h>
Yves Gerey988cc082018-10-23 10:03:0123
Henrik Kjellanderc0362762017-06-29 06:03:0424#endif // WEBRTC_WIN
henrike@webrtc.orgf0488722014-05-13 18:00:2625
Henrik Kjellanderec78f1c2017-06-29 05:52:5026#if defined(WEBRTC_POSIX)
Henrik Kjellanderec78f1c2017-06-29 05:52:5027#include <stdlib.h>
Yves Gerey988cc082018-10-23 10:03:0128#include <strings.h>
Henrik Kjellanderec78f1c2017-06-29 05:52:5029#endif // WEBRTC_POSIX
30
31#include <string>
32
Henrik Kjellanderec78f1c2017-06-29 05:52:5033namespace rtc {
34
35const size_t SIZE_UNKNOWN = static_cast<size_t>(-1);
36
Niels Möllerd1892522018-10-17 11:39:0137// Safe version of strncpy that always nul-terminate.
38size_t strcpyn(char* buffer,
Yves Gerey665174f2018-06-19 13:03:0539 size_t buflen,
Niels Möllerd1892522018-10-17 11:39:0140 const char* source,
41 size_t srclen = SIZE_UNKNOWN);
Henrik Kjellanderec78f1c2017-06-29 05:52:5042
Patrik Höglunda8005cf2017-12-13 15:05:4243///////////////////////////////////////////////////////////////////////////////
44// UTF helpers (Windows only)
45///////////////////////////////////////////////////////////////////////////////
46
47#if defined(WEBRTC_WIN)
48
49inline std::wstring ToUtf16(const char* utf8, size_t len) {
Noah Richards4ed5b082019-07-30 18:56:0850 if (len == 0)
51 return std::wstring();
Patrik Höglunda8005cf2017-12-13 15:05:4252 int len16 = ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len),
53 nullptr, 0);
Niels Möllerf25df352019-05-24 07:14:1354 std::wstring ws(len16, 0);
55 ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len), &*ws.begin(),
56 len16);
57 return ws;
Patrik Höglunda8005cf2017-12-13 15:05:4258}
59
60inline std::wstring ToUtf16(const std::string& str) {
61 return ToUtf16(str.data(), str.length());
62}
63
64inline std::string ToUtf8(const wchar_t* wide, size_t len) {
Noah Richards4ed5b082019-07-30 18:56:0865 if (len == 0)
66 return std::string();
Patrik Höglunda8005cf2017-12-13 15:05:4267 int len8 = ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len),
68 nullptr, 0, nullptr, nullptr);
Niels Möllerf25df352019-05-24 07:14:1369 std::string ns(len8, 0);
70 ::WideCharToMultiByte(CP_UTF8, 0, wide, static_cast<int>(len), &*ns.begin(),
71 len8, nullptr, nullptr);
72 return ns;
Patrik Höglunda8005cf2017-12-13 15:05:4273}
74
75inline std::string ToUtf8(const wchar_t* wide) {
76 return ToUtf8(wide, wcslen(wide));
77}
78
79inline std::string ToUtf8(const std::wstring& wstr) {
80 return ToUtf8(wstr.data(), wstr.length());
81}
82
83#endif // WEBRTC_WIN
84
Henrik Kjellanderec78f1c2017-06-29 05:52:5085// Remove leading and trailing whitespaces.
86std::string string_trim(const std::string& s);
87
Jonas Olssonabbe8412018-04-03 11:40:0588// TODO(jonasolsson): replace with absl::Hex when that becomes available.
Jonas Olsson74395342018-04-03 10:22:0789std::string ToHex(const int i);
Jonas Olssond8c50782018-09-07 09:21:2890
Markus Handell3d46d0b2021-05-27 19:42:5791// CompileTimeString comprises of a string-like object which can be used as a
92// regular const char* in compile time and supports concatenation. Useful for
93// concatenating constexpr strings in for example macro declarations.
94namespace rtc_base_string_utils_internal {
95template <int NPlus1>
96struct CompileTimeString {
97 char string[NPlus1] = {0};
98 constexpr CompileTimeString() = default;
99 template <int MPlus1>
100 explicit constexpr CompileTimeString(const char (&chars)[MPlus1]) {
101 char* chars_pointer = string;
102 for (auto c : chars)
103 *chars_pointer++ = c;
104 }
105 template <int MPlus1>
106 constexpr auto Concat(CompileTimeString<MPlus1> b) {
107 CompileTimeString<NPlus1 + MPlus1 - 1> result;
108 char* chars_pointer = result.string;
109 for (auto c : string)
110 *chars_pointer++ = c;
111 chars_pointer = result.string + NPlus1 - 1;
112 for (auto c : b.string)
113 *chars_pointer++ = c;
114 result.string[NPlus1 + MPlus1 - 2] = 0;
115 return result;
116 }
117 constexpr operator const char*() { return string; }
118};
119} // namespace rtc_base_string_utils_internal
120
121// Makes a constexpr CompileTimeString<X> without having to specify X
122// explicitly.
123template <int N>
124constexpr auto MakeCompileTimeString(const char (&a)[N]) {
125 return rtc_base_string_utils_internal::CompileTimeString<N>(a);
126}
127
Henrik Kjellanderec78f1c2017-06-29 05:52:50128} // namespace rtc
129
Steve Anton10542f22019-01-11 17:11:00130#endif // RTC_BASE_STRING_UTILS_H_