2018-10-10 09:53:07 +00:00
|
|
|
#include "StringImpl.h"
|
2019-05-28 09:53:16 +00:00
|
|
|
#include "HashTable.h"
|
2018-12-03 23:27:16 +00:00
|
|
|
#include "StdLibExtras.h"
|
2018-10-10 09:53:07 +00:00
|
|
|
#include "kmalloc.h"
|
2018-12-28 02:09:45 +00:00
|
|
|
|
2019-06-14 04:43:56 +00:00
|
|
|
#ifndef __serenity__
|
2019-09-13 12:37:25 +00:00
|
|
|
#include <new>
|
2019-06-14 04:43:56 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-17 09:35:48 +00:00
|
|
|
//#define DEBUG_STRINGIMPL
|
|
|
|
|
2018-12-28 02:09:45 +00:00
|
|
|
#ifdef DEBUG_STRINGIMPL
|
|
|
|
unsigned g_stringimpl_count;
|
|
|
|
static HashTable<StringImpl*>* g_all_live_stringimpls;
|
|
|
|
|
|
|
|
void dump_all_stringimpls()
|
|
|
|
{
|
|
|
|
unsigned i = 0;
|
|
|
|
for (auto& it : *g_all_live_stringimpls) {
|
2019-12-09 16:45:40 +00:00
|
|
|
dbgprsize_tf("%u: \"%s\"\n", i, (*it).characters());
|
2018-12-28 02:09:45 +00:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2018-10-10 09:53:07 +00:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2018-12-21 01:10:45 +00:00
|
|
|
static StringImpl* s_the_empty_stringimpl = nullptr;
|
2018-10-22 11:10:08 +00:00
|
|
|
|
2018-12-21 01:10:45 +00:00
|
|
|
StringImpl& StringImpl::the_empty_stringimpl()
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-06-20 11:21:56 +00:00
|
|
|
if (!s_the_empty_stringimpl) {
|
|
|
|
void* slot = kmalloc(sizeof(StringImpl) + sizeof(char));
|
|
|
|
s_the_empty_stringimpl = new (slot) StringImpl(ConstructTheEmptyStringImpl);
|
|
|
|
}
|
2018-12-21 01:10:45 +00:00
|
|
|
return *s_the_empty_stringimpl;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
StringImpl::StringImpl(ConstructWithInlineBufferTag, size_t length)
|
2018-12-28 02:09:45 +00:00
|
|
|
: m_length(length)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_STRINGIMPL
|
2019-02-17 09:35:48 +00:00
|
|
|
if (!g_all_live_stringimpls)
|
|
|
|
g_all_live_stringimpls = new HashTable<StringImpl*>;
|
2018-12-28 02:09:45 +00:00
|
|
|
++g_stringimpl_count;
|
|
|
|
g_all_live_stringimpls->set(this);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
StringImpl::~StringImpl()
|
|
|
|
{
|
2018-12-28 02:09:45 +00:00
|
|
|
#ifdef DEBUG_STRINGIMPL
|
|
|
|
--g_stringimpl_count;
|
|
|
|
g_all_live_stringimpls->remove(this);
|
|
|
|
#endif
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
static inline size_t allocation_size_for_stringimpl(size_t length)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
|
|
|
return sizeof(StringImpl) + (sizeof(char) * length) + sizeof(char);
|
|
|
|
}
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
NonnullRefPtr<StringImpl> StringImpl::create_uninitialized(size_t length, char*& buffer)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2018-11-09 11:20:44 +00:00
|
|
|
ASSERT(length);
|
2019-01-31 16:31:23 +00:00
|
|
|
void* slot = kmalloc(allocation_size_for_stringimpl(length));
|
2019-02-25 15:04:08 +00:00
|
|
|
ASSERT(slot);
|
2019-01-31 16:31:23 +00:00
|
|
|
auto new_stringimpl = adopt(*new (slot) StringImpl(ConstructWithInlineBuffer, length));
|
2019-06-20 11:21:56 +00:00
|
|
|
buffer = const_cast<char*>(new_stringimpl->characters());
|
2018-10-10 09:53:07 +00:00
|
|
|
buffer[length] = '\0';
|
2019-01-31 16:31:23 +00:00
|
|
|
return new_stringimpl;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:45:40 +00:00
|
|
|
RefPtr<StringImpl> StringImpl::create(const char* cstring, size_t length, ShouldChomp should_chomp)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
|
|
|
if (!cstring)
|
|
|
|
return nullptr;
|
|
|
|
|
2019-06-24 12:36:43 +00:00
|
|
|
if (!length || !*cstring)
|
2018-12-21 01:10:45 +00:00
|
|
|
return the_empty_stringimpl();
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2019-04-07 18:19:16 +00:00
|
|
|
if (should_chomp) {
|
|
|
|
while (length) {
|
|
|
|
char last_ch = cstring[length - 1];
|
|
|
|
if (!last_ch || last_ch == '\n' || last_ch == '\r')
|
|
|
|
--length;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 15:11:28 +00:00
|
|
|
if (!length)
|
|
|
|
return the_empty_stringimpl();
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
char* buffer;
|
2019-01-31 16:31:23 +00:00
|
|
|
auto new_stringimpl = create_uninitialized(length, buffer);
|
2018-10-10 09:53:07 +00:00
|
|
|
memcpy(buffer, cstring, length * sizeof(char));
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
return new_stringimpl;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
RefPtr<StringImpl> StringImpl::create(const char* cstring, ShouldChomp shouldChomp)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
|
|
|
if (!cstring)
|
|
|
|
return nullptr;
|
|
|
|
|
2018-11-06 23:19:35 +00:00
|
|
|
return create(cstring, strlen(cstring), shouldChomp);
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
static inline bool is_ascii_lowercase(char c)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
|
|
|
return c >= 'a' && c <= 'z';
|
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
static inline bool is_ascii_uppercase(char c)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
|
|
|
return c >= 'A' && c <= 'Z';
|
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
static inline char to_ascii_lowercase(char c)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-01-31 16:31:23 +00:00
|
|
|
if (is_ascii_uppercase(c))
|
2018-10-10 09:53:07 +00:00
|
|
|
return c | 0x20;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
static inline char to_ascii_uppercase(char c)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-01-31 16:31:23 +00:00
|
|
|
if (is_ascii_lowercase(c))
|
2018-10-10 09:53:07 +00:00
|
|
|
return c & ~0x20;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
NonnullRefPtr<StringImpl> StringImpl::to_lowercase() const
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-12-09 16:45:40 +00:00
|
|
|
for (size_t i = 0; i < m_length; ++i) {
|
2019-06-20 11:21:56 +00:00
|
|
|
if (!is_ascii_lowercase(characters()[i]))
|
2019-01-31 16:31:23 +00:00
|
|
|
goto slow_path;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
2019-02-25 15:04:08 +00:00
|
|
|
return const_cast<StringImpl&>(*this);
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
slow_path:
|
2018-10-10 09:53:07 +00:00
|
|
|
char* buffer;
|
2018-12-21 01:10:45 +00:00
|
|
|
auto lowercased = create_uninitialized(m_length, buffer);
|
2019-12-09 16:45:40 +00:00
|
|
|
for (size_t i = 0; i < m_length; ++i)
|
2019-06-20 11:21:56 +00:00
|
|
|
buffer[i] = to_ascii_lowercase(characters()[i]);
|
2018-10-10 09:53:07 +00:00
|
|
|
return lowercased;
|
|
|
|
}
|
|
|
|
|
2019-06-21 16:37:47 +00:00
|
|
|
NonnullRefPtr<StringImpl> StringImpl::to_uppercase() const
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-12-09 16:45:40 +00:00
|
|
|
for (size_t i = 0; i < m_length; ++i) {
|
2019-06-20 11:21:56 +00:00
|
|
|
if (!is_ascii_uppercase(characters()[i]))
|
2019-01-31 16:31:23 +00:00
|
|
|
goto slow_path;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
2019-02-25 15:04:08 +00:00
|
|
|
return const_cast<StringImpl&>(*this);
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
slow_path:
|
2018-10-10 09:53:07 +00:00
|
|
|
char* buffer;
|
2018-12-21 01:10:45 +00:00
|
|
|
auto uppercased = create_uninitialized(m_length, buffer);
|
2019-12-09 16:45:40 +00:00
|
|
|
for (size_t i = 0; i < m_length; ++i)
|
2019-06-20 11:21:56 +00:00
|
|
|
buffer[i] = to_ascii_uppercase(characters()[i]);
|
2018-10-10 09:53:07 +00:00
|
|
|
return uppercased;
|
|
|
|
}
|
|
|
|
|
2018-12-21 01:10:45 +00:00
|
|
|
void StringImpl::compute_hash() const
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2019-03-11 23:56:33 +00:00
|
|
|
if (!length())
|
2018-10-10 09:53:07 +00:00
|
|
|
m_hash = 0;
|
2019-03-11 23:56:33 +00:00
|
|
|
else
|
2019-06-20 11:21:56 +00:00
|
|
|
m_hash = string_hash(characters(), m_length);
|
|
|
|
m_has_hash = true;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|