aboutsummaryrefslogtreecommitdiff
path: root/src/reader/parser/inside_comment.rs
blob: fc983205ac5532b9f46770f98c58750f30ecb08e (plain)
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
use reader::events::XmlEvent;
use reader::lexer::Token;

use super::{Result, PullParser, State};

impl PullParser {
    pub fn inside_comment(&mut self, t: Token) -> Option<Result> {
        match t {
            // Double dash is illegal inside a comment
            Token::Chunk(ref s) if &s[..] == "--" => Some(self_error!(self; "Unexpected token inside a comment: --")),

            Token::CommentEnd if self.config.ignore_comments => {
                self.lexer.outside_comment();
                self.into_state_continue(State::OutsideTag)
            }

            Token::CommentEnd => {
                self.lexer.outside_comment();
                let data = self.take_buf();
                self.into_state_emit(State::OutsideTag, Ok(XmlEvent::Comment(data)))
            }

            _ if self.config.ignore_comments => None,  // Do not modify buffer if ignoring the comment

            _ => {
                t.push_to_string(&mut self.buf);
                None
            }
        }
    }

}