use std::ffi::OsStr;
#[cfg(unix)]
use std::os::unix::ffi::OsStrExt;
#[cfg(windows)]
use std::os::windows::ffi::OsStrExt;
use std::ptr::NonNull;
use crate::Mutations;
use crate::helper::macros::delegate_methods;
use crate::helper::shallow::{ObserverState, SerializeObserverState, shallow_observer};
use crate::helper::{AsDeref, AsDerefMut, Invalidate, QuasiObserver, Unsigned};
use crate::observe::{DefaultSpec, Observe, RefObserve};
#[cfg(unix)]
pub(super) fn os_str_len(value: &OsStr) -> usize {
value.as_bytes().len()
}
#[cfg(windows)]
pub(super) fn os_str_len(value: &OsStr) -> usize {
value.encode_wide().count()
}
shallow_observer! {
struct OsStrObserver<V>(pub(crate) OsStr, pub(crate) V);
}
impl<'ob, V, S: ?Sized, D> OsStrObserver<'ob, V, S, D>
where
V: Invalidate<OsStr>,
D: Unsigned,
S: AsDerefMut<D, Target = OsStr>,
{
fn nonempty_mut(&mut self) -> &mut OsStr {
if (*self).untracked_ref().is_empty() {
self.untracked_mut()
} else {
self.tracked_mut()
}
}
delegate_methods! { nonempty_mut() as OsStr =>
pub fn make_ascii_uppercase(&mut self);
pub fn make_ascii_lowercase(&mut self);
}
}
pub struct OsStrRefObserverState {
raw_parts: Option<(NonNull<()>, usize)>,
}
impl Invalidate<OsStr> for OsStrRefObserverState {
fn invalidate(&mut self, value: &OsStr) {
self.raw_parts
.get_or_insert_with(|| (NonNull::from(value).cast::<()>(), os_str_len(value)));
}
}
impl ObserverState<OsStr> for OsStrRefObserverState {
fn observe(_: &OsStr) -> Self {
Self { raw_parts: None }
}
}
impl SerializeObserverState<OsStr> for OsStrRefObserverState {
fn flush(&mut self, value: &OsStr) -> Mutations {
let Some((old_addr, old_len)) = self.raw_parts.take() else {
return Mutations::new();
};
let new_addr = NonNull::from(value).cast::<()>();
let new_len = os_str_len(value);
if new_addr != old_addr {
return Mutations::replace(value);
}
if new_len < old_len {
#[cfg(not(feature = "truncate"))]
return Mutations::replace(value);
#[cfg(feature = "truncate")]
{
#[cfg(unix)]
return Mutations::truncate(old_len - new_len).with_prefix("Unix");
#[cfg(windows)]
return Mutations::truncate(old_len - new_len).with_prefix("Windows");
}
}
if new_len > old_len {
#[cfg(not(feature = "append"))]
return Mutations::replace(value);
#[cfg(feature = "append")]
{
#[cfg(unix)]
return Mutations::append(&value.as_bytes()[old_len..]).with_prefix("Unix");
#[cfg(windows)]
return Mutations::append_owned(value.encode_wide().skip(old_len).collect::<Vec<_>>())
.with_prefix("Windows");
}
}
Mutations::new()
}
}
impl Observe for OsStr {
type Observer<'ob, S, D>
= OsStrObserver<'ob, bool, S, D>
where
Self: 'ob,
D: Unsigned,
S: AsDerefMut<D, Target = Self> + ?Sized + 'ob;
type Spec = DefaultSpec;
}
impl RefObserve for OsStr {
type Observer<'ob, S, D>
= OsStrObserver<'ob, OsStrRefObserverState, S, D>
where
Self: 'ob,
D: Unsigned,
S: AsDeref<D, Target = Self> + ?Sized + 'ob;
type Spec = DefaultSpec;
}