Mercurial > public > mercurial-scm > hg
view rust/hg-pyo3/src/exceptions.rs @ 52777:32008b1e7104
rust-pyo3-revlog: Python RevlogError with helper
This is singled out because it defines the inner submobule
for Mercurial Python exceptions
author | Georges Racinet <georges.racinet@cloudcrane.io> |
---|---|
date | Tue, 24 Dec 2024 18:14:07 +0100 |
parents | 2fb13c3f4496 |
children | 42b219a1404a |
line wrap: on
line source
use pyo3::exceptions::{PyRuntimeError, PyValueError}; use pyo3::import_exception; use pyo3::{create_exception, PyErr}; use crate::revision::PyRevision; create_exception!(pyo3_rustext, GraphError, PyValueError); import_exception!(mercurial.error, WdirUnsupported); impl GraphError { pub fn from_hg(inner: hg::GraphError) -> PyErr { match inner { hg::GraphError::ParentOutOfRange(r) => { GraphError::new_err(("ParentOutOfRange", PyRevision(r.0))) } hg::GraphError::ParentOutOfOrder(r) => { GraphError::new_err(("ParentOutOfOrder", PyRevision(r.0))) } } } pub fn from_vcsgraph(inner: vcsgraph::graph::GraphReadError) -> PyErr { match inner { vcsgraph::graph::GraphReadError::InconsistentGraphData => { GraphError::new_err("InconsistentGraphData") } vcsgraph::graph::GraphReadError::InvalidKey => { GraphError::new_err("ParentOutOfRange") } vcsgraph::graph::GraphReadError::KeyedInvalidKey(r) => { GraphError::new_err(("ParentOutOfRange", r)) } vcsgraph::graph::GraphReadError::WorkingDirectoryUnsupported => { WdirUnsupported::new_err(()) } } } } pub fn map_lock_error<T>(e: std::sync::PoisonError<T>) -> PyErr { PyRuntimeError::new_err(format!("In Rust PyO3 bindings: {e}")) } /// Submodule to hold Mercurial errors defined on the Python side /// /// This is better for clarity, as many hg-core errors have the same names /// as their Python world counterparts pub mod mercurial_py_errors { pyo3::import_exception!(mercurial.error, RevlogError); } #[allow(dead_code)] pub fn revlog_error_from_msg(e: impl ToString) -> PyErr { mercurial_py_errors::RevlogError::new_err(e.to_string().into_bytes()) }