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
/*!
This package provides a common code representing standards agencies.
The two core types, [Agency] and [Standard] work together to provide reporting
capabilities to other *codes* project packages. Specifically a package that
provides types corresponding to a standard definition can have an instance of
the [Standard] struct that describes the standard. This in turn references the
[Agency] that controls the standard.
```rust
use codes_agency::{Agency, Standard};
pub const ISO_4217: Standard = Standard::new_with_long_ref(
Agency::ISO,
"4217",
"ISO 4217:2015",
"Currency codes",
"https://www.iso.org/iso-4217-currency-codes.html",
);
```
*/
#![warn(
unknown_lints,
// ---------- Stylistic
absolute_paths_not_starting_with_crate,
elided_lifetimes_in_paths,
explicit_outlives_requirements,
macro_use_extern_crate,
nonstandard_style, /* group */
noop_method_call,
rust_2018_idioms,
single_use_lifetimes,
trivial_casts,
trivial_numeric_casts,
// ---------- Future
future_incompatible, /* group */
rust_2021_compatibility, /* group */
// ---------- Public
missing_debug_implementations,
// missing_docs,
unreachable_pub,
// ---------- Unsafe
unsafe_code,
unsafe_op_in_unsafe_fn,
// ---------- Unused
unused, /* group */
)]
#![deny(
// ---------- Public
exported_private_dependencies,
private_in_public,
// ---------- Deprecated
anonymous_parameters,
bare_trait_objects,
ellipsis_inclusive_range_patterns,
// ---------- Unsafe
deref_nullptr,
drop_bounds,
dyn_drop,
)]
use std::{fmt::Display, str::FromStr};
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------
///
/// This enumeration allows for the identification of well-known standards agencies. This is
/// useful in documenting crates that implement such standards.
///
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize))]
pub enum Agency {
IANA,
IEEE,
IETF,
ISO,
}
///
/// This structure allows for the description of a specific standard, or specification,
/// issued by a well-known standards agency. Note that different versions of a standard
/// should be different instances with *at least* different long references.
///
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize))]
pub struct Standard {
agency: Agency,
short_ref: &'static str,
long_ref: Option<&'static str>,
title: &'static str,
url: &'static str,
}
///
/// An error using in the `FromStr` implementation below.
///
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize))]
pub enum Error {
Unknown(String),
}
// ------------------------------------------------------------------------------------------------
// Public Functions
// ------------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------------
// Implementations
// ------------------------------------------------------------------------------------------------
impl Display for Agency {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.short_name())
}
}
impl FromStr for Agency {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"IANA" => Ok(Self::IANA),
"IEEE" => Ok(Self::IEEE),
"IETF" => Ok(Self::IETF),
"ISO" => Ok(Self::ISO),
_ => Err(Error::Unknown(s.to_string())),
}
}
}
impl Agency {
///
/// Return the short name, usually an acronym or abbreviation, of the agency.
/// This is usually the same set of characters as the variant name.
///
pub const fn short_name(&self) -> &'static str {
match self {
Self::IANA => "IANA",
Self::IEEE => "IEEE",
Self::IETF => "IETF",
Self::ISO => "ISO",
}
}
///
/// A longer name, if one exists, for the agency.
///
pub const fn name(&self) -> &'static str {
match self {
Self::IANA => "Internet Assigned Numbers Authority",
Self::IEEE => "IEEE",
Self::IETF => "The Internet Engineering Task Force",
Self::ISO => "International Organization for Standardization",
}
}
///
/// A URL for the agency.
///
pub const fn url(&self) -> &'static str {
match self {
Self::IANA => "https://www.iana.org",
Self::IEEE => "https://www.ieee.org",
Self::IETF => "https://www.ietf.org",
Self::ISO => "https://www.iso.org",
}
}
}
// ------------------------------------------------------------------------------------------------
impl Standard {
///
/// Create a new Standard **without** a long reference value.
///
pub const fn new(
agency: Agency,
short_ref: &'static str,
title: &'static str,
url: &'static str,
) -> Self {
Self {
agency,
short_ref,
long_ref: None,
title,
url,
}
}
///
/// Create a new Standard **with** a long reference value.
///
pub const fn new_with_long_ref(
agency: Agency,
short_ref: &'static str,
long_ref: &'static str,
title: &'static str,
url: &'static str,
) -> Self {
Self {
agency,
short_ref,
long_ref: Some(long_ref),
title,
url,
}
}
///
/// Return the [Agency] that controls this standard.
///
pub const fn agency(&self) -> Agency {
self.agency
}
///
/// Return the short reference, or number, of this standard.
///
pub const fn short_ref(&self) -> &'static str {
self.short_ref
}
///
/// Return a longer reference, if one exists, for this standard,
///
pub const fn long_ref(&self) -> Option<&&'static str> {
self.long_ref.as_ref()
}
///
/// Return the textual title of this standard.
///
pub const fn title(&self) -> &'static str {
self.title
}
///
/// Return the URL for this standard.
///
pub const fn url(&self) -> &'static str {
self.url
}
}
// ------------------------------------------------------------------------------------------------
impl Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}",
match self {
Self::Unknown(s) => format!("The short name {:?} is not a known agency", s),
}
)
}
}
impl std::error::Error for Error {}
// ------------------------------------------------------------------------------------------------
// Modules
// ------------------------------------------------------------------------------------------------