mirror of
https://github.com/servo/servo.git
synced 2025-09-27 15:20:09 +01:00
Invalidate iterator over elements of a XPathResult when the document changes (#39411)
Also includes a fix to not throw a type error in `XPathResult.invalidIteratorState`. Testing: Includes a new web platform test Part of https://github.com/servo/servo/issues/34527 --------- Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
parent
9d7b438d6b
commit
2ccaf86ff6
4 changed files with 162 additions and 39 deletions
|
@ -6,11 +6,13 @@ use std::cell::{Cell, RefCell};
|
|||
|
||||
use dom_struct::dom_struct;
|
||||
use js::rust::HandleObject;
|
||||
use script_bindings::codegen::GenericBindings::WindowBinding::WindowMethods;
|
||||
|
||||
use crate::dom::bindings::codegen::Bindings::XPathResultBinding::{
|
||||
XPathResultConstants, XPathResultMethods,
|
||||
};
|
||||
use crate::dom::bindings::error::{Error, Fallible};
|
||||
use crate::dom::bindings::inheritance::Castable;
|
||||
use crate::dom::bindings::reflector::{Reflector, reflect_dom_object_with_proto};
|
||||
use crate::dom::bindings::root::{Dom, DomRoot};
|
||||
use crate::dom::bindings::str::DOMString;
|
||||
|
@ -84,9 +86,11 @@ impl From<Value> for XPathResultValue {
|
|||
pub(crate) struct XPathResult {
|
||||
reflector_: Reflector,
|
||||
window: Dom<Window>,
|
||||
/// The revision of the owner document when this result was created. When iterating over the
|
||||
/// values in the result, this is used to invalidate the iterator when the document is modified.
|
||||
version: Cell<u64>,
|
||||
result_type: Cell<XPathResultType>,
|
||||
value: RefCell<XPathResultValue>,
|
||||
iterator_invalid: Cell<bool>,
|
||||
iterator_pos: Cell<usize>,
|
||||
}
|
||||
|
||||
|
@ -112,13 +116,27 @@ impl XPathResult {
|
|||
XPathResult {
|
||||
reflector_: Reflector::new(),
|
||||
window: Dom::from_ref(window),
|
||||
version: Cell::new(
|
||||
window
|
||||
.Document()
|
||||
.upcast::<Node>()
|
||||
.inclusive_descendants_version(),
|
||||
),
|
||||
result_type: Cell::new(inferred_result_type),
|
||||
iterator_invalid: Cell::new(false),
|
||||
iterator_pos: Cell::new(0),
|
||||
value: RefCell::new(value),
|
||||
}
|
||||
}
|
||||
|
||||
fn document_changed_since_creation(&self) -> bool {
|
||||
let current_document_version = self
|
||||
.window
|
||||
.Document()
|
||||
.upcast::<Node>()
|
||||
.inclusive_descendants_version();
|
||||
current_document_version != self.version.get()
|
||||
}
|
||||
|
||||
/// NB: Blindly trusts `result_type` and constructs an object regardless of the contents
|
||||
/// of `value`. The exception is `XPathResultType::Any`, for which we look at the value
|
||||
/// to determine the type.
|
||||
|
@ -140,7 +158,12 @@ impl XPathResult {
|
|||
pub(crate) fn reinitialize_with(&self, result_type: XPathResultType, value: XPathResultValue) {
|
||||
self.result_type.set(result_type);
|
||||
*self.value.borrow_mut() = value;
|
||||
self.iterator_invalid.set(false);
|
||||
self.version.set(
|
||||
self.window
|
||||
.Document()
|
||||
.upcast::<Node>()
|
||||
.inclusive_descendants_version(),
|
||||
);
|
||||
self.iterator_pos.set(0);
|
||||
}
|
||||
}
|
||||
|
@ -183,48 +206,41 @@ impl XPathResultMethods<crate::DomTypeHolder> for XPathResult {
|
|||
|
||||
/// <https://dom.spec.whatwg.org/#dom-xpathresult-iteratenext>
|
||||
fn IterateNext(&self) -> Fallible<Option<DomRoot<Node>>> {
|
||||
// TODO(vlindhol): actually set `iterator_invalid` somewhere
|
||||
if self.iterator_invalid.get() {
|
||||
return Err(Error::Range(
|
||||
"Invalidated iterator for XPathResult, the DOM has mutated.".to_string(),
|
||||
));
|
||||
if !matches!(
|
||||
self.result_type.get(),
|
||||
XPathResultType::OrderedNodeIterator | XPathResultType::UnorderedNodeIterator
|
||||
) {
|
||||
return Err(Error::Type("Result is not an iterator".into()));
|
||||
}
|
||||
|
||||
match (&*self.value.borrow(), self.result_type.get()) {
|
||||
(
|
||||
XPathResultValue::Nodeset(nodes),
|
||||
XPathResultType::OrderedNodeIterator | XPathResultType::UnorderedNodeIterator,
|
||||
) => {
|
||||
let pos = self.iterator_pos.get();
|
||||
if pos >= nodes.len() {
|
||||
Ok(None)
|
||||
} else {
|
||||
let node = nodes[pos].clone();
|
||||
self.iterator_pos.set(pos + 1);
|
||||
Ok(Some(node))
|
||||
}
|
||||
},
|
||||
_ => Err(Error::Type(
|
||||
if self.document_changed_since_creation() {
|
||||
return Err(Error::InvalidState);
|
||||
}
|
||||
|
||||
let XPathResultValue::Nodeset(nodes) = &*self.value.borrow() else {
|
||||
return Err(Error::Type(
|
||||
"Can't iterate on XPathResult that is not a node-set".to_string(),
|
||||
)),
|
||||
));
|
||||
};
|
||||
|
||||
let position = self.iterator_pos.get();
|
||||
if position >= nodes.len() {
|
||||
Ok(None)
|
||||
} else {
|
||||
let node = nodes[position].clone();
|
||||
self.iterator_pos.set(position + 1);
|
||||
Ok(Some(node))
|
||||
}
|
||||
}
|
||||
|
||||
/// <https://dom.spec.whatwg.org/#dom-xpathresult-invaliditeratorstate>
|
||||
fn GetInvalidIteratorState(&self) -> Fallible<bool> {
|
||||
let is_iterator_invalid = self.iterator_invalid.get();
|
||||
if is_iterator_invalid ||
|
||||
matches!(
|
||||
self.result_type.get(),
|
||||
XPathResultType::OrderedNodeIterator | XPathResultType::UnorderedNodeIterator
|
||||
)
|
||||
{
|
||||
Ok(is_iterator_invalid)
|
||||
} else {
|
||||
Err(Error::Type(
|
||||
"Can't iterate on XPathResult that is not a node-set".to_string(),
|
||||
))
|
||||
}
|
||||
fn InvalidIteratorState(&self) -> bool {
|
||||
let is_iterable = matches!(
|
||||
self.result_type.get(),
|
||||
XPathResultType::OrderedNodeIterator | XPathResultType::UnorderedNodeIterator
|
||||
);
|
||||
|
||||
is_iterable && self.document_changed_since_creation()
|
||||
}
|
||||
|
||||
/// <https://dom.spec.whatwg.org/#dom-xpathresult-snapshotlength>
|
||||
|
|
|
@ -21,7 +21,7 @@ interface XPathResult {
|
|||
[Throws] readonly attribute DOMString stringValue;
|
||||
[Throws] readonly attribute boolean booleanValue;
|
||||
[Throws] readonly attribute Node? singleNodeValue;
|
||||
[Throws] readonly attribute boolean invalidIteratorState;
|
||||
readonly attribute boolean invalidIteratorState;
|
||||
[Throws] readonly attribute unsigned long snapshotLength;
|
||||
|
||||
[Throws] Node? iterateNext();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue