Crates.io docs.rs build status github build status appveyor build status gitlab codecov

dlt_parse

A zero allocation rust library for basic parsing & writing DLT (Diagnostic Log and Trace) packets. Currently only the parsing and writing of the header is supported (excluding the verbose packet definitions).

Usage:

First, add the following to your Cargo.toml:

toml [dependencies] dlt_parse = "0.5"

Next, add this to your crate:

rust use dlt_parse;

What is dlt_parse?

dlt_parse is a library that aims to provide serialisation & deserialisation funtions for DLT (Diagnostic Log and Trace) packets. It should make it possible to anlyse recordings of DLT packets as fast as possible, as well as writing servers that send DLT packets to the network.

Some key points are:

Example: Serializing & Slicing/Deserializing DLT Packets

In this example a non verbose DLT packet is serialized and deserialized again. Specificly the serialized packet is converted into a DltPacketSlice. This has the advantage, that not all fields have to be deserialied to access the payload or specific fields in the header. Note that it is also possible to completely deserialize DLT headers with the DltHeader::read function. This can make sense, if most fields of the header are used anyways.

```rust use self::dlt_parse::{DltHeader, DltLogLevel, DltExtendedHeader, SliceIterator};

let header = { let mut header = DltHeader { isbigendian: true, //payload & message id are encoded with big endian version: 0, messagecounter: 0, ecuid: None, sessionid: None, timestamp: None, extendedheader: Some(DltExtendedHeader::newnonverboselog( DltLogLevel::Debug, [b'a', b'p', b'p', b'i'],//application id [b'c', b't', b'x', b'i'],//context id )) }; header.length = header.headerlen() + 4 + 4; //header + message id + payload

header

};

//buffer to store serialized header & payload let mut buffer = Vec::::with_capacity(usize::from(header.length)); header.write(&mut buffer).unwrap();

//write payload (message id 1234 & non verbose payload) { //for write_all use std::io::Write;

//write the message id & payload
buffer.write_all(&1234u32.to_be_bytes()).unwrap(); //message id
buffer.write_all(&[5,6,7,9]); //payload

}

//packets can contain multiple dlt messages, iterate through them for dltmessage in SliceIterator::new(&buffer) { match dltmessage { Ok(dltslice) => { //check if the message is verbose or non verbose (non verbose messages have message ids) if let Some(messageid) = dltslice.messageid() { println!("non verbose message {:x}", messageid); println!(" with payload {:?}", dltslice.nonverbosepayload()); } else { println!("verbose message (parsing not yet supported)"); } }, Err(err) => { //error parsing the dlt packet println!("ERROR: {:?}", err); } } } ```

An complete example which includes the parsing of the ethernet & udp headers can be found in examples/printmessagesids.rs

References

License

Licensed under the BSD 3-Clause license. Please see the LICENSE file for more information.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.