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 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
/*! Represent an [XML 1.0](https://www.w3.org/TR/xml/) document as a read-only tree. The root point of the documentations is [`Document::parse`]. You can find more details in the [README] and [parsing doc]. The tree structure itself is a heavily modified <https://github.com/programble/ego-tree> License: ISC. [`Document::parse`]: struct.Document.html#method.parse [README]: https://github.com/RazrFalcon/roxmltree/blob/master/README.md [parsing doc]: https://github.com/RazrFalcon/roxmltree/blob/master/docs/parsing.md */ #![doc(html_root_url = "https://docs.rs/roxmltree/0.9.1")] #![forbid(unsafe_code)] #![warn(missing_docs)] extern crate xmlparser; use std::borrow::Cow; use std::fmt; use std::ops::Deref; use std::rc::Rc; pub use xmlparser::TextPos; mod parse; pub use crate::parse::*; /// The <http://www.w3.org/XML/1998/namespace> URI. pub const NS_XML_URI: &str = "http://www.w3.org/XML/1998/namespace"; /// The <http://www.w3.org/2000/xmlns/> URI. pub const NS_XMLNS_URI: &str = "http://www.w3.org/2000/xmlns/"; type Range = std::ops::Range<usize>; /// An XML tree container. /// /// A tree consists of [`Nodes`]. /// There are no separate structs for each node type. /// So you should check the current node type yourself via [`Node::node_type()`]. /// There are only [5 types](enum.NodeType.html): /// Root, Element, PI, Comment and Text. /// /// As you can see there are no XML declaration and CDATA types. /// The XML declaration is basically skipped, since it doesn't contain any /// valuable information (we support only UTF-8 anyway). /// And CDATA will be converted into a Text node as is, without /// any preprocessing (you can read more about it /// [here](https://github.com/RazrFalcon/roxmltree/blob/master/docs/parsing.md)). /// /// Also, the Text node data can be accessed from the text node itself or from /// the parent element via [`Node::text()`] or [`Node::tail()`]. /// /// [`Nodes`]: struct.Node.html /// [`Node::node_type()`]: struct.Node.html#method.node_type /// [`Node::text()`]: struct.Node.html#method.text /// [`Node::tail()`]: struct.Node.html#method.tail pub struct Document<'input> { /// An original data. /// /// Required for `text_pos` methods. text: &'input str, nodes: Vec<NodeData<'input>>, attrs: Vec<Attribute<'input>>, namespaces: Namespaces<'input>, } impl<'input> Document<'input> { /// Returns the root node. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e/>").unwrap(); /// assert!(doc.root().is_root()); /// assert!(doc.root().first_child().unwrap().has_tag_name("e")); /// ``` #[inline] pub fn root<'a>(&'a self) -> Node<'a, 'input> { Node { id: NodeId(0), d: &self.nodes[0], doc: self } } /// Returns the root element of the document. /// /// Unlike `root`, will return a first element node. /// /// The root element always exists. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<!-- comment --><e/>").unwrap(); /// assert!(doc.root_element().has_tag_name("e")); /// ``` #[inline] pub fn root_element<'a>(&'a self) -> Node<'a, 'input> { // `expect` is safe, because the `Document` is guarantee to have at least one element. self.root().first_element_child().expect("XML documents must contain a root element") } /// Returns an iterator over document's descendant nodes. /// /// Shorthand for `doc.root().descendants()`. #[inline] pub fn descendants(&self) -> Descendants { self.root().descendants() } /// Calculates `TextPos` in the original document from position in bytes. /// /// **Note:** this operation is expensive. /// /// # Examples /// /// ``` /// use roxmltree::*; /// /// let doc = Document::parse("\ /// <!-- comment --> /// <e/>" /// ).unwrap(); /// /// assert_eq!(doc.text_pos_at(10), TextPos::new(1, 11)); /// assert_eq!(doc.text_pos_at(9999), TextPos::new(2, 5)); /// ``` #[inline] pub fn text_pos_at(&self, pos: usize) -> TextPos { xmlparser::Stream::from(self.text).gen_text_pos_from(pos) } } impl<'input> fmt::Debug for Document<'input> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { if !self.root().has_children() { return write!(f, "Document []"); } macro_rules! writeln_indented { ($depth:expr, $f:expr, $fmt:expr) => { for _ in 0..$depth { write!($f, " ")?; } writeln!($f, $fmt)?; }; ($depth:expr, $f:expr, $fmt:expr, $($arg:tt)*) => { for _ in 0..$depth { write!($f, " ")?; } writeln!($f, $fmt, $($arg)*)?; }; } fn print_vec<T: fmt::Debug>(prefix: &str, data: &[T], depth: usize, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { if data.is_empty() { return Ok(()); } writeln_indented!(depth, f, "{}: [", prefix); for v in data { writeln_indented!(depth + 1, f, "{:?}", v); } writeln_indented!(depth, f, "]"); Ok(()) } fn print_children(parent: Node, depth: usize, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { for child in parent.children() { if child.is_element() { writeln_indented!(depth, f, "Element {{"); writeln_indented!(depth, f, " tag_name: {:?}", child.tag_name()); print_vec("attributes", child.attributes(), depth + 1, f)?; print_vec("namespaces", child.namespaces(), depth + 1, f)?; if child.has_children() { writeln_indented!(depth, f, " children: ["); print_children(child, depth + 2, f)?; writeln_indented!(depth, f, " ]"); } writeln_indented!(depth, f, "}}"); } else { writeln_indented!(depth, f, "{:?}", child); } } Ok(()) } writeln!(f, "Document [")?; print_children(self.root(), 1, f)?; writeln!(f, "]")?; Ok(()) } } /// List of supported node types. #[derive(Clone, Copy, PartialEq, Debug)] pub enum NodeType { /// The root node of the `Document`. Root, /// An element node. /// /// Only an element can have tag name and attributes. Element, /// A processing instruction. PI, /// A comment node. Comment, /// A text node. Text, } /// A processing instruction. #[derive(Clone, Copy, PartialEq, Debug)] #[allow(missing_docs)] pub struct PI<'input> { pub target: &'input str, pub value: Option<&'input str>, } /// Node ID. /// /// Index into a `Tree`-internal `Vec`. #[derive(Clone, Copy, PartialEq)] struct NodeId(usize); enum NodeKind<'input> { Root, Element { tag_name: ExpandedNameOwned<'input>, attributes: Range, namespaces: Range, }, PI(PI<'input>), Comment(&'input str), Text(Cow<'input, str>), } struct NodeData<'input> { parent: Option<NodeId>, prev_sibling: Option<NodeId>, next_sibling: Option<NodeId>, children: Option<(NodeId, NodeId)>, kind: NodeKind<'input>, range: Range, } /// An attribute. #[derive(Clone)] pub struct Attribute<'input> { name: ExpandedNameOwned<'input>, value: Cow<'input, str>, range: Range, value_range: Range, } impl<'input> Attribute<'input> { /// Returns attribute's namespace URI. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().attributes()[0].namespace(), None); /// assert_eq!(doc.root_element().attributes()[1].namespace(), Some("http://www.w3.org")); /// ``` #[inline] pub fn namespace(&self) -> Option<&str> { self.name.ns.as_ref().map(Uri::as_str) } /// Returns attribute's name. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().attributes()[0].name(), "a"); /// assert_eq!(doc.root_element().attributes()[1].name(), "a"); /// ``` #[inline] pub fn name(&self) -> &str { self.name.name } /// Returns attribute's value. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().attributes()[0].value(), "b"); /// assert_eq!(doc.root_element().attributes()[1].value(), "c"); /// ``` #[inline] pub fn value(&self) -> &str { &self.value } /// Returns attribute's name range in bytes in the original document. /// /// You can calculate a human-readable text position via [Document::text_pos_at]. /// /// ```text /// <e attr='value'/> /// ^ /// ``` /// /// [Document::text_pos_at]: struct.Document.html#method.text_pos_at #[inline] pub fn range(&self) -> Range { self.range.clone() } /// Returns attribute's value range in bytes in the original document. /// /// You can calculate a human-readable text position via [Document::text_pos_at]. /// /// ```text /// <e attr='value'/> /// ^ /// ``` /// /// [Document::text_pos_at]: struct.Document.html#method.text_pos_at #[inline] pub fn value_range(&self) -> Range { self.value_range.clone() } } impl<'input> PartialEq for Attribute<'input> { #[inline] fn eq(&self, other: &Attribute<'input>) -> bool { self.name == other.name && self.value == other.value } } impl<'input> fmt::Debug for Attribute<'input> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(f, "Attribute {{ name: {:?}, value: {:?} }}", self.name, self.value) } } /// A namespace. /// /// Contains URI and *prefix* pair. #[derive(Clone, PartialEq, Debug)] pub struct Namespace<'input> { name: Option<&'input str>, uri: Uri, } impl<'input> Namespace<'input> { /// Returns namespace name/prefix. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().namespaces()[0].name(), Some("n")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns='http://www.w3.org'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().namespaces()[0].name(), None); /// ``` #[inline] pub fn name(&self) -> Option<&str> { self.name } /// Returns namespace URI. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().namespaces()[0].uri(), "http://www.w3.org"); /// ``` #[inline] pub fn uri(&self) -> &str { self.uri.as_str() } } struct Namespaces<'input>(Vec<Namespace<'input>>); impl<'input> Namespaces<'input> { #[inline] fn push_ns(&mut self, name: Option<&'input str>, uri: String) { debug_assert_ne!(name, Some("")); self.0.push(Namespace { name, uri: Uri::new(uri), }); } #[inline] fn xml_uri(&self) -> Uri { self[0].uri.clone() } #[inline] fn exists(&self, start: usize, prefix: Option<&str>) -> bool { self[start..].iter().any(|ns| ns.name == prefix) } } impl<'input> Deref for Namespaces<'input> { type Target = Vec<Namespace<'input>>; #[inline] fn deref(&self) -> &Self::Target { &self.0 } } struct Uri(Rc<String>); impl Uri { #[inline] fn new(text: String) -> Self { Uri(Rc::new(text)) } #[inline] fn as_str(&self) -> &str { self.0.as_str() } } impl Clone for Uri { #[inline] fn clone(&self) -> Self { Uri(Rc::clone(&self.0)) } } impl PartialEq for Uri { #[inline] fn eq(&self, other: &Uri) -> bool { self.0.as_str() == other.0.as_str() } } impl fmt::Debug for Uri { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(f, "{:?}", self.0) } } #[derive(Clone, PartialEq)] struct ExpandedNameOwned<'input> { ns: Option<Uri>, prefix: &'input str, // Used only for closing tags matching during parsing. name: &'input str, } impl<'input> ExpandedNameOwned<'input> { #[inline] fn as_ref(&self) -> ExpandedName { ExpandedName { uri: self.ns.as_ref().map(Uri::as_str), name: self.name, } } } impl<'input> fmt::Debug for ExpandedNameOwned<'input> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { match self.ns { Some(ref ns) => write!(f, "{{{}}}{}", ns.as_str(), self.name), None => write!(f, "{}", self.name), } } } /// An expanded name. /// /// Contains an namespace URI and name pair. #[derive(Clone, Copy, PartialEq)] pub struct ExpandedName<'input> { uri: Option<&'input str>, name: &'input str, } impl<'input> ExpandedName<'input> { /// Returns a namespace URI. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().tag_name().namespace(), Some("http://www.w3.org")); /// ``` #[inline] pub fn namespace(&self) -> Option<&'input str> { self.uri } /// Returns a local name. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e/>").unwrap(); /// /// assert_eq!(doc.root_element().tag_name().name(), "e"); /// ``` #[inline] pub fn name(&self) -> &'input str { self.name } } impl<'input> fmt::Debug for ExpandedName<'input> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { match self.namespace() { Some(ns) => write!(f, "{{{}}}{}", ns, self.name), None => write!(f, "{}", self.name), } } } impl<'input> From<&'input str> for ExpandedName<'input> { #[inline] fn from(v: &'input str) -> Self { ExpandedName { uri: None, name: v, } } } impl<'input> From<(&'input str, &'input str)> for ExpandedName<'input> { #[inline] fn from(v: (&'input str, &'input str)) -> Self { ExpandedName { uri: Some(v.0), name: v.1, } } } /// A node. #[derive(Clone, Copy)] pub struct Node<'a, 'input: 'a> { /// Node ID. id: NodeId, /// Tree containing the node. doc: &'a Document<'input>, d: &'a NodeData<'input>, } impl<'a, 'input> Eq for Node<'a, 'input> {} impl<'a, 'input> PartialEq for Node<'a, 'input> { #[inline] fn eq(&self, other: &Self) -> bool { self.id == other.id && self.doc as *const _ == other.doc as *const _ && self.d as *const _ == other.d as *const _ } } impl<'a, 'input: 'a> Node<'a, 'input> { /// Returns node's type. #[inline] pub fn node_type(&self) -> NodeType { match self.d.kind { NodeKind::Root => NodeType::Root, NodeKind::Element { .. } => NodeType::Element, NodeKind::PI { .. } => NodeType::PI, NodeKind::Comment(_) => NodeType::Comment, NodeKind::Text(_) => NodeType::Text, } } /// Checks that node is a root node. #[inline] pub fn is_root(&self) -> bool { self.node_type() == NodeType::Root } /// Checks that node is an element node. #[inline] pub fn is_element(&self) -> bool { self.node_type() == NodeType::Element } /// Checks that node is a processing instruction node. #[inline] pub fn is_pi(&self) -> bool { self.node_type() == NodeType::PI } /// Checks that node is a comment node. #[inline] pub fn is_comment(&self) -> bool { self.node_type() == NodeType::Comment } /// Checks that node is a text node. #[inline] pub fn is_text(&self) -> bool { self.node_type() == NodeType::Text } /// Returns node's document. #[inline] pub fn document(&self) -> &'a Document<'input> { self.doc } /// Returns node's tag name. /// /// Returns an empty name with no namespace if the current node is not an element. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().tag_name().namespace(), Some("http://www.w3.org")); /// assert_eq!(doc.root_element().tag_name().name(), "e"); /// ``` #[inline] pub fn tag_name(&self) -> ExpandedName<'a> { match self.d.kind { NodeKind::Element { ref tag_name, .. } => tag_name.as_ref(), _ => "".into() } } /// Checks that node has a specified tag name. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap(); /// /// assert!(doc.root_element().has_tag_name("e")); /// assert!(doc.root_element().has_tag_name(("http://www.w3.org", "e"))); /// /// assert!(!doc.root_element().has_tag_name("b")); /// assert!(!doc.root_element().has_tag_name(("http://www.w4.org", "e"))); /// ``` pub fn has_tag_name<'n, N>(&self, name: N) -> bool where N: Into<ExpandedName<'n>>, { let name = name.into(); match self.d.kind { NodeKind::Element { ref tag_name, .. } => { match name.namespace() { Some(_) => tag_name.as_ref() == name, None => tag_name.name == name.name, } } _ => false, } } /// Returns node's default namespace URI. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().default_namespace(), Some("http://www.w3.org")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns:n='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().default_namespace(), None); /// ``` pub fn default_namespace(&self) -> Option<&'a str> { self.namespaces().iter().find(|ns| ns.name.is_none()).map(|v| v.uri.as_str()) } /// Returns a prefix for a given namespace URI. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns:n='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().lookup_prefix("http://www.w3.org"), Some("n")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns:n=''/>").unwrap(); /// /// assert_eq!(doc.root_element().lookup_prefix(""), Some("n")); /// ``` pub fn lookup_prefix(&self, uri: &str) -> Option<&'a str> { if uri == NS_XML_URI { return Some("xml"); } self.namespaces().iter().find(|ns| ns.uri.as_str() == uri).map(|v| v.name).unwrap_or(None) } /// Returns an URI for a given prefix. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns:n='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().lookup_namespace_uri(Some("n")), Some("http://www.w3.org")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap(); /// /// assert_eq!(doc.root_element().lookup_namespace_uri(None), Some("http://www.w3.org")); /// ``` pub fn lookup_namespace_uri(&self, prefix: Option<&'a str>) -> Option<&'a str> { self.namespaces().iter().find(|ns| ns.name == prefix).map(|v| v.uri.as_str()) } /// Returns element's attribute value. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("<e a='b'/>").unwrap(); /// /// assert_eq!(doc.root_element().attribute("a"), Some("b")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().attribute("a"), Some("b")); /// assert_eq!(doc.root_element().attribute(("http://www.w3.org", "a")), Some("c")); /// ``` pub fn attribute<'n, N>(&self, name: N) -> Option<&'a str> where N: Into<ExpandedName<'n>>, { let name = name.into(); self.attributes().iter().find(|a| a.name.as_ref() == name).map(|a| a.value.as_ref()) } /// Returns element's attribute object. /// /// The same as [`attribute()`], but returns the `Attribute` itself instead of a value string. /// /// [`attribute()`]: struct.Node.html#method.attribute pub fn attribute_node<'n, N>(&self, name: N) -> Option<&'a Attribute<'input>> where N: Into<ExpandedName<'n>>, { let name = name.into(); self.attributes().iter().find(|a| a.name.as_ref() == name) } /// Checks that element has a specified attribute. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert!(doc.root_element().has_attribute("a")); /// assert!(doc.root_element().has_attribute(("http://www.w3.org", "a"))); /// /// assert!(!doc.root_element().has_attribute("b")); /// assert!(!doc.root_element().has_attribute(("http://www.w4.org", "a"))); /// ``` pub fn has_attribute<'n, N>(&self, name: N) -> bool where N: Into<ExpandedName<'n>>, { let name = name.into(); self.attributes().iter().any(|a| a.name.as_ref() == name) } /// Returns element's attributes. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org' a='b' n:a='c'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().attributes().len(), 2); /// ``` #[inline] pub fn attributes(&self) -> &'a [Attribute<'input>] { match self.d.kind { NodeKind::Element { ref attributes, .. } => &self.doc.attrs[attributes.clone()], _ => &[], } } /// Returns element's namespaces. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse( /// "<e xmlns:n='http://www.w3.org'/>" /// ).unwrap(); /// /// assert_eq!(doc.root_element().namespaces().len(), 1); /// ``` #[inline] pub fn namespaces(&self) -> &'a [Namespace<'input>] { match self.d.kind { NodeKind::Element { ref namespaces, .. } => { &self.doc.namespaces[namespaces.clone()] } _ => &[], } } /// Returns node's text. /// /// - for an element will return a first text child /// - for a comment will return a self text /// - for a text node will return a self text /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("\ /// <p> /// text /// </p> /// ").unwrap(); /// /// assert_eq!(doc.root_element().text(), /// Some("\n text\n")); /// assert_eq!(doc.root_element().first_child().unwrap().text(), /// Some("\n text\n")); /// ``` /// /// ``` /// let doc = roxmltree::Document::parse("<!-- comment --><e/>").unwrap(); /// /// assert_eq!(doc.root().first_child().unwrap().text(), Some(" comment ")); /// ``` #[inline] pub fn text(&self) -> Option<&'a str> { match self.d.kind { NodeKind::Element { .. } => { match self.first_child() { Some(child) if child.is_text() => { match self.doc.nodes[child.id.0].kind { NodeKind::Text(ref text) => Some(text), _ => None } } _ => None, } } NodeKind::Comment(text) => Some(text), NodeKind::Text(ref text) => Some(text), _ => None, } } /// Returns element's tail text. /// /// # Examples /// /// ``` /// let doc = roxmltree::Document::parse("\ /// <root> /// text1 /// <p/> /// text2 /// </root> /// ").unwrap(); /// /// let p = doc.descendants().find(|n| n.has_tag_name("p")).unwrap(); /// assert_eq!(p.tail(), Some("\n text2\n")); /// ``` #[inline] pub fn tail(&self) -> Option<&'a str> { if !self.is_element() { return None; } match self.next_sibling().map(|n| n.id) { Some(id) => { match self.doc.nodes[id.0].kind { NodeKind::Text(ref text) => Some(text), _ => None } } None => None, } } /// Returns node as Processing Instruction. #[inline] pub fn pi(&self) -> Option<PI<'input>> { match self.d.kind { NodeKind::PI(pi) => Some(pi), _ => None, } } #[inline] fn gen_node(&self, id: NodeId) -> Node<'a, 'input> { Node { id, d: &self.doc.nodes[id.0], doc: self.doc } } /// Returns the parent of this node. #[inline] pub fn parent(&self) -> Option<Self> { self.d.parent.map(|id| self.gen_node(id)) } /// Returns the parent element of this node. pub fn parent_element(&self) -> Option<Self> { self.ancestors().skip(1).filter(|n| n.is_element()).nth(0) } /// Returns the previous sibling of this node. #[inline] pub fn prev_sibling(&self) -> Option<Self> { self.d.prev_sibling.map(|id| self.gen_node(id)) } /// Returns the previous sibling element of this node. pub fn prev_sibling_element(&self) -> Option<Self> { self.prev_siblings().filter(|n| n.is_element()).nth(0) } /// Returns the next sibling of this node. #[inline] pub fn next_sibling(&self) -> Option<Self> { self.d.next_sibling.map(|id| self.gen_node(id)) } /// Returns the next sibling element of this node. pub fn next_sibling_element(&self) -> Option<Self> { self.next_siblings().filter(|n| n.is_element()).nth(0) } /// Returns the first child of this node. #[inline] pub fn first_child(&self) -> Option<Self> { self.d.children.map(|(id, _)| self.gen_node(id)) } /// Returns the first element child of this node. pub fn first_element_child(&self) -> Option<Self> { self.children().filter(|n| n.is_element()).nth(0) } /// Returns the last child of this node. #[inline] pub fn last_child(&self) -> Option<Self> { self.d.children.map(|(_, id)| self.gen_node(id)) } /// Returns the last element child of this node. pub fn last_element_child(&self) -> Option<Self> { self.children().filter(|n| n.is_element()).last() } /// Returns true if this node has siblings. #[inline] pub fn has_siblings(&self) -> bool { self.d.prev_sibling.is_some() || self.d.next_sibling.is_some() } /// Returns true if this node has children. #[inline] pub fn has_children(&self) -> bool { self.d.children.is_some() } /// Returns an iterator over ancestor nodes starting at this node. #[inline] pub fn ancestors(&self) -> Ancestors<'a, 'input> { Ancestors(Some(*self)) } /// Returns an iterator over previous sibling nodes. #[inline] pub fn prev_siblings(&self) -> PrevSiblings<'a, 'input> { PrevSiblings(self.prev_sibling()) } /// Returns an iterator over next sibling nodes. #[inline] pub fn next_siblings(&self) -> NextSiblings<'a, 'input> { NextSiblings(self.next_sibling()) } /// Returns an iterator over first children nodes. #[inline] pub fn first_children(&self) -> FirstChildren<'a, 'input> { FirstChildren(self.first_child()) } /// Returns an iterator over last children nodes. #[inline] pub fn last_children(&self) -> LastChildren<'a, 'input> { LastChildren(self.last_child()) } /// Returns an iterator over children nodes. #[inline] pub fn children(&self) -> Children<'a, 'input> { Children { front: self.first_child(), back: self.last_child() } } /// Returns an iterator which traverses the subtree starting at this node. #[inline] pub fn traverse(&self) -> Traverse<'a, 'input> { Traverse { root: *self, edge: None } } /// Returns an iterator over this node and its descendants. #[inline] pub fn descendants(&self) -> Descendants<'a, 'input> { Descendants(self.traverse()) } /// Returns node's range in bytes in the original document. #[inline] pub fn range(&self) -> Range { self.d.range.clone() } } impl<'a, 'input: 'a> fmt::Debug for Node<'a, 'input> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { match self.d.kind { NodeKind::Root => write!(f, "Root"), NodeKind::Element { .. } => { write!(f, "Element {{ tag_name: {:?}, attributes: {:?}, namespaces: {:?} }}", self.tag_name(), self.attributes(), self.namespaces()) } NodeKind::PI(pi) => { write!(f, "PI {{ target: {:?}, value: {:?} }}", pi.target, pi.value) } NodeKind::Comment(text) => write!(f, "Comment({:?})", text), NodeKind::Text(ref text) => write!(f, "Text({:?})", text), } } } macro_rules! axis_iterators { ($(#[$m:meta] $i:ident($f:path);)*) => { $( #[$m] #[derive(Clone)] pub struct $i<'a, 'input: 'a>(Option<Node<'a, 'input>>); impl<'a, 'input: 'a> Iterator for $i<'a, 'input> { type Item = Node<'a, 'input>; #[inline] fn next(&mut self) -> Option<Self::Item> { let node = self.0.take(); self.0 = node.as_ref().and_then($f); node } } )* }; } axis_iterators! { /// Iterator over ancestors. Ancestors(Node::parent); /// Iterator over previous siblings. PrevSiblings(Node::prev_sibling); /// Iterator over next siblings. NextSiblings(Node::next_sibling); /// Iterator over first children. FirstChildren(Node::first_child); /// Iterator over last children. LastChildren(Node::last_child); } /// Iterator over children. #[derive(Clone)] pub struct Children<'a, 'input: 'a> { front: Option<Node<'a, 'input>>, back: Option<Node<'a, 'input>>, } impl<'a, 'input: 'a> Iterator for Children<'a, 'input> { type Item = Node<'a, 'input>; #[inline] fn next(&mut self) -> Option<Self::Item> { if self.front == self.back { let node = self.front.take(); self.back = None; node } else { let node = self.front.take(); self.front = node.as_ref().and_then(Node::next_sibling); node } } } impl<'a, 'input: 'a> DoubleEndedIterator for Children<'a, 'input> { #[inline] fn next_back(&mut self) -> Option<Self::Item> { if self.back == self.front { let node = self.back.take(); self.front = None; node } else { let node = self.back.take(); self.back = node.as_ref().and_then(Node::prev_sibling); node } } } /// Open or close edge of a node. #[derive(Clone, Copy, PartialEq, Debug)] pub enum Edge<'a, 'input: 'a> { /// Open. Open(Node<'a, 'input>), /// Close. Close(Node<'a, 'input>), } /// Iterator which traverses a subtree. #[derive(Clone)] pub struct Traverse<'a, 'input: 'a> { root: Node<'a, 'input>, edge: Option<Edge<'a, 'input>>, } impl<'a, 'input: 'a> Iterator for Traverse<'a, 'input> { type Item = Edge<'a, 'input>; #[inline] fn next(&mut self) -> Option<Self::Item> { match self.edge { Some(Edge::Open(node)) => { self.edge = Some(match node.first_child() { Some(first_child) => Edge::Open(first_child), None => Edge::Close(node), }); } Some(Edge::Close(node)) => { if node == self.root { self.edge = None; } else if let Some(next_sibling) = node.next_sibling() { self.edge = Some(Edge::Open(next_sibling)); } else { self.edge = node.parent().map(Edge::Close); } } None => { self.edge = Some(Edge::Open(self.root)); } } self.edge } } /// Iterator over a node and its descendants. #[derive(Clone)] pub struct Descendants<'a, 'input: 'a>(Traverse<'a, 'input>); impl<'a, 'input: 'a> Iterator for Descendants<'a, 'input> { type Item = Node<'a, 'input>; #[inline] fn next(&mut self) -> Option<Self::Item> { for edge in &mut self.0 { if let Edge::Open(node) = edge { return Some(node); } } None } }