mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax.
97 lines
4.3 KiB
Rust
97 lines
4.3 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
use document_loader::DocumentLoader;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::DOMParserMethods;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Application_xhtml_xml;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Application_xml;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Text_html;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Text_xml;
|
|
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentReadyState;
|
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
|
use dom::bindings::error::Fallible;
|
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
|
use dom::bindings::root::{Dom, DomRoot};
|
|
use dom::bindings::str::DOMString;
|
|
use dom::document::{Document, HasBrowsingContext, IsHTMLDocument};
|
|
use dom::document::DocumentSource;
|
|
use dom::servoparser::ServoParser;
|
|
use dom::window::Window;
|
|
use dom_struct::dom_struct;
|
|
use script_traits::DocumentActivity;
|
|
|
|
#[dom_struct]
|
|
pub struct DOMParser {
|
|
reflector_: Reflector,
|
|
window: Dom<Window>, // XXXjdm Document instead?
|
|
}
|
|
|
|
impl DOMParser {
|
|
fn new_inherited(window: &Window) -> DOMParser {
|
|
DOMParser {
|
|
reflector_: Reflector::new(),
|
|
window: Dom::from_ref(window),
|
|
}
|
|
}
|
|
|
|
pub fn new(window: &Window) -> DomRoot<DOMParser> {
|
|
reflect_dom_object(Box::new(DOMParser::new_inherited(window)),
|
|
window,
|
|
DOMParserBinding::Wrap)
|
|
}
|
|
|
|
pub fn Constructor(window: &Window) -> Fallible<DomRoot<DOMParser>> {
|
|
Ok(DOMParser::new(window))
|
|
}
|
|
}
|
|
|
|
impl DOMParserMethods for DOMParser {
|
|
// https://w3c.github.io/DOM-Parsing/#the-domparser-interface
|
|
fn ParseFromString(&self,
|
|
s: DOMString,
|
|
ty: DOMParserBinding::SupportedType)
|
|
-> Fallible<DomRoot<Document>> {
|
|
let url = self.window.get_url();
|
|
let content_type = DOMString::from(ty.as_str());
|
|
let doc = self.window.Document();
|
|
let loader = DocumentLoader::new(&*doc.loader());
|
|
match ty {
|
|
Text_html => {
|
|
let document = Document::new(&self.window,
|
|
HasBrowsingContext::No,
|
|
Some(url.clone()),
|
|
doc.origin().clone(),
|
|
IsHTMLDocument::HTMLDocument,
|
|
Some(content_type),
|
|
None,
|
|
DocumentActivity::Inactive,
|
|
DocumentSource::FromParser,
|
|
loader,
|
|
None,
|
|
None);
|
|
ServoParser::parse_html_document(&document, s, url);
|
|
document.set_ready_state(DocumentReadyState::Complete);
|
|
Ok(document)
|
|
}
|
|
Text_xml | Application_xml | Application_xhtml_xml => {
|
|
// FIXME: this should probably be FromParser when we actually parse the string (#3756).
|
|
let document = Document::new(&self.window,
|
|
HasBrowsingContext::No,
|
|
Some(url.clone()),
|
|
doc.origin().clone(),
|
|
IsHTMLDocument::NonHTMLDocument,
|
|
Some(content_type),
|
|
None,
|
|
DocumentActivity::Inactive,
|
|
DocumentSource::NotFromParser,
|
|
loader,
|
|
None,
|
|
None);
|
|
ServoParser::parse_xml_document(&document, s, url);
|
|
Ok(document)
|
|
}
|
|
}
|
|
}
|
|
}
|