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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
//! Structs for validating, marshalling and unmarshalling DBus object paths.
//!
//! [`ObjectPath`] and [`ObjectPathBuf`] are based on [`Path`] and [`PathBuf`] from `std::path` respectively.
//! Most of the same methods are implemented with minor semantic differences.
//! These differences arise because all valid `ObjectPath`s are absolute.
//! See each method for details.
//! `ObjectPath` implements `Deref` for `Path`
//! allowing it to be easily used in context requring a standard library path.
//! Also because all `ObjectPath`s are valid Rust `str`s,
//! there are easy methods to convert them to `&str`s.
//!
//! `ObjectPath`s are subsets of `str`s and `Path`s
//! and can be created from them if they meet the rules detailed in the section below.
//! These methods can also be used to simpily validate `str`s or `Path`s.
//!
//! # Restrictions on valid DBus object paths
//! * All DBus object paths are absolute. They always start with a `/`.
//! * Each element in the path are seperated by `/`.
//!   These elements can contain the ASCII characters `[A-Z][a-z][0-9]_`.
//! * There cannot be consecutive `/` seperators.
//!   In otherwords, each element must be a non-zero length.
//! * The last character cannot be a `/` seperator, unless the path is a root path (a single `/`).
//!
//! The relevant portion of the DBus Specification can be found [here].
//!
//! [here]: https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-marshaling-object-path
use crate::rustbus_core;
use rustbus_core::signature::{Base, Type};
use rustbus_core::wire::marshal::traits::{Marshal, Signature, SignatureBuffer};
use rustbus_core::wire::marshal::MarshalContext;
use rustbus_core::wire::unmarshal::traits::Unmarshal;
use rustbus_core::wire::unmarshal::Error as UnmarshalError;
use rustbus_core::wire::unmarshal::{UnmarshalContext, UnmarshalResult};

use std::borrow::{Borrow, ToOwned};
use std::cmp::Ordering;
use std::convert::TryFrom;
use std::ffi::{OsStr, OsString};
use std::fmt::{Display, Formatter};
use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::os::unix::ffi::{OsStrExt, OsStringExt};
use std::path::{Component, Path, PathBuf, StripPrefixError};
use std::str::FromStr;

/// Error type enumerating typical ways a standard path may be an invalid object path.
#[derive(Debug)]
pub enum InvalidObjectPath {
    NoRoot,
    ContainsInvalidCharacters,
    ConsecutiveSlashes,
    TrailingSlash,
}

/// A slice of a Dbus object path akin to a [`str`] or [`std::path::Path`].
///
/// Contains some methods for manipulating Dbus object paths,
/// similiar to `std::path::Path` with some minor differences.
#[derive(PartialEq, Eq, Hash, PartialOrd, Ord, Debug)]
pub struct ObjectPath {
    inner: Path,
}
impl ObjectPath {
    fn validate_skip_root(path_str: &str) -> Result<(), InvalidObjectPath> {
        let mut last_was_sep = false;
        for character in path_str.chars() {
            match character {
                'A'..='Z' | 'a'..='z' | '0'..='9' | '_' => {
                    last_was_sep = false;
                }
                '/' => {
                    if last_was_sep {
                        return Err(InvalidObjectPath::ConsecutiveSlashes);
                    } else {
                        last_was_sep = true;
                    }
                }
                _ => return Err(InvalidObjectPath::ContainsInvalidCharacters),
            }
        }
        if path_str.len() != 1 && path_str.ends_with('/') {
            return Err(InvalidObjectPath::TrailingSlash);
        }
        Ok(())
    }
    fn validate_str(path_str: &str) -> Result<(), InvalidObjectPath> {
        if !path_str.starts_with('/') {
            return Err(InvalidObjectPath::NoRoot);
        }
        Self::validate_skip_root(path_str)
    }
    fn validate<P: AsRef<Path>>(path: P) -> Result<(), InvalidObjectPath> {
        let path = path.as_ref();
        if !path.has_root() {
            return Err(InvalidObjectPath::NoRoot);
        }
        let path_str = path
            .to_str()
            .ok_or(InvalidObjectPath::ContainsInvalidCharacters)?;
        Self::validate_skip_root(path_str)
    }
    fn debug_assert_validitity(&self) {
        #[cfg(debug_assertions)]
        Self::validate(self).expect("Failed to validate the object path!");
    }
    /// Validate and make a `ObjectPath` from a normal path.
    ///
    /// See module [root] for the rules of a valid `ObjectPath`.
    /// # Examples
    /// ```
    /// use async_rustbus::rustbus_core::path::ObjectPath;
    /// let path = ObjectPath::from_str("/example/path").unwrap();
    /// ObjectPath::from_str("invalid/because/not/absolute").unwrap_err();
    /// ObjectPath::from_str("/invalid/because//double/sep").unwrap_err();
    /// ```
    /// [root]: ./index.html#restrictions-on-valid-dbus-object-paths
    #[inline]
    pub fn from_path<P: AsRef<Path> + ?Sized>(p: &P) -> Result<&ObjectPath, InvalidObjectPath> {
        let path = p.as_ref();
        let ret = unsafe {
            Self::validate(path)?;
            Self::new_no_val(path)
        };
        Ok(ret)
    }
    #[inline]
    #[allow(clippy::should_implement_trait)]
    pub fn from_str(s: &str) -> Result<&ObjectPath, InvalidObjectPath> {
        ObjectPath::validate_str(s)?;
        unsafe { Ok(ObjectPath::new_no_val(s.as_ref())) }
    }
    unsafe fn new_no_val(p: &Path) -> &ObjectPath {
        &*(p as *const Path as *const ObjectPath)
    }
    /// Get the bytes that make up an `ObjectPath`.
    #[inline]
    pub fn as_bytes(&self) -> &[u8] {
        self.inner.as_os_str().as_bytes()
    }
    /// Get the `ObjectPath` as a `&str`.
    ///
    /// Unlike ordinary `std::path::Path`, `ObjectPath`s are always valid Rust `str`s making this possible.
    #[inline]
    pub fn as_str(&self) -> &str {
        self.debug_assert_validitity();

        let bytes = self.as_bytes();
        unsafe { std::str::from_utf8_unchecked(bytes) }
    }
    /// Strip the prefix of the `ObjectPath`.
    ///
    /// Unlike [`Path::strip_prefix`] this method will always leave the path will always remain absolute.
    /// # Examples
    /// ```
    /// use async_rustbus::rustbus_core::path::ObjectPath;
    /// let original  = ObjectPath::from_str("/example/path/to_strip").unwrap();
    /// let target = ObjectPath::from_str("/path/to_strip").unwrap();
    /// /* These two lines are equivelent because paths must always remain absolute,
    ///    so the root '/' is readded in the second example.
    ///    Note the second line is not a valid ObjectPath */
    /// let stripped0 = original.strip_prefix("/example").unwrap();
    /// let stripped1 = original.strip_prefix("/example/").unwrap();
    /// assert_eq!(stripped0, target);
    /// assert_eq!(stripped1, target);
    ///
    /// original.strip_prefix("/example/other").unwrap_err();
    /// original.strip_prefix("/example/pa").unwrap_err();
    ///
    /// // Because the only thing stripped is the root sep this does nothing as it gets readded.
    /// let stripped2 = original.strip_prefix("/").unwrap();
    /// assert_eq!(stripped2, original);
    /// let stripped3 = original.strip_prefix(original).unwrap();
    /// assert_eq!(stripped3, ObjectPath::root_path());
    /// ```
    /// [`Path::strip_prefix`]: https://doc.rust-lang.org/std/path/struct.Path.html#method.strip_prefix
    pub fn strip_prefix<P: AsRef<Path> + ?Sized>(
        &self,
        p: &P,
    ) -> Result<&ObjectPath, StripPrefixError> {
        let stripped = self.inner.strip_prefix(p.as_ref())?;
        if stripped == Path::new("") {
            Ok(unsafe { ObjectPath::new_no_val("/".as_ref()) })
        } else {
            // Get a stripped path that includes the leading seperator.
            // This leading seperator is exists because ObjectPath.inner must be absolute;
            let self_bytes = self.as_bytes();
            let self_len = self_bytes.len(); // Unix-only
            let stripped_len = stripped.as_os_str().len();
            let ret_bytes = &self_bytes[self_len - 1 - stripped_len..];

            // convert bytes to ObjectPath
            let ret = OsStr::from_bytes(ret_bytes);
            let ret = unsafe { ObjectPath::new_no_val(ret.as_ref()) };
            ret.debug_assert_validitity();
            Ok(ret)
        }
    }
    /// Get the parent of the `ObjectPath` by removing the last element.
    /// If the `ObjectPath` is a root path then `None` is returned.
    pub fn parent(&self) -> Option<&ObjectPath> {
        let pp = self.inner.parent()?;
        let ret = unsafe { Self::new_no_val(pp) };
        ret.debug_assert_validitity();
        Some(ret)
    }
    /// Retrieves the last element of the `ObjectPath`.
    /// If the `ObjectPath` is a root path then `None` is returned.
    #[inline]
    pub fn file_name(&self) -> Option<&str> {
        self.debug_assert_validitity();
        let bytes = self.inner.file_name()?.as_bytes();
        unsafe { Some(std::str::from_utf8_unchecked(bytes)) }
    }
    /// Return a `ObjectPath` consisting of a single `/` seperator.
    #[inline]
    pub fn root_path() -> &'static Self {
        unsafe { ObjectPath::new_no_val("/".as_ref()) }
    }
    /// Returns an `Iterator` over the elements of an `ObjectPath`.
    pub fn components(&self) -> impl Iterator<Item = &str> {
        self.debug_assert_validitity();
        self.inner.components().skip(1).map(|c| match c {
            Component::Normal(os) => unsafe { std::str::from_utf8_unchecked(os.as_bytes()) },
            _ => unreachable!("All the components of a ObjectPath are normal!"),
        })
    }
    pub fn to_object_path_buf(&self) -> ObjectPathBuf {
        ObjectPathBuf::from(self)
    }
}
impl Display for ObjectPath {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}
impl Display for ObjectPathBuf {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        self.deref().fmt(f)
    }
}
impl Marshal for &ObjectPath {
    fn marshal(&self, ctx: &mut MarshalContext) -> Result<(), rustbus_core::Error> {
        self.as_str().marshal(ctx)
    }
}
impl Marshal for ObjectPathBuf {
    fn marshal(&self, ctx: &mut MarshalContext) -> Result<(), rustbus_core::Error> {
        self.deref().marshal(ctx)
    }
}

impl Deref for ObjectPath {
    type Target = std::path::Path;

    #[inline]
    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}
impl ToOwned for ObjectPath {
    type Owned = ObjectPathBuf;
    #[inline]
    fn to_owned(&self) -> Self::Owned {
        self.to_object_path_buf()
    }
}

impl Borrow<Path> for ObjectPath {
    #[inline]
    fn borrow(&self) -> &Path {
        self.deref()
    }
}
impl AsRef<Path> for ObjectPath {
    #[inline]
    fn as_ref(&self) -> &Path {
        self.deref()
    }
}
impl AsRef<ObjectPath> for ObjectPath {
    #[inline]
    fn as_ref(&self) -> &ObjectPath {
        self
    }
}
impl AsRef<str> for ObjectPath {
    #[inline]
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}
impl AsRef<OsStr> for ObjectPath {
    #[inline]
    fn as_ref(&self) -> &OsStr {
        self.inner.as_ref()
    }
}

impl<'a> From<&'a ObjectPath> for &'a str {
    #[inline]
    fn from(path: &'a ObjectPath) -> Self {
        path.as_str()
    }
}
impl<'a> TryFrom<&'a str> for &'a ObjectPath {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(s: &'a str) -> Result<Self, Self::Error> {
        ObjectPath::from_str(s)
    }
}
impl<'a> TryFrom<&'a Path> for &'a ObjectPath {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(p: &'a Path) -> Result<Self, Self::Error> {
        ObjectPath::from_path(p)
    }
}

impl Signature for &ObjectPath {
    #[inline]
    fn signature() -> Type {
        Type::Base(Base::ObjectPath)
    }
    #[inline]
    fn alignment() -> usize {
        Self::signature().get_alignment()
    }
    #[inline]
    fn sig_str(s_buf: &mut SignatureBuffer) {
        s_buf.push_static("o");
    }
}

impl<'buf, 'fds> Unmarshal<'buf, 'fds> for &'buf ObjectPath {
    fn unmarshal(ctx: &mut UnmarshalContext<'fds, 'buf>) -> UnmarshalResult<Self> {
        let (bytes, val) = <&str>::unmarshal(ctx)?;
        let path = ObjectPath::from_str(val).map_err(|_| UnmarshalError::InvalidType)?;
        Ok((bytes, path))
    }
}
impl Signature for ObjectPathBuf {
    #[inline]
    fn signature() -> Type {
        <&ObjectPath>::signature()
    }
    #[inline]
    fn alignment() -> usize {
        <&ObjectPath>::alignment()
    }
    #[inline]
    fn sig_str(s_buf: &mut SignatureBuffer) {
        <&ObjectPath>::sig_str(s_buf);
    }
}
impl<'buf, 'fds> Unmarshal<'buf, 'fds> for ObjectPathBuf {
    fn unmarshal(ctx: &mut UnmarshalContext<'fds, 'buf>) -> UnmarshalResult<Self> {
        <&ObjectPath>::unmarshal(ctx).map(|(size, op)| (size, op.to_owned()))
    }
}

#[derive(Eq, Clone, Debug, Default)]
pub struct ObjectPathBuf {
    inner: Option<PathBuf>,
}
impl Hash for ObjectPathBuf {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.deref().hash(state);
    }
}
impl PartialEq<ObjectPathBuf> for ObjectPathBuf {
    fn eq(&self, other: &ObjectPathBuf) -> bool {
        self.deref().eq(other.deref())
    }
}
impl PartialOrd<ObjectPathBuf> for ObjectPathBuf {
    fn partial_cmp(&self, other: &ObjectPathBuf) -> Option<Ordering> {
        self.deref().partial_cmp(other)
    }
}
impl Ord for ObjectPathBuf {
    fn cmp(&self, other: &Self) -> Ordering {
        self.deref().cmp(other)
    }
}
/// An owned, mutable Dbus object path akin to [`String`] or [`std::path::PathBuf`].
///
/// [`push`], [`pop`] and others can be used used to modify the `ObjectPathBuf` in-place.
/// `ObjectPathBuf` implements `Deref` to `ObjectPath`
/// allowing for all methods on `ObjectPath` to be used on `ObjectPathBuf`.
/// # Notes
/// * `ObjectPathBuf` is stored as a wrapper around `Option<PathBuf>`, where the `None` case
///   is equivelent to a root path.
///   
/// * As a result of the above point,
///   root paths (a single `/` seperator) are special case that does not result in a heap allocation.
///   This means that [`new`] does not result in an allocation on its own.
///
/// [`push`]: ./struct.ObjectPathBuf.html#method.push
/// [`pop`]: ./struct.ObjectPathBuf.html#method.pop
/// [`new`]: ./struct.ObjectPathBuf.html#method.new
impl ObjectPathBuf {
    /// Create a new root path consisting of a single `/` seperator.
    ///
    /// The `ObjectPathBuf` returned by this method does not result in an allocation until it is modified.
    #[inline]
    pub fn new() -> ObjectPathBuf {
        ObjectPathBuf { inner: None }
    }
    /// Create a new root path and preallocate space on the heap for additions to the path.
    ///
    /// If the size of the object path is known ahead time,
    /// this method can provide a performance benefit by avoid multiple reallocations.
    ///
    /// When `capacity` is zero this method is equivelent to `new`.
    pub fn with_capacity(capacity: usize) -> ObjectPathBuf {
        let inner = if capacity == 0 {
            None
        } else {
            let mut pb = PathBuf::with_capacity(capacity);
            pb.push("/");
            Some(pb)
        };
        ObjectPathBuf { inner }
    }
    /// Coerces to a [`ObjectPath`] slice.
    #[inline]
    pub fn as_object_path(&self) -> &ObjectPath {
        self.deref()
    }
    unsafe fn from_path_buf(pb: PathBuf) -> Self {
        Self { inner: Some(pb) }
    }
    /// Truncates the object path into a root path.
    ///
    /// This does not affect the capacity of the `ObjectPathBuf`.
    #[inline]
    pub fn clear(&mut self) {
        if let Some(buf) = &mut self.inner {
            buf.clear();
        }
    }
    #[inline]
    /// Append an `ObjectPath` to this one.
    pub fn push(&mut self, path: &ObjectPath) {
        let path = Path::strip_prefix(path, "/").expect("All object paths start with '/'");
        unsafe {
            self.push_path_unchecked(path);
        }
    }
    unsafe fn push_path_unchecked(&mut self, path: &Path) {
        let len = path.as_os_str().len();
        if len == 0 {
            return;
        }
        self.reserve(len + 1);
        let inner = self
            .inner
            .as_mut()
            .expect("The reserve call cause a PathBuf to allows be allocated.");
        inner.push(path);
        self.debug_assert_validitity();
    }
    /// Append a `Path` to this one.
    ///
    /// If `path` is invalid this method panics.
    /// If it is unknown if `path` is valid use [`push_path_checked`] instead.
    ///
    /// # Panics
    /// `path` must be a valid object path with two exceptions:
    /// `path` can be relative or empty.
    /// If the above conditions are not met this function will panic.
    ///
    /// # Examples
    /// ```
    /// use std::convert::TryFrom;
    /// use async_rustbus::rustbus_core::path::{ObjectPath, ObjectPathBuf};
    /// let target = ObjectPath::from_str("/example/path/to_append").unwrap();
    ///
    /// let mut opb0  = ObjectPathBuf::try_from("/example").unwrap();
    /// let mut opb1 = opb0.clone();
    /// opb0.push_path("/path/to_append");
    /// opb1.push_path("path/to_append");
    /// assert_eq!(&opb0, target);
    /// assert_eq!(&opb1, target);
    /// ```
    /// These should panic for different reasons.
    /// ```should_panic
    /// use std::convert::TryFrom;
    /// use async_rustbus::rustbus_core::path::{ObjectPath, ObjectPathBuf};
    /// let target = ObjectPath::from_str("/example/path/to_append").unwrap();
    /// let mut original = ObjectPathBuf::try_from("/example").unwrap();
    ///
    /// // Each line panics for different reasons
    /// original.push_path("/path//consecutive/slash");
    /// original.push_path("/p@th");
    /// ```
    #[inline]
    pub fn push_path<P: AsRef<Path>>(&mut self, path: P) {
        self.push_path_checked(path)
            .expect("Invalid path was passed!");
    }
    /// Check and append `path` to the `ObjectPathBuf` if it is valid.
    ///
    /// `path` must be a valid DBus object path with two exceptions:
    /// `path` can be relative or empty.
    /// If these conditions are not met then an `Err` is returned.
    /// # Examples
    /// ```
    /// use std::convert::TryFrom;
    /// use async_rustbus::rustbus_core::path::{ObjectPath, ObjectPathBuf};
    /// let target = ObjectPath::from_str("/example/path/to_append").unwrap();
    ///
    /// let mut opb0  = ObjectPathBuf::try_from("/example").unwrap();
    /// let mut opb1 = opb0.clone();
    /// opb0.push_path_checked("/path/to_append").unwrap();
    /// opb1.push_path_checked("path/to_append").unwrap();
    /// assert_eq!(&opb0, target);
    /// assert_eq!(&opb1, target);
    ///
    /// opb0.push_path_checked("/path//consecutive/slash").unwrap_err();
    /// opb1.push_path_checked("/p@th").unwrap_err();
    /// ```
    pub fn push_path_checked<P: AsRef<Path>>(&mut self, path: P) -> Result<(), InvalidObjectPath> {
        let path = path.as_ref();
        let path = path.strip_prefix("/").unwrap_or(path);
        let path_str = path
            .to_str()
            .ok_or(InvalidObjectPath::ContainsInvalidCharacters)?;
        ObjectPath::validate_skip_root(path_str)?;
        unsafe {
            self.push_path_unchecked(path);
        };
        Ok(())
    }
    /// Truncate the `ObjectPathBuf` to [`parent`].
    /// Returns true if the path changed.
    ///
    /// [`parent`]: ./struct.ObjectPath.html#method.parent
    #[inline]
    pub fn pop(&mut self) -> bool {
        self.inner.as_mut().map_or(false, PathBuf::pop)
    }
    pub fn reserve(&mut self, additional: usize) {
        if additional == 0 {
            return;
        }
        match &mut self.inner {
            Some(buf) => buf.reserve(additional),
            None => *self = Self::with_capacity(additional + 1),
        }
    }
    pub fn reserve_exact(&mut self, additional: usize) {
        if additional == 0 {
            return;
        }
        match &mut self.inner {
            Some(buf) => buf.reserve_exact(additional),
            None => {
                let mut buf = PathBuf::new();
                buf.reserve_exact(additional + 1);
                self.inner = Some(buf);
            }
        }
    }
    /// Get the capacity of the current heap allocation.
    ///
    /// If capacity is zero then there is no heap allocation, and the `ObjectPathBuf` is a root path.
    /// The root path is special case that can be stored without a heap allocation despite being length 1.
    #[inline]
    pub fn capacity(&self) -> usize {
        self.inner.as_ref().map_or(0, PathBuf::capacity)
    }
}
impl TryFrom<OsString> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    fn try_from(value: OsString) -> Result<Self, Self::Error> {
        ObjectPath::validate(&value)?;
        Ok(unsafe { ObjectPathBuf::from_path_buf(value.into()) })
    }
}
impl TryFrom<String> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(value: String) -> Result<Self, Self::Error> {
        Self::try_from(OsString::from(value))
    }
}
impl TryFrom<PathBuf> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(value: PathBuf) -> Result<Self, Self::Error> {
        ObjectPath::validate(&value)?;
        Ok(unsafe { ObjectPathBuf::from_path_buf(value) })
    }
}
impl TryFrom<&str> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(value: &str) -> Result<Self, Self::Error> {
        ObjectPathBuf::from_str(value)
    }
}
impl TryFrom<&OsStr> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(value: &OsStr) -> Result<Self, Self::Error> {
        ObjectPath::from_path(value).map(ToOwned::to_owned)
    }
}
impl TryFrom<&Path> for ObjectPathBuf {
    type Error = InvalidObjectPath;
    #[inline]
    fn try_from(value: &Path) -> Result<Self, Self::Error> {
        ObjectPath::from_path(value).map(ToOwned::to_owned)
    }
}

impl Deref for ObjectPathBuf {
    type Target = ObjectPath;
    fn deref(&self) -> &Self::Target {
        match &self.inner {
            Some(buf) => unsafe { ObjectPath::new_no_val(&buf) },
            None => ObjectPath::root_path(),
        }
    }
}
impl Borrow<ObjectPath> for ObjectPathBuf {
    #[inline]
    fn borrow(&self) -> &ObjectPath {
        self.deref()
    }
}
impl AsRef<ObjectPath> for ObjectPathBuf {
    #[inline]
    fn as_ref(&self) -> &ObjectPath {
        self.deref()
    }
}
impl AsRef<str> for ObjectPathBuf {
    #[inline]
    fn as_ref(&self) -> &str {
        self.deref().as_ref()
    }
}
impl AsRef<Path> for ObjectPathBuf {
    #[inline]
    fn as_ref(&self) -> &Path {
        self.deref().as_ref()
    }
}
impl FromStr for ObjectPathBuf {
    type Err = InvalidObjectPath;
    #[inline]
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        ObjectPath::from_str(s).map(ToOwned::to_owned)
    }
}
impl From<ObjectPathBuf> for PathBuf {
    #[inline]
    fn from(buf: ObjectPathBuf) -> Self {
        match buf.inner {
            Some(buf) => buf,
            None => PathBuf::from("/"),
        }
    }
}
impl From<ObjectPathBuf> for String {
    fn from(path: ObjectPathBuf) -> Self {
        path.debug_assert_validitity();
        let bytes = match path.inner {
            Some(buf) => buf.into_os_string().into_vec(),
            None => Vec::from(&b"/"[..]),
        };

        unsafe { std::string::String::from_utf8_unchecked(bytes) }
    }
}
impl From<&ObjectPath> for ObjectPathBuf {
    fn from(path: &ObjectPath) -> Self {
        let ret = if path == ObjectPath::root_path() {
            ObjectPathBuf::new()
        } else {
            unsafe { ObjectPathBuf::from_path_buf(path.into()) }
        };
        ret.debug_assert_validitity();
        ret
    }
}

impl PartialEq<ObjectPath> for ObjectPathBuf {
    #[inline]
    fn eq(&self, other: &ObjectPath) -> bool {
        self.deref().eq(other)
    }
}
#[cfg(test)]
mod tests {
    use super::{ObjectPath, ObjectPathBuf};
    use std::borrow::Borrow;
    use std::collections::hash_map::DefaultHasher;
    use std::hash::{Hash, Hasher};
    use std::path::Path;

    fn test_objpaths() -> Vec<&'static ObjectPath> {
        vec![
            ObjectPath::from_str("/org/freedesktop/NetworkManager").unwrap(),
            ObjectPath::from_str("/org/freedesktop/NetworkManager/ActiveConnection").unwrap(),
        ]
    }
    fn test_objpathbufs() -> Vec<ObjectPathBuf> {
        test_objpaths()
            .into_iter()
            .map(|op| op.to_owned())
            .collect()
    }
    // Borrow requires that the Ord trait prodces equivelent values before and after
    fn compare_ord_borrow<A, T, U>(pre: &[A]) -> Option<(usize, usize)>
    where
        T: Ord + Borrow<U> + ?Sized,
        U: Ord + ?Sized,
        A: Borrow<T>,
    {
        let pre_iter = pre.iter().map(|p| p.borrow());
        for (i, pre_i) in pre_iter.clone().enumerate() {
            for (j, pre_j) in pre_iter.clone().enumerate().skip(i) {
                let pre_ord = pre_i.cmp(pre_j);
                let post_i = pre_i.borrow();
                let post_j = pre_j.borrow();
                let post_ord = post_i.cmp(post_j);
                if pre_ord != post_ord {
                    return Some((i, j));
                }
            }
        }
        None
    }
    // Borrow requires that Hash trait produces equivelent values for before and after borrow()
    // This tests that invariant
    fn compare_hasher_borrow<A, T, U>(pre: &[A]) -> Option<usize>
    where
        T: Hash + Borrow<U> + ?Sized,
        U: Hash + ?Sized,
        A: Borrow<T>,
    {
        let pre_iter = pre.iter().map(|p| p.borrow());
        for (i, (pre, post)) in pre_iter
            .clone()
            .zip(pre_iter.map(|p| p.borrow()))
            .enumerate()
        {
            let mut pre_borrow_hasher = DefaultHasher::new();
            let mut post_borrow_hasher = DefaultHasher::new();
            pre.hash(&mut pre_borrow_hasher);
            post.hash(&mut post_borrow_hasher);
            if pre_borrow_hasher.finish() != post_borrow_hasher.finish() {
                return Some(i);
            }
        }
        None
    }
    #[test]
    fn test_objectpathbuf_borrow_objectpath() {
        let objpathbufs = test_objpathbufs();
        if let Some(i) =
            compare_hasher_borrow::<ObjectPathBuf, ObjectPathBuf, ObjectPath>(&objpathbufs[..])
        {
            panic!("Hash didn't match: {}", i);
        }
        if let Some((i, j)) =
            compare_ord_borrow::<ObjectPathBuf, ObjectPathBuf, ObjectPath>(&objpathbufs[..])
        {
            panic!("Ord didn't match for: {} {}", i, j);
        }
    }
    #[test]
    fn test_objectpath_borrow_path() {
        let objpaths = test_objpaths();
        if let Some(i) = compare_hasher_borrow::<&ObjectPath, ObjectPath, Path>(&objpaths[..]) {
            panic!("Hash didn't match: {}", i);
        }
        if let Some((i, j)) = compare_ord_borrow::<&ObjectPath, ObjectPath, Path>(&objpaths[..]) {
            panic!("Ord didn't match for: {} {}", i, j);
        }
    }
    #[test]
    fn test_push() {
        let objpath = ObjectPath::from_str("/dbus/test").unwrap();
        let objpath2 = ObjectPath::from_str("/freedesktop/more").unwrap();
        let mut objpathbuf = ObjectPathBuf::new();
        objpathbuf.push(objpath);
        assert_eq!(objpathbuf, *objpath);
        objpathbuf.push(objpath2);
        assert_eq!(
            &objpathbuf,
            ObjectPath::from_str("/dbus/test/freedesktop/more").unwrap()
        );
        assert!(objpathbuf.starts_with(objpath));
        assert!(!objpathbuf.starts_with(objpath2));
        assert_eq!(objpathbuf.strip_prefix(objpath).unwrap(), objpath2);
    }
}