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
//! Type names for rkyv_dyn.
//!
//! The goal of `TypeName` is to avoid allocations if possible. If all you need is the hash of a
//! type name, then there's no reason to allocate a string to do it.
//!
//! rkyv_typename provides a derive macro to easily implement [`TypeName`], and has options to
//! easily customize your type's name.
//!
//! # Examples
//! ```
//! use rkyv_typename::TypeName;
//! #[derive(TypeName)]
//! #[typename = "CoolType"]
//! struct Example<T>(T);
//!
//! let mut type_name = String::new();
//! Example::<i32>::build_type_name(|piece| type_name += piece);
//! assert_eq!(type_name, "CoolType<i32>");
//! ```
//!
//! ## Features
//!
//! - `std`: Implements [`TypeName`] for standard library types (enabled by default)

#![deny(rustdoc::broken_intra_doc_links)]
#![deny(missing_docs)]
#![deny(rustdoc::missing_crate_level_docs)]
#![cfg_attr(not(feature = "std"), no_std)]

mod core_impl;
#[cfg(feature = "std")]
mod std_impl;

pub use rkyv_typename_derive::TypeName;

/// Builds a name for a type.
///
/// An implementation can be derived automatically with `#[derive(TypeName)]`. See
/// [TypeName](macro@TypeName) for more details.
///
/// Names cannot be guaranteed to be unique and although they are usually suitable to use as keys,
/// precautions should be taken to ensure that if name collisions happen that they are detected and
/// fixable.
///
/// # Examples
///
/// Most of the time, `#[derive(TypeName)]` will suit your needs. However, if you need more control,
/// you can always implement it manually:
///
/// ```
/// use rkyv_typename::TypeName;
///
/// struct Example;
///
/// impl TypeName for Example {
///     fn build_type_name<F: FnMut(&str)>(mut f: F) {
///         f("CoolStruct");
///     }
/// }
///
/// struct GenericExample<T, U, V>(T, U, V);
///
/// impl<
///     T: TypeName,
///     U: TypeName,
///     V: TypeName
/// > TypeName for GenericExample<T, U, V> {
///     fn build_type_name<F: FnMut(&str)>(mut f: F) {
///         f("CoolGeneric<");
///         T::build_type_name(&mut f);
///         f(", ");
///         U::build_type_name(&mut f);
///         f(", ");
///         V::build_type_name(&mut f);
///         f(">");
///     }
/// }
///
/// fn type_name<T: TypeName>() -> String {
///     let mut result = String::new();
///     T::build_type_name(|piece| result += piece);
///     result
/// }
///
/// assert_eq!(type_name::<Example>(), "CoolStruct");
/// assert_eq!(
///     type_name::<GenericExample<i32, Option<String>, Example>>(),
///     "CoolGeneric<i32, core::option::Option<alloc::string::String>, CoolStruct>"
/// );
/// ```
pub trait TypeName {
    /// Submits the pieces of the type name to the given function.
    fn build_type_name<F: FnMut(&str)>(f: F);
}

impl<T: TypeName> TypeName for &T {
    fn build_type_name<F: FnMut(&str)>(mut f: F) {
        f("&");
        T::build_type_name(f);
    }
}

#[cfg(test)]
mod tests {
    use crate as rkyv_typename;
    use crate::TypeName;

    fn type_name_string<T: TypeName>() -> String {
        let mut result = String::new();
        T::build_type_name(|piece| result += piece);
        result
    }

    #[test]
    fn builtin_types() {
        assert_eq!(type_name_string::<i32>(), "i32");
        assert_eq!(type_name_string::<(i32,)>(), "(i32,)");
        assert_eq!(type_name_string::<(i32, i32)>(), "(i32, i32)");
        assert_eq!(type_name_string::<[[u8; 4]; 8]>(), "[[u8; 4]; 8]");
        assert_eq!(
            type_name_string::<Option<[String; 1]>>(),
            "core::option::Option<[alloc::string::String; 1]>"
        );
        assert_eq!(
            type_name_string::<Option<[Option<u8>; 4]>>(),
            "core::option::Option<[core::option::Option<u8>; 4]>"
        );
    }

    #[test]
    fn derive() {
        #[derive(TypeName)]
        struct Test;

        assert_eq!(type_name_string::<Test>(), "rkyv_typename::tests::Test");
    }

    #[test]
    fn derive_generic() {
        #[derive(TypeName)]
        struct Test<T, U, V>(T, U, V);

        assert_eq!(
            type_name_string::<Test<u8, [i32; 4], Option<String>>>(),
            "rkyv_typename::tests::Test<u8, [i32; 4], core::option::Option<alloc::string::String>>"
        );
    }

    #[test]
    fn derive_custom_typename() {
        #[derive(TypeName)]
        #[typename = "Custom"]
        struct Test;

        assert_eq!(type_name_string::<Test>(), "Custom");

        #[derive(TypeName)]
        #[typename = "GenericCustom"]
        struct GenericTest<T>(T);

        assert_eq!(type_name_string::<GenericTest<i32>>(), "GenericCustom<i32>");
        assert_eq!(
            type_name_string::<GenericTest<Test>>(),
            "GenericCustom<Custom>"
        );
    }
}