zalgo_codec_common/error.rs
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
//! Contains the definition of the error type used by the encoding functions in the crate.
use core::{fmt, str::Utf8Error};
#[cfg(feature = "std")]
use std::backtrace::Backtrace;
#[cfg(not(feature = "std"))]
use alloc::string::FromUtf8Error;
#[cfg(feature = "std")]
use std::string::FromUtf8Error;
#[derive(Debug)]
/// The error returned by [`zalgo_encode`](crate::zalgo_encode), [`ZalgoString::new`](crate::ZalgoString::new), and [`zalgo_wrap_python`](crate::zalgo_wrap_python)
/// if they encounter a byte they can not encode.
pub struct EncodeError {
unencodable_character: char,
line: usize,
column: usize,
index: usize,
#[cfg(feature = "std")]
backtrace: Backtrace,
}
impl EncodeError {
/// Creates a new `Error`.
///
/// # Note
///
/// This associated method does not check the validity of its inputs,
/// and just constructs a new `Error` instance.
#[inline]
#[must_use = "this associated method does not modify its inputs and just returns a new value"]
pub(crate) fn new(
unencodable_character: char,
line: usize,
column: usize,
index: usize,
) -> Self {
Self {
unencodable_character,
line,
column,
index,
#[cfg(feature = "std")]
backtrace: Backtrace::capture(),
}
}
/// Returns the 1-indexed line number of the line on which the unencodable byte occured.
///
/// # Examples
///
/// ```
/// # use zalgo_codec_common::{EncodeError, zalgo_encode};
/// assert_eq!(zalgo_encode("❤️").map_err(|e| e.line()), Err(1));
/// assert_eq!(zalgo_encode("a\nb\nc\r\n").map_err(|e| e.line()), Err(3));
/// ```
#[inline]
#[must_use = "the method returns a new value and does not modify `self`"]
pub const fn line(&self) -> usize {
self.line
}
/// Returns the 1-indexed column where the unencodable byte occured.
/// Columns are counted from left to right and the count resets for each new line.
///
/// # Example
///
/// ```
/// # use zalgo_codec_common::{EncodeError, zalgo_encode};
/// assert_eq!(zalgo_encode("I ❤️ 🎂").map_err(|e| e.column()), Err(3));
/// assert_eq!(zalgo_encode("I\n❤️\n🎂").map_err(|e|e.column()), Err(1));
/// ```
#[inline]
#[must_use = "the method returns a new value and does not modify `self`"]
pub const fn column(&self) -> usize {
self.column
}
/// Returns the unencodable character that caused the error.
///
/// This may not match with what you see when you look at the unencoded string in a text editor since
/// some grapheme clusters consist of many unicode characters.
///
/// # Examples
///
/// ```
/// # use zalgo_codec_common::zalgo_encode;
/// assert_eq!(zalgo_encode("CRLF\r\n").map_err(|e| e.char()), Err('\r'));
///
/// ```
/// The ❤️ emoji consists of two characters, the heart `U+2764` and the color variant selector `U+FE0F`.
/// Since the heart is not encodable, that is the place where the error is generated:
/// ```
/// # use zalgo_codec_common::zalgo_encode;
/// assert_eq!(zalgo_encode("❤️").map_err(|e| e.char()), Err('❤'));
/// ```
/// The grapheme cluster `á` consists of a normal `a` and a combining acute accent, `U+301`.
/// The `a` can be encoded and the combining acute accent can not, so the error points only to the accent:
/// ```
/// # use zalgo_codec_common::zalgo_encode;
/// assert_eq!(zalgo_encode("á").map_err(|e| e.char()), Err('\u{301}'))
/// ```
#[inline]
#[must_use = "the method returns a new value and does not modify `self`"]
pub const fn char(&self) -> char {
self.unencodable_character
}
/// Returns the index of the string where the unencodable character occured.
///
/// # Example
///
/// ```
/// # use zalgo_codec_common::zalgo_encode;
/// assert_eq!(zalgo_encode("ab\ncdë").map_err(|e| e.index()), Err(5));
/// ```
#[inline]
#[must_use = "the method returns a new value and does not modify `self`"]
pub const fn index(&self) -> usize {
self.index
}
#[cfg(feature = "std")]
/// Returns a reference to a [`Backtrace`] that was captured when the error was created.
///
/// See the documentation of [`Backtrace::capture`] for more information about how to make it
/// show more information when displayed.
#[inline]
pub fn backtrace(&self) -> &Backtrace {
&self.backtrace
}
}
impl fmt::Display for EncodeError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"can not encode {:?} character at string index {}, on line {} at column {}",
self.char(),
self.index(),
self.line(),
self.column(),
)
}
}
impl core::error::Error for EncodeError {}
/// The error returned by [`zalgo_decode`](super::zalgo_decode) if a string can not be decoded.
#[derive(Debug)]
pub struct DecodeError {
kind: DecodeErrorKind,
#[cfg(feature = "std")]
backtrace: Backtrace,
}
impl DecodeError {
pub(crate) fn new(possible_error: Option<FromUtf8Error>) -> Self {
Self {
#[cfg(feature = "std")]
backtrace: Backtrace::capture(),
kind: match possible_error {
Some(e) => DecodeErrorKind::InvalidUtf8(e),
None => DecodeErrorKind::EmptyInput,
},
}
}
/// Returns whether the error happened because the given string was empty,
/// and not because the decoding resulted in invalid UTF-8.
pub fn cause_was_empty_string(&self) -> bool {
matches!(self.kind, DecodeErrorKind::EmptyInput)
}
#[cfg(feature = "std")]
/// Returns a backtrace to where the error was created.
///
/// The backtrace was captured with [`Backtrace::capture`], see it for more information
/// on how to make it show information when printed.
pub fn backtrace(&self) -> &Backtrace {
&self.backtrace
}
/// If the error happened because the decoding resulted in invalid UTF-8,
/// this function returns the [`Utf8Error`] that was created in the process.
pub fn to_utf8_error(&self) -> Option<Utf8Error> {
match &self.kind {
DecodeErrorKind::InvalidUtf8(e) => Some(e.utf8_error()),
DecodeErrorKind::EmptyInput => None,
}
}
/// If the error happened because the decoding resulted in invalid UTF-8,
/// this function converts this error into the [`FromUtf8Error`] that was created in the process.
pub fn into_from_utf8_error(self) -> Option<FromUtf8Error> {
match self.kind {
DecodeErrorKind::InvalidUtf8(e) => Some(e),
DecodeErrorKind::EmptyInput => None,
}
}
}
impl fmt::Display for DecodeError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "could not decode the string because {}", self.kind)
}
}
impl core::error::Error for DecodeError {
fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
match self.kind {
DecodeErrorKind::InvalidUtf8(ref e) => Some(e),
DecodeErrorKind::EmptyInput => None,
}
}
}
/// The kind of error the caused the decoding failure.
#[derive(Debug, Clone, PartialEq, Eq)]
enum DecodeErrorKind {
/// The given string was empty.
EmptyInput,
/// Decoding the string resulted in invalid UTF-8.
InvalidUtf8(FromUtf8Error),
}
impl fmt::Display for DecodeErrorKind {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::EmptyInput => write!(f, "the string was empty"),
Self::InvalidUtf8(e) => write!(f, "decoding resulted in invalid utf8: {e}"),
}
}
}
#[cfg(test)]
mod test {
use super::{DecodeError, EncodeError};
#[cfg(not(feature = "std"))]
use alloc::{string::String, vec};
#[test]
fn test_error() {
let err = EncodeError::new('å', 1, 7, 6);
assert_eq!(err.char(), 'å');
assert_eq!(err.line(), 1);
assert_eq!(err.column(), 7);
assert_eq!(err.index(), 6);
}
#[test]
fn test_decode_error() {
let err = DecodeError::new(None);
assert_eq!(err.to_utf8_error(), None);
assert!(err.cause_was_empty_string());
assert_eq!(err.into_from_utf8_error(), None);
let err = DecodeError::new(String::from_utf8(vec![255, 255, 255, 255, 255, 255]).err());
assert_eq!(err.to_utf8_error().unwrap().error_len(), Some(1));
assert_eq!(err.to_utf8_error().unwrap().valid_up_to(), 0);
assert!(!err.cause_was_empty_string());
assert_eq!(
err.into_from_utf8_error().unwrap().into_bytes(),
vec![255; 6]
);
}
}