wary 0.3.1

A simple validation and transformation library.
Documentation
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
#![doc = include_str!("../README.md")]
#![cfg_attr(not(any(test, feature = "std")), no_std)]
#![warn(
	clippy::pedantic,
	clippy::print_stdout,
	clippy::print_stderr,
	clippy::panic
)]
#![allow(
	clippy::new_without_default,
	clippy::wildcard_imports,
	clippy::enum_glob_use
)]
#![cfg_attr(test, allow(non_upper_case_globals))]

pub mod error;
pub mod options;

#[doc(hidden)]
#[cfg(all(not(feature = "std"), feature = "alloc"))]
pub extern crate alloc;
#[cfg(feature = "alloc")]
use alloc::{string::String, vec::Vec};
use core::{future::Future, prelude::rust_2021::*};
#[doc(hidden)]
#[cfg(feature = "std")]
pub use std as alloc;

use error::Path;
pub use error::{Error, Report};
pub use options::rule::{length::Length, range::Compare};
#[cfg(feature = "derive")]
pub use wary_derive::*;

#[doc(hidden)]
pub mod internal {
	#[cfg(all(feature = "regex", feature = "std"))]
	#[macro_export]
	macro_rules! init_regex {
		(static $id:ident = $s:expr) => {
			#[allow(non_upper_case_globals)]
			static $id: $crate::alloc::sync::LazyLock<$crate::options::rule::regex::Regex> =
				$crate::alloc::sync::LazyLock::new(|| {
					$crate::options::rule::regex::Regex::new($s).unwrap()
				});
		};
	}

	#[cfg(all(feature = "regex", not(feature = "std")))]
	#[macro_export]
	macro_rules! init_regex {
		(static $id:ident = $s:expr) => {
			#[allow(non_upper_case_globals)]
			static $id: once_cell::sync::Lazy<$crate::options::rule::regex::Regex> =
				once_cell::sync::Lazy::new(|| $crate::options::rule::regex::Regex::new($s).unwrap());
		};
	}

	#[cfg(feature = "regex")]
	pub use init_regex;
}

pub mod toolbox {
	//! A collection of common imports for various use-cases.

	#[allow(unused_imports)]
	pub mod rule {
		//! A collection of common imports for writing rules and modifiers.

		pub use core::{marker::PhantomData, prelude::rust_2021::*};

		#[cfg(feature = "alloc")]
		pub(crate) use crate::alloc::{
			borrow::Cow,
			boxed::Box,
			format,
			string::{String, ToString},
			vec,
			vec::Vec,
		};
		pub use crate::{options::Unset, AsMut, AsRef, AsSlice, Error, Report};
		#[allow(missing_docs)]
		pub type Result<T> = core::result::Result<T, Error>;
	}

	#[allow(unused_imports)]
	pub mod test {
		pub use crate::{
			toolbox::rule::*, AsyncRule, AsyncTransform, AsyncTransformer, AsyncValidate, Rule,
			Transform, Transformer, Validate, Wary,
		};
	}
}

/// Trait for validating and transforming data.
///
/// This is a simple wrapper around types that are [`Validate`] and
/// [`Transform`], first validating the type then transforming if validation
/// returned no errors.
pub trait Wary<C>: Validate<Context = C> + Transform<Context = C> {
	/// Validates with [`Validate::validate`], then (if successful) modifies with
	/// [`Transform::transform`].
	///
	/// # Errors
	///
	/// Forwards any errors from [`Validate::validate`].
	fn wary(&mut self, ctx: &C) -> Result<(), Report> {
		self.validate(ctx)?;
		self.transform(ctx);
		Ok(())
	}
}

impl<T, C> Wary<C> for T where T: Validate<Context = C> + Transform<Context = C> {}

pub trait AsyncWary<C>: AsyncValidate<Context = C> + AsyncTransform<Context = C> {
	/// Validates with [`AsyncValidate::validate_async`], then (if successful)
	/// modifies with [`AsyncTransform::transform_async`].
	///
	/// # Errors
	///
	/// Forwards any errors from [`AsyncValidate::validate_async`].
	fn wary_async(&mut self, ctx: &C) -> impl Future<Output = Result<(), Report>> + Send;
}

impl<T, C> AsyncWary<C> for T
where
	T: AsyncValidate<Context = C> + AsyncTransform<Context = C> + Send + Sync,
	C: Sync,
{
	async fn wary_async(&mut self, ctx: &C) -> Result<(), Report> {
		let mut report = Report::default();

		self
			.validate_into_async(ctx, &Path::default(), &mut report)
			.await;
		if report.is_empty() {
			self.transform_async(ctx).await;
			Ok(())
		} else {
			Err(report)
		}
	}
}

/// Trait for transforming other data.
pub trait Transformer<I: ?Sized> {
	/// Additional context required to transform the input.
	type Context;

	/// Transform the input.
	fn transform(&self, ctx: &Self::Context, item: &mut I);
}

pub trait AsyncTransformer<I: ?Sized> {
	/// Additional context required to transform the input.
	type Context: Send;

	/// Transform the input.
	fn transform_async(&self, ctx: &Self::Context, item: &mut I) -> impl Future<Output = ()> + Send;
}

/// Trait for transforming itself.
pub trait Transform {
	/// Additional context required to transform itself.
	type Context;

	/// Transform itself.
	fn transform(&mut self, ctx: &Self::Context);
}

pub trait AsyncTransform {
	/// Additional context required to transform itself.
	type Context: Send;

	/// Transform itself.
	fn transform_async(&mut self, ctx: &Self::Context) -> impl Future<Output = ()> + Send;
}

/// Trait for validating other data.
pub trait Rule<I: ?Sized> {
	/// Additional context required to validate the input.
	type Context;

	/// Validates the item.
	///
	/// # Errors
	///
	/// Returns an error if the item does not pass validation.
	fn validate(&self, ctx: &Self::Context, item: &I) -> Result<(), Error>;
}

pub trait AsyncRule<I: ?Sized> {
	/// Additional context required to validate the input.
	type Context: Send;

	/// Validates the item.
	///
	/// # Errors
	///
	/// Returns an error if the item does not pass validation.
	fn validate_async(
		&self,
		ctx: &Self::Context,
		item: &I,
	) -> impl Future<Output = Result<(), Error>> + Send;
}

/// Trait for validating itself.
pub trait Validate {
	/// Additional context required to validate itself.
	type Context;

	/// Validates itself and appends all errors to the attached [`Report`].
	fn validate_into(&self, ctx: &Self::Context, parent: &Path, report: &mut Report);

	/// Validates itself.
	///
	/// # Errors
	///
	/// Returns all errors found during validation.
	fn validate(&self, ctx: &Self::Context) -> Result<(), Report> {
		let mut report = Report::default();
		self.validate_into(ctx, &Path::default(), &mut report);

		if report.is_empty() {
			Ok(())
		} else {
			Err(report)
		}
	}
}

pub trait AsyncValidate {
	/// Additional context required to validate itself.
	type Context: Send;

	/// Validates itself and appends all errors to the attached [`Report`].
	fn validate_into_async(
		&self,
		ctx: &Self::Context,
		parent: &Path,
		report: &mut Report,
	) -> impl Future<Output = ()> + Send;

	/// Validates itself.
	fn validate_async(&self, ctx: &Self::Context) -> impl Future<Output = Result<(), Report>> + Send
	where
		Self: Sync,
		Self::Context: Sync,
	{
		let mut report = Report::default();

		async move {
			self
				.validate_into_async(ctx, &Path::default(), &mut report)
				.await;
			if report.is_empty() {
				Ok(())
			} else {
				Err(report)
			}
		}
	}
}

impl<T> Validate for Option<T>
where
	T: Validate,
{
	type Context = T::Context;

	#[inline]
	fn validate_into(&self, ctx: &Self::Context, parent: &Path, report: &mut Report) {
		if let Some(inner) = self {
			inner.validate_into(ctx, parent, report);
		}
	}
}

impl<T: ?Sized> Validate for &T
where
	T: Validate,
{
	type Context = T::Context;

	#[inline]
	fn validate_into(&self, ctx: &Self::Context, parent: &Path, report: &mut Report) {
		(*self).validate_into(ctx, parent, report);
	}
}

/// Trait for cheap reference-to-reference conversion.
///
/// This trait contains a blanket implementation for all
/// [`AsRef`](std::convert::AsRef) types using the standard library's trait of
/// the same name. Additional implementations were created for better ergonomics
/// with strings and other data.
pub trait AsRef<T: ?Sized> {
	/// Converts this type into a shared reference of the input type.
	fn as_ref(&self) -> &T;
}

impl<To: ?Sized, From: core::convert::AsRef<To> + ?Sized> AsRef<To> for From {
	#[inline]
	fn as_ref(&self) -> &To {
		self.as_ref()
	}
}

/// Trait for cheap mutable-to-mutable reference conversion.
///
/// This trait contains a blanket implementation for all
/// [`AsMut`](std::convert::AsMut) types using the standard library's trait of
/// the same name. Additional implementations were created for better ergonomics
/// with strings and other data.
pub trait AsMut<T: ?Sized> {
	/// Converts this type into a mutable reference of the input type.
	fn as_mut(&mut self) -> &mut T;
}

impl<To: ?Sized, From: core::convert::AsMut<To> + ?Sized> AsMut<To> for From {
	#[inline]
	fn as_mut(&mut self) -> &mut To {
		self.as_mut()
	}
}

/// Trait for cheap reference-to-slice conversion.
///
/// This trait is used for accepting slices of data like [`Vec`],
/// [`std::slice`], [`Option`], and other slice-like types for validation and
/// modification.
pub trait AsSlice {
	/// An element of the output slice.
	type Item;

	/// Converts the type into a slice.
	fn as_slice(&self) -> &[Self::Item];
}

impl<T: ?Sized> AsSlice for &T
where
	T: AsSlice,
{
	type Item = T::Item;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		(**self).as_slice()
	}
}

impl<T> AsSlice for &mut T
where
	T: AsSlice + ?Sized,
{
	type Item = T::Item;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		(**self).as_slice()
	}
}

impl<T> AsSlice for Option<T> {
	type Item = T;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self.as_slice()
	}
}

#[cfg(feature = "alloc")]
impl<T> AsSlice for Vec<T> {
	type Item = T;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self
	}
}

impl<T> AsSlice for [T] {
	type Item = T;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self
	}
}

impl<const N: usize, T> AsSlice for [T; N] {
	type Item = T;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self
	}
}

impl AsSlice for str {
	type Item = u8;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self.as_bytes()
	}
}

#[cfg(feature = "alloc")]
impl AsSlice for String {
	type Item = u8;

	#[inline]
	fn as_slice(&self) -> &[Self::Item] {
		self.as_bytes()
	}
}

/// Trait for cheap reference-to-slice conversion with mutability.
///
/// Similar to [`AsSlice`], but mutable.
pub trait AsMutSlice: AsSlice {
	/// Converts the type into a mutable slice.
	fn as_mut_slice(&mut self) -> &mut [Self::Item];
}

impl<T> AsMutSlice for &mut T
where
	T: AsMutSlice,
{
	#[inline]
	fn as_mut_slice(&mut self) -> &mut [Self::Item] {
		(**self).as_mut_slice()
	}
}

impl<T> AsMutSlice for Option<T> {
	#[inline]
	fn as_mut_slice(&mut self) -> &mut [Self::Item] {
		self.as_mut_slice()
	}
}

#[cfg(feature = "alloc")]
impl<T> AsMutSlice for Vec<T> {
	#[inline]
	fn as_mut_slice(&mut self) -> &mut [Self::Item] {
		self
	}
}

impl<T> AsMutSlice for [T] {
	#[inline]
	fn as_mut_slice(&mut self) -> &mut [Self::Item] {
		self
	}
}

impl<const N: usize, T> AsMutSlice for [T; N] {
	#[inline]
	fn as_mut_slice(&mut self) -> &mut [Self::Item] {
		self
	}
}