m_bus_parser/lib.rs
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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
//! Brief summary
//! * is a library for parsing M-Bus frames and user data.
//! * aims to be a modern, open source decoder for wired m-bus protocol decoder for EN 13757-2 physical and link layer, EN 13757-3 application layer of m-bus
//! * was implemented using the publicly available documentation available at <https://m-bus.com/>
//! # Example
//! ```rust
//! use m_bus_parser::frames::{ Address, Frame, Function };
//! use m_bus_parser::user_data::{ DataRecords, UserDataBlock };
//! use std::io;
//!
//! let example = vec![
//! 0x68, 0x4D, 0x4D, 0x68, 0x08, 0x01, 0x72, 0x01,
//! 0x00, 0x00, 0x00, 0x96, 0x15, 0x01, 0x00, 0x18,
//! 0x00, 0x00, 0x00, 0x0C, 0x78, 0x56, 0x00, 0x00,
//! 0x00, 0x01, 0xFD, 0x1B, 0x00, 0x02, 0xFC, 0x03,
//! 0x48, 0x52, 0x25, 0x74, 0x44, 0x0D, 0x22, 0xFC,
//! 0x03, 0x48, 0x52, 0x25, 0x74, 0xF1, 0x0C, 0x12,
//! 0xFC, 0x03, 0x48, 0x52, 0x25, 0x74, 0x63, 0x11,
//! 0x02, 0x65, 0xB4, 0x09, 0x22, 0x65, 0x86, 0x09,
//! 0x12, 0x65, 0xB7, 0x09, 0x01, 0x72, 0x00, 0x72,
//! 0x65, 0x00, 0x00, 0xB2, 0x01, 0x65, 0x00, 0x00,
//! 0x1F, 0xB3, 0x16
//! ];
//!
//! // Parse the frame
//! let frame = Frame::try_from(example.as_slice()).unwrap();
//!
//! if let Frame::LongFrame { function, address, data } = frame {
//! assert_eq!(function, Function::RspUd { acd: false, dfc: false });
//! assert_eq!(address, Address::Primary(1));
//! if let Ok(UserDataBlock::VariableDataStructure { fixed_data_header, variable_data_block }) = UserDataBlock::try_from(data) {
//! let data_records = DataRecords::try_from(variable_data_block).unwrap();
//! println!("data_records: {:#?}", data_records);
//! let data_records = DataRecords::try_from(variable_data_block).unwrap();
//! }
//! }
//!
//! // Parse everything at once
//! let parsed_data = m_bus_parser::MbusData::try_from(example.as_slice()).unwrap();
//! println!("parsed_data: {:#?}", parsed_data);
//!
//! ```
#![cfg_attr(feature = "defmt", feature(trivial_bounds))]
#![cfg_attr(not(feature = "std"), no_std)]
use frames::FrameError;
use user_data::ApplicationLayerError;
#[cfg(feature = "std")]
use prettytable::{format, row, Table};
#[cfg(feature = "std")]
use std::str;
pub mod frames;
pub mod user_data;
#[derive(Debug)]
#[cfg_attr(
feature = "serde",
derive(serde::Serialize),
serde(bound(deserialize = "'de: 'a"))
)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct MbusData<'a> {
pub frame: frames::Frame<'a>,
pub user_data: Option<user_data::UserDataBlock<'a>>,
pub data_records: Option<user_data::DataRecords<'a>>,
}
#[derive(Debug)]
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum MbusError {
FrameError(FrameError),
ApplicationLayerError(ApplicationLayerError),
}
impl From<FrameError> for MbusError {
fn from(error: FrameError) -> Self {
Self::FrameError(error)
}
}
impl From<ApplicationLayerError> for MbusError {
fn from(error: ApplicationLayerError) -> Self {
Self::ApplicationLayerError(error)
}
}
impl<'a> TryFrom<&'a [u8]> for MbusData<'a> {
type Error = MbusError;
fn try_from(data: &'a [u8]) -> Result<Self, Self::Error> {
let frame = frames::Frame::try_from(data)?;
let mut user_data = None;
let mut data_records = None;
match &frame {
frames::Frame::LongFrame { data, .. } => {
if let Ok(x) = user_data::UserDataBlock::try_from(*data) {
user_data = Some(x);
if let Ok(user_data::UserDataBlock::VariableDataStructure {
fixed_data_header: _,
variable_data_block,
}) = user_data::UserDataBlock::try_from(*data)
{
data_records = Some(variable_data_block.into());
}
}
}
frames::Frame::SingleCharacter { .. } => (),
frames::Frame::ShortFrame { .. } => (),
frames::Frame::ControlFrame { .. } => (),
};
Ok(MbusData {
frame,
user_data,
data_records,
})
}
}
#[cfg(feature = "std")]
fn clean_and_convert(input: &str) -> Vec<u8> {
let input = input.trim();
let cleaned_data: String = input.replace("0x", "").replace([' ', ',', 'x'], "");
cleaned_data
.as_bytes()
.chunks(2)
.map(|chunk| {
let byte_str = str::from_utf8(chunk).unwrap_or_default();
u8::from_str_radix(byte_str, 16).unwrap_or_default()
})
.collect()
}
#[cfg(feature = "std")]
pub fn serialize_mbus_data(data: &str, format: &str) -> String {
match format {
"json" => parse_to_json(data),
"yaml" => parse_to_yaml(data),
_ => parse_to_table(data).to_string(),
}
}
#[cfg(feature = "std")]
fn parse_to_json(input: &str) -> std::string::String {
let data = clean_and_convert(input);
let parsed_data = MbusData::try_from(data.as_slice());
serde_json::to_string_pretty(&parsed_data)
.unwrap_or_default()
.to_string()
}
#[cfg(feature = "std")]
fn parse_to_yaml(input: &str) -> std::string::String {
let data = clean_and_convert(input);
let parsed_data = MbusData::try_from(data.as_slice());
serde_yaml::to_string(&parsed_data)
.unwrap_or_default()
.to_string()
}
#[cfg(feature = "std")]
fn parse_to_table(input: &str) -> std::string::String {
use user_data::UserDataBlock;
let data = clean_and_convert(input);
let mut table_output = String::new();
if let Ok(parsed_data) = MbusData::try_from(data.as_slice()) {
let mut table = Table::new();
table.set_format(*format::consts::FORMAT_NO_LINESEP_WITH_TITLE);
match parsed_data.frame {
frames::Frame::LongFrame {
function,
address,
data: _,
} => {
table_output.push_str("Long Frame \n");
table.set_titles(row!["Function", "Address"]);
table.add_row(row![function, address]);
table_output.push_str(&table.to_string());
table = Table::new();
match parsed_data.user_data {
Some(UserDataBlock::VariableDataStructure {
fixed_data_header,
variable_data_block: _,
}) => {
table.add_row(row![
fixed_data_header.identification_number,
fixed_data_header
.manufacturer
.map(|i| i.to_string())
.unwrap_or_else(|_| "invalid".to_string()),
fixed_data_header.access_number,
fixed_data_header.status,
fixed_data_header.signature,
fixed_data_header.version,
fixed_data_header.medium,
]);
table.set_titles(row![
"Identification Number",
"Manufacturer",
"Access Number",
"Status",
"Signature",
"Version",
"Medium",
]);
}
Some(UserDataBlock::FixedDataStructure {
identification_number,
access_number,
status,
medium_ad_unit,
counter1,
counter2,
}) => {
table.set_titles(row![
"Identification Number",
"Access Number",
"Status",
"Medium Ad Unit",
"Counter 1",
"Counter 2",
]);
table.add_row(row![
identification_number,
access_number,
status,
medium_ad_unit,
counter1,
counter2,
]);
}
Some(UserDataBlock::ResetAtApplicationLevel { subcode }) => {
table.set_titles(row!["Function", "Address", "Subcode"]);
table.add_row(row![function, address, subcode]);
}
None => {
table.set_titles(row!["Function", "Address"]);
table.add_row(row![function, address]);
}
}
table_output.push_str(&table.to_string());
table = Table::new();
table.set_titles(row!["Value", "Data Information",]);
if let Some(data_records) = parsed_data.data_records {
for record in data_records.flatten() {
let value_information = match record
.data_record_header
.processed_data_record_header
.value_information
{
Some(x) => format!("{}", x),
None => "None".to_string(),
};
let data_information = match record
.data_record_header
.processed_data_record_header
.data_information
{
Some(x) => format!("{}", x),
None => "None".to_string(),
};
table.add_row(row![
format!("({}{}", record.data, value_information),
format!("{}", data_information)
]);
}
}
}
frames::Frame::ShortFrame { .. } => {
table_output.push_str("Short Frame\n");
}
frames::Frame::SingleCharacter { .. } => {
table_output.push_str("Single Character Frame\n");
}
frames::Frame::ControlFrame { .. } => {
table_output.push_str("Control Frame\n");
}
}
table_output.push_str(&table.to_string());
table_output
} else {
"Error parsing data".to_string()
}
}