summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/String.hpp
blob: 93dfc58403f3e6eaf21e1cf898eb7868a35b1246 (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
/* -------------------------------------------

    Copyright Mahrouss Logic

------------------------------------------- */

#pragma once

#include <NewKit/Defines.hpp>
#include <NewKit/ErrorOr.hpp>
#include <NewKit/KernelCheck.hpp>

namespace NewOS {
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();
  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 NewOS