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