Update auto-generated bindings
[ldk-c-bindings] / lightning-c-bindings / src / lightning / util / errors.rs
index 81faa98f461e08b9e4f2091e9cf28229dbf960bd..ff0f416bd499fb15c0fcd9d68a5661bdad8a0553 100644 (file)
@@ -8,15 +8,18 @@
 
 //! Error types live here.
 
-use std::str::FromStr;
-use std::ffi::c_void;
+use alloc::str::FromStr;
+use core::ffi::c_void;
+use core::convert::Infallible;
 use bitcoin::hashes::Hash;
 use crate::c_types::*;
+#[cfg(feature="no-std")]
+use alloc::{vec::Vec, boxed::Box};
 
 /// Indicates an error on the client's part (usually some variant of attempting to use too-low or
 /// too-high values)
-#[must_use]
 #[derive(Clone)]
+#[must_use]
 #[repr(C)]
 pub enum APIError {
        /// Indicates the API was wholly misused (see err for more). Cases where these can be returned
@@ -36,7 +39,7 @@ pub enum APIError {
        },
        /// A malformed Route was provided (eg overflowed value, node id mismatch, overly-looped route,
        /// too-many-hops, etc).
-       RouteError {
+       InvalidRoute {
                /// A human-readable error message
                err: crate::c_types::Str,
        },
@@ -47,42 +50,68 @@ pub enum APIError {
                /// A human-readable error message
                err: crate::c_types::Str,
        },
-       /// An attempt to call watch/update_channel returned an Err (ie you did this!), causing the
-       /// attempted action to fail.
-       MonitorUpdateFailed,
+       /// An attempt to call [`chain::Watch::watch_channel`]/[`chain::Watch::update_channel`]
+       /// returned a [`ChannelMonitorUpdateStatus::InProgress`] indicating the persistence of a
+       /// monitor update is awaiting async resolution. Once it resolves the attempted action should
+       /// complete automatically.
+       ///
+       /// [`chain::Watch::watch_channel`]: crate::chain::Watch::watch_channel
+       /// [`chain::Watch::update_channel`]: crate::chain::Watch::update_channel
+       /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
+       MonitorUpdateInProgress,
+       /// [`SignerProvider::get_shutdown_scriptpubkey`] returned a shutdown scriptpubkey incompatible
+       /// with the channel counterparty as negotiated in [`InitFeatures`].
+       ///
+       /// Using a SegWit v0 script should resolve this issue. If you cannot, you won't be able to open
+       /// a channel or cooperatively close one with this peer (and will have to force-close instead).
+       ///
+       /// [`SignerProvider::get_shutdown_scriptpubkey`]: crate::chain::keysinterface::SignerProvider::get_shutdown_scriptpubkey
+       /// [`InitFeatures`]: crate::ln::features::InitFeatures
+       IncompatibleShutdownScript {
+               /// The incompatible shutdown script.
+               script: crate::lightning::ln::script::ShutdownScript,
+       },
 }
-use lightning::util::errors::APIError as nativeAPIError;
+use lightning::util::errors::APIError as APIErrorImport;
+pub(crate) type nativeAPIError = APIErrorImport;
+
 impl APIError {
        #[allow(unused)]
        pub(crate) fn to_native(&self) -> nativeAPIError {
                match self {
                        APIError::APIMisuseError {ref err, } => {
-                               let mut err_nonref = (*err).clone();
+                               let mut err_nonref = Clone::clone(err);
                                nativeAPIError::APIMisuseError {
                                        err: err_nonref.into_string(),
                                }
                        },
                        APIError::FeeRateTooHigh {ref err, ref feerate, } => {
-                               let mut err_nonref = (*err).clone();
-                               let mut feerate_nonref = (*feerate).clone();
+                               let mut err_nonref = Clone::clone(err);
+                               let mut feerate_nonref = Clone::clone(feerate);
                                nativeAPIError::FeeRateTooHigh {
                                        err: err_nonref.into_string(),
                                        feerate: feerate_nonref,
                                }
                        },
-                       APIError::RouteError {ref err, } => {
-                               let mut err_nonref = (*err).clone();
-                               nativeAPIError::RouteError {
-                                       err: err_nonref.into_str(),
+                       APIError::InvalidRoute {ref err, } => {
+                               let mut err_nonref = Clone::clone(err);
+                               nativeAPIError::InvalidRoute {
+                                       err: err_nonref.into_string(),
                                }
                        },
                        APIError::ChannelUnavailable {ref err, } => {
-                               let mut err_nonref = (*err).clone();
+                               let mut err_nonref = Clone::clone(err);
                                nativeAPIError::ChannelUnavailable {
                                        err: err_nonref.into_string(),
                                }
                        },
-                       APIError::MonitorUpdateFailed => nativeAPIError::MonitorUpdateFailed,
+                       APIError::MonitorUpdateInProgress => nativeAPIError::MonitorUpdateInProgress,
+                       APIError::IncompatibleShutdownScript {ref script, } => {
+                               let mut script_nonref = Clone::clone(script);
+                               nativeAPIError::IncompatibleShutdownScript {
+                                       script: *unsafe { Box::from_raw(script_nonref.take_inner()) },
+                               }
+                       },
                }
        }
        #[allow(unused)]
@@ -99,9 +128,9 @@ impl APIError {
                                        feerate: feerate,
                                }
                        },
-                       APIError::RouteError {mut err, } => {
-                               nativeAPIError::RouteError {
-                                       err: err.into_str(),
+                       APIError::InvalidRoute {mut err, } => {
+                               nativeAPIError::InvalidRoute {
+                                       err: err.into_string(),
                                }
                        },
                        APIError::ChannelUnavailable {mut err, } => {
@@ -109,39 +138,50 @@ impl APIError {
                                        err: err.into_string(),
                                }
                        },
-                       APIError::MonitorUpdateFailed => nativeAPIError::MonitorUpdateFailed,
+                       APIError::MonitorUpdateInProgress => nativeAPIError::MonitorUpdateInProgress,
+                       APIError::IncompatibleShutdownScript {mut script, } => {
+                               nativeAPIError::IncompatibleShutdownScript {
+                                       script: *unsafe { Box::from_raw(script.take_inner()) },
+                               }
+                       },
                }
        }
        #[allow(unused)]
        pub(crate) fn from_native(native: &nativeAPIError) -> Self {
                match native {
                        nativeAPIError::APIMisuseError {ref err, } => {
-                               let mut err_nonref = (*err).clone();
+                               let mut err_nonref = Clone::clone(err);
                                APIError::APIMisuseError {
                                        err: err_nonref.into(),
                                }
                        },
                        nativeAPIError::FeeRateTooHigh {ref err, ref feerate, } => {
-                               let mut err_nonref = (*err).clone();
-                               let mut feerate_nonref = (*feerate).clone();
+                               let mut err_nonref = Clone::clone(err);
+                               let mut feerate_nonref = Clone::clone(feerate);
                                APIError::FeeRateTooHigh {
                                        err: err_nonref.into(),
                                        feerate: feerate_nonref,
                                }
                        },
-                       nativeAPIError::RouteError {ref err, } => {
-                               let mut err_nonref = (*err).clone();
-                               APIError::RouteError {
+                       nativeAPIError::InvalidRoute {ref err, } => {
+                               let mut err_nonref = Clone::clone(err);
+                               APIError::InvalidRoute {
                                        err: err_nonref.into(),
                                }
                        },
                        nativeAPIError::ChannelUnavailable {ref err, } => {
-                               let mut err_nonref = (*err).clone();
+                               let mut err_nonref = Clone::clone(err);
                                APIError::ChannelUnavailable {
                                        err: err_nonref.into(),
                                }
                        },
-                       nativeAPIError::MonitorUpdateFailed => APIError::MonitorUpdateFailed,
+                       nativeAPIError::MonitorUpdateInProgress => APIError::MonitorUpdateInProgress,
+                       nativeAPIError::IncompatibleShutdownScript {ref script, } => {
+                               let mut script_nonref = Clone::clone(script);
+                               APIError::IncompatibleShutdownScript {
+                                       script: crate::lightning::ln::script::ShutdownScript { inner: ObjOps::heap_alloc(script_nonref), is_owned: true },
+                               }
+                       },
                }
        }
        #[allow(unused)]
@@ -158,8 +198,8 @@ impl APIError {
                                        feerate: feerate,
                                }
                        },
-                       nativeAPIError::RouteError {mut err, } => {
-                               APIError::RouteError {
+                       nativeAPIError::InvalidRoute {mut err, } => {
+                               APIError::InvalidRoute {
                                        err: err.into(),
                                }
                        },
@@ -168,7 +208,12 @@ impl APIError {
                                        err: err.into(),
                                }
                        },
-                       nativeAPIError::MonitorUpdateFailed => APIError::MonitorUpdateFailed,
+                       nativeAPIError::MonitorUpdateInProgress => APIError::MonitorUpdateInProgress,
+                       nativeAPIError::IncompatibleShutdownScript {mut script, } => {
+                               APIError::IncompatibleShutdownScript {
+                                       script: crate::lightning::ln::script::ShutdownScript { inner: ObjOps::heap_alloc(script), is_owned: true },
+                               }
+                       },
                }
        }
 }
@@ -180,3 +225,61 @@ pub extern "C" fn APIError_free(this_ptr: APIError) { }
 pub extern "C" fn APIError_clone(orig: &APIError) -> APIError {
        orig.clone()
 }
+#[no_mangle]
+/// Utility method to constructs a new APIMisuseError-variant APIError
+pub extern "C" fn APIError_apimisuse_error(err: crate::c_types::Str) -> APIError {
+       APIError::APIMisuseError {
+               err,
+       }
+}
+#[no_mangle]
+/// Utility method to constructs a new FeeRateTooHigh-variant APIError
+pub extern "C" fn APIError_fee_rate_too_high(err: crate::c_types::Str, feerate: u32) -> APIError {
+       APIError::FeeRateTooHigh {
+               err,
+               feerate,
+       }
+}
+#[no_mangle]
+/// Utility method to constructs a new InvalidRoute-variant APIError
+pub extern "C" fn APIError_invalid_route(err: crate::c_types::Str) -> APIError {
+       APIError::InvalidRoute {
+               err,
+       }
+}
+#[no_mangle]
+/// Utility method to constructs a new ChannelUnavailable-variant APIError
+pub extern "C" fn APIError_channel_unavailable(err: crate::c_types::Str) -> APIError {
+       APIError::ChannelUnavailable {
+               err,
+       }
+}
+#[no_mangle]
+/// Utility method to constructs a new MonitorUpdateInProgress-variant APIError
+pub extern "C" fn APIError_monitor_update_in_progress() -> APIError {
+       APIError::MonitorUpdateInProgress}
+#[no_mangle]
+/// Utility method to constructs a new IncompatibleShutdownScript-variant APIError
+pub extern "C" fn APIError_incompatible_shutdown_script(script: crate::lightning::ln::script::ShutdownScript) -> APIError {
+       APIError::IncompatibleShutdownScript {
+               script,
+       }
+}
+/// Checks if two APIErrors contain equal inner contents.
+/// This ignores pointers and is_owned flags and looks at the values in fields.
+#[no_mangle]
+pub extern "C" fn APIError_eq(a: &APIError, b: &APIError) -> bool {
+       if &a.to_native() == &b.to_native() { true } else { false }
+}
+#[no_mangle]
+/// Serialize the APIError object into a byte array which can be read by APIError_read
+pub extern "C" fn APIError_write(obj: &crate::lightning::util::errors::APIError) -> crate::c_types::derived::CVec_u8Z {
+       crate::c_types::serialize_obj(&unsafe { &*obj }.to_native())
+}
+#[no_mangle]
+/// Read a APIError from a byte array, created by APIError_write
+pub extern "C" fn APIError_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_COption_APIErrorZDecodeErrorZ {
+       let res: Result<Option<lightning::util::errors::APIError>, lightning::ln::msgs::DecodeError> = crate::c_types::maybe_deserialize_obj(ser);
+       let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_res_0 = if o.is_none() { crate::c_types::derived::COption_APIErrorZ::None } else { crate::c_types::derived::COption_APIErrorZ::Some( { crate::lightning::util::errors::APIError::native_into(o.unwrap()) }) }; local_res_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError::native_into(e) }).into() };
+       local_res
+}