risingwave_meta/model/
error.rs1use anyhow::anyhow;
16use risingwave_pb::PbFieldNotFound;
17use risingwave_rpc_client::error::ToTonicStatus;
18use thiserror::Error;
19
20use crate::storage::MetaStoreError;
21
22pub type MetadataModelResult<T> = std::result::Result<T, MetadataModelError>;
23
24#[derive(Error, Debug)]
25pub enum MetadataModelError {
26 #[error("Meta store error: {0}")]
27 MetaStoreError(
28 #[from]
29 #[backtrace]
30 MetaStoreError,
31 ),
32
33 #[error("Pb decode error: {0}")]
34 PbDecode(#[from] prost::DecodeError),
35
36 #[error(transparent)]
37 InternalError(
38 #[from]
39 #[backtrace]
40 anyhow::Error,
41 ),
42}
43
44impl From<PbFieldNotFound> for MetadataModelError {
45 fn from(p: PbFieldNotFound) -> Self {
46 MetadataModelError::InternalError(anyhow::anyhow!(
47 "Failed to decode prost: field not found `{}`",
48 p.0
49 ))
50 }
51}
52
53impl From<MetadataModelError> for tonic::Status {
54 fn from(e: MetadataModelError) -> Self {
55 e.to_status(tonic::Code::Internal, "meta")
56 }
57}
58
59impl MetadataModelError {
60 pub fn internal(msg: impl ToString) -> Self {
61 MetadataModelError::InternalError(anyhow!(msg.to_string()))
62 }
63}