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
// Copyright 2020 Koichi Kitahara
//
// Licensed under either of Apache License, Version 2.0:
//
//   Licensed under the Apache License, Version 2.0 (the "License");
//   you may not use this file except in compliance with the License.
//   You may obtain a copy of the License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
//   Unless required by applicable law or agreed to in writing, software
//   distributed under the License is distributed on an "AS IS" BASIS,
//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//   See the License for the specific language governing permissions and
//   limitations under the License.
//
// or MIT license:
//
//   Permission is hereby granted, free of charge, to any person obtaining a
//   copy of this software and associated documentation files (the "Software"),
//   to deal in the Software without restriction, including without limitation
//   the rights to use, copy, modify, merge, publish, distribute, sublicense,
//   and/or sell copies of the Software, and to permit persons to whom the
//   Software is furnished to do so, subject to the following conditions:
//
//   The above copyright notice and this permission notice shall be included in
//   all copies or substantial portions of the Software.
//
//   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
//   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
//   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
//   DEALINGS IN THE SOFTWARE.
//
// at your option.

#![cfg_attr(not(feature = "std"), no_std)]
#![doc(html_root_url = "https://docs.rs/into-owned/0.2.2")]

//! This crate provides a trait [`IntoOwned`] for associating a type with its owned variant.
//!
//! [`IntoOwned`]: trait.IntoOwned.html
//!
//!  In this experimental version, [`IntoOwned`] is implemented only for primitive numeric types
//!  (`i8`, `i16`, `i32`, `i64`, `i128`, `isize`, `u8`, `u16`, `u32`, `u64`, `u128`, `usize`, `f32`, and `f64`)
//!  and their references.

// pub mod gyu;

use core::borrow::Borrow;
use core::cmp::Ordering;
use core::hash::{Hash, Hasher};

/// A trait for associating a type with its owned variant.
///
/// # Examples
///
/// Implementing the `IntoOwned` trait for an owned type is straighitforward.
/// Maybe a derive macro is supplied in future.
/// ```
/// use into_owned::{IntoOwned, Is};
///
/// #[derive(Clone)]
/// struct A();
///
/// impl IntoOwned for A {
///     type Owned = Self;
///
///     fn is_owned(&self) -> bool {
///         true
///     }
///
///     fn into_owned(self) -> Self {
///         self
///     }
///
///     fn try_as_mut(&mut self) -> Option<&mut Self> {
///         Some(self)
///     }
///
///     fn as_is<'a>(self) -> Is<'a, Self> {
///         Is::Owned(self)
///     }
/// }
/// ```
/// Since there are blanket implementations for `&T` and `&mut T` where
/// `T: IntoOwned<Owned = T> + Clone`,
/// manually implementing `IntoOwned` for the owned type is sufficient in most cases.
/// ```
/// # use into_owned::{IntoOwned, Is};
/// #
/// # #[derive(Clone)]
/// # struct A();
/// #
/// # impl IntoOwned for A {
/// #     type Owned = Self;
/// #
/// #     fn is_owned(&self) -> bool {
/// #        true
/// #     }
/// #
/// #     fn into_owned(self) -> Self {
/// #         self
/// #     }
/// #
/// #     fn try_as_mut(&mut self) -> Option<&mut Self> {
/// #         Some(self)
/// #     }
/// #
/// #     fn as_is<'a>(self) -> Is<'a, Self> {
/// #         Is::Owned(self)
/// #     }
/// # }
/// // this function can be called with an owned value or a borrowed reference
/// fn is_owned<T>(t: T) -> bool
/// where T: IntoOwned
/// {
///     t.is_owned()
/// }
///
/// assert_eq!(is_owned(A()), true);
/// assert_eq!(is_owned(&A()), false);
/// assert_eq!(is_owned(&mut A()), false);
/// ```
pub trait IntoOwned
where
    Self: Sized + Borrow<<Self as IntoOwned>::Owned>,
{
    /// The owned type associated with `Self`.
    type Owned;

    /// Returns `true` if `self` is an owned value
    /// (e.g. if `Self` and `Self::Owned` are the same),
    /// or `false` otherwise.
    ///
    /// This method is used as a hint of whether [`into_owned`] method is cheap or not.
    ///
    /// [`into_owned`]: #method.into_owned
    fn is_owned(&self) -> bool;

    /// Converts `self` into an owned value.
    ///
    /// If `Self` and `Self::Owned` are the same, usually it just returns `self`.
    /// If not, usually it returns an owned value by cloning.
    fn into_owned(self) -> Self::Owned;

    /// Returns a mutable reference to the owned value of `self` if possible.
    /// This method should be cheap.
    ///
    /// If a mutable reference is required and taking the reference must be cheap,
    /// `BorrowMut` trait should be used instead.
    fn try_as_mut(&mut self) -> Option<&mut Self::Owned>;

    /// Returns `self` as [`Is<'a, Self>`].
    ///
    /// This method is useful when `self` is used differently depending on
    /// its state: owned, (immutably) borrowed, or mutably borrowed.
    ///
    /// # Examples
    /// ```
    /// use into_owned::{IntoOwned, Is};
    ///
    /// // returns:
    /// // * `0` if `t` is an owned value
    /// // * `1` if `t` is an immutably borrowed reference
    /// // * `2` if `t` is a mutably borrowed reference
    /// fn a<T>(t: T) -> i8
    /// where T: IntoOwned
    /// {
    ///     match t.as_is() {
    ///         Is::Owned(x) => {
    ///             // here `x: T::Owned`
    ///             0
    ///         }
    ///         Is::Borrowed(x) => {
    ///             // here `x: &T::Owned`
    ///             1
    ///         }
    ///         Is::MutBorrowed(x) => {
    ///             // here `x: &mut T::Owned`
    ///             2
    ///         }
    ///     }
    /// }
    ///
    /// assert_eq!(a(1.0), 0);
    /// assert_eq!(a(&1.0), 1);
    /// assert_eq!(a(&mut 1.0), 2);
    /// ```
    /// [`Is<'a, Self>`]: enum.Is.html
    fn as_is<'a>(self) -> Is<'a, Self>;
}

impl<T> IntoOwned for &T
where
    T: IntoOwned<Owned = T> + Clone,
{
    type Owned = T;

    fn is_owned(&self) -> bool {
        false
    }

    fn into_owned(self) -> T {
        self.borrow().clone()
    }

    fn try_as_mut(&mut self) -> Option<&mut Self::Owned> {
        None
    }

    fn as_is<'a>(self) -> Is<'a, Self> {
        Is::Borrowed(self)
    }
}

impl<T> IntoOwned for &mut T
where
    T: IntoOwned<Owned = T> + Clone,
{
    type Owned = T;

    fn is_owned(&self) -> bool {
        false
    }

    fn into_owned(self) -> T {
        (*self).borrow().clone()
    }

    fn try_as_mut(&mut self) -> Option<&mut Self::Owned> {
        Some(self)
    }

    fn as_is<'a>(self) -> Is<'a, Self> {
        Is::MutBorrowed(self)
    }
}

macro_rules! impl_into_owned_for_owned_type {
    ($T: ty) => {
        impl IntoOwned for $T {
            type Owned = Self;

            fn is_owned(&self) -> bool {
                true
            }

            fn into_owned(self) -> Self {
                self
            }

            fn try_as_mut(&mut self) -> Option<&mut Self> {
                Some(self)
            }

            fn as_is<'a>(self) -> Is<'a, Self> {
                Is::Owned(self)
            }
        }
    };
}

impl_into_owned_for_owned_type!(i8);
impl_into_owned_for_owned_type!(i16);
impl_into_owned_for_owned_type!(i32);
impl_into_owned_for_owned_type!(i64);
impl_into_owned_for_owned_type!(i128);
impl_into_owned_for_owned_type!(isize);
impl_into_owned_for_owned_type!(u8);
impl_into_owned_for_owned_type!(u16);
impl_into_owned_for_owned_type!(u32);
impl_into_owned_for_owned_type!(u64);
impl_into_owned_for_owned_type!(u128);
impl_into_owned_for_owned_type!(usize);
impl_into_owned_for_owned_type!(f32);
impl_into_owned_for_owned_type!(f64);

/// Represents an owned value, an immutably borrowed reference,
/// or a mutably borrowed reference.
///
/// This `enum` is created by the [`as_is`] method on [`IntoOwned`].
/// See its documentation for more.
///
/// [`as_is`]: trait.IntoOwned.html#tymethod.as_is
/// [`IntoOwned`]: trait.IntoOwned.html
#[derive(Debug)]
pub enum Is<'a, T>
where
    T: 'a + IntoOwned,
{
    Owned(T::Owned),
    Borrowed(&'a T::Owned),
    MutBorrowed(&'a mut T::Owned),
}

impl<T, U> PartialEq<Is<'_, U>> for Is<'_, T>
where
    T: IntoOwned,
    U: IntoOwned,
    T::Owned: PartialEq<U::Owned>,
{
    fn eq(&self, other: &Is<'_, U>) -> bool {
        use Is::*;
        match (self, other) {
            (Owned(x), Owned(y)) => x == y,
            (Owned(x), Borrowed(y)) => x == *y,
            (Owned(x), MutBorrowed(y)) => x == &**y,
            (Borrowed(x), Owned(y)) => *x == y,
            (Borrowed(x), Borrowed(y)) => *x == *y,
            (Borrowed(x), MutBorrowed(y)) => *x == &**y,
            (MutBorrowed(x), Owned(y)) => &**x == y,
            (MutBorrowed(x), Borrowed(y)) => &**x == *y,
            (MutBorrowed(x), MutBorrowed(y)) => &**x == &**y,
        }
    }
}

impl<T> Eq for Is<'_, T>
where
    T: IntoOwned,
    Self: PartialEq,
    T::Owned: Eq,
{
}

impl<T, U> PartialOrd<Is<'_, U>> for Is<'_, T>
where
    T: IntoOwned,
    U: IntoOwned,
    for<'a> Self: PartialEq<Is<'a, U>>,
    T::Owned: PartialOrd<U::Owned>,
{
    fn partial_cmp(&self, other: &Is<'_, U>) -> Option<Ordering> {
        use Is::*;
        match (self, other) {
            (Owned(x), Owned(y)) => x.partial_cmp(y),
            (Owned(x), Borrowed(y)) => x.partial_cmp(*y),
            (Owned(x), MutBorrowed(y)) => x.partial_cmp(&**y),
            (Borrowed(x), Owned(y)) => (*x).partial_cmp(y),
            (Borrowed(x), Borrowed(y)) => (*x).partial_cmp(*y),
            (Borrowed(x), MutBorrowed(y)) => (*x).partial_cmp(&**y),
            (MutBorrowed(x), Owned(y)) => (&**x).partial_cmp(y),
            (MutBorrowed(x), Borrowed(y)) => (&**x).partial_cmp(*y),
            (MutBorrowed(x), MutBorrowed(y)) => (&**x).partial_cmp(&**y),
        }
    }
}

impl<T> Ord for Is<'_, T>
where
    T: IntoOwned,
    Self: Eq + PartialOrd,
    T::Owned: Ord,
{
    fn cmp(&self, other: &Self) -> Ordering {
        use Is::*;
        match (self, other) {
            (Owned(x), Owned(y)) => x.cmp(y),
            (Owned(x), Borrowed(y)) => x.cmp(*y),
            (Owned(x), MutBorrowed(y)) => x.cmp(*y),
            (Borrowed(x), Owned(y)) => (*x).cmp(y),
            (Borrowed(x), Borrowed(y)) => (*x).cmp(*y),
            (Borrowed(x), MutBorrowed(y)) => (*x).cmp(&**y),
            (MutBorrowed(x), Owned(y)) => (&**x).cmp(y),
            (MutBorrowed(x), Borrowed(y)) => (&**x).cmp(*y),
            (MutBorrowed(x), MutBorrowed(y)) => (&**x).cmp(&**y),
        }
    }
}

impl<T> Hash for Is<'_, T>
where
    T: IntoOwned,
    T::Owned: Hash,
{
    fn hash<H: Hasher>(&self, state: &mut H) {
        use Is::*;
        match self {
            Owned(x) => x.hash(state),
            Borrowed(x) => (*x).hash(state),
            MutBorrowed(x) => (&**x).hash(state),
        }
    }
}