fyi_msg 2.4.0

Simple ANSI-formatted, prefixed messages for console printing.
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
/*!
# FYI Msg: Message Kinds (Prefixes).
*/

use crate::{
	AnsiColor,
	Msg,
};
use fyi_ansi::ansi;
use std::{
	borrow::Cow,
	fmt,
};



/// # Helper: `MsgKind` Setup.
macro_rules! msg_kind {
	// A neat counting trick adapted from The Little Book of Rust Macros, used
	// here to figure out the size of the ALL array.
	(@count $odd:tt) => ( 1 );
	(@count $odd:tt $( $a:tt $b:tt )+) => ( (msg_kind!(@count $($a)+) * 2) + 1 );
	(@count $( $a:tt $b:tt )+) =>         (  msg_kind!(@count $($a)+) * 2      );

	// Define MsgKind, MsgKind::ALL, and MsgKind::as_str_prefix.
	(@build $( $k:ident $v:expr, )+) => (
		#[expect(missing_docs, reason = "Redudant.")]
		#[derive(Debug, Copy, Clone, Eq, Hash, PartialEq)]
		/// # Message Kind.
		///
		/// This enum contains built-in prefixes for [`Msg`](crate::Msg). These are
		/// generally only used to initiate a new message with this prefix, like:
		///
		/// ## Examples
		///
		/// ```
		/// use fyi_msg::{Msg, MsgKind};
		///
		/// // Error: Oh no!
		/// assert_eq!(
		///     Msg::new(MsgKind::Error, "Oh no!"),
		///     MsgKind::Error.into_msg("Oh no!"),
		/// );
		/// ```
		///
		/// Most kinds have their own dedicated [`Msg`] helper method which, unlike the
		/// previous examples, comes with a line break at the end.
		///
		/// ```
		/// use fyi_msg::{Msg, MsgKind};
		///
		/// // Error: Oh no!\n
		/// assert_eq!(
		///     Msg::error("Oh no!"),
		///     Msg::new(MsgKind::Error, "Oh no!").with_newline(true),
		/// );
		/// ```
		pub enum MsgKind {
			$( $k, )+
		}

		impl MsgKind {
			/// # All Variants.
			///
			/// This array can be used to cheaply iterate through all message kinds.
			pub const ALL: [Self; msg_kind!(@count $($k)+)] = [
				$( Self::$k, )+
			];

			#[inline]
			#[must_use]
			/// # As String Slice (Prefix).
			///
			/// Return the kind as a string slice, formatted and with a trailing `": "`,
			/// same as [`Msg`] uses for prefixes.
			pub(crate) const fn as_str_prefix(self) -> &'static str {
				match self {
					$( Self::$k => $v, )+
				}
			}
		}
	);

	// Define the one-shot Msg helpers.
	(@msg $( $k:ident $fn:ident $v:expr, )+) => (
		/// ## [`MsgKind`] One-Shots.
		impl Msg {
			$(
				#[must_use]
				#[doc = concat!("# New ", stringify!($k), ".")]
				///
				#[doc = concat!("Create a new [`Msg`] with a built-in [`MsgKind::", stringify!($k), "`] prefix _and_ trailing line break.")]
				///
				/// ## Examples.
				///
				/// ```
				/// use fyi_msg::{Msg, MsgKind};
				///
				/// assert_eq!(
				#[doc = concat!("    Msg::", stringify!($fn), "(\"Hello World\"),")]
				#[doc = concat!("    Msg::new(MsgKind::", stringify!($k), ", \"Hello World\").with_newline(true),")]
				/// );
				/// ```
				pub fn $fn<S: AsRef<str>>(msg: S) -> Self {
					// Glue it all together.
					let msg = msg.as_ref();
					let m_end = $v.len() + msg.len();
					let mut inner = String::with_capacity(m_end + 1);
					inner.push_str($v);
					inner.push_str(msg);
					inner.push('\n');

					// Done!
					Self {
						inner,
						toc: super::toc!($v.len(), m_end, true),
					}
				}
			)+
		}
	);

	// Generate an ANSI-formatted Msg prefix for a given kind.
	(@prefix $kind:ident $color:tt) => (
		concat!(ansi!((bold, $color) stringify!($kind), ":"), " ")
	);

	// Entry point!
	($( $kind:ident $fn:ident $bytes:literal $color:tt $color_ident:ident, )+) => (
		#[cfg(feature = "bin_kinds")]
		msg_kind!{
			@build
			None "",
			Confirm msg_kind!(@prefix Confirm dark_orange),
			$( $kind msg_kind!(@prefix $kind $color), )+
			Blank "",
			Custom "",
		}

		#[cfg(not(feature = "bin_kinds"))]
		msg_kind!{
			@build
			None "",
			Confirm msg_kind!(@prefix Confirm dark_orange),
			$( $kind msg_kind!(@prefix $kind $color), )+
		}

		msg_kind!{
			@msg
			$( $kind $fn msg_kind!(@prefix $kind $color), )+
		}

		#[cfg(feature = "bin_kinds")]
		impl From<&[u8]> for MsgKind {
			/// # From Byte Slice.
			fn from(src: &[u8]) -> Self {
				match src.trim_ascii() {
					b"blank" => Self::Blank,
					b"confirm" | b"prompt" => Self::Confirm,
					b"print" => Self::Custom,
					$( $bytes => Self::$kind, )+
					_ => Self::None,
				}
			}
		}

		impl MsgKind {
			#[must_use]
			/// # As String Slice.
			///
			/// Return the kind as a string slice, _without_ the formatting and trailing
			/// `": "` used by [`Msg`].
			///
			/// ## Examples
			///
			/// ```
			/// use fyi_msg::MsgKind;
			///
			/// assert_eq!(MsgKind::Error.as_str(), "Error");
			/// assert_eq!(MsgKind::Success.as_str(), "Success");
			///
			/// // Note that None is empty.
			/// assert_eq!(MsgKind::None.as_str(), "");
			/// ```
			pub const fn as_str(self) -> &'static str {
				match self {
					Self::Confirm => "Confirm",
					$( Self::$kind => stringify!($kind), )+
					_ => "",
				}
			}

			#[cfg(feature = "bin_kinds")]
			#[doc(hidden)]
			#[must_use]
			/// # Command.
			///
			/// Return the corresponding CLI (sub)command that triggers this kind.
			///
			/// Note: this is only intended for use by the `fyi` binary; the method
			/// may change without warning.
			pub const fn command(self) -> &'static str {
				match self {
					Self::Blank => "blank",
					Self::Confirm => "confirm",
					Self::Custom => "print",
					Self::None => "",
					$( Self::$kind => stringify!($fn), )+
				}
			}

			#[must_use]
			/// # Prefix Color.
			///
			/// Return the color used by this kind when playing the role of a [`Msg`]
			/// prefix, or `None` if [`MsgKind::None`], which has neither content nor
			/// formatting.
			///
			/// ## Examples
			///
			/// ```
			/// use fyi_msg::{AnsiColor, MsgKind};
			///
			/// assert_eq!(
			///     MsgKind::Info.prefix_color(),
			///     Some(AnsiColor::LightMagenta),
			/// );
			/// ```
			pub const fn prefix_color(self) -> Option<AnsiColor> {
				match self {
					#[cfg(feature = "bin_kinds")] Self::None | Self::Blank | Self::Custom => None,
					#[cfg(not(feature = "bin_kinds"))] Self::None => None,
					Self::Confirm =>  Some(AnsiColor::DarkOrange),
					$( Self::$kind => Some(AnsiColor::$color_ident), )+
				}
			}
		}
	);
}

msg_kind! {
	Aborted  aborted  b"aborted"  light_red     LightRed,
	Crunched crunched b"crunched" light_green   LightGreen,
	Debug    debug    b"debug"    light_cyan    LightCyan,
	Done     done     b"done"     light_green   LightGreen,
	Error    error    b"error"    light_red     LightRed,
	Found    found    b"found"    light_green   LightGreen,
	Info     info     b"info"     light_magenta LightMagenta,
	Notice   notice   b"notice"   light_magenta LightMagenta,
	Review   review   b"review"   light_cyan    LightCyan,
	Skipped  skipped  b"skipped"  light_yellow  LightYellow,
	Success  success  b"success"  light_green   LightGreen,
	Task     task     b"task"     199           Misc199,
	Warning  warning  b"warning"  light_yellow  LightYellow,
}

impl Default for MsgKind {
	#[inline]
	fn default() -> Self { Self::None }
}

impl fmt::Display for MsgKind {
	#[inline]
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		<str as fmt::Display>::fmt(self.as_str(), f)
	}
}

/// ## Details.
impl MsgKind {
	#[cfg(feature = "bin_kinds")]
	#[must_use]
	/// # Is Empty.
	///
	/// This returns `true` for [`MsgKind::None`], [`MsgKind::Blank`], and
	/// [`MsgKind::Custom`], `false` for everything else.
	pub const fn is_empty(self) -> bool {
		matches!(self, Self::None | Self::Blank | Self::Custom)
	}

	#[cfg(not(feature = "bin_kinds"))]
	#[must_use]
	/// # Is Empty.
	///
	/// This returns `true` for [`MsgKind::None`], `false` for everything else.
	pub const fn is_empty(self) -> bool { matches!(self, Self::None) }

	#[inline]
	#[must_use]
	/// # Into Message.
	///
	/// This is a convenience method to generate a new message using this
	/// prefix, equivalent to passing the kind to [`Msg::new`] manually.
	///
	/// ## Examples
	///
	/// ```
	/// use fyi_msg::{Msg, MsgKind};
	///
	/// assert_eq!(
	///     MsgKind::Error.into_msg("Oops"),
	///     Msg::new(MsgKind::Error, "Oops"),
	/// );
	/// ```
	///
	/// Most kinds — everything but [`MsgKind::None`] and [`MsgKind::Confirm`] —
	/// have same-named shorthand methods on the `Msg` struct itself that work
	/// like the above, except they also add a line break to the end.
	///
	/// ```
	/// use fyi_msg::{Msg, MsgKind};
	///
	/// assert_eq!(
	///     Msg::error("Oops"),
	///     MsgKind::Error.into_msg("Oops").with_newline(true),
	/// );
	/// ```
	pub fn into_msg<S>(self, msg: S) -> Msg
	where S: AsRef<str> { Msg::new(self, msg) }
}



/// # Into Message Prefix.
///
/// This trait provides everything necessary to format prefixes passed to
/// [`Msg::new`], [`Msg::set_prefix`], and [`Msg::with_prefix`].
///
/// More specifically, it allows users to choose between the "easy" built-in
/// [`MsgKind`] prefixes and custom ones, with or without ANSI formatting.
///
/// Custom prefixes can be any of the usual string types — `&str`,
/// `String`/`&String`, or `Cow<str>`/`&Cow<str>` — optionally tupled with an
/// [`AnsiColor`] for formatting.
///
/// See [`Msg::new`] for more details.
pub trait IntoMsgPrefix {
	/// # Prefix Length.
	///
	/// Returns the total byte length of the fully-rendered prefix, including
	/// any ANSI sequences and trailing `": "` separator.
	fn prefix_len(&self) -> usize;

	/// # Push Prefix.
	///
	/// Push the complete prefix to an existing string.
	fn prefix_push(&self, dst: &mut String);

	#[inline]
	/// # Prefix String.
	///
	/// Returns the complete prefix for rendering.
	///
	/// [`MsgKind`] prefixes are static and require no allocation, but custom
	/// types (unless empty) do to join all the pieces together.
	fn prefix_str(&self) -> Cow<'_, str> {
		let mut out = String::with_capacity(self.prefix_len());
		self.prefix_push(&mut out);
		Cow::Owned(out)
	}
}

impl IntoMsgPrefix for MsgKind {
	#[inline]
	/// # Prefix Length.
	fn prefix_len(&self) -> usize { self.as_str_prefix().len() }

	#[inline]
	/// # Prefix String.
	fn prefix_str(&self) -> Cow<'_, str> { Cow::Borrowed(self.as_str_prefix()) }

	#[inline]
	/// # Push Prefix.
	fn prefix_push(&self, dst: &mut String) { dst.push_str(self.as_str_prefix()); }
}

/// # Helper: `IntoMsgPrefix`.
macro_rules! into_prefix {
	($($ty:ty),+) => ($(
		impl IntoMsgPrefix for $ty {
			#[inline]
			/// # Prefix Length.
			fn prefix_len(&self) -> usize {
				let len = self.len();
				if len == 0 { 0 }
				else { len + 2 } // For the ": " separator.
			}

			#[inline]
			/// # Push Prefix.
			fn prefix_push(&self, dst: &mut String) {
				if ! self.is_empty() {
					dst.push_str(self);
					dst.push_str(": ");
				}
			}
		}

		impl IntoMsgPrefix for ($ty, AnsiColor) {
			#[inline]
			/// # Prefix Length.
			fn prefix_len(&self) -> usize {
				let len = self.0.len();
				if len == 0 { 0 }
				else {
					self.1.as_str_bold().len() + self.0.len() +
					AnsiColor::RESET_PREFIX.len()
				}
			}

			#[inline]
			/// # Push Prefix.
			fn prefix_push(&self, dst: &mut String) {
				if ! self.0.is_empty() {
					dst.push_str(self.1.as_str_bold());
					dst.push_str(&self.0);
					dst.push_str(AnsiColor::RESET_PREFIX);
				}
			}
		}

		impl IntoMsgPrefix for ($ty, u8) {
			#[inline]
			/// # Prefix Length.
			fn prefix_len(&self) -> usize {
				let len = self.0.len();
				if len == 0 { 0 }
				else {
					let color = AnsiColor::from_u8(self.1);
					color.as_str_bold().len() + self.0.len() +
					AnsiColor::RESET_PREFIX.len()
				}
			}

			#[inline]
			/// # Push Prefix.
			fn prefix_push(&self, dst: &mut String) {
				if ! self.0.is_empty() {
					dst.push_str(AnsiColor::from_u8(self.1).as_str_bold());
					dst.push_str(&self.0);
					dst.push_str(AnsiColor::RESET_PREFIX);
				}
			}
		}
	)+);
}
into_prefix!(&str, &String, String, &Cow<'_, str>, Cow<'_, str>);



#[cfg(test)]
mod test {
	use super::*;

	#[test]
	fn t_as_str_prefix() {
		// Make sure our hardcoded prefix strings look like they're supposed
		// to, using the ansi builder/color as an alternative.
		for kind in MsgKind::ALL {
			// Not all kinds have formatted versions.
			let Some(color) = kind.prefix_color() else { continue; };
			let manual = format!("{}{kind}:{} ", color.as_str_bold(), AnsiColor::RESET);

			assert_eq!(manual, kind.as_str_prefix());
		}
	}
}