use crate::storage::StorageError;
use thiserror::Error;
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum Error {
#[error("read disk error")]
ReadDisk(#[source] StorageError),
#[error("write disk error")]
WriteDisk(#[source] StorageError),
#[error("flush disk error")]
FlushDisk(#[source] StorageError),
#[error("invalid file id or file header")]
FileInfo,
#[error("no allocated bytes for file id being read")]
FileInfoAllocated,
#[error("cannot allocate 0 blocks")]
AllocateZero,
#[error("invalid data allocation offsets")]
AllocateOffset,
#[error("insufficient resources")]
InsufficientResources,
#[error("invalid file id")]
FileId,
#[error("invalid data buffer length")]
WriteFileLength,
#[error("trying to allocate too many blocks")]
WriteFileBlocks,
#[error("Fatal initialization error: {0}")]
Initialization(String),
#[error("VMGS_INVALID_FORMAT: {0}")]
InvalidFormat(String),
#[error("VMGS_CORRUPT_FORMAT: {0}")]
CorruptFormat(String),
#[error("empty file")]
EmptyFile,
#[error("cannot overwrite encrypted file with plaintext data")]
OverwriteEncrypted,
#[error("cannot read encrypted file - VMGS is locked")]
ReadEncrypted,
#[cfg(feature = "encryption_ossl")]
#[error("OpenSSL error {1}: {0}")]
OpenSSL(#[source] openssl::error::ErrorStack, String),
#[error(transparent)]
Other(#[from] anyhow::Error),
}