Mercurial > public > mercurial-scm > hg
view rust/rhg/src/commands/debugdata.rs @ 46434:3e2d539d0d1a
rust: remove `FooError` structs with only `kind: FooErrorKind` enum field
Use the enum directly as `FooError` instead.
Differential Revision: https://phab.mercurial-scm.org/D9874
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Tue, 26 Jan 2021 19:07:24 +0100 |
parents | 8a4914397d02 |
children | 252d1bdba33d |
line wrap: on
line source
use crate::commands::Command; use crate::error::CommandError; use crate::ui::utf8_to_local; use crate::ui::Ui; use hg::operations::{debug_data, DebugDataError, DebugDataKind}; use hg::repo::Repo; use micro_timer::timed; pub const HELP_TEXT: &str = " Dump the contents of a data file revision "; pub struct DebugDataCommand<'a> { rev: &'a str, kind: DebugDataKind, } impl<'a> DebugDataCommand<'a> { pub fn new(rev: &'a str, kind: DebugDataKind) -> Self { DebugDataCommand { rev, kind } } } impl<'a> Command for DebugDataCommand<'a> { #[timed] fn run(&self, ui: &Ui) -> Result<(), CommandError> { let repo = Repo::find()?; let data = debug_data(&repo, self.rev, self.kind) .map_err(|e| to_command_error(self.rev, e))?; let mut stdout = ui.stdout_buffer(); stdout.write_all(&data)?; stdout.flush()?; Ok(()) } } /// Convert operation errors to command errors fn to_command_error(rev: &str, err: DebugDataError) -> CommandError { match err { DebugDataError::IoError(err) => CommandError::Abort(Some( utf8_to_local(&format!("abort: {}\n", err)).into(), )), DebugDataError::InvalidRevision => CommandError::Abort(Some( utf8_to_local(&format!( "abort: invalid revision identifier{}\n", rev )) .into(), )), DebugDataError::AmbiguousPrefix => CommandError::Abort(Some( utf8_to_local(&format!( "abort: ambiguous revision identifier{}\n", rev )) .into(), )), DebugDataError::UnsuportedRevlogVersion(version) => { CommandError::Abort(Some( utf8_to_local(&format!( "abort: unsupported revlog version {}\n", version )) .into(), )) } DebugDataError::CorruptedRevlog => { CommandError::Abort(Some("abort: corrupted revlog\n".into())) } DebugDataError::UnknowRevlogDataFormat(format) => { CommandError::Abort(Some( utf8_to_local(&format!( "abort: unknow revlog dataformat {:?}\n", format )) .into(), )) } } }