1use log::debug;
6use objects::ObexObjectError as Error;
7
8pub mod event_report;
9pub mod messages_listing;
10
11pub(crate) const ISO_8601_TIME_FORMAT: &str = "%Y%m%dT%H%M%S";
15
16pub(crate) fn truncate_string(value: &String, max_len: usize) -> String {
20 let mut v = value.clone();
21 if v.len() <= max_len {
22 return v;
23 }
24 let mut l = max_len;
25 while !v.is_char_boundary(l) {
26 l -= 1;
27 }
28 v.truncate(l);
29 debug!("truncated string value from length {} to {}", value.len(), v.len());
30 v
31}
32
33pub(crate) fn str_to_bool(val: &str) -> Result<bool, Error> {
35 match val {
36 "yes" => Ok(true),
37 "no" => Ok(false),
38 val => Err(Error::invalid_data(val)),
39 }
40}
41
42pub(crate) fn bool_to_string(val: bool) -> String {
43 if val {
44 "yes".to_string()
45 } else {
46 "no".to_string()
47 }
48}