diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-08 04:11:02 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-08 04:11:02 +0300 |
commit | 8d8653133bf3a12ac58c0e4f34624e9beac11751 (patch) | |
tree | ac0831704db9f138a90872b530eabda457db1829 /libs/nres/src/error.rs | |
parent | 94d2f8a512312b8aff25672760b687e6d90c1ec9 (diff) | |
download | fparkan-8d8653133bf3a12ac58c0e4f34624e9beac11751.tar.xz fparkan-8d8653133bf3a12ac58c0e4f34624e9beac11751.zip |
Обновление структуры проекта
Diffstat (limited to 'libs/nres/src/error.rs')
-rw-r--r-- | libs/nres/src/error.rs | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libs/nres/src/error.rs b/libs/nres/src/error.rs new file mode 100644 index 0000000..440ab06 --- /dev/null +++ b/libs/nres/src/error.rs @@ -0,0 +1,45 @@ +extern crate miette; +extern crate thiserror; + +use miette::Diagnostic; +use thiserror::Error; + +#[derive(Error, Diagnostic, Debug)] +pub enum ConverterError { + #[error("error converting an value")] + #[diagnostic(code(libnres::infallible))] + Infallible(#[from] std::convert::Infallible), + + #[error("error converting an value")] + #[diagnostic(code(libnres::try_from_int_error))] + TryFromIntError(#[from] std::num::TryFromIntError), +} + +#[derive(Error, Diagnostic, Debug)] +pub enum ReaderError { + #[error(transparent)] + #[diagnostic(code(libnres::convert_error))] + ConvertValue(#[from] ConverterError), + + #[error("incorrect header format")] + #[diagnostic(code(libnres::list_type_error))] + IncorrectHeader, + + #[error("incorrect file size (expected {expected:?} bytes, received {received:?} bytes)")] + #[diagnostic(code(libnres::file_size_error))] + IncorrectSizeFile { expected: u32, received: u32 }, + + #[error( + "incorrect size of the file list (not a multiple of {expected:?}, received {received:?})" + )] + #[diagnostic(code(libnres::list_size_error))] + IncorrectSizeList { expected: u32, received: u32 }, + + #[error("resource file reading error")] + #[diagnostic(code(libnres::io_error))] + ReadFile(#[from] std::io::Error), + + #[error("file is too small (must be at least {expected:?} bytes, received {received:?} byte)")] + #[diagnostic(code(libnres::file_size_error))] + SmallFile { expected: u32, received: u32 }, +} |