forked from servo/html5ever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoop-tree-builder.rs
111 lines (92 loc) · 3.11 KB
/
noop-tree-builder.rs
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
// Copyright 2014 The html5ever Project Developers. See the
// COPYRIGHT file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[macro_use] extern crate html5ever_atoms;
extern crate html5ever;
extern crate tendril;
use std::io;
use std::default::Default;
use std::collections::HashMap;
use std::borrow::Cow;
use tendril::{StrTendril, TendrilSink};
use html5ever::QualName;
use html5ever::parse_document;
use html5ever::tokenizer::Attribute;
use html5ever::tree_builder::{TreeSink, QuirksMode, NodeOrText};
struct Sink {
next_id: usize,
names: HashMap<usize, QualName>,
}
impl Sink {
fn get_id(&mut self) -> usize {
let id = self.next_id;
self.next_id += 2;
id
}
}
impl TreeSink for Sink {
type Handle = usize;
type Output = Self;
fn finish(self) -> Self { self }
fn get_document(&mut self) -> usize {
0
}
fn get_template_contents(&mut self, target: usize) -> usize {
if let Some(&qualname!(html, "template")) = self.names.get(&target) {
target + 1
} else {
panic!("not a template element")
}
}
fn same_node(&self, x: usize, y: usize) -> bool {
x == y
}
fn same_tree(&self, _x: usize, _y: usize) -> bool {
true
}
fn elem_name(&self, target: usize) -> QualName {
self.names.get(&target).expect("not an element").clone()
}
fn create_element(&mut self, name: QualName, _attrs: Vec<Attribute>) -> usize {
let id = self.get_id();
self.names.insert(id, name);
id
}
fn create_comment(&mut self, _text: StrTendril) -> usize {
self.get_id()
}
fn has_parent_node(&self, _node: usize) -> bool {
// `node` will have a parent unless a script moved it, and we're
// not running scripts. Therefore we can aways return true.
true
}
fn append_before_sibling(&mut self,
_sibling: usize,
_new_node: NodeOrText<usize>) { }
fn parse_error(&mut self, _msg: Cow<'static, str>) { }
fn set_quirks_mode(&mut self, _mode: QuirksMode) { }
fn append(&mut self, _parent: usize, _child: NodeOrText<usize>) { }
fn append_doctype_to_document(&mut self, _: StrTendril, _: StrTendril, _: StrTendril) { }
fn add_attrs_if_missing(&mut self, target: usize, _attrs: Vec<Attribute>) {
assert!(self.names.contains_key(&target), "not an element");
}
fn remove_from_parent(&mut self, _target: usize) { }
fn reparent_children(&mut self, _node: usize, _new_parent: usize) { }
fn mark_script_already_started(&mut self, _node: usize) { }
}
fn main() {
let sink = Sink {
next_id: 1,
names: HashMap::new(),
};
let stdin = io::stdin();
parse_document(sink, Default::default())
.from_utf8()
.read_from(&mut stdin.lock())
.unwrap();
}