docx_reader/reader/
font_scheme.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
use std::io::Read;
use std::str::FromStr;
use xml::attribute::OwnedAttribute;
use xml::reader::{EventReader, XmlEvent};

use crate::reader::*;

impl ElementReader for FontScheme {
	fn read<R: Read>(
		r: &mut EventReader<R>,
		_attrs: &[OwnedAttribute],
	) -> Result<Self, ReaderError> {
		let mut fs = FontScheme::new();
		loop {
			let e = r.next();
			match e {
				Ok(XmlEvent::StartElement {
					attributes, name, ..
				}) => {
					match name.prefix.as_deref() {
						Some("a") => {
							let e = AXMLElement::from_str(&name.local_name).unwrap();
							match e {
								AXMLElement::MajorFont => {
									if let Ok(f) = FontGroup::read(r, &attributes) {
										fs.major_font = f;
									}
								}
								AXMLElement::MinorFont => {
									if let Ok(f) = FontGroup::read(r, &attributes) {
										fs.minor_font = f;
									}
								}
								_ => {}
							}
						}
						_ => {}
					};
				}
				Ok(XmlEvent::EndElement { name, .. }) => {
					let e = AXMLElement::from_str(&name.local_name).unwrap();
					match e {
						AXMLElement::FontScheme => {
							return Ok(fs);
						}
						_ => {}
					}
				}
				Err(_) => return Err(ReaderError::XMLReadError),
				_ => {}
			}
		}
	}
}