LCOV report parser for Rust.
Create a LCOVParser object, and then parse the data.
```rust extern crate lcov_parser;
use lcov_parser:: { LCOVParser, LCOVRecord };
fn main() { let content = concat!( "TN:testname\n", "SF:/path/to/source.rs\n", "DA:1,2\n", "DA:2,1\n", "DA:3,5\n", "endof_record\n" );
let records = LCOVParser::new(content).parse().unwrap();
for record in records.into_iter() {
match record {
LCOVRecord::TestName(name) => println!("Test: {}", name),
LCOVRecord::SourceFile(file_name) => println!("File: {}", file_name),
LCOVRecord::Data(line_number, execution_count, _) => println!("Line: {}, Executed: {}", line_number, execution_count),
LCOVRecord::EndOfRecord => println!("Finish"),
_ => { continue; }
}
}
} ```
It can also be used to parse the report file.
```rust let parser = LCOVParser::from_file("/path/to/report.lcov").unwrap(); let records = parser.parse().unwrap();
for record in records.iter() { match record { &LCOVRecord::SourceFile(ref name) => println!("start file: {}", name), &LCOVRecord::EndOfRecord => println!("end file"), _ => { continue; } } } ```
Licensed under either of * Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) * MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.