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