falco_event/types/path/
relative_path.rsuse crate::event_derive::{FromBytes, FromBytesResult, ToBytes};
use crate::types::format::Format;
use crate::types::{Borrow, Borrowed};
use std::fmt::Formatter;
use std::io::Write;
use std::os::unix::ffi::OsStrExt;
use std::path::{Path, PathBuf};
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
#[derive(Debug)]
pub struct RelativePath<'a>(pub &'a Path);
impl<'a> ToBytes for RelativePath<'a> {
fn binary_size(&self) -> usize {
self.0.binary_size()
}
fn write<W: Write>(&self, writer: W) -> std::io::Result<()> {
self.0.write(writer)
}
fn default_repr() -> impl ToBytes {
<&'a Path>::default_repr()
}
}
impl<'a> FromBytes<'a> for RelativePath<'a> {
fn from_bytes(buf: &mut &'a [u8]) -> FromBytesResult<Self> {
Ok(Self(<&'a Path>::from_bytes(buf)?))
}
}
impl<'a, F> Format<F> for RelativePath<'a>
where
&'a [u8]: Format<F>,
{
fn format(&self, fmt: &mut Formatter) -> std::fmt::Result {
write!(fmt, "<...>")?;
let bytes = self.0.as_os_str().as_bytes();
bytes.format(fmt)
}
}
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[derive(Debug)]
pub struct OwnedRelativePath(pub PathBuf);
impl Borrowed for RelativePath<'_> {
type Owned = OwnedRelativePath;
}
impl Borrow for OwnedRelativePath {
type Borrowed<'b> = RelativePath<'b>;
fn borrow(&self) -> Self::Borrowed<'_> {
RelativePath(self.0.as_path())
}
}
#[cfg(test)]
mod tests {
use std::path::PathBuf;
use std::str::FromStr;
use crate::event_derive::{FromBytes, ToBytes};
use crate::types::path::relative_path::RelativePath;
#[cfg(feature = "serde")]
use crate::types::OwnedRelativePath;
#[cfg(feature = "serde")]
use std::path::Path;
#[test]
fn test_relative_path() {
let path = PathBuf::from_str("/foo").unwrap();
let rel_path = RelativePath(path.as_path());
let mut binary = Vec::new();
rel_path.write(&mut binary).unwrap();
hexdump::hexdump(binary.as_slice());
assert_eq!(binary.as_slice(), "/foo\0".as_bytes());
let mut buf = binary.as_slice();
let path = RelativePath::from_bytes(&mut buf).unwrap();
assert_eq!(path.0.to_str().unwrap(), "/foo");
}
#[cfg(feature = "serde")]
#[test]
fn test_serde_relative_path() {
let path = RelativePath(Path::new("/foo"));
let json = serde_json::to_string(&path).unwrap();
assert_eq!(json, "\"/foo\"");
let path2: OwnedRelativePath = serde_json::from_str(&json).unwrap();
let json2 = serde_json::to_string(&path2).unwrap();
assert_eq!(json, json2);
}
}