Mercurial > public > mercurial-scm > hg-stable
view rust/hg-pyo3/src/exceptions.rs @ 52799:4e34e8fd46d4
rust-pyo3-revlog: nodemap based index methods
They are rather straightforward, except for `_index_get_rev`
that takes care of not initializing a nodetree on some conditions.
In `_index_partialmatch`, we solve the todo that was in the
`hg-cpython`, since we introduced the `py_node_for_rev` helper earlier.
The new test method in `test-rust-revlog.py` provides comparison
with the `hg-cpython` implementation of `InnerRevlog`.
author | Georges Racinet <georges.racinet@cloudcrane.io> |
---|---|
date | Wed, 25 Dec 2024 16:16:22 +0100 |
parents | 5e3e8876fd9e |
children | 1b9907575768 |
line wrap: on
line source
use pyo3::exceptions::{PyRuntimeError, PyValueError}; use pyo3::import_exception; use pyo3::{create_exception, PyErr}; use hg::revlog::nodemap::NodeMapError; 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}")) } pub fn map_try_lock_error<T>(e: std::sync::TryLockError<T>) -> PyErr { PyRuntimeError::new_err(format!("In Rust PyO3 bindings: {e}")) } pub mod mercurial_py_errors { pyo3::import_exception!(mercurial.error, RevlogError); } pub fn revlog_error_from_msg(e: impl ToString) -> PyErr { mercurial_py_errors::RevlogError::new_err(e.to_string().into_bytes()) } pub fn revlog_error_bare() -> PyErr { mercurial_py_errors::RevlogError::new_err((None::<String>,)) } pub fn nodemap_error(err: NodeMapError) -> PyErr { match err { NodeMapError::MultipleResults => { mercurial_py_errors::RevlogError::new_err("") } NodeMapError::RevisionNotInIndex(rev) => { PyValueError::new_err(format!( "Inconsistency: Revision {} found in nodemap \ is not in revlog index", rev )) } } }