blob: cfff3e3cc92e0d96c249b04d9d8e51ca7ee175bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* -------------------------------------------
Copyright ZKA Technologies
------------------------------------------- */
#pragma once
#include <NewKit/Defines.hpp>
#include <NewKit/ErrorOr.hpp>
#include <NewKit/KernelCheck.hpp>
namespace Kernel
{
class StringView final
{
public:
explicit StringView() = default;
explicit StringView(Size Sz)
: fSz(Sz)
{
MUST_PASS(Sz > 1);
fData = new Char[Sz];
MUST_PASS(fData);
}
~StringView()
{
if (fData)
delete[] fData;
}
StringView& operator=(const StringView&) = default;
StringView(const StringView&) = default;
Char* Data();
const Char* CData() const;
Size Length() const;
bool operator==(const Char* rhs) const;
bool operator!=(const Char* rhs) const;
bool operator==(const StringView& rhs) const;
bool operator!=(const StringView& rhs) const;
StringView& operator+=(const Char* rhs);
StringView& operator+=(const StringView& rhs);
operator bool()
{
return fData;
}
bool operator!()
{
return fData;
}
private:
Char* fData{nullptr};
Size fSz{0};
Size fCur{0};
friend class StringBuilder;
};
struct StringBuilder final
{
static ErrorOr<StringView> Construct(const Char* data);
static const char* FromInt(const char* fmt, int n);
static const char* FromBool(const char* fmt, bool n);
static const char* Format(const char* fmt, const char* from);
static bool Equals(const char* lhs, const char* rhs);
};
} // namespace Kernel
|