mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-28 17:18:58 +00:00
109 lines
3.1 KiB
Rust
109 lines
3.1 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use thiserror::Error;
|
|
|
|
use super::heal::{DiskError, EcstoreError};
|
|
|
|
/// Custom error type for heal operations
|
|
/// This enum defines various error variants that can occur during
|
|
/// the execution of heal-related tasks, such as I/O errors, storage errors,
|
|
/// configuration errors, and specific errors related to healing operations.
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error("I/O error: {0}")]
|
|
Io(#[from] std::io::Error),
|
|
|
|
#[error("Storage error: {0}")]
|
|
Storage(#[from] EcstoreError),
|
|
|
|
#[error("Disk error: {0}")]
|
|
Disk(#[from] DiskError),
|
|
|
|
#[error("Configuration error: {0}")]
|
|
Config(String),
|
|
|
|
#[error("Heal configuration error: {message}")]
|
|
ConfigurationError { message: String },
|
|
|
|
#[error("Other error: {0}")]
|
|
Other(String),
|
|
|
|
#[error("Serialization error: {0}")]
|
|
Serialization(String),
|
|
|
|
#[error("IO error: {0}")]
|
|
IO(String),
|
|
|
|
#[error("Not found: {0}")]
|
|
NotFound(String),
|
|
|
|
#[error("Invalid checkpoint: {0}")]
|
|
InvalidCheckpoint(String),
|
|
|
|
#[error("Heal task not found: {task_id}")]
|
|
TaskNotFound { task_id: String },
|
|
|
|
#[error("Heal task already exists: {task_id}")]
|
|
TaskAlreadyExists { task_id: String },
|
|
|
|
#[error("Invalid heal client token")]
|
|
InvalidClientToken,
|
|
|
|
#[error("Heal manager is not running")]
|
|
ManagerNotRunning,
|
|
|
|
#[error("Heal task execution failed: {message}")]
|
|
TaskExecutionFailed { message: String },
|
|
|
|
#[error("Invalid heal type: {heal_type}")]
|
|
InvalidHealType { heal_type: String },
|
|
|
|
#[error("Transient heal skip: {message}")]
|
|
TransientSkip { message: String },
|
|
|
|
#[error("Heal task cancelled")]
|
|
TaskCancelled,
|
|
|
|
#[error("Heal task timeout")]
|
|
TaskTimeout,
|
|
|
|
#[error("Heal event processing failed: {message}")]
|
|
EventProcessingFailed { message: String },
|
|
|
|
#[error("Heal progress tracking failed: {message}")]
|
|
ProgressTrackingFailed { message: String },
|
|
}
|
|
|
|
/// A specialized Result type for heal operations
|
|
pub type Result<T, E = Error> = std::result::Result<T, E>;
|
|
|
|
impl Error {
|
|
/// Create an Other error from any error type
|
|
pub fn other(error: impl std::fmt::Display) -> Self {
|
|
Error::Other(error.to_string())
|
|
}
|
|
|
|
/// Create a transient skip error for retryable background heal checks.
|
|
pub fn transient_skip(message: impl Into<String>) -> Self {
|
|
Error::TransientSkip { message: message.into() }
|
|
}
|
|
}
|
|
|
|
impl From<Error> for std::io::Error {
|
|
fn from(err: Error) -> Self {
|
|
std::io::Error::other(err)
|
|
}
|
|
}
|