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
// Copyright (c) 2015-2016 lcov-parser developers
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.

//! Parser of LCOV report.

use combine:: { parser, Parser, ParseError as CombinatorParseError, State };
use record:: { LCOVRecord };
use combinator:: { record, report };
use std::fs:: { File };
use std::result:: { Result };
use std::io:: { Result as IOResult, Error as IOError, Read, BufRead, BufReader };
use std::path:: { Path };
use std::convert:: { From };
use std::fmt:: { Display, Formatter, Result as FormatResult };
use std::error::Error;

pub type ParseResult<T> = Result<T, RecordParseError>;

#[derive(PartialEq, Debug)]
pub struct RecordParseError {
    pub line: u32,
    pub column: u32,
    pub message: String
}

impl<'a> From<CombinatorParseError<State<&'a str>>> for RecordParseError {
    fn from(error: CombinatorParseError<State<&'a str>>) -> Self {
        let line = error.position.line;
        let column = error.position.column;

        RecordParseError {
            line: line as u32,
            column: column as u32,
            message: format!("{}", error)
        }
    }
}

impl Display for RecordParseError {
    fn fmt(&self, f: &mut Formatter) -> FormatResult {
        write!(f, "{}", self.message)
    }
}

impl Error for RecordParseError {
    fn description(&self) -> &str {
        &self.message[..]
    }
}

#[derive(Debug)]
pub enum ParseError {
    IOError(IOError),
    RecordParseError(RecordParseError)
}

impl From<IOError> for ParseError {
    fn from(err: IOError) -> Self {
        ParseError::IOError(err)
    }
}
impl From<RecordParseError> for ParseError {
    fn from(err: RecordParseError) -> Self {
        ParseError::RecordParseError(err)
    }
}

impl Error for ParseError {
    fn description(&self) -> &str {
        match self {
            &ParseError::IOError(ref err) => err.description(),
            &ParseError::RecordParseError(ref err) => err.description(),
        }
    }
}

impl Display for ParseError {
    fn fmt(&self, formatter: &mut Formatter) -> FormatResult {
        match self {
            &ParseError::IOError(ref err) => err.fmt(formatter),
            &ParseError::RecordParseError(ref err) => err.fmt(formatter),
        }
    }
}

/// Parse the record one line at a time
///
/// # Examples
///
/// ```
/// use std::fs:: { File };
/// use lcov_parser:: { LCOVRecord, LCOVParser };
///
/// let s = File::open("tests/fixtures/parser/report.lcov").unwrap();
///
/// let mut parser = LCOVParser::new(s);
/// let mut records = vec![];
///
/// loop {
///   let result = parser.next().unwrap();
///   match result {
///     Some(r) => { records.push(r) },
///     None => { break; }
///   }
/// }
///
/// assert_eq!(records[0], LCOVRecord::TestName(Some("test".to_string())));
/// ```
pub struct LCOVParser<T> {
    line: u32,
    reader: BufReader<T>
}

impl<T: Read> LCOVParser<T> {
    pub fn new(reader: T) -> Self {
        LCOVParser {
            line: 0,
            reader: BufReader::new(reader)
        }
    }
    pub fn parse(&mut self) -> Result<Vec<LCOVRecord>, ParseError> {
        let mut records = vec![];
        loop {
            let result = self.next()?;
            match result {
                Some(record) => records.push(record),
                None => { break; }
            }
        }
        Ok(records)
    }
    pub fn next(&mut self) -> Result<Option<LCOVRecord>, ParseError> {
        let mut line = String::new();
        let size = self.reader.read_line(&mut line)?;
        if size <= 0 {
            return Ok(None);
        }
        self.line += 1;
        let record = self.parse_record(line.as_str())?;
        return Ok( Some(record) );
    }
    fn parse_record(&mut self, line: &str) -> Result<LCOVRecord, RecordParseError> {
        match parse_record(line) {
            Ok(record) => Ok(record),
            Err(err) => {
                Err(RecordParseError {
                    line: self.line.clone(),
                    column: err.column,
                    message: err.message
                })
            }
        }
    }
}

pub trait FromFile<T> {
    fn from_file<P: AsRef<Path>>(path: P) -> IOResult<LCOVParser<T>>;
}

/// Create a parser from file
///
/// # Examples
///
/// ```
/// use lcov_parser:: { LCOVParser, LCOVRecord, FromFile };
///
/// let mut parser = LCOVParser::from_file("tests/fixtures/parser/report.lcov").unwrap();
/// let result = parser.next().unwrap();
///
/// assert_eq!(result, Some(LCOVRecord::TestName(Some("test".to_string()))));
/// ```
impl FromFile<File> for LCOVParser<File> {
    fn from_file<P: AsRef<Path>>(path: P) -> IOResult<LCOVParser<File>> {
        let file = File::open(path)?;
        Ok(LCOVParser::new(file))
    }
}

/// Parse the record
///
/// # Examples
///
/// ```
/// use lcov_parser:: { LCOVRecord, parse_record };
///
/// let result = parse_record("TN:test_name\n");
///
/// assert_eq!(result.unwrap(), LCOVRecord::TestName(Some("test_name".to_string())));
/// ```

#[inline]
pub fn parse_record(input: &str) -> ParseResult<LCOVRecord> {
    let (record, _) = parser(record).parse(State::new(input))?;
    Ok(record)
}

/// Parse the LCOV report
///
/// # Examples
///
/// ```
/// use lcov_parser:: { LCOVRecord, parse_report };
///
/// let result = parse_report("TN:test_name\nSF:/path/to/source.rs\n");
/// let records = result.unwrap();
///
/// assert_eq!(records.get(0).unwrap(), &LCOVRecord::TestName(Some("test_name".to_string())));
/// assert_eq!(records.get(1).unwrap(), &LCOVRecord::SourceFile("/path/to/source.rs".to_string()));
/// ```

#[inline]
pub fn parse_report(input: &str) -> ParseResult<Vec<LCOVRecord>> {
    let (records, _) = parser(report).parse(State::new(input))?;
    Ok(records)
}