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
//! Located entities.
use super::Location;
/// A located entity.
///
/// See the [module documentation](crate::fs::Location) for more information.
#[derive(Clone)]
pub struct Located<E> {
/// The inner entity `E`.
inner: E,
/// The location.
location: Location,
}
impl<E> Located<E> {
/// Creates a new [`Located`].
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.into_parts(), (0usize, Location::Unplaced));
/// ```
pub fn new(inner: E, location: Location) -> Self {
Located { inner, location }
}
/// Creates a [`Located`] with the [`Location`] as [`Location::Unplaced`].
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::unplaced(0usize);
/// assert_eq!(located.into_parts(), (0usize, Location::Unplaced));
/// ```
pub fn unplaced(inner: E) -> Self {
Located {
inner,
location: Location::Unplaced,
}
}
/// Returns the inner `E` for the [`Located<E>`] by reference.
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.inner(), &0usize);
pub fn inner(&self) -> &E {
&self.inner
}
/// Consumes `self` and returns the inner `E` for the [`Located<E>`].
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.into_inner(), 0usize);
/// ```
pub fn into_inner(self) -> E {
self.inner
}
/// Returns the [`Location`] for the [`Located<E>`] by reference.
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.location(), &Location::Unplaced);
/// ```
pub fn location(&self) -> &Location {
&self.location
}
/// Consumes `self` and returns the [`Location`] for the [`Located<E>`].
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.into_location(), Location::Unplaced);
/// ```
pub fn into_location(self) -> Location {
self.location
}
/// Consumes `self` to split the [`Located<E>`] into its respective parts.
///
/// # Examples
///
/// ```
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let located = Located::new(0usize, Location::Unplaced);
/// assert_eq!(located.into_parts(), (0usize, Location::Unplaced));
/// ```
pub fn into_parts(self) -> (E, Location) {
(self.inner, self.location)
}
/// Maps the inner value from an `F` to a `T`.
///
/// # Examples
///
/// ```
/// use std::num::NonZeroUsize;
///
/// use wdl_core::fs::location::Located;
/// use wdl_core::fs::Location;
///
/// let before = Located::new(1, Location::Unplaced);
/// let after = before.map(|i| NonZeroUsize::try_from(i).unwrap());
/// assert_eq!(after.into_inner(), NonZeroUsize::try_from(1).unwrap());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
pub fn map<F, T>(self, f: F) -> Located<T>
where
F: FnOnce(E) -> T,
{
Located {
inner: f(self.inner),
location: self.location,
}
}
}
//=======//
// START //
//=======//
// Note:: within this block, the included trait implementations explicitly only
// consider the inner value. That fact that the locations are non-important and
// are only accessible when [`location()`] is explicitly called on a [`Located`]
// is by design.
impl<E> std::fmt::Display for Located<E>
where
E: std::fmt::Display,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.inner)
}
}
impl<E> std::fmt::Debug for Located<E>
where
E: std::fmt::Debug,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.inner.fmt(f)
}
}
impl<E> PartialEq for Located<E>
where
E: std::cmp::PartialEq,
{
fn eq(&self, other: &Self) -> bool {
self.inner == other.inner
}
}
impl<E> Eq for Located<E> where E: std::cmp::Eq {}
impl<E> PartialOrd for Located<E>
where
E: std::cmp::PartialOrd,
{
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
self.inner.partial_cmp(&other.inner)
}
}
impl<E> Ord for Located<E>
where
E: std::cmp::Ord,
{
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.inner.cmp(&other.inner)
}
}
impl<E> std::hash::Hash for Located<E>
where
E: std::hash::Hash,
{
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.inner.hash(state);
}
}
//=====//
// END //
//=====//
impl<E> std::ops::Deref for Located<E> {
type Target = E;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
impl<E> std::borrow::Borrow<E> for Located<E> {
fn borrow(&self) -> &E {
&self.inner
}
}