script/dom/characterdata/
characterdata.rs1use std::cell::LazyCell;
7
8use atomic_refcell::{AtomicRef, AtomicRefCell};
9use dom_struct::dom_struct;
10use js::context::JSContext;
11use script_bindings::codegen::InheritTypes::{CharacterDataTypeId, NodeTypeId, TextTypeId};
12use servo_base::text::{AssumeUnder4GB, RangeAny, Utf16CodeUnits, Utf32CodeUnits};
13
14use crate::dom::bindings::cell::AtomicSafeBorrowMut;
15use crate::dom::bindings::codegen::Bindings::CharacterDataBinding::CharacterDataMethods;
16use crate::dom::bindings::codegen::Bindings::NodeBinding::Node_Binding::NodeMethods;
17use crate::dom::bindings::codegen::Bindings::ProcessingInstructionBinding::ProcessingInstructionMethods;
18use crate::dom::bindings::codegen::UnionTypes::NodeOrString;
19use crate::dom::bindings::error::{Error, ErrorResult, Fallible};
20use crate::dom::bindings::inheritance::Castable;
21use crate::dom::bindings::root::{DomRoot, LayoutDom};
22use crate::dom::bindings::str::DOMString;
23use crate::dom::cdatasection::CDATASection;
24use crate::dom::comment::Comment;
25use crate::dom::document::Document;
26use crate::dom::element::Element;
27use crate::dom::mutationobserver::{Mutation, MutationObserver};
28use crate::dom::node::virtualmethods::vtable_for;
29use crate::dom::node::{ChildrenMutation, Node, NodeDamage};
30use crate::dom::processinginstruction::ProcessingInstruction;
31use crate::dom::text::Text;
32
33#[dom_struct]
35pub(crate) struct CharacterData {
36 node: Node,
37 #[no_trace]
38 data: AtomicRefCell<String>,
39}
40
41impl CharacterData {
42 pub(crate) fn new_inherited(data: DOMString, document: &Document) -> CharacterData {
43 CharacterData {
44 node: Node::new_inherited(document),
45 data: AtomicRefCell::new(String::from(data)),
46 }
47 }
48
49 pub(crate) fn clone_with_data(
50 &self,
51 cx: &mut js::context::JSContext,
52 data: DOMString,
53 document: &Document,
54 ) -> DomRoot<Node> {
55 match self.upcast::<Node>().type_id() {
56 NodeTypeId::CharacterData(CharacterDataTypeId::Comment) => {
57 DomRoot::upcast(Comment::new(cx, data, document, None))
58 },
59 NodeTypeId::CharacterData(CharacterDataTypeId::ProcessingInstruction) => {
60 let pi = self.downcast::<ProcessingInstruction>().unwrap();
61 DomRoot::upcast(ProcessingInstruction::new(cx, pi.Target(), data, document))
62 },
63 NodeTypeId::CharacterData(CharacterDataTypeId::Text(TextTypeId::CDATASection)) => {
64 DomRoot::upcast(CDATASection::new(cx, data, document))
65 },
66 NodeTypeId::CharacterData(CharacterDataTypeId::Text(TextTypeId::Text)) => {
67 DomRoot::upcast(Text::new(cx, data, document))
68 },
69 _ => unreachable!(),
70 }
71 }
72
73 #[inline]
74 pub(crate) fn data(&self) -> AtomicRef<'_, String> {
75 self.data.borrow()
76 }
77
78 #[inline]
79 pub(crate) fn append_data(&self, cx: &mut JSContext, data: &str) {
80 self.queue_mutation_record(cx);
81 self.data.safe_borrow_mut(cx.no_gc()).push_str(data);
82 self.content_changed(cx);
83 }
84
85 fn content_changed(&self, cx: &mut JSContext) {
86 let node = self.upcast::<Node>();
87 node.dirty(cx.no_gc(), NodeDamage::Other);
88
89 if self.is::<Text>() &&
93 let Some(parent_node) = node.GetParentNode()
94 {
95 let mutation = ChildrenMutation::ChangeText;
96 vtable_for(&parent_node).children_changed(cx, &mutation);
97 }
98 }
99
100 fn queue_mutation_record(&self, cx: &mut JSContext) {
102 let mutation = LazyCell::new(|| Mutation::CharacterData {
103 old_value: self.data.borrow().clone(),
104 });
105 MutationObserver::queue_a_mutation_record(cx, self.upcast::<Node>(), mutation);
106 }
107
108 pub(crate) fn set_text_run_selection(
110 &self,
111 new_range: Option<RangeAny<Utf32CodeUnits>>,
112 ) -> bool {
113 self.upcast::<Node>()
114 .layout_data()
115 .borrow()
116 .as_ref()
117 .is_some_and(|layout_data| layout_data.set_text_run_selection(new_range))
118 }
119
120 pub(crate) fn rendered_text(&self, range: RangeAny<Utf32CodeUnits>) -> Option<String> {
122 self.upcast::<Node>()
123 .layout_data()
124 .borrow()
125 .as_ref()
126 .and_then(|layout_data| layout_data.rendered_text(range))
127 }
128}
129
130impl CharacterDataMethods<crate::DomTypeHolder> for CharacterData {
131 fn Data(&self) -> DOMString {
133 DOMString::from(self.data.borrow().clone())
134 }
135
136 fn SetData(&self, cx: &mut JSContext, data: DOMString) {
138 self.queue_mutation_record(cx);
139 let old_length = self.Length();
140 *self.data.safe_borrow_mut(cx.no_gc()) = String::from(data.str());
141 self.content_changed(cx);
142
143 let mut utf16_length = None;
144 let mut lazy_length = move || {
146 *utf16_length
147 .get_or_insert_with(|| Utf16CodeUnits::length_of(AssumeUnder4GB, &data.str()).0)
148 };
149
150 let node: &Node = self.upcast();
151 let document = node.owner_doc_unrooted(cx.no_gc());
152 if let Some(selection) = document.selection() {
153 selection.replace_data_steps(node, 0, old_length, &mut lazy_length);
154 }
155 document.live_range_replace_data_steps(cx.no_gc(), node, 0, old_length, &mut lazy_length);
156 }
157
158 fn Length(&self) -> u32 {
160 Utf16CodeUnits::length_of(AssumeUnder4GB, &self.data.borrow()).0
162 }
163
164 fn SubstringData(&self, offset: u32, count: u32) -> Fallible<DOMString> {
166 let data = self.data.borrow();
167 let mut substring = String::new();
169 let remaining = match split_at_utf16_code_unit_offset(&data, offset) {
170 Ok((_, astral, s)) => {
171 if astral.is_some() {
175 substring += "\u{FFFD}";
176 }
177 s
178 },
179 Err(()) => return Err(Error::IndexSize(None)),
181 };
182 match split_at_utf16_code_unit_offset(remaining, count) {
183 Err(()) => substring += remaining,
185 Ok((s, astral, _)) => {
187 substring += s;
188 if astral.is_some() {
192 substring += "\u{FFFD}";
193 }
194 },
195 };
196 Ok(DOMString::from(substring))
197 }
198
199 fn AppendData(&self, cx: &mut JSContext, data: DOMString) {
201 self.append_data(cx, &data.str());
205 }
206
207 fn InsertData(&self, cx: &mut JSContext, offset: u32, arg: DOMString) -> ErrorResult {
209 self.ReplaceData(cx, offset, 0, arg)
211 }
212
213 fn DeleteData(&self, cx: &mut JSContext, offset: u32, count: u32) -> ErrorResult {
215 self.ReplaceData(cx, offset, count, DOMString::new())
217 }
218
219 fn ReplaceData(
221 &self,
222 cx: &mut JSContext,
223 offset: u32,
224 count: u32,
225 arg: DOMString,
226 ) -> ErrorResult {
227 let mut new_data;
228 {
229 let data = self.data.borrow();
230 let prefix;
231 let replacement_before;
232 let remaining;
233 match split_at_utf16_code_unit_offset(&data, offset) {
234 Ok((p, astral, r)) => {
235 prefix = p;
236 replacement_before = if astral.is_some() { "\u{FFFD}" } else { "" };
240 remaining = r;
241 },
242 Err(()) => return Err(Error::IndexSize(None)),
244 };
245 let replacement_after;
246 let suffix;
247 match split_at_utf16_code_unit_offset(remaining, count) {
248 Err(()) => {
250 replacement_after = "";
251 suffix = "";
252 },
253 Ok((_, astral, s)) => {
254 replacement_after = if astral.is_some() { "\u{FFFD}" } else { "" };
258 suffix = s;
259 },
260 };
261 self.queue_mutation_record(cx);
263
264 new_data = String::with_capacity(
266 prefix.len() +
267 replacement_before.len() +
268 usize::from(arg.len_utf8()) +
269 replacement_after.len() +
270 suffix.len(),
271 );
272 new_data.push_str(prefix);
273 new_data.push_str(replacement_before);
274 new_data.push_str(&arg.str());
275 new_data.push_str(replacement_after);
276 new_data.push_str(suffix);
277 }
278 *self.data.safe_borrow_mut(cx.no_gc()) = new_data;
279 self.content_changed(cx);
280
281 let node = self.upcast::<Node>();
282
283 let mut utf16_length = None;
284 let mut lazy_length = move || {
286 *utf16_length
287 .get_or_insert_with(|| Utf16CodeUnits::length_of(AssumeUnder4GB, &arg.str()).0)
288 };
289
290 let document = node.owner_doc_unrooted(cx.no_gc());
291 if let Some(selection) = document.selection() {
292 selection.replace_data_steps(node, offset, count, &mut lazy_length);
293 }
294 document.live_range_replace_data_steps(cx.no_gc(), node, offset, count, &mut lazy_length);
295
296 Ok(())
305 }
306
307 fn Before(&self, cx: &mut JSContext, nodes: Vec<NodeOrString>) -> ErrorResult {
309 self.upcast::<Node>().before(cx, nodes)
310 }
311
312 fn After(&self, cx: &mut JSContext, nodes: Vec<NodeOrString>) -> ErrorResult {
314 self.upcast::<Node>().after(cx, nodes)
315 }
316
317 fn ReplaceWith(&self, cx: &mut JSContext, nodes: Vec<NodeOrString>) -> ErrorResult {
319 self.upcast::<Node>().replace_with(cx, nodes)
320 }
321
322 fn Remove(&self, cx: &mut JSContext) {
324 self.upcast::<Node>().remove_self(cx);
325 }
326
327 fn GetPreviousElementSibling(&self) -> Option<DomRoot<Element>> {
329 self.upcast::<Node>()
330 .preceding_siblings()
331 .find_map(DomRoot::downcast)
332 }
333
334 fn GetNextElementSibling(&self) -> Option<DomRoot<Element>> {
336 self.upcast::<Node>()
337 .following_siblings()
338 .find_map(DomRoot::downcast)
339 }
340}
341
342impl<'dom> LayoutDom<'dom, CharacterData> {
343 #[inline]
344 pub(crate) fn data_for_layout(self) -> AtomicRef<'dom, str> {
345 AtomicRef::map(self.unsafe_get().data.borrow(), |data| &**data)
346 }
347}
348
349fn split_at_utf16_code_unit_offset(s: &str, offset: u32) -> Result<(&str, Option<char>, &str), ()> {
364 let mut code_units = 0;
365 for (i, c) in s.char_indices() {
366 if code_units == offset {
367 let (a, b) = s.split_at(i);
368 return Ok((a, None, b));
369 }
370 code_units += 1;
371 if c > '\u{FFFF}' {
372 if code_units == offset {
373 debug_assert_eq!(c.len_utf8(), 4);
374 warn!("Splitting a surrogate pair in CharacterData API.");
375 return Ok((&s[..i], Some(c), &s[i + c.len_utf8()..]));
376 }
377 code_units += 1;
378 }
379 }
380 if code_units == offset {
381 Ok((s, None, ""))
382 } else {
383 Err(())
384 }
385}