#pragma once #include #include namespace il2cpp { namespace utils { template class StringView { private: const CharType* m_String; size_t m_Length; // Intended to only be used by Empty() inline StringView() : m_String(NULL), m_Length(0) { } public: template inline StringView(const CharType(&str)[Length]) : m_String(str), m_Length(Length - 1) { } inline StringView(const CharType* str, size_t length) : m_String(str), m_Length(length) { IL2CPP_ASSERT(str != NULL); } inline StringView(const StringView& str, size_t startIndex, size_t length) : m_String(str.Str() + startIndex), m_Length(length) { IL2CPP_ASSERT(startIndex + length <= str.Length()); } template inline StringView(const std::basic_string& str) : m_String(str.c_str()), m_Length(str.length()) { } // This will prevent accidentally assigning temporary values (like function return values) // to a string view. While this protection will only be enabled on C++11 compiles, even those // are enough to catch the bug in our runtime #if IL2CPP_HAS_DELETED_FUNCTIONS template StringView(std::basic_string&&) = delete; #endif inline const CharType* Str() const { return m_String; } inline size_t Length() const { return m_Length; } inline CharType operator[](size_t index) const { return m_String[index]; } inline bool IsNullTerminated() const { return m_String[m_Length] == 0; } inline bool IsEmpty() const { return Length() == 0; } static inline StringView Empty() { return StringView(); } inline size_t Find(CharType c, size_t startIndex = 0) const { const CharType* end = m_String + m_Length; for (const CharType* ptr = m_String + startIndex; ptr < end; ptr++) { if (*ptr == c) return ptr - m_String; } return NPos(); } inline size_t RFind(CharType c) const { for (const CharType* ptr = m_String + m_Length; ptr-- > m_String;) { if (*ptr == c) return ptr - m_String; } return NPos(); } inline StringView SubStr(size_t startIndex, size_t length) { return StringView(*this, startIndex, length); } inline StringView SubStr(size_t startIndex) { return StringView(*this, startIndex, Length() - startIndex); } inline static size_t NPos() { return static_cast(-1); } inline bool TryParseAsInt(int& outResult) { if (Length() == 0) return false; int result = 0; bool isNegative = false; const CharType* ptr = m_String; const CharType* end = m_String + m_Length; if (ptr[0] == '-') { isNegative = true; ptr++; } for (; ptr < end; ptr++) { CharType digit = *ptr; if (digit < '0' || digit > '9') return false; int digitNumeric = digit - '0'; if (result > std::numeric_limits::max() / 10) return false; result = result * 10; if (result > std::numeric_limits::max() - digitNumeric) return false; result += digitNumeric; } if (isNegative) { outResult = -result; } else { outResult = result; } return true; } }; #define StringViewAsNullTerminatedStringOf(CharType, stringView, variableName) \ const CharType* variableName; \ do \ { \ if (stringView.IsNullTerminated()) \ { \ variableName = stringView.Str(); \ } \ else \ { \ CharType* buffer = static_cast(alloca((stringView.Length() + 1) * sizeof(CharType))); \ memcpy(buffer, stringView.Str(), stringView.Length() * sizeof(CharType)); \ buffer[stringView.Length()] = 0; \ variableName = buffer; \ } \ } \ while (false) } }