forked from rojo-rbx/rojo
39 lines
993 B
Rust
39 lines
993 B
Rust
//! Path serializer is used to serialize absolute paths in a cross-platform way,
|
|
//! by replacing all directory separators with /.
|
|
|
|
use std::path::Path;
|
|
|
|
use serde::{ser::SerializeSeq, Serialize, Serializer};
|
|
|
|
pub fn serialize_absolute<S, T>(path: T, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
T: AsRef<Path>,
|
|
{
|
|
let as_str = path
|
|
.as_ref()
|
|
.as_os_str()
|
|
.to_str()
|
|
.expect("Invalid Unicode in file path, cannot serialize");
|
|
let replaced = as_str.replace("\\", "/");
|
|
|
|
serializer.serialize_str(&replaced)
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct WithAbsolute<'a>(#[serde(serialize_with = "serialize_absolute")] &'a Path);
|
|
|
|
pub fn serialize_vec_absolute<S, T>(paths: &[T], serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
T: AsRef<Path>,
|
|
{
|
|
let mut seq = serializer.serialize_seq(Some(paths.len()))?;
|
|
|
|
for path in paths {
|
|
seq.serialize_element(&WithAbsolute(path.as_ref()))?;
|
|
}
|
|
|
|
seq.end()
|
|
}
|