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
//! This crate provides mainly the trait `Some` which can be used on *shared*
//! reference types. (`&T`, `Rc`, `Arc`). It enables the users to test identity
//! of objects. It's analogous to `PartialEq`, which tests *equality* instead.
//! 
//! Additionally, this crate provides `RefHash` trait, which is used for hashing
//! references and `RefCmp` wrapper struct, which implements `Eq`, `PartialEq`
//! and `Hash` by delegating to `Same` and `RefHash` traits. This is mainly
//! useful if one wants to store objects in `HashSet` or similar data structure,
//! with.
//! 
//! This crate is `no_std`-compatible.

#![no_std]

#[cfg(feature = "std")]
extern crate std;

use core::hash::{Hash, Hasher};

/// Allows to test identity of objects.
///
/// # Example:
///
/// ```
/// use same::Same;
///
/// let a = 42;
/// let b = 42;
/// let a_ref0 = &a;
/// let a_ref1 = &a;
/// let b_ref = &b;
///
/// // `a_ref0` and `a_ref1` point to the same object...
/// assert!(a_ref0.same(&a_ref1));
/// // ... but `a_ref0` and `b_ref` don't...
/// assert!(!a_ref0.same(&b_ref));
/// // ... neither do `a_ref1` and `b_ref`.
/// assert!(!a_ref1.same(&b_ref));
/// ```
///
/// This trait is currently implemented for *shared* references,
/// `Rc` and `Arc`.
///
/// Note that it doesn't make sense to implement this trait for mutable
/// references, nor boxes because there can never be two of them pointing
/// to the same address, so the implementation would always return `false`.
pub trait Same {
    /// Returns true if `self` is the same instance of object as `other`.
    fn same(&self, other: &Self) -> bool;
}

/// Hashes the pointer to the object instead of the object itself.
///
/// This trait works exatly like `Hash`, the only difference being
/// that it hashes the pointer.
pub trait RefHash {
    /// Feeds the value into the hasher.
    fn ref_hash<H: Hasher>(&self, hasher: &mut H);
}

impl<'a, T> Same for &'a T {
    fn same(&self, other: &Self) -> bool {
        let a: *const T = *self;
        let b: *const T = *other;
        
        a == b
    }
}

#[cfg(feature = "std")]
impl<T> Same for std::rc::Rc<T> {
    fn same(&self, other: &Self) -> bool {
        std::rc::Rc::ptr_eq(self, other)
    }
}

#[cfg(feature = "std")]
impl<T> Same for std::sync::Arc<T> {
    fn same(&self, other: &Self) -> bool {
        std::sync::Arc::ptr_eq(self, other)
    }
}

impl<'a, T> RefHash for &'a T {
    fn ref_hash<H: Hasher>(&self, hasher: &mut H) {
        let ptr: *const T = *self;

        ptr.hash(hasher);
    }
}

#[cfg(feature = "std")]
impl<T> RefHash for std::rc::Rc<T> {
    fn ref_hash<H: Hasher>(&self, hasher: &mut H) {
        (&**self).ref_hash(hasher);
    }
}

#[cfg(feature = "std")]
impl<T> RefHash for std::sync::Arc<T> {
    fn ref_hash<H: Hasher>(&self, hasher: &mut H) {
        (&**self).ref_hash(hasher);
    }
}

/// Wrapper for types to make their equality operations compare pointers.
///
/// This wrapper turns `Same` into `PartialEq` and `RefHash` into `Hash`.
/// It is mainly useful for storing unique objects in hash sets and similar
/// data structures.
///
/// # Example
/// ```
/// use same::RefCmp;
///
/// use std::rc::Rc;
/// use std::collections::HashSet;
///
/// let a = ::std::sync::Arc::new(42);
/// let a_cloned = a.clone();
/// let b = ::std::sync::Arc::new(42);
///
/// let mut hash_set = ::std::collections::HashSet::new();
/// assert!(hash_set.insert(RefCmp(a)));
/// // a_cloned points to the same object as a...
/// assert!(!hash_set.insert(RefCmp(a_cloned)));
/// // but `b` doesn't, even though it has same value.
/// assert!(hash_set.insert(RefCmp(b)));
/// ```
pub struct RefCmp<T: Same>(pub T);

impl<T: Same> Eq for RefCmp<T> {}
impl<T: Same> PartialEq for RefCmp<T> {
    fn eq(&self, other: &Self) -> bool {
        self.0.same(&other.0)
    }
}

impl<T: Same + RefHash> Hash for RefCmp<T> {
    fn hash<H: Hasher>(&self, hasher: &mut H) {
        self.0.ref_hash(hasher);
    }
}

impl<T: Same> core::ops::Deref for RefCmp<T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<U, T: Same + AsRef<U>> AsRef<U> for RefCmp<T> {
    fn as_ref(&self) -> &U {
        self.0.as_ref()
    }
}

impl<T: Same> core::borrow::Borrow<T> for RefCmp<T> {
    fn borrow(&self) -> &T {
        &self.0
    }
}

#[cfg(test)]
mod tests {
    use ::Same;
    use ::RefCmp;

    #[test]
    fn refs() {
        let a = 42;
        let b = 42;

        let a_ref = &a;
        let a_ref_again = &a;
        let b_ref = &b;

        assert!(a_ref.same(&a_ref_again));
        assert!(!a_ref.same(&b_ref));

        let mut hash_set = ::std::collections::HashSet::new();
        assert!(hash_set.insert(RefCmp(a_ref)));
        assert!(!hash_set.insert(RefCmp(a_ref_again)));
        assert!(hash_set.insert(RefCmp(b_ref)));
    }

    #[test]
    fn rcs() {
        let a = ::std::rc::Rc::new(42);
        let a_cloned = a.clone();
        let b = ::std::rc::Rc::new(42);

        assert!(a.same(&a_cloned));
        assert!(!a.same(&b));

        let mut hash_set = ::std::collections::HashSet::new();
        assert!(hash_set.insert(RefCmp(a)));
        assert!(!hash_set.insert(RefCmp(a_cloned)));
        assert!(hash_set.insert(RefCmp(b)));
    }

    #[test]
    fn arcs() {
        let a = ::std::sync::Arc::new(42);
        let a_cloned = a.clone();
        let b = ::std::sync::Arc::new(42);

        assert!(a.same(&a_cloned));
        assert!(!a.same(&b));

        let mut hash_set = ::std::collections::HashSet::new();
        assert!(hash_set.insert(RefCmp(a)));
        assert!(!hash_set.insert(RefCmp(a_cloned)));
        assert!(hash_set.insert(RefCmp(b)));
    }
}