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
use crate::header::RtfHeader;
use crate::{Lexer, Parser, StyleBlock};
#[derive(Debug, Default, Clone, PartialEq)]
pub struct RtfDocument<'a> {
    pub header: RtfHeader<'a>,
    pub body: Vec<StyleBlock>,
}
// impl<'a> From<String> for RtfDocument<'a> {
//     // Create a RTF document from file content
//     fn from(file_content: String) -> Self {
//         let tokens = Lexer::scan(&file_content);
//         let document = Parser::new(tokens).parse();
//         return document;
//     }
// }
//
// impl<'a> From<&'a str> for RtfDocument<'a> {
//     // Create a RTF document from file content
//     fn from(file_content: &str) -> Self {
//         let tokens = Lexer::scan(file_content);
//         let document =  Parser::new(tokens).parse();
//         return document;
//     }
// }
impl<'a> RtfDocument<'a> {
    pub fn get_text(&self) -> String {
        let mut result = String::new();
        for style_block in &self.body {
            result.push_str(&style_block.text);
        }
        return result;
    }
}
#[cfg(test)]
pub(crate) mod tests {
    use crate::{Lexer, Parser, RtfDocument};
    #[test]
    fn test_get_text() {
        let rtf = r#"{ \rtf1\ansi{\fonttbl\f0\fswiss Helvetica;}\f0\pard Voici du texte en {\b gras}.\par }"#;
        let tokens = Lexer::scan(rtf).unwrap();
        let document = Parser::new(tokens).parse().unwrap();
        assert_eq!(
            document.get_text(),
            "Voici du texte en gras."
        )
    }
}