A library that support efficient parsing & writing log-messages encoded as Diagnositic
Log
and Trace
messages.
Add this to your Cargo.toml
:
toml
[dependencies]
dlt_core = "0.13"
This is an example of how to parse a message and serialize it back to a byte array.
```rust use dltcore::dltparse::{dlt_message, ParsedMessage};
fn main() {
let raw1: Vec
The parser is quite fast. Parsing a 4.8 GByte DLT file that contains over 3.5 mio messages took ~37 seconds (~134MB/sec)
This example can be built with cargo build --example file_parser --release
```rust use bufredux::{policy::MinBuffered, BufReader}; use dltcore::parse::{dlt_message, DltParseError}; use std::{env, fs, fs::File, io::BufRead, path::PathBuf, time::Instant};
pub(crate) const DLTREADERCAPACITY: usize = 10 * 1024 * 1024; pub(crate) const DLTMINBUFFER_SPACE: usize = 10 * 1024;
fn main() { // collect input file details let dltfilepath = PathBuf::from(&env::args().nth(1).expect("No filename given")); let dltfile = File::open(&dltfilepath).expect("could not open file"); let sourcefilesize = fs::metadata(&dltfilepath).expect("file size error").len(); // create a reader that maintains a minimum amount of bytes in it's buffer let mut reader = BufReader::withcapacity(DLTREADERCAPACITY, dltfile) .setpolicy(MinBuffered(DLTMINBUFFERSPACE)); // now parse all file content let mut parsed = 0usize; let start = Instant::now(); loop { let consumed: usize = match reader.fillbuf() { Ok(content) => { if content.is_empty() { println!("empty content after {} parsed messages", parsed); break; } let available = content.len();
match dlt_message(content, None, true) {
Ok((rest, _maybe_msg)) => {
let consumed = available - rest.len();
parsed += 1;
consumed
}
Err(DltParseError::IncompleteParse { needed }) => {
println!("parse incomplete, needed: {:?}", needed);
return;
}
Err(DltParseError::ParsingHickup(reason)) => {
println!("parse error: {}", reason);
4 //skip 4 bytes
}
Err(DltParseError::Unrecoverable(cause)) => {
println!("unrecoverable parse failure: {}", cause);
return;
}
}
}
Err(e) => {
println!("Error reading: {}", e);
return;
}
};
reader.consume(consumed);
}
// print some stats
let duration_in_s = start.elapsed().as_millis() as f64 / 1000.0;
let file_size_in_mb = source_file_size as f64 / 1024.0 / 1024.0;
let amount_per_second: f64 = file_size_in_mb / duration_in_s;
println!(
"parsing {} messages took {:.3}s! ({:.3} MB/s)",
parsed, duration_in_s, amount_per_second
);
} ```
empty content after 33554430 parsed messages parsing 33554430 messages took 37.015s! (133.773 MB/s)