This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backing: refactor off of jobs system (#5377)
* backing: refactor off of jobs system * rename FailedToSpawnBg * refactor: backing uses fatality * fix service compilation
- Loading branch information
Showing
6 changed files
with
584 additions
and
367 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
// Copyright 2022 Parity Technologies (UK) Ltd. | ||
// This file is part of Polkadot. | ||
|
||
// Polkadot is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Polkadot is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
use fatality::Nested; | ||
use futures::channel::{mpsc, oneshot}; | ||
|
||
use polkadot_node_subsystem_util::Error as UtilError; | ||
use polkadot_primitives::v2::BackedCandidate; | ||
use polkadot_subsystem::{messages::ValidationFailed, SubsystemError}; | ||
|
||
use crate::LOG_TARGET; | ||
|
||
pub type Result<T> = std::result::Result<T, Error>; | ||
pub type FatalResult<T> = std::result::Result<T, FatalError>; | ||
|
||
/// Errors that can occur in candidate backing. | ||
#[allow(missing_docs)] | ||
#[fatality::fatality(splitable)] | ||
pub enum Error { | ||
#[error("Candidate is not found")] | ||
CandidateNotFound, | ||
|
||
#[error("Signature is invalid")] | ||
InvalidSignature, | ||
|
||
#[error("Failed to send candidates {0:?}")] | ||
Send(Vec<BackedCandidate>), | ||
|
||
#[error("FetchPoV failed")] | ||
FetchPoV, | ||
|
||
#[fatal] | ||
#[error("Failed to spawn background task")] | ||
FailedToSpawnBackgroundTask, | ||
|
||
#[error("ValidateFromChainState channel closed before receipt")] | ||
ValidateFromChainState(#[source] oneshot::Canceled), | ||
|
||
#[error("StoreAvailableData channel closed before receipt")] | ||
StoreAvailableData(#[source] oneshot::Canceled), | ||
|
||
#[error("a channel was closed before receipt in try_join!")] | ||
JoinMultiple(#[source] oneshot::Canceled), | ||
|
||
#[error("Obtaining erasure chunks failed")] | ||
ObtainErasureChunks(#[from] erasure_coding::Error), | ||
|
||
#[error(transparent)] | ||
ValidationFailed(#[from] ValidationFailed), | ||
|
||
#[fatal] | ||
#[error(transparent)] | ||
BackgroundValidationMpsc(#[from] mpsc::SendError), | ||
|
||
#[error(transparent)] | ||
UtilError(#[from] UtilError), | ||
|
||
#[error(transparent)] | ||
SubsystemError(#[from] SubsystemError), | ||
} | ||
|
||
/// Utility for eating top level errors and log them. | ||
/// | ||
/// We basically always want to try and continue on error. This utility function is meant to | ||
/// consume top-level errors by simply logging them | ||
pub fn log_error(result: Result<()>) -> std::result::Result<(), FatalError> { | ||
match result.into_nested()? { | ||
Ok(()) => Ok(()), | ||
Err(jfyi) => { | ||
jfyi.log(); | ||
Ok(()) | ||
}, | ||
} | ||
} | ||
|
||
impl JfyiError { | ||
/// Log a `JfyiError`. | ||
pub fn log(self) { | ||
gum::debug!(target: LOG_TARGET, error = ?self); | ||
} | ||
} |
Oops, something went wrong.