1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights
* reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHARACTER_DATA_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHARACTER_DATA_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/dom/node.h"
#include "third_party/blink/renderer/platform/bindings/parkable_string.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
class ExceptionState;
class NodeCloningData;
struct TextDiffRange;
class CORE_EXPORT CharacterData : public Node {
DEFINE_WRAPPERTYPEINFO();
public:
CharacterData(const CharacterData&) = delete;
CharacterData& operator=(const CharacterData&) = delete;
// Makes the data Parkable. This enables de-duplication and compression.
void MakeParkable();
const String& data() const {
return is_parkable_ ? parkable_data_.ToString() : data_;
}
void setData(const String&);
unsigned length() const {
return is_parkable_ ? parkable_data_.length() : data_.length();
}
String substringData(unsigned offset, unsigned count, ExceptionState&);
void appendData(const String&);
void replaceData(unsigned offset,
unsigned count,
const String&,
ExceptionState&);
void insertData(unsigned offset, const String&, ExceptionState&);
void deleteData(unsigned offset, unsigned count, ExceptionState&);
bool ContainsOnlyWhitespaceOrEmpty() const;
void ParserAppendData(const String&);
protected:
CharacterData(TreeScope& tree_scope,
const String& text,
ConstructionType type)
: Node(&tree_scope, type),
data_(!text.IsNull() ? text : g_empty_string),
is_parkable_(false) {
DCHECK(type == kCreateComment || type == kCreateText ||
type == kCreateCdataSection ||
type == kCreateProcessingInstruction || type == kCreateEditingText);
}
CharacterData(TreeScope& tree_scope, String&& text, ConstructionType type)
: Node(&tree_scope, type), data_(std::move(text)), is_parkable_(false) {
DCHECK(type == kCreateComment || type == kCreateText ||
type == kCreateCdataSection ||
type == kCreateProcessingInstruction || type == kCreateEditingText);
DCHECK(!is_parkable_);
if (data_.IsNull()) {
data_ = g_empty_string;
}
}
~CharacterData() noexcept override {
if (is_parkable_) {
parkable_data_.~ParkableString();
} else {
data_.~String();
}
}
void SetDataWithoutUpdate(const String& data) {
DCHECK(!data.IsNull());
if (!is_parkable_) {
data_ = data;
return;
}
is_parkable_ = false;
parkable_data_.~ParkableString();
new (&data_) String(data);
}
enum UpdateSource {
kUpdateFromParser,
kUpdateFromNonParser,
};
void DidModifyData(const String& old_value, UpdateSource);
union {
ParkableString parkable_data_;
String data_;
};
bool is_parkable_;
private:
String nodeValue() const final;
void setNodeValue(const String&, ExceptionState&) final;
bool IsCharacterDataNode() const final { return true; }
void SetDataAndUpdate(const String&,
const TextDiffRange&,
UpdateSource = kUpdateFromNonParser);
Node* Clone(Document& factory,
NodeCloningData& data,
ContainerNode* append_to,
ExceptionState& append_exception_state) const override;
virtual CharacterData* CloneWithData(Document&, const String&) const = 0;
bool IsContainerNode() const =
delete; // This will catch anyone doing an unnecessary check.
bool IsElementNode() const =
delete; // This will catch anyone doing an unnecessary check.
};
template <>
struct DowncastTraits<CharacterData> {
static bool AllowFrom(const Node& node) { return node.IsCharacterDataNode(); }
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHARACTER_DATA_H_
|