summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/BasicString.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-30 08:50:15 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-30 08:50:15 +0100
commit1c8c5cff67b20d86c442b0917d6c1fc6407140df (patch)
tree53ebea660bef14cdc2ff5b7ebefb4049f705f997 /dev/CompilerKit/BasicString.h
parent073811d89c98d6e1c078a032ca2eedefebf80384 (diff)
feat! Breaking API changes of NeCTI's LibCompiler and LibDebugger.
what: - They've now become CompilerKit and DebuggerKit. - Expanding XCoff for NeBoot PowerPC backend. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/BasicString.h')
-rw-r--r--dev/CompilerKit/BasicString.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/dev/CompilerKit/BasicString.h b/dev/CompilerKit/BasicString.h
new file mode 100644
index 0000000..a1ada68
--- /dev/null
+++ b/dev/CompilerKit/BasicString.h
@@ -0,0 +1,82 @@
+/*
+ * ========================================================
+ *
+ * CompilerKit
+ * Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved.
+ *
+ * ========================================================
+ */
+
+#pragma once
+
+#include <CompilerKit/Defines.h>
+#include <CompilerKit/ErrorOr.h>
+
+namespace CompilerKit {
+class StringBuilder;
+class BasicString;
+
+/**
+ * @brief BasicString class, contains a C string and manages it.
+ * @note No need to manage it it's getting deleted by default.
+ */
+
+class BasicString final {
+ public:
+ explicit BasicString() = delete;
+
+ explicit BasicString(SizeType Sz) noexcept : m_Sz(Sz) {
+ m_Data = new Char[Sz];
+ assert(m_Data);
+ }
+
+ ~BasicString() noexcept {
+ if (m_Data) {
+ memset(m_Data, 0, m_Sz);
+ delete[] m_Data;
+
+ m_Data = nullptr;
+ }
+ }
+
+ LIBCOMPILER_COPY_DEFAULT(BasicString);
+
+ Char* Data();
+ const Char* CData() const;
+ SizeType Length() const;
+
+ bool operator==(const Char* rhs) const;
+ bool operator!=(const Char* rhs) const;
+
+ bool operator==(const BasicString& rhs) const;
+ bool operator!=(const BasicString& rhs) const;
+
+ BasicString& operator+=(const Char* rhs);
+ BasicString& operator+=(const BasicString& rhs);
+
+ operator bool() { return m_Data && m_Data[0] != 0; }
+
+ bool operator!() { return !m_Data || m_Data[0] == 0; }
+
+ private:
+ Char* m_Data{nullptr};
+ SizeType m_Sz{0};
+ SizeType m_Cur{0};
+
+ friend class StringBuilder;
+};
+
+/**
+ * @brief StringBuilder class
+ * @note These results shall call be delete[] after they're used.
+ */
+struct StringBuilder final {
+ static BasicString 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);
+};
+
+using PStringOr = ErrorOr<BasicString>;
+} // namespace CompilerKit