2020-01-18 08:38:21 +00:00
|
|
|
/*
|
2024-10-04 11:19:50 +00:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 08:38:21 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2021-07-01 11:45:59 +00:00
|
|
|
#include <AK/CharacterTypes.h>
|
2023-01-09 00:23:00 +00:00
|
|
|
#include <AK/DeprecatedFlyString.h>
|
2021-05-14 13:21:50 +00:00
|
|
|
#include <AK/StringHash.h>
|
2020-03-08 11:34:33 +00:00
|
|
|
#include <AK/StringImpl.h>
|
|
|
|
#include <AK/kmalloc.h>
|
2018-12-28 02:09:45 +00:00
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
StringImpl::~StringImpl()
|
|
|
|
{
|
2020-03-22 09:12:55 +00:00
|
|
|
if (m_fly)
|
2023-01-09 00:23:00 +00:00
|
|
|
DeprecatedFlyString::did_destroy_impl({}, *this);
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
NonnullRefPtr<StringImpl const> StringImpl::create_uninitialized(size_t length, char*& buffer)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(length);
|
2019-01-31 16:31:23 +00:00
|
|
|
void* slot = kmalloc(allocation_size_for_stringimpl(length));
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(slot);
|
2021-04-23 14:46:57 +00:00
|
|
|
auto new_stringimpl = adopt_ref(*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
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
RefPtr<StringImpl const> StringImpl::create(char const* cstring, size_t length, ShouldChomp should_chomp)
|
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
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
RefPtr<StringImpl const> StringImpl::create(char const* cstring, ShouldChomp shouldChomp)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2023-10-10 11:30:58 +00:00
|
|
|
if (!cstring || !*cstring)
|
2021-10-25 11:16:59 +00:00
|
|
|
return the_empty_stringimpl();
|
|
|
|
|
2018-11-06 23:19:35 +00:00
|
|
|
return create(cstring, strlen(cstring), shouldChomp);
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
RefPtr<StringImpl const> StringImpl::create(ReadonlyBytes bytes, ShouldChomp shouldChomp)
|
2020-08-05 08:37:34 +00:00
|
|
|
{
|
2022-04-01 17:58:27 +00:00
|
|
|
return StringImpl::create(reinterpret_cast<char const*>(bytes.data()), bytes.size(), shouldChomp);
|
2020-08-05 08:37:34 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
RefPtr<StringImpl const> StringImpl::create_lowercased(char const* cstring, size_t length)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2021-07-01 11:45:59 +00:00
|
|
|
if (!length)
|
|
|
|
return the_empty_stringimpl();
|
|
|
|
char* buffer;
|
|
|
|
auto impl = create_uninitialized(length, buffer);
|
|
|
|
for (size_t i = 0; i < length; ++i)
|
|
|
|
buffer[i] = (char)to_ascii_lowercase(cstring[i]);
|
|
|
|
return impl;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
RefPtr<StringImpl const> StringImpl::create_uppercased(char const* cstring, size_t length)
|
2018-10-10 09:53:07 +00:00
|
|
|
{
|
2021-07-01 11:45:59 +00:00
|
|
|
if (!length)
|
|
|
|
return the_empty_stringimpl();
|
|
|
|
char* buffer;
|
|
|
|
auto impl = create_uninitialized(length, buffer);
|
|
|
|
for (size_t i = 0; i < length; ++i)
|
|
|
|
buffer[i] = (char)to_ascii_uppercase(cstring[i]);
|
|
|
|
return impl;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
NonnullRefPtr<StringImpl const> 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) {
|
2021-07-01 11:45:59 +00:00
|
|
|
if (is_ascii_upper_alpha(characters()[i]))
|
|
|
|
return create_lowercased(characters(), m_length).release_nonnull();
|
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
|
|
|
}
|
|
|
|
|
2023-02-19 21:59:26 +00:00
|
|
|
NonnullRefPtr<StringImpl const> 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) {
|
2021-07-01 11:45:59 +00:00
|
|
|
if (is_ascii_lower_alpha(characters()[i]))
|
|
|
|
return create_uppercased(characters(), m_length).release_nonnull();
|
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
|
|
|
}
|
|
|
|
|
2022-02-18 21:56:53 +00:00
|
|
|
unsigned StringImpl::case_insensitive_hash() const
|
|
|
|
{
|
|
|
|
return case_insensitive_string_hash(characters(), length());
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|