2021-08-24 00:31:21 +00:00
|
|
|
//! Traits used by label implementations
|
|
|
|
|
|
|
|
use std::{
|
|
|
|
any::Any,
|
|
|
|
hash::{Hash, Hasher},
|
|
|
|
};
|
|
|
|
|
2022-12-11 18:46:42 +00:00
|
|
|
/// An object safe version of [`Eq`]. This trait is automatically implemented
|
|
|
|
/// for any `'static` type that implements `Eq`.
|
2021-08-24 00:31:21 +00:00
|
|
|
pub trait DynEq: Any {
|
2022-12-11 18:46:42 +00:00
|
|
|
/// Casts the type to `dyn Any`.
|
2021-08-24 00:31:21 +00:00
|
|
|
fn as_any(&self) -> &dyn Any;
|
|
|
|
|
2022-12-11 18:46:42 +00:00
|
|
|
/// This method tests for `self` and `other` values to be equal.
|
|
|
|
///
|
|
|
|
/// Implementers should avoid returning `true` when the underlying types are
|
|
|
|
/// not the same.
|
2021-08-24 00:31:21 +00:00
|
|
|
fn dyn_eq(&self, other: &dyn DynEq) -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> DynEq for T
|
|
|
|
where
|
|
|
|
T: Any + Eq,
|
|
|
|
{
|
|
|
|
fn as_any(&self) -> &dyn Any {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn dyn_eq(&self, other: &dyn DynEq) -> bool {
|
|
|
|
if let Some(other) = other.as_any().downcast_ref::<T>() {
|
|
|
|
return self == other;
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-11 18:46:42 +00:00
|
|
|
/// An object safe version of [`Hash`]. This trait is automatically implemented
|
|
|
|
/// for any `'static` type that implements `Hash`.
|
2021-08-24 00:31:21 +00:00
|
|
|
pub trait DynHash: DynEq {
|
2022-12-11 18:46:42 +00:00
|
|
|
/// Casts the type to `dyn Any`.
|
2021-08-24 00:31:21 +00:00
|
|
|
fn as_dyn_eq(&self) -> &dyn DynEq;
|
|
|
|
|
2022-12-11 18:46:42 +00:00
|
|
|
/// Feeds this value into the given [`Hasher`].
|
|
|
|
///
|
|
|
|
/// [`Hash`]: std::hash::Hasher
|
2021-08-24 00:31:21 +00:00
|
|
|
fn dyn_hash(&self, state: &mut dyn Hasher);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> DynHash for T
|
|
|
|
where
|
|
|
|
T: DynEq + Hash,
|
|
|
|
{
|
|
|
|
fn as_dyn_eq(&self) -> &dyn DynEq {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn dyn_hash(&self, mut state: &mut dyn Hasher) {
|
|
|
|
T::hash(self, &mut state);
|
|
|
|
self.type_id().hash(&mut state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Macro to define a new label trait
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use bevy_utils::define_label;
|
2022-07-20 19:39:42 +00:00
|
|
|
/// define_label!(
|
|
|
|
/// /// A class of labels.
|
|
|
|
/// MyNewLabelTrait,
|
|
|
|
/// /// Identifies a value that implements `MyNewLabelTrait`.
|
|
|
|
/// MyNewLabelId,
|
|
|
|
/// );
|
2021-08-24 00:31:21 +00:00
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! define_label {
|
2022-07-20 19:39:42 +00:00
|
|
|
(
|
|
|
|
$(#[$label_attr:meta])*
|
|
|
|
$label_name:ident,
|
|
|
|
|
|
|
|
$(#[$id_attr:meta])*
|
|
|
|
$id_name:ident $(,)?
|
|
|
|
) => {
|
|
|
|
$(#[$id_attr])*
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct $id_name(::core::any::TypeId, &'static str);
|
|
|
|
|
|
|
|
impl ::core::fmt::Debug for $id_name {
|
|
|
|
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
|
|
|
|
write!(f, "{}", self.1)
|
2021-08-24 00:31:21 +00:00
|
|
|
}
|
2022-07-20 19:39:42 +00:00
|
|
|
}
|
2021-08-24 00:31:21 +00:00
|
|
|
|
2022-07-20 19:39:42 +00:00
|
|
|
$(#[$label_attr])*
|
|
|
|
pub trait $label_name: 'static {
|
|
|
|
/// Converts this type into an opaque, strongly-typed label.
|
|
|
|
fn as_label(&self) -> $id_name {
|
|
|
|
let id = self.type_id();
|
|
|
|
let label = self.as_str();
|
|
|
|
$id_name(id, label)
|
|
|
|
}
|
|
|
|
/// Returns the [`TypeId`] used to differentiate labels.
|
|
|
|
fn type_id(&self) -> ::core::any::TypeId {
|
|
|
|
::core::any::TypeId::of::<Self>()
|
2021-08-24 00:31:21 +00:00
|
|
|
}
|
2022-07-20 19:39:42 +00:00
|
|
|
/// Returns the representation of this label as a string literal.
|
|
|
|
///
|
|
|
|
/// In cases where you absolutely need a label to be determined at runtime,
|
|
|
|
/// you can use [`Box::leak`] to get a `'static` reference.
|
|
|
|
fn as_str(&self) -> &'static str;
|
|
|
|
}
|
2021-08-24 00:31:21 +00:00
|
|
|
|
2022-07-20 19:39:42 +00:00
|
|
|
impl $label_name for $id_name {
|
|
|
|
fn as_label(&self) -> Self {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
fn type_id(&self) -> ::core::any::TypeId {
|
|
|
|
self.0
|
2021-08-24 00:31:21 +00:00
|
|
|
}
|
2022-07-20 19:39:42 +00:00
|
|
|
fn as_str(&self) -> &'static str {
|
|
|
|
self.1
|
|
|
|
}
|
|
|
|
}
|
2021-08-24 00:31:21 +00:00
|
|
|
|
2022-07-20 19:39:42 +00:00
|
|
|
impl $label_name for &'static str {
|
|
|
|
fn as_str(&self) -> Self {
|
|
|
|
self
|
2021-08-24 00:31:21 +00:00
|
|
|
}
|
2022-07-20 19:39:42 +00:00
|
|
|
}
|
2021-08-24 00:31:21 +00:00
|
|
|
};
|
|
|
|
}
|