use crate::{Tag, TagTrait, TagTypeId};
use core::fmt::{Debug, Formatter};
use core::mem;
use core::str;
#[cfg(feature = "builder")]
use {
crate::builder::traits::StructAsBytes, crate::builder::BoxedDst, crate::TagType,
alloc::vec::Vec, core::convert::TryInto,
};
pub(crate) const METADATA_SIZE: usize = mem::size_of::<TagTypeId>() + mem::size_of::<u32>();
#[derive(ptr_meta::Pointee, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(C)]
pub struct CommandLineTag {
typ: TagTypeId,
size: u32,
cmdline: [u8],
}
impl CommandLineTag {
#[cfg(feature = "builder")]
pub fn new(command_line: &str) -> BoxedDst<Self> {
let mut bytes: Vec<_> = command_line.bytes().collect();
if !bytes.ends_with(&[0]) {
bytes.push(0);
}
BoxedDst::new(TagType::Cmdline, &bytes)
}
pub fn cmdline(&self) -> Result<&str, str::Utf8Error> {
Tag::get_dst_str_slice(&self.cmdline)
}
}
impl Debug for CommandLineTag {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
f.debug_struct("CommandLineTag")
.field("typ", &{ self.typ })
.field("size", &{ self.size })
.field("cmdline", &self.cmdline())
.finish()
}
}
impl TagTrait for CommandLineTag {
fn dst_size(base_tag: &Tag) -> usize {
assert!(base_tag.size as usize >= METADATA_SIZE);
base_tag.size as usize - METADATA_SIZE
}
}
#[cfg(feature = "builder")]
impl StructAsBytes for CommandLineTag {
fn byte_size(&self) -> usize {
self.size.try_into().unwrap()
}
}
#[cfg(test)]
mod tests {
use crate::{CommandLineTag, Tag, TagType};
const MSG: &str = "hello";
fn get_bytes() -> std::vec::Vec<u8> {
let size = (4 + 4 + MSG.as_bytes().len() + 1) as u32;
[
&((TagType::Cmdline.val()).to_le_bytes()),
&size.to_le_bytes(),
MSG.as_bytes(),
&[0],
]
.iter()
.flat_map(|bytes| bytes.iter())
.copied()
.collect()
}
#[test]
#[cfg_attr(miri, ignore)]
fn test_parse_str() {
let tag = get_bytes();
let tag = unsafe { &*tag.as_ptr().cast::<Tag>() };
let tag = tag.cast_tag::<CommandLineTag>();
assert_eq!({ tag.typ }, TagType::Cmdline);
assert_eq!(tag.cmdline().expect("must be valid UTF-8"), MSG);
}
#[test]
#[cfg(feature = "builder")]
fn test_build_str() {
use crate::builder::traits::StructAsBytes;
let tag = CommandLineTag::new(MSG);
let bytes = tag.struct_as_bytes();
assert_eq!(bytes, get_bytes());
assert_eq!(tag.cmdline(), Ok(MSG));
let tag = CommandLineTag::new("AbCdEfGhUjK YEAH");
assert_eq!(tag.cmdline(), Ok("AbCdEfGhUjK YEAH"));
let tag = CommandLineTag::new("AbCdEfGhUjK YEAH".repeat(42).as_str());
assert_eq!(tag.cmdline(), Ok("AbCdEfGhUjK YEAH".repeat(42).as_str()));
}
}