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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
// 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 std::str;
use std::collections::HashMap;
use super::{
AttributeId,
AttributeValue,
Document,
ElementId,
Error,
FromStream,
Node,
NodeType,
ParseOptions,
ValueId,
};
use types::{
Color,
Transform,
Length,
LengthUnit
};
use types::path;
use svgparser::{
AttributeValue as ParserAttributeValue,
PaintFallback,
Stream,
};
use svgparser::svg;
use svgparser::style;
struct CssData<'a> {
by_tag: HashMap<ElementId, Stream<'a>>,
by_class: HashMap<&'a [u8], Stream<'a>>,
}
struct NodeTextData<'a> {
node: Node,
stream: Stream<'a>,
}
struct LinkData<'a> {
attr_id: AttributeId,
iri: &'a [u8],
fallback: Option<PaintFallback>,
node: Node,
}
struct Links<'a> {
// List of unresolved IRI.
list: Vec<LinkData<'a>>,
// Store all nodes with id's.
elems_with_id: HashMap<&'a [u8], Node>,
}
type Entities<'a> = HashMap<&'a [u8], &'a [u8]>;
struct PostData<'a> {
css: CssData<'a>,
links: Links<'a>,
entitis: Entities<'a>,
// List of element with 'class' attribute.
// We can't process it inplace, because styles can be set after usage.
classes: Vec<NodeTextData<'a>>,
// List of style attributes.
styles: Vec<NodeTextData<'a>>,
}
macro_rules! u8_to_string {
($text:expr) => (String::from_utf8_lossy($text).as_ref())
}
pub fn parse_svg(data: &[u8], opt: &ParseOptions) -> Result<Document, Error> {
let doc = Document::new();
let mut parent = doc.root();
let mut tokenizer = svg::Tokenizer::new(data);
// Since we not only parsing, but also converting an SVG structure,
// we can't do everything in one take.
// At first, we create nodes structure with attributes.
// Than apply CSS. And then ungroup style attributes.
// Order is important, otherwise we get rendering error.
let mut post_data = PostData {
css: CssData {
by_tag: HashMap::new(),
by_class: HashMap::new(),
},
links: Links {
list: Vec::new(),
elems_with_id: HashMap::new(),
},
entitis: HashMap::new(),
classes: Vec::new(),
styles: Vec::new(),
};
// process SVG tokens
let mut node: Option<Node> = None;
while let Some(item) = tokenizer.next() {
match item {
Ok(t) => try!(process_token(&doc, t, &mut tokenizer,
&mut node, &mut parent,
&mut post_data, &opt)),
Err(e) => return Err(Error::ParseError(e)),
}
}
// document must contain any children
if !doc.root().has_children_nodes() {
return Err(Error::EmptyDocument);
}
// first element must be an 'svg'
match doc.children().nth(0) {
Some(n) => {
if !n.is_tag_id(ElementId::Svg) {
return Err(Error::NoSvgElement);
}
}
None => {
return Err(Error::NoSvgElement);
}
}
try!(resolve_css(&doc, &mut post_data, &opt));
// resolve styles
for d in &post_data.styles {
try!(parse_style_attribute(&d.node, d.stream.clone(), &mut post_data.links,
&post_data.entitis, &opt));
}
try!(resolve_links(&post_data.links));
Ok(doc)
}
fn process_token<'a>(doc: &Document,
token: svg::Token<'a>,
tokenizer: &mut svg::Tokenizer<'a>,
node: &mut Option<Node>,
parent: &mut Node,
post_data: &mut PostData<'a>,
opt: &ParseOptions)
-> Result<(), Error> {
macro_rules! create_node {
($nodetype:expr, $buf:expr) => ({
let e = doc.create_node($nodetype, u8_to_str!($buf));
*node = Some(e.clone());
parent.append(&e);
})
}
match token {
svg::Token::ElementStart(s) => {
match ElementId::from_name(u8_to_str!(s)) {
Some(eid) => {
let res = try!(parse_svg_element(&doc, tokenizer, eid,
&mut post_data.css, &opt));
if let Some(n) = res {
*node = Some(n.clone());
parent.append(&n);
}
}
None => {
if !opt.parse_unknown_elements {
try!(skip_current_element(tokenizer));
} else {
// create new node
let e = try!(doc.create_nonsvg_element(u8_to_string!(s)));
*node = Some(e.clone());
parent.append(&e);
}
}
}
}
svg::Token::Attribute(name, val) => {
let n = node.as_ref().unwrap();
if n.is_svg_element() {
try!(parse_attribute(&n,
&name,
&mut val.clone(),
post_data,
&opt));
} else {
// TODO: store as &str not String
if opt.parse_unknown_attributes {
// we keep all attributes from unknown elements as unknown
n.unknown_attributes_mut().insert(u8_to_str!(name).to_string(),
u8_to_str!(val.slice()).to_string());
}
}
}
svg::Token::ElementEnd(end) => {
match end {
svg::ElementEnd::Empty => {}
svg::ElementEnd::Close(_) => {
if !parent.same_node(&doc.root()) {
*parent = parent.parent().unwrap();
}
}
svg::ElementEnd::Open => {
if let Some(ref n) = *node {
*parent = n.clone();
}
}
}
}
svg::Token::Text(s) => {
create_node!(NodeType::Text, s.slice());
}
svg::Token::Comment(s) => {
if opt.parse_comments {
create_node!(NodeType::Comment, s)
}
}
svg::Token::Cdata(s) => {
create_node!(NodeType::Cdata, s.slice());
}
svg::Token::Whitespace(_) => {
// do nothing
}
svg::Token::Declaration(s) => {
// TODO: check that it UTF-8
if opt.parse_declarations {
create_node!(NodeType::Declaration, s);
}
}
svg::Token::DtdStart(_) => {
// do nothing
}
svg::Token::DtdEmpty(_) => {
// do nothing
}
svg::Token::Entity(name, value) => {
// check that ENTITY does not contain an element(s)
let mut s = value;
s.skip_spaces();
if !s.at_end() {
if s.curr_char_raw() == b'<' {
return Err(Error::UnsupportedEntity(s.gen_error_pos()));
}
}
post_data.entitis.insert(name, value.slice());
}
svg::Token::DtdEnd => {
// do nothing
}
}
// check for 'svg' element only when we parsing root nodes,
// which is faster
if parent.node_type() == NodeType::Root {
// check that the first element of the doc is 'svg'
if let Some(n) = doc.children().nth(0) {
if !n.is_tag_id(ElementId::Svg) {
return Err(Error::NoSvgElement);
}
}
}
Ok(())
}
fn parse_svg_element<'a>(doc: &Document,
tokenizer: &mut svg::Tokenizer<'a>,
id: ElementId,
css: &mut CssData<'a>,
opt: &ParseOptions)
-> Result<Option<Node>, Error> {
if opt.skip_svg_elements.iter().any(|x| *x == id) {
try!(skip_current_element(tokenizer));
return Ok(None);
}
// We never create 'style' element.
// If 'style' element is empty - we skip it.
// If it contains CDATA/CSS - we parse it and store it for future use,
// but node and it's content doesn't imported to DOM.
if id == ElementId::Style {
// TODO: process only style with 'type='text/css'' or no 'type' attr.
// skip attributes, since we only interested in CDATA.
while let Some(subitem) = tokenizer.next() {
match subitem {
Ok(st) => {
match st {
svg::Token::Attribute(_, _) => {}
svg::Token::ElementEnd(svg::ElementEnd::Empty) => {
// if 'style' do not have children - return
return Ok(None);
}
_ => break,
}
}
Err(e) => {
return Err(Error::ParseError(e));
}
}
}
// TODO: check if two or more style elements can exist and how to
// process them.
// 'style' node can contain not only one CDATA block,
// so we process all of them.
// Also style node can contain only text.
while let Some(subitem) = tokenizer.next() {
match subitem {
Ok(st) => {
match st {
svg::Token::Cdata(s)
| svg::Token::Text(s) => try!(parse_css(&mut s.clone(), css)),
svg::Token::Whitespace(_) => {}
_ => break,
}
}
Err(e) => {
return Err(Error::ParseError(e));
}
}
}
Ok(None)
} else {
// create new node
let e = doc.create_element(id);
Ok(Some(e.clone()))
}
}
fn parse_attribute<'a>(node: &Node,
name: &'a [u8],
stream: &mut Stream<'a>,
post_data: &mut PostData<'a>,
opt: &ParseOptions)
-> Result<(), Error> {
match AttributeId::from_name(u8_to_str!(name)) {
Some(id) => {
match id {
AttributeId::Id => {
node.set_id(u8_to_string!(stream.slice()));
post_data.links.elems_with_id.insert(stream.slice(), node.clone());
}
AttributeId::Style => {
post_data.styles.push(NodeTextData {
node: node.clone(),
stream: *stream,
})
}
AttributeId::Transform
| AttributeId::GradientTransform
| AttributeId::PatternTransform => {
let ts = try!(Transform::from_stream(stream.clone()));
node.set_attribute(id, AttributeValue::Transform(ts));
}
AttributeId::D => {
let p = try!(path::Path::from_stream(stream.clone()));
node.set_attribute(AttributeId::D, AttributeValue::Path(p));
}
AttributeId::Class => {
post_data.classes.push(NodeTextData {
node: node.clone(),
stream: *stream,
})
}
_ => {
try!(parse_svg_attribute(&node, id, stream, &mut post_data.links,
&post_data.entitis, opt));
}
}
}
None => {
if !opt.parse_unknown_attributes {
return Ok(());
}
let value2;
if !stream.at_end() && stream.is_char_eq_raw(b'&') {
stream.advance_raw(1);
let link = stream.slice_next_raw(stream.len_to_or_end(b';'));
match post_data.entitis.get(link) {
Some(link_value) => value2 = Some(*link_value),
None => {
println!("Warning: Could not resolve ENTITY: '{}'.", u8_to_str!(link));
value2 = None;
}
}
} else {
value2 = Some(stream.slice());
}
if let Some(val) = value2 {
node.unknown_attributes_mut()
.insert(u8_to_str!(name).to_string(),
u8_to_str!(val).to_string());
}
}
}
Ok(())
}
fn parse_svg_attribute<'a>(node: &Node,
id: AttributeId,
stream: &mut Stream<'a>,
links: &mut Links<'a>,
entitis: &Entities<'a>,
opt: &ParseOptions)
-> Result<(), Error> {
let tag_id = node.tag_id().unwrap();
let val = match try!(ParserAttributeValue::from_stream(tag_id, id, stream)) {
ParserAttributeValue::String(v) => Some(AttributeValue::String(u8_to_str!(v).to_string())),
ParserAttributeValue::IRI(link)
| ParserAttributeValue::FuncIRI(link) => {
try!(process_link(link, None, id, node, links));
None
}
ParserAttributeValue::FuncIRIWithFallback(link, ref fallback) => {
try!(process_link(link, Some(fallback.clone()), id, node, links));
None
}
ParserAttributeValue::Number(v) => Some(AttributeValue::Number(v)),
ParserAttributeValue::NumberList(list) => {
let mut vec = Vec::new();
for number in list {
match number {
Ok(n) => vec.push(n),
Err(e) => return Err(Error::ParseError(e)),
}
}
Some(AttributeValue::NumberList(vec))
}
ParserAttributeValue::Length(v) => {
if opt.parse_px_unit {
Some(AttributeValue::Length(Length::new(v.num, v.unit)))
} else {
if v.unit == LengthUnit::Px {
let mut newv = v;
newv.unit = LengthUnit::None;
Some(AttributeValue::Length(Length::new(newv.num, newv.unit)))
} else {
Some(AttributeValue::Length(Length::new(v.num, v.unit)))
}
}
}
ParserAttributeValue::LengthList(list) => {
let mut vec = Vec::new();
for number in list {
match number {
Ok(n) => vec.push(Length::new(n.num, n.unit)),
Err(e) => return Err(Error::ParseError(e)),
}
}
Some(AttributeValue::LengthList(vec))
}
ParserAttributeValue::Color(v) => {
Some(AttributeValue::Color(Color::new(v.red, v.green, v.blue)))
}
ParserAttributeValue::PredefValue(v) => Some(AttributeValue::PredefValue(v)),
ParserAttributeValue::EntityRef(link) => {
match entitis.get(link) {
Some(link_value) => {
let mut s = Stream::new(link_value);
try!(parse_svg_attribute(node, id, &mut s,
links, entitis, opt));
None
}
None => {
// keep original link
let mut s = String::new();
s.push('&');
s.push_str(&u8_to_str!(link).to_string());
s.push(';');
if link[0] != b'#' {
// If link starts with # - than it's probably a Unicode code point.
// Otherwise - unknown reference.
println!("Warning: Unresolved ENTITY reference: '{}'.", s);
}
Some(AttributeValue::String(s))
}
}
}
};
if let Some(v) = val {
node.set_attribute(id, v);
}
Ok(())
}
fn process_link<'a>(iri: &'a [u8],
fallback: Option<PaintFallback>,
aid: AttributeId,
node: &Node,
links: &mut Links<'a>)
-> Result<(), Error> {
match links.elems_with_id.get(iri) {
Some(link_node) => {
try!(resolve_link(node, link_node, aid, iri, &fallback));
}
None => {
// If linked element is not found, keep this IRI until we finish
// parsing of the whole doc. Since IRI can reference elements in any order
// and we just not parsed this element yet.
// Then we can check again.
links.list.push(LinkData {
attr_id: aid,
iri: iri,
fallback: fallback,
node: node.clone(),
});
}
}
Ok(())
}
fn parse_css<'a>(stream: &mut Stream<'a>, css: &mut CssData<'a>) -> Result<(), Error> {
// we support only tiny subset of the CSS2 spec
fn is_valid_css_char(c: u8) -> bool {
match c {
b'#' | b'@' | b':' | b'+' | b'[' | b']' | b'*' | b'>' => false,
_ => true,
}
}
while !stream.at_end() {
stream.skip_spaces();
if stream.at_end() {
break;
}
// skip comments
if try!(stream.is_char_eq(b'/')) {
try!(stream.advance(2)); // skip /*
while !stream.at_end() {
try!(stream.jump_to(b'*'));
try!(stream.advance(1));
if try!(stream.is_char_eq(b'/')) {
stream.advance_raw(1);
break;
}
}
stream.skip_spaces();
continue;
}
if !is_valid_css_char(try!(stream.curr_char())) {
return Err(Error::UnsupportedCSS(stream.gen_error_pos()));
}
let pos = stream.pos();
// parse selectors
let selectors = try!(stream.read_to_trimmed(b'{'));
if let Some(_) = selectors.iter().position(|c| !is_valid_css_char(*c)) {
stream.set_pos_raw(pos);
return Err(Error::UnsupportedCSS(stream.gen_error_pos()));
}
stream.advance_raw(1);
stream.skip_spaces();
// parse declaration
let decl_len = try!(stream.len_to(b'}'));
let substream = Stream::sub_stream(stream, stream.pos(), stream.pos() + decl_len);
// split selectors
//
// we support only tag and class selectors
let mut s = Stream::new(selectors);
while !s.at_end() {
let is_class = s.is_char_eq_raw(b'.');
if is_class {
s.advance_raw(1);
}
let l = s.len_to_or_end(b',');
let name = s.read_raw(l);
if is_class {
css.by_class.insert(name, substream);
} else {
if let Some(eid) = ElementId::from_name(u8_to_str!(name)) {
css.by_tag.insert(eid, substream);
} else {
// CSS for a non-SVG element is not supported
stream.set_pos_raw(pos);
return Err(Error::UnsupportedCSS(stream.gen_error_pos()));
}
}
if !s.at_end() && s.is_char_eq_raw(b',') {
s.advance_raw(1);
}
s.skip_spaces();
}
stream.advance_raw(decl_len + 1); // }
stream.skip_spaces();
}
Ok(())
}
fn parse_style_attribute<'a>(node: &Node,
stream: Stream<'a>,
links: &mut Links<'a>,
entitis: &Entities<'a>,
opt: &ParseOptions)
-> Result<(), Error> {
let s = style::Tokenizer::new(stream);
for item in s {
match item {
Ok(token) => {
match token {
style::Token::Attribute(name, substream) => {
match AttributeId::from_name(u8_to_str!(name)) {
Some(id) => {
try!(parse_svg_attribute(&node, id, &mut substream.clone(),
links, entitis, opt));
}
None => {
if opt.parse_unknown_attributes {
node.unknown_attributes_mut()
.insert(u8_to_str!(name).to_string(),
u8_to_str!(substream.slice()).to_string());
}
}
}
}
style::Token::EntityRef(name) => {
if let Some(value) = entitis.get(name) {
// TODO: to proper stream
let ss = Stream::new(value);
try!(parse_style_attribute(&node, ss, links, entitis, opt));
}
}
}
}
Err(e) => return Err(Error::ParseError(e)),
}
}
Ok(())
}
fn resolve_css<'a>(doc: &Document,
post_data: &mut PostData<'a>,
opt: &ParseOptions)
-> Result<(), Error> {
for d in &post_data.classes {
let mut s = d.stream;
while !s.at_end() {
s.skip_spaces();
let len = s.len_to_space_or_end();
let class = s.read_raw(len);
match post_data.css.by_class.get(class) {
Some(stream) => {
try!(parse_style_attribute(&d.node, stream.clone(),
&mut post_data.links,
&post_data.entitis, &opt));
}
None => {
println!("Warning: Could resolve unknown class: {}.",
u8_to_str!(class));
}
}
s.skip_spaces();
}
}
for (k, v) in &post_data.css.by_tag {
for node in doc.descendants() {
if node.tag_id().unwrap() == *k {
try!(parse_style_attribute(&node, v.clone(), &mut post_data.links,
&post_data.entitis, &opt));
}
}
}
Ok(())
}
fn resolve_links(links: &Links) -> Result<(), Error> {
for d in &links.list {
match links.elems_with_id.get(d.iri) {
Some(node) => {
try!(resolve_link(&d.node, node, d.attr_id, d.iri, &d.fallback));
}
None => {
// check that <paint> contains a fallback value before showing a warning
match d.fallback {
Some(fallback) => {
match fallback {
PaintFallback::PredefValue(v) => d.node.set_attribute(d.attr_id, v),
PaintFallback::Color(c) =>
d.node.set_attribute(d.attr_id, Color::new(c.red, c.green, c.blue)),
}
}
None => {
match d.attr_id {
AttributeId::Filter => {
// If an element has a 'filter' attribute with a broken FuncIRI,
// then it shouldn't be rendered. But we can't express such behavior
// in the svgdom now.
// It's not the best solution, but it works.
if d.node.is_tag_id(ElementId::Use) {
// TODO: find a solution
// For some reasons if we remove attribute with a broken filter
// from 'use' elements - image will become broken.
// Have no idea why this is happening.
//
// You can test this issue on:
// breeze-icons/icons/actions/22/color-management.svg
return Err(Error::BrokenFuncIri(u8_to_str!(d.iri).to_string()));
}
if d.node.parent_element(ElementId::Mask).is_some()
|| d.node.parent_element(ElementId::ClipPath).is_some()
|| d.node.parent_element(ElementId::Marker).is_some() {
// If our element is inside one of this elements - then do nothing.
// I can't find explanation of this in the SVG spec, but it works.
// Probably because this elements only care about a shape,
// not a style.
println!("Warning: Could not resolve IRI reference: {}.",
u8_to_str!(d.iri));
} else {
// Imitate invisible element.
println!("Warning: Unresolved 'filter' link: '{}'. \
Marking the element as invisible.",
u8_to_str!(d.iri));
d.node.set_attribute(AttributeId::Visibility, ValueId::Hidden);
}
}
AttributeId::Fill => {
println!("Warning: Could not resolve the 'fill' IRI reference '{}'. \
Fallback to 'none'.",
u8_to_str!(d.iri));
d.node.set_attribute(AttributeId::Fill, ValueId::None);
}
_ => {
println!("Warning: Could not resolve IRI reference: {}.",
u8_to_str!(d.iri));
}
}
}
}
}
}
}
Ok(())
}
fn resolve_link(node: &Node,
ref_node: &Node,
aid: AttributeId,
iri: &[u8],
fallback: &Option<PaintFallback>)
-> Result<(), Error> {
// The SVG uses a fallback paint value not only when the FuncIRI is invalid, but also when
// a referenced element is invalid. And we don't now is it invalid or not.
// It will take tonnes of code to validate all supported referenced elements.
// So we just show an error.
match *fallback {
Some(_) =>
return Err(Error::UnsupportedPaintFallback(u8_to_str!(iri).to_string())),
None =>
try!(node.set_link_attribute(aid, ref_node.clone())),
}
Ok(())
}
fn skip_current_element(p: &mut svg::Tokenizer) -> Result<(), Error> {
let mut local_depth = 0;
for subitem in p {
match subitem {
Ok(st) => {
if let svg::Token::ElementEnd(end) = st {
match end {
svg::ElementEnd::Empty => {
if local_depth == 0 {
break;
}
}
svg::ElementEnd::Close(_) => {
local_depth -= 1;
if local_depth == 0 {
break;
}
}
svg::ElementEnd::Open => {
local_depth += 1;
}
}
}
}
Err(e) => {
return Err(Error::ParseError(e));
}
}
}
Ok(())
}