2020-01-18 11:38:21 +03:00
|
|
|
/*
|
2020-01-24 16:45:29 +03:00
|
|
|
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
|
2020-01-18 11:38:21 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-08-28 00:57:15 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
class Utf8View;
|
|
|
|
|
|
|
|
class Utf8CodepointIterator {
|
|
|
|
friend class Utf8View;
|
|
|
|
|
|
|
|
public:
|
2021-01-11 02:29:28 +03:00
|
|
|
Utf8CodepointIterator() = default;
|
|
|
|
~Utf8CodepointIterator() = default;
|
2019-08-28 00:57:15 +03:00
|
|
|
|
|
|
|
bool operator==(const Utf8CodepointIterator&) const;
|
|
|
|
bool operator!=(const Utf8CodepointIterator&) const;
|
|
|
|
Utf8CodepointIterator& operator++();
|
|
|
|
u32 operator*() const;
|
|
|
|
|
2020-10-20 18:47:34 +03:00
|
|
|
ssize_t operator-(const Utf8CodepointIterator& other) const
|
|
|
|
{
|
|
|
|
return m_ptr - other.m_ptr;
|
|
|
|
}
|
|
|
|
|
2021-01-02 02:28:24 +03:00
|
|
|
size_t code_point_length_in_bytes() const;
|
|
|
|
bool done() const { return m_length == 0; }
|
2019-10-18 23:49:23 +03:00
|
|
|
|
2019-08-28 00:57:15 +03:00
|
|
|
private:
|
2021-01-02 02:28:24 +03:00
|
|
|
Utf8CodepointIterator(const unsigned char*, size_t);
|
2019-08-28 00:57:15 +03:00
|
|
|
const unsigned char* m_ptr { nullptr };
|
2021-01-02 02:28:24 +03:00
|
|
|
size_t m_length;
|
2019-08-28 00:57:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Utf8View {
|
|
|
|
public:
|
2020-11-12 01:21:01 +03:00
|
|
|
using Iterator = Utf8CodepointIterator;
|
2020-10-20 18:47:34 +03:00
|
|
|
|
2021-01-11 02:29:28 +03:00
|
|
|
Utf8View() = default;
|
2019-09-04 23:40:36 +03:00
|
|
|
explicit Utf8View(const String&);
|
2019-08-28 00:57:15 +03:00
|
|
|
explicit Utf8View(const StringView&);
|
2019-09-05 20:06:39 +03:00
|
|
|
explicit Utf8View(const char*);
|
2021-01-11 02:29:28 +03:00
|
|
|
~Utf8View() = default;
|
2019-08-28 00:57:15 +03:00
|
|
|
|
|
|
|
const StringView& as_string() const { return m_string; }
|
|
|
|
|
|
|
|
Utf8CodepointIterator begin() const;
|
|
|
|
Utf8CodepointIterator end() const;
|
|
|
|
|
2019-09-04 23:40:36 +03:00
|
|
|
const unsigned char* bytes() const { return begin_ptr(); }
|
|
|
|
int byte_length() const { return m_string.length(); }
|
2020-12-29 01:51:24 +03:00
|
|
|
size_t byte_offset_of(const Utf8CodepointIterator&) const;
|
2019-09-04 23:40:36 +03:00
|
|
|
Utf8View substring_view(int byte_offset, int byte_length) const;
|
|
|
|
bool is_empty() const { return m_string.is_empty(); }
|
|
|
|
|
2020-12-29 01:51:24 +03:00
|
|
|
size_t iterator_offset(const Utf8CodepointIterator& it) const
|
|
|
|
{
|
|
|
|
return byte_offset_of(it);
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:15:18 +03:00
|
|
|
bool validate(size_t& valid_bytes) const;
|
|
|
|
bool validate() const
|
|
|
|
{
|
|
|
|
size_t valid_bytes;
|
|
|
|
return validate(valid_bytes);
|
|
|
|
}
|
2019-08-28 00:57:15 +03:00
|
|
|
|
2020-10-20 18:47:34 +03:00
|
|
|
size_t length() const
|
|
|
|
{
|
|
|
|
if (!m_have_length) {
|
|
|
|
m_length = calculate_length();
|
|
|
|
m_have_length = true;
|
|
|
|
}
|
|
|
|
return m_length;
|
|
|
|
}
|
2020-05-17 14:02:27 +03:00
|
|
|
|
2019-08-28 00:57:15 +03:00
|
|
|
private:
|
|
|
|
const unsigned char* begin_ptr() const;
|
|
|
|
const unsigned char* end_ptr() const;
|
2020-10-20 18:47:34 +03:00
|
|
|
size_t calculate_length() const;
|
2019-08-28 00:57:15 +03:00
|
|
|
|
|
|
|
StringView m_string;
|
2020-10-20 18:47:34 +03:00
|
|
|
mutable size_t m_length { 0 };
|
|
|
|
mutable bool m_have_length { false };
|
2019-08-28 00:57:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-04 22:05:41 +03:00
|
|
|
using AK::Utf8CodepointIterator;
|
2019-08-28 00:57:15 +03:00
|
|
|
using AK::Utf8View;
|