StormByte 2.0.0
C++26 foundation of the StormByte suite
 
Loading...
Searching...
No Matches
wcstring.hxx
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024-2026 David C. Manuelda (StormBytePP)
3 *
4 * This file is part of StormByte.
5 *
6 * StormByte original source is dual-licensed:
7 *
8 * 1. GNU Lesser General Public License v3.0 (or later)
9 * You may redistribute and/or modify this file under the terms of the
10 * GNU Lesser General Public License as published by the Free Software
11 * Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * 2. Commercial license
15 * Alternatively, this file may be used under the terms of a commercial
16 * license agreement with the copyright holder
17 * (David C. Manuelda <StormByte@gmail.com>).
18 *
19 * Both licenses apply only to original StormByte source in this repository.
20 * They do not cover other StormByte modules or any third-party material
21 * shipped with this repository (including everything under thirdparty/),
22 * which remains under its own license.
23 *
24 * Neither license grants any patent rights. Any patent licenses required
25 * to use this software or third-party components must be obtained separately
26 * from the patent holders.
27 *
28 * StormByte is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU Lesser General Public License for more details.
32 *
33 * You should have received a copy of the GNU Lesser General Public License
34 * version 3 along with StormByte. If not, see
35 * <https://www.gnu.org/licenses/lgpl-3.0.html>.
36 *
37 * SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-StormByte-Commercial
38 */
39
40#pragma once
41
43
44#include <compare>
45#include <cstddef>
46#include <functional>
47#include <ostream>
48#include <string>
49#include <string_view>
50
55namespace StormByte {
87 public:
96 WCString() noexcept;
97
102 explicit WCString(const wchar_t* str) noexcept;
103
108 WCString(const WCString& other) noexcept;
109
114 WCString(WCString&& other) noexcept;
115
119 ~WCString() noexcept;
120
126 WCString& operator=(const WCString& other) noexcept;
127
133 WCString& operator=(WCString&& other) noexcept;
134
146 void Reset(const wchar_t* str = nullptr) noexcept;
147
152 void swap(WCString& other) noexcept;
153
165 std::size_t Length() const noexcept;
166
173 wchar_t operator[](std::size_t index) const noexcept;
174
180 inline explicit operator bool() const noexcept {
181 return static_cast<const wchar_t*>(*this) != nullptr;
182 }
183
196 explicit operator const wchar_t*() const noexcept;
197
203 inline explicit operator std::wstring_view() const noexcept {
204 const wchar_t* text = static_cast<const wchar_t*>(*this);
205 return text ? std::wstring_view(text) : std::wstring_view();
206 }
207
212 inline operator std::wstring() const {
213 const wchar_t* text = static_cast<const wchar_t*>(*this);
214 return text ? std::wstring(text) : std::wstring();
215 }
216
222 inline std::wostream& operator<<(std::wostream& stream) const {
223 const wchar_t* text = static_cast<const wchar_t*>(*this);
224 if (text)
225 stream << text;
226 return stream;
227 }
228
241 bool operator==(const WCString& other) const noexcept;
242
248 bool operator!=(const WCString& other) const noexcept {
249 return !(*this == other);
250 }
251
257 bool operator==(const wchar_t* str) const noexcept;
258
264 bool operator!=(const wchar_t* str) const noexcept {
265 return !(*this == str);
266 }
267
273 std::strong_ordering operator<=>(const WCString& other) const noexcept;
274
280 std::strong_ordering operator<=>(const wchar_t* str) const noexcept;
281
284 private:
285 const wchar_t* m_data;
286
292 static const wchar_t* Duplicate(const wchar_t* str) noexcept;
293 };
294
301 inline std::wostream& operator<<(std::wostream& stream, const WCString& text) {
302 return text.operator<<(stream);
303 }
304
311 inline bool operator==(const wchar_t* str, const WCString& text) noexcept {
312 return text == str;
313 }
314
321 inline bool operator!=(const wchar_t* str, const WCString& text) noexcept {
322 return text != str;
323 }
324
330 inline void swap(WCString& left, WCString& right) noexcept {
331 left.swap(right);
332 }
333}
334
338template<>
339struct std::hash<StormByte::WCString> {
345 std::size_t operator()(const StormByte::WCString& text) const noexcept {
346 const wchar_t* raw = static_cast<const wchar_t*>(text);
347 if (!raw)
348 return 0;
349 return std::hash<std::wstring_view>{}(raw);
350 }
351};
Owned NUL-terminated wide buffer, safe to use across a DLL boundary.
Definition wcstring.hxx:86
bool operator!=(const wchar_t *str) const noexcept
Content inequality with a C wide string.
Definition wcstring.hxx:264
bool operator!=(const WCString &other) const noexcept
Content inequality.
Definition wcstring.hxx:248
bool operator==(const wchar_t *str) const noexcept
Content equality with a C wide string.
void swap(WCString &other) noexcept
Swaps buffers with other.
std::strong_ordering operator<=>(const WCString &other) const noexcept
Content order.
WCString() noexcept
Empty (null) buffer.
std::wostream & operator<<(std::wostream &stream) const
Writes the text to stream.
Definition wcstring.hxx:222
bool operator==(const WCString &other) const noexcept
Content equality.
std::strong_ordering operator<=>(const wchar_t *str) const noexcept
Content order against a C wide string.
Root namespace of the StormByte suite.
bool operator!=(const char *str, const CString &text) noexcept
Content inequality.
Definition cstring.hxx:324
std::ostream & operator<<(std::ostream &stream, const CString &text)
Writes text to stream.
Definition cstring.hxx:304
void swap(CString &left, CString &right) noexcept
Swaps two buffers.
Definition cstring.hxx:333
bool operator==(const char *str, const CString &text) noexcept
Content equality.
Definition cstring.hxx:314
STL namespace.
std::size_t operator()(const StormByte::WCString &text) const noexcept
Hashes text.
Definition wcstring.hxx:345
#define STORMBYTE_PUBLIC
Definition visibility.h:52