mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
6f4c380d95
Using int was a mistake. This patch changes String, StringImpl, StringView and StringBuilder to use size_t instead of int for lengths. Obviously a lot of code needs to change as a result of this.
87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include <AK/RefPtr.h>
|
|
#include <AK/RefCounted.h>
|
|
#include <AK/Types.h>
|
|
#include <AK/kmalloc.h>
|
|
|
|
namespace AK {
|
|
|
|
enum ShouldChomp {
|
|
NoChomp,
|
|
Chomp
|
|
};
|
|
|
|
class StringImpl : public RefCounted<StringImpl> {
|
|
public:
|
|
static NonnullRefPtr<StringImpl> create_uninitialized(size_t length, char*& buffer);
|
|
static RefPtr<StringImpl> create(const char* cstring, ShouldChomp = NoChomp);
|
|
static RefPtr<StringImpl> create(const char* cstring, size_t length, ShouldChomp = NoChomp);
|
|
NonnullRefPtr<StringImpl> to_lowercase() const;
|
|
NonnullRefPtr<StringImpl> to_uppercase() const;
|
|
|
|
void operator delete(void* ptr)
|
|
{
|
|
kfree(ptr);
|
|
}
|
|
|
|
static StringImpl& the_empty_stringimpl();
|
|
|
|
~StringImpl();
|
|
|
|
size_t length() const { return m_length; }
|
|
const char* characters() const { return &m_inline_buffer[0]; }
|
|
char operator[](size_t i) const
|
|
{
|
|
ASSERT(i < m_length);
|
|
return characters()[i];
|
|
}
|
|
|
|
unsigned hash() const
|
|
{
|
|
if (!m_has_hash)
|
|
compute_hash();
|
|
return m_hash;
|
|
}
|
|
|
|
private:
|
|
enum ConstructTheEmptyStringImplTag {
|
|
ConstructTheEmptyStringImpl
|
|
};
|
|
explicit StringImpl(ConstructTheEmptyStringImplTag)
|
|
{
|
|
m_inline_buffer[0] = '\0';
|
|
}
|
|
|
|
enum ConstructWithInlineBufferTag {
|
|
ConstructWithInlineBuffer
|
|
};
|
|
StringImpl(ConstructWithInlineBufferTag, size_t length);
|
|
|
|
void compute_hash() const;
|
|
|
|
size_t m_length { 0 };
|
|
mutable unsigned m_hash { 0 };
|
|
mutable bool m_has_hash { false };
|
|
char m_inline_buffer[0];
|
|
};
|
|
|
|
inline constexpr u32 string_hash(const char* characters, size_t length)
|
|
{
|
|
u32 hash = 0;
|
|
for (size_t i = 0; i < length; ++i) {
|
|
hash += (u32)characters[i];
|
|
hash += (hash << 10);
|
|
hash ^= (hash >> 6);
|
|
}
|
|
hash += hash << 3;
|
|
hash ^= hash >> 11;
|
|
hash += hash << 15;
|
|
return hash;
|
|
}
|
|
|
|
}
|
|
|
|
using AK::Chomp;
|
|
using AK::string_hash;
|
|
using AK::StringImpl;
|