blob: e6bc745ea4faa16f032dcf6d96d207553b5bf132 (
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
|
/*
* ========================================================
*
* HCore
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
#pragma once
#include <NewKit/Defines.hpp>
#include <NewKit/ErrorOr.hpp>
#include <NewKit/RuntimeCheck.hpp>
namespace HCore {
class StringView final {
public:
explicit StringView() = default;
explicit StringView(Size Sz) : m_Sz(Sz) {
MUST_PASS(Sz > 1);
m_Data = new Char[Sz];
MUST_PASS(m_Data);
}
~StringView() {
if (m_Data) delete[] m_Data;
}
StringView &operator=(const StringView &) = default;
StringView(const StringView &) = default;
Char *Data();
const Char *CData();
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 m_Data; }
bool operator!() { return m_Data; }
private:
Char *m_Data{nullptr};
Size m_Sz{0};
Size m_Cur{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 HCore
|