serenity/AK/StringView.h

123 lines
3.8 KiB
C
Raw Normal View History

2019-04-15 12:56:37 +00:00
#pragma once
#include <AK/Vector.h>
namespace AK {
class ByteBuffer;
class String;
class StringImpl;
2019-04-15 12:56:37 +00:00
class StringView {
public:
StringView() {}
StringView(const char* characters, size_t length)
: m_characters(characters)
, m_length(length)
{
}
StringView(const unsigned char* characters, size_t length)
: m_characters((const char*)characters)
, m_length(length)
{
}
2019-04-15 12:56:37 +00:00
StringView(const char* cstring)
: m_characters(cstring)
{
if (cstring) {
while (*(cstring++))
++m_length;
}
}
StringView(const ByteBuffer&);
StringView(const String&);
2019-04-15 12:56:37 +00:00
bool is_null() const { return !m_characters; }
2019-04-15 12:56:37 +00:00
bool is_empty() const { return m_length == 0; }
const char* characters_without_null_termination() const { return m_characters; }
size_t length() const { return m_length; }
char operator[](size_t index) const { return m_characters[index]; }
2019-04-15 12:56:37 +00:00
unsigned hash() const;
2019-09-12 11:13:07 +00:00
bool starts_with(const StringView&) const;
2019-12-29 12:44:30 +00:00
bool ends_with(const StringView&) const;
2019-09-12 11:13:07 +00:00
StringView substring_view(size_t start, size_t length) const;
Vector<StringView> split_view(char, bool keep_empty = false) const;
// Create a Vector of StringViews split by line endings. As of CommonMark
// 0.29, the spec defines a line ending as "a newline (U+000A), a carriage
// return (U+000D) not followed by a newline, or a carriage return and a
// following newline.".
Vector<StringView> lines(bool consider_cr = true) const;
// FIXME: These should be shared between String and StringView somehow!
unsigned to_uint(bool& ok) const;
int to_int(bool& ok) const;
// Create a new substring view of this string view, starting either at the beginning of
// the given substring view, or after its end, and continuing until the end of this string
// view (that is, for the remaining part of its length). For example,
//
// StringView str { "foobar" };
// StringView substr = str.substring_view(1, 2); // "oo"
// StringView substr_from = str.substring_view_starting_from_substring(subst); // "oobar"
// StringView substr_after = str.substring_view_starting_after_substring(subst); // "bar"
//
// Note that this only works if the string view passed as an argument is indeed a substring
// view of this string view, such as one created by substring_view() and split_view(). It
// does not work for arbitrary strings; for example declaring substr in the example above as
//
// StringView substr { "oo" };
//
// would not work.
StringView substring_view_starting_from_substring(const StringView& substring) const;
StringView substring_view_starting_after_substring(const StringView& substring) const;
bool operator==(const char* cstring) const
{
if (is_null())
return !cstring;
if (!cstring)
return false;
size_t other_length = strlen(cstring);
if (m_length != other_length)
return false;
return !memcmp(m_characters, cstring, m_length);
}
bool operator!=(const char* cstring) const
{
return !(*this == cstring);
}
bool operator==(const String&) const;
bool operator==(const StringView& other) const
{
if (is_null())
return other.is_null();
if (other.is_null())
return false;
if (length() != other.length())
return false;
return !memcmp(m_characters, other.m_characters, m_length);
}
bool operator!=(const StringView& other) const
{
return !(*this == other);
}
2019-04-15 12:56:37 +00:00
private:
friend class String;
const StringImpl* m_impl { nullptr };
2019-04-15 12:56:37 +00:00
const char* m_characters { nullptr };
size_t m_length { 0 };
2019-04-15 12:56:37 +00:00
};
}
using AK::StringView;