diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-25 20:34:13 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-25 20:34:13 +0100 |
| commit | 337d36ee5f1f8376f3dcc863270bbe92fd7f8ca7 (patch) | |
| tree | 78638ce3ca247f185d94cb4f7612c49d49265af5 /dev/LibCompiler/NFC/String.h | |
| parent | a54afb132d4c1e71fc57425a25c68e9ca6053c9b (diff) | |
fix(linker): A critical fix regarding the output being repetadely
written on the file.
refactor(NFC): Rename String.h to StringView.h
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/NFC/String.h')
| -rw-r--r-- | dev/LibCompiler/NFC/String.h | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/dev/LibCompiler/NFC/String.h b/dev/LibCompiler/NFC/String.h deleted file mode 100644 index 51fb8b8..0000000 --- a/dev/LibCompiler/NFC/String.h +++ /dev/null @@ -1,90 +0,0 @@ -/* - * ======================================================== - * - * LibCompiler - * Copyright (C) 2024-2025 Amlal EL Mahrouss, all rights reserved. - * - * ======================================================== - */ - -#pragma once - -#include <LibCompiler/Defines.h> -#include <LibCompiler/NFC/ErrorOr.h> - -namespace LibCompiler -{ - /** - * @brief StringView class, contains a C string and manages it. - * @note No need to manage it it's getting deleted by default. - */ - - class StringView final - { - public: - explicit StringView() = delete; - - explicit StringView(SizeType Sz) noexcept - : m_Sz(Sz) - { - m_Data = new CharType[Sz]; - assert(m_Data); - } - - ~StringView() noexcept - { - if (m_Data) - { - memset(m_Data, 0, m_Sz); - delete[] m_Data; - - m_Data = nullptr; - } - } - - LIBCOMPILER_COPY_DEFAULT(StringView); - - CharType* Data(); - const CharType* CData() const; - SizeType Length() const; - - bool operator==(const CharType* rhs) const; - bool operator!=(const CharType* rhs) const; - - bool operator==(const StringView& rhs) const; - bool operator!=(const StringView& rhs) const; - - StringView& operator+=(const CharType* rhs); - StringView& operator+=(const StringView& rhs); - - operator bool() - { - return m_Data && m_Data[0] != 0; - } - - bool operator!() - { - return !m_Data || m_Data[0] == 0; - } - - private: - CharType* m_Data{nullptr}; - SizeType m_Sz{0}; - SizeType m_Cur{0}; - - friend class StringBuilder; - }; - - /** - * @brief StringBuilder class - * @note These results shall call delete[] after they're used. - */ - struct StringBuilder final - { - static StringView Construct(const CharType* 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 LibCompiler |
