mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 21:05:00 +00:00

This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/Variant.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibXML/FundamentalTypes.h>
|
|
|
|
namespace XML {
|
|
|
|
struct Attribute {
|
|
Name name;
|
|
ByteString value;
|
|
};
|
|
|
|
struct Offset {
|
|
size_t offset { 0 };
|
|
size_t line { 0 };
|
|
size_t column { 0 };
|
|
};
|
|
|
|
struct Node {
|
|
struct Text {
|
|
StringBuilder builder;
|
|
};
|
|
struct Comment {
|
|
ByteString text;
|
|
};
|
|
struct Element {
|
|
Name name;
|
|
HashMap<Name, ByteString> attributes;
|
|
Vector<NonnullOwnPtr<Node>> children;
|
|
};
|
|
|
|
bool operator==(Node const&) const;
|
|
|
|
Offset offset;
|
|
Variant<Text, Comment, Element> content;
|
|
Node* parent { nullptr };
|
|
|
|
bool is_text() const { return content.has<Text>(); }
|
|
Text const& as_text() const { return content.get<Text>(); }
|
|
|
|
bool is_comment() const { return content.has<Comment>(); }
|
|
Comment const& as_comment() const { return content.get<Comment>(); }
|
|
|
|
bool is_element() const { return content.has<Element>(); }
|
|
Element const& as_element() const { return content.get<Element>(); }
|
|
};
|
|
}
|