zvariant/serialized/data.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
#[cfg(unix)]
use crate::{Fd, OwnedFd};
use std::{
borrow::Cow,
ops::{Bound, Deref, Range, RangeBounds},
sync::Arc,
};
use serde::{de::DeserializeSeed, Deserialize};
use crate::{
de::Deserializer,
serialized::{Context, Format},
DynamicDeserialize, DynamicType, Error, Result, Signature, Type,
};
/// Represents serialized bytes in a specific format.
///
/// On Unix platforms, it also contains a list of file descriptors, whose indexes are included in
/// the serialized bytes. By packing them together, we ensure that the file descriptors are never
/// closed before the serialized bytes are dropped.
#[derive(Clone, Debug)]
pub struct Data<'bytes, 'fds> {
inner: Arc<Inner<'bytes, 'fds>>,
context: Context,
range: Range<usize>,
}
#[derive(Debug)]
pub struct Inner<'bytes, 'fds> {
bytes: Cow<'bytes, [u8]>,
#[cfg(unix)]
fds: Vec<Fd<'fds>>,
#[cfg(not(unix))]
_fds: std::marker::PhantomData<&'fds ()>,
}
impl<'bytes, 'fds> Data<'bytes, 'fds> {
/// Create a new `Data` instance containing borrowed file descriptors.
///
/// This method is only available on Unix platforms.
#[cfg(unix)]
pub fn new_borrowed_fds<T>(
bytes: T,
context: Context,
fds: impl IntoIterator<Item = impl Into<Fd<'fds>>>,
) -> Self
where
T: Into<Cow<'bytes, [u8]>>,
{
let bytes = bytes.into();
let range = Range {
start: 0,
end: bytes.len(),
};
Data {
inner: Arc::new(Inner {
bytes,
fds: fds.into_iter().map(Into::into).collect(),
}),
range,
context,
}
}
/// The serialized bytes.
pub fn bytes(&self) -> &[u8] {
&self.inner.bytes[self.range.start..self.range.end]
}
/// The encoding context.
pub fn context(&self) -> Context {
self.context
}
/// The file descriptors that are references by the serialized bytes.
///
/// This method is only available on Unix platforms.
#[cfg(unix)]
pub fn fds(&self) -> &[Fd<'fds>] {
&self.inner.fds
}
/// Returns a slice of `self` for the provided range.
///
/// # Panics
///
/// Requires that begin <= end and end <= self.len(), otherwise slicing will panic.
pub fn slice(&self, range: impl RangeBounds<usize>) -> Data<'bytes, 'fds> {
let len = self.range.end - self.range.start;
let start = match range.start_bound() {
Bound::Included(&n) => n,
Bound::Excluded(&n) => n + 1,
Bound::Unbounded => 0,
};
let end = match range.end_bound() {
Bound::Included(&n) => n + 1,
Bound::Excluded(&n) => n,
Bound::Unbounded => len,
};
assert!(
start <= end,
"range start must not be greater than end: {start:?} > {end:?}",
);
assert!(end <= len, "range end out of bounds: {end:?} > {len:?}");
let context = Context::new(
self.context.format(),
self.context.endian(),
self.context.position() + start,
);
let range = Range {
start: self.range.start + start,
end: self.range.start + end,
};
Data {
inner: self.inner.clone(),
context,
range,
}
}
/// Deserialize `T` from `self`.
///
/// # Examples
///
/// ```
/// use zvariant::LE;
/// use zvariant::to_bytes;
/// use zvariant::serialized::Context;
///
/// let ctxt = Context::new_dbus(LE, 0);
/// let encoded = to_bytes(ctxt, "hello world").unwrap();
/// let decoded: &str = encoded.deserialize().unwrap().0;
/// assert_eq!(decoded, "hello world");
/// ```
///
/// # Return value
///
/// A tuple containing the deserialized value and the number of bytes parsed from `bytes`.
pub fn deserialize<'d, T>(&'d self) -> Result<(T, usize)>
where
T: ?Sized + Deserialize<'d> + Type,
{
let signature = T::signature();
self.deserialize_for_signature(&signature)
}
/// Deserialize `T` from `self` with the given signature.
///
/// Use this method instead of [`Data::deserialize`] if the value being deserialized does not
/// implement [`Type`].
///
/// # Examples
///
/// While `Type` derive supports enums, for this example, let's supposed it doesn't and we don't
/// want to manually implement `Type` trait either:
///
/// ```
/// use serde::{Deserialize, Serialize};
/// use zvariant::LE;
///
/// use zvariant::to_bytes_for_signature;
/// use zvariant::serialized::Context;
///
/// let ctxt = Context::new_dbus(LE, 0);
/// #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
/// enum Unit {
/// Variant1,
/// Variant2,
/// Variant3,
/// }
///
/// let encoded = to_bytes_for_signature(ctxt, "u", &Unit::Variant2).unwrap();
/// assert_eq!(encoded.len(), 4);
/// let decoded: Unit = encoded.deserialize_for_signature("u").unwrap().0;
/// assert_eq!(decoded, Unit::Variant2);
///
/// #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
/// enum NewType<'s> {
/// Variant1(&'s str),
/// Variant2(&'s str),
/// Variant3(&'s str),
/// }
///
/// let signature = "(us)";
/// let encoded =
/// to_bytes_for_signature(ctxt, signature, &NewType::Variant2("hello")).unwrap();
/// assert_eq!(encoded.len(), 14);
/// let decoded: NewType<'_> = encoded.deserialize_for_signature(signature).unwrap().0;
/// assert_eq!(decoded, NewType::Variant2("hello"));
///
/// #[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
/// enum Structs {
/// Tuple(u8, u64),
/// Struct { y: u8, t: u64 },
/// }
///
/// let signature = "(u(yt))";
/// let encoded = to_bytes_for_signature(ctxt, signature, &Structs::Tuple(42, 42)).unwrap();
/// assert_eq!(encoded.len(), 24);
/// let decoded: Structs = encoded.deserialize_for_signature(signature).unwrap().0;
/// assert_eq!(decoded, Structs::Tuple(42, 42));
///
/// let s = Structs::Struct { y: 42, t: 42 };
/// let encoded = to_bytes_for_signature(ctxt, signature, &s).unwrap();
/// assert_eq!(encoded.len(), 24);
/// let decoded: Structs = encoded.deserialize_for_signature(signature).unwrap().0;
/// assert_eq!(decoded, Structs::Struct { y: 42, t: 42 });
/// ```
///
/// # Return value
///
/// A tuple containing the deserialized value and the number of bytes parsed from `bytes`.
pub fn deserialize_for_signature<'d, S, T>(&'d self, signature: S) -> Result<(T, usize)>
where
T: ?Sized + Deserialize<'d>,
S: TryInto<Signature<'d>>,
S::Error: Into<Error>,
{
let signature = signature.try_into().map_err(Into::into)?;
#[cfg(unix)]
let fds = &self.inner.fds;
let mut de = match self.context.format() {
#[cfg(feature = "gvariant")]
Format::GVariant => {
#[cfg(unix)]
{
crate::gvariant::Deserializer::new(
self.bytes(),
Some(fds),
signature,
self.context,
)
}
#[cfg(not(unix))]
{
crate::gvariant::Deserializer::<()>::new(self.bytes(), signature, self.context)
}
}
.map(Deserializer::GVariant)?,
Format::DBus => {
#[cfg(unix)]
{
crate::dbus::Deserializer::new(self.bytes(), Some(fds), signature, self.context)
}
#[cfg(not(unix))]
{
crate::dbus::Deserializer::<()>::new(self.bytes(), signature, self.context)
}
}
.map(Deserializer::DBus)?,
};
T::deserialize(&mut de).map(|t| match de {
#[cfg(feature = "gvariant")]
Deserializer::GVariant(de) => (t, de.0.pos),
Deserializer::DBus(de) => (t, de.0.pos),
})
}
/// Deserialize `T` from `self`, with the given dynamic signature.
///
/// # Return value
///
/// A tuple containing the deserialized value and the number of bytes parsed from `bytes`.
pub fn deserialize_for_dynamic_signature<'d, S, T>(&'d self, signature: S) -> Result<(T, usize)>
where
T: DynamicDeserialize<'d>,
S: TryInto<Signature<'d>>,
S::Error: Into<Error>,
{
let seed = T::deserializer_for_signature(signature)?;
self.deserialize_with_seed(seed)
}
/// Deserialize `T` from `self`, using the given seed.
///
/// # Return value
///
/// A tuple containing the deserialized value and the number of bytes parsed from `bytes`.
pub fn deserialize_with_seed<'d, S>(&'d self, seed: S) -> Result<(S::Value, usize)>
where
S: DeserializeSeed<'d> + DynamicType,
{
let signature = S::dynamic_signature(&seed).to_owned();
#[cfg(unix)]
let fds = &self.inner.fds;
let mut de = match self.context.format() {
#[cfg(feature = "gvariant")]
Format::GVariant => {
#[cfg(unix)]
{
crate::gvariant::Deserializer::new(
self.bytes(),
Some(fds),
signature,
self.context,
)
}
#[cfg(not(unix))]
{
crate::gvariant::Deserializer::new(self.bytes(), signature, self.context)
}
}
.map(Deserializer::GVariant)?,
Format::DBus => {
#[cfg(unix)]
{
crate::dbus::Deserializer::new(self.bytes(), Some(fds), signature, self.context)
}
#[cfg(not(unix))]
{
crate::dbus::Deserializer::<()>::new(self.bytes(), signature, self.context)
}
}
.map(Deserializer::DBus)?,
};
seed.deserialize(&mut de).map(|t| match de {
#[cfg(feature = "gvariant")]
Deserializer::GVariant(de) => (t, de.0.pos),
Deserializer::DBus(de) => (t, de.0.pos),
})
}
}
impl<'bytes> Data<'bytes, 'static> {
/// Create a new `Data` instance.
pub fn new<T>(bytes: T, context: Context) -> Self
where
T: Into<Cow<'bytes, [u8]>>,
{
let bytes = bytes.into();
let range = Range {
start: 0,
end: bytes.len(),
};
Data {
inner: Arc::new(Inner {
bytes,
#[cfg(unix)]
fds: vec![],
#[cfg(not(unix))]
_fds: std::marker::PhantomData,
}),
context,
range,
}
}
/// Create a new `Data` instance containing owned file descriptors.
///
/// This method is only available on Unix platforms.
#[cfg(unix)]
pub fn new_fds<T>(
bytes: T,
context: Context,
fds: impl IntoIterator<Item = impl Into<OwnedFd>>,
) -> Self
where
T: Into<Cow<'bytes, [u8]>>,
{
let bytes = bytes.into();
let range = Range {
start: 0,
end: bytes.len(),
};
Data {
inner: Arc::new(Inner {
bytes,
fds: fds.into_iter().map(Into::into).map(Fd::from).collect(),
}),
context,
range,
}
}
}
impl Deref for Data<'_, '_> {
type Target = [u8];
fn deref(&self) -> &Self::Target {
self.bytes()
}
}
impl<T> AsRef<T> for Data<'_, '_>
where
T: ?Sized,
for<'bytes, 'fds> <Data<'bytes, 'fds> as Deref>::Target: AsRef<T>,
{
fn as_ref(&self) -> &T {
self.deref().as_ref()
}
}