| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486 |
- //! FFI Database bindings
- use std::collections::HashMap;
- use std::sync::Arc;
- use cdk_common::database::{
- KVStoreDatabase as CdkKVStoreDatabase, WalletDatabase as CdkWalletDatabase,
- };
- use cdk_sql_common::pool::DatabasePool;
- use cdk_sql_common::SQLWalletDatabase;
- use crate::error::FfiError;
- #[cfg(feature = "postgres")]
- use crate::postgres::WalletPostgresDatabase;
- use crate::sqlite::WalletSqliteDatabase;
- use crate::types::*;
- /// FFI-compatible wallet database trait with all read and write operations
- /// This trait mirrors the CDK WalletDatabase trait structure
- #[uniffi::export(with_foreign)]
- #[async_trait::async_trait]
- pub trait WalletDatabase: Send + Sync {
- // ========== Read methods ==========
- /// Get mint from storage
- async fn get_mint(&self, mint_url: MintUrl) -> Result<Option<MintInfo>, FfiError>;
- /// Get all mints from storage
- async fn get_mints(&self) -> Result<HashMap<MintUrl, Option<MintInfo>>, FfiError>;
- /// Get mint keysets for mint url
- async fn get_mint_keysets(
- &self,
- mint_url: MintUrl,
- ) -> Result<Option<Vec<KeySetInfo>>, FfiError>;
- /// Get mint keyset by id
- async fn get_keyset_by_id(&self, keyset_id: Id) -> Result<Option<KeySetInfo>, FfiError>;
- /// Get mint quote from storage
- async fn get_mint_quote(&self, quote_id: String) -> Result<Option<MintQuote>, FfiError>;
- /// Get mint quotes from storage
- async fn get_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError>;
- /// Get unissued mint quotes from storage
- /// Returns bolt11 quotes where nothing has been issued yet (amount_issued = 0) and all bolt12 quotes.
- async fn get_unissued_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError>;
- /// Get melt quote from storage
- async fn get_melt_quote(&self, quote_id: String) -> Result<Option<MeltQuote>, FfiError>;
- /// Get melt quotes from storage
- async fn get_melt_quotes(&self) -> Result<Vec<MeltQuote>, FfiError>;
- /// Get Keys from storage
- async fn get_keys(&self, id: Id) -> Result<Option<Keys>, FfiError>;
- /// Get proofs from storage
- async fn get_proofs(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- spending_conditions: Option<Vec<SpendingConditions>>,
- ) -> Result<Vec<ProofInfo>, FfiError>;
- /// Get proofs by Y values
- async fn get_proofs_by_ys(&self, ys: Vec<PublicKey>) -> Result<Vec<ProofInfo>, FfiError>;
- /// Get balance efficiently using SQL aggregation
- async fn get_balance(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- ) -> Result<u64, FfiError>;
- /// Get transaction from storage
- async fn get_transaction(
- &self,
- transaction_id: TransactionId,
- ) -> Result<Option<Transaction>, FfiError>;
- /// List transactions from storage
- async fn list_transactions(
- &self,
- mint_url: Option<MintUrl>,
- direction: Option<TransactionDirection>,
- unit: Option<CurrencyUnit>,
- ) -> Result<Vec<Transaction>, FfiError>;
- /// Read a value from the KV store
- async fn kv_read(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<Option<Vec<u8>>, FfiError>;
- /// List keys in a namespace
- async fn kv_list(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- ) -> Result<Vec<String>, FfiError>;
- /// Write a value to the KV store
- async fn kv_write(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- value: Vec<u8>,
- ) -> Result<(), FfiError>;
- /// Remove a value from the KV store
- async fn kv_remove(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<(), FfiError>;
- // ========== Write methods ==========
- /// Update the proofs in storage by adding new proofs or removing proofs by their Y value
- async fn update_proofs(
- &self,
- added: Vec<ProofInfo>,
- removed_ys: Vec<PublicKey>,
- ) -> Result<(), FfiError>;
- /// Update proofs state in storage
- async fn update_proofs_state(
- &self,
- ys: Vec<PublicKey>,
- state: ProofState,
- ) -> Result<(), FfiError>;
- /// Add transaction to storage
- async fn add_transaction(&self, transaction: Transaction) -> Result<(), FfiError>;
- /// Remove transaction from storage
- async fn remove_transaction(&self, transaction_id: TransactionId) -> Result<(), FfiError>;
- /// Update mint url
- async fn update_mint_url(
- &self,
- old_mint_url: MintUrl,
- new_mint_url: MintUrl,
- ) -> Result<(), FfiError>;
- /// Atomically increment Keyset counter and return new value
- async fn increment_keyset_counter(&self, keyset_id: Id, count: u32) -> Result<u32, FfiError>;
- /// Add Mint to storage
- async fn add_mint(
- &self,
- mint_url: MintUrl,
- mint_info: Option<MintInfo>,
- ) -> Result<(), FfiError>;
- /// Remove Mint from storage
- async fn remove_mint(&self, mint_url: MintUrl) -> Result<(), FfiError>;
- /// Add mint keyset to storage
- async fn add_mint_keysets(
- &self,
- mint_url: MintUrl,
- keysets: Vec<KeySetInfo>,
- ) -> Result<(), FfiError>;
- /// Add mint quote to storage
- async fn add_mint_quote(&self, quote: MintQuote) -> Result<(), FfiError>;
- /// Remove mint quote from storage
- async fn remove_mint_quote(&self, quote_id: String) -> Result<(), FfiError>;
- /// Add melt quote to storage
- async fn add_melt_quote(&self, quote: MeltQuote) -> Result<(), FfiError>;
- /// Remove melt quote from storage
- async fn remove_melt_quote(&self, quote_id: String) -> Result<(), FfiError>;
- /// Add Keys to storage
- async fn add_keys(&self, keyset: KeySet) -> Result<(), FfiError>;
- /// Remove Keys from storage
- async fn remove_keys(&self, id: Id) -> Result<(), FfiError>;
- }
- /// Internal bridge trait to convert from the FFI trait to the CDK database trait
- /// This allows us to bridge between the UniFFI trait and the CDK's internal database trait
- struct WalletDatabaseBridge {
- ffi_db: Arc<dyn WalletDatabase>,
- }
- impl WalletDatabaseBridge {
- fn new(ffi_db: Arc<dyn WalletDatabase>) -> Self {
- Self { ffi_db }
- }
- }
- impl std::fmt::Debug for WalletDatabaseBridge {
- fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "WalletDatabaseBridge")
- }
- }
- #[async_trait::async_trait]
- impl cdk_common::database::KVStoreDatabase for WalletDatabaseBridge {
- type Err = cdk::cdk_database::Error;
- async fn kv_read(
- &self,
- primary_namespace: &str,
- secondary_namespace: &str,
- key: &str,
- ) -> Result<Option<Vec<u8>>, Self::Err> {
- self.ffi_db
- .kv_read(
- primary_namespace.to_string(),
- secondary_namespace.to_string(),
- key.to_string(),
- )
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn kv_list(
- &self,
- primary_namespace: &str,
- secondary_namespace: &str,
- ) -> Result<Vec<String>, Self::Err> {
- self.ffi_db
- .kv_list(
- primary_namespace.to_string(),
- secondary_namespace.to_string(),
- )
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- }
- #[async_trait::async_trait]
- impl CdkWalletDatabase<cdk::cdk_database::Error> for WalletDatabaseBridge {
- // Mint Management
- async fn get_mint(
- &self,
- mint_url: cdk::mint_url::MintUrl,
- ) -> Result<Option<cdk::nuts::MintInfo>, cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.into();
- let result = self
- .ffi_db
- .get_mint(ffi_mint_url)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result.map(Into::into))
- }
- async fn get_mints(
- &self,
- ) -> Result<
- HashMap<cdk::mint_url::MintUrl, Option<cdk::nuts::MintInfo>>,
- cdk::cdk_database::Error,
- > {
- let result = self
- .ffi_db
- .get_mints()
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- let mut cdk_result = HashMap::new();
- for (ffi_mint_url, mint_info_opt) in result {
- let cdk_url = ffi_mint_url
- .try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- cdk_result.insert(cdk_url, mint_info_opt.map(Into::into));
- }
- Ok(cdk_result)
- }
- // Keyset Management
- async fn get_mint_keysets(
- &self,
- mint_url: cdk::mint_url::MintUrl,
- ) -> Result<Option<Vec<cdk::nuts::KeySetInfo>>, cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.into();
- let result = self
- .ffi_db
- .get_mint_keysets(ffi_mint_url)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result.map(|keysets| keysets.into_iter().map(Into::into).collect()))
- }
- async fn get_keyset_by_id(
- &self,
- keyset_id: &cdk::nuts::Id,
- ) -> Result<Option<cdk::nuts::KeySetInfo>, cdk::cdk_database::Error> {
- let ffi_id = (*keyset_id).into();
- let result = self
- .ffi_db
- .get_keyset_by_id(ffi_id)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result.map(Into::into))
- }
- // Mint Quote Management
- async fn get_mint_quote(
- &self,
- quote_id: &str,
- ) -> Result<Option<cdk::wallet::MintQuote>, cdk::cdk_database::Error> {
- let result = self
- .ffi_db
- .get_mint_quote(quote_id.to_string())
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result
- .map(|q| {
- q.try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .transpose()?)
- }
- async fn get_mint_quotes(
- &self,
- ) -> Result<Vec<cdk::wallet::MintQuote>, cdk::cdk_database::Error> {
- let result = self
- .ffi_db
- .get_mint_quotes()
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result
- .into_iter()
- .map(|q| {
- q.try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .collect::<Result<Vec<_>, _>>()?)
- }
- async fn get_unissued_mint_quotes(&self) -> Result<Vec<cdk::wallet::MintQuote>, Self::Err> {
- let result = self
- .ffi_db
- .get_unissued_mint_quotes()
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result
- .into_iter()
- .map(|q| {
- q.try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .collect::<Result<Vec<_>, _>>()?)
- }
- // Melt Quote Management
- async fn get_melt_quote(
- &self,
- quote_id: &str,
- ) -> Result<Option<cdk::wallet::MeltQuote>, cdk::cdk_database::Error> {
- let result = self
- .ffi_db
- .get_melt_quote(quote_id.to_string())
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result
- .map(|q| {
- q.try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .transpose()?)
- }
- async fn get_melt_quotes(
- &self,
- ) -> Result<Vec<cdk::wallet::MeltQuote>, cdk::cdk_database::Error> {
- let result = self
- .ffi_db
- .get_melt_quotes()
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- Ok(result
- .into_iter()
- .map(|q| {
- q.try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .collect::<Result<Vec<_>, _>>()?)
- }
- // Keys Management
- async fn get_keys(
- &self,
- id: &cdk::nuts::Id,
- ) -> Result<Option<cdk::nuts::Keys>, cdk::cdk_database::Error> {
- let ffi_id: Id = (*id).into();
- let result = self
- .ffi_db
- .get_keys(ffi_id)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- // Convert FFI Keys back to CDK Keys using TryFrom
- result
- .map(|ffi_keys| {
- ffi_keys
- .try_into()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- })
- .transpose()
- }
- // Proof Management
- async fn get_proofs(
- &self,
- mint_url: Option<cdk::mint_url::MintUrl>,
- unit: Option<cdk::nuts::CurrencyUnit>,
- state: Option<Vec<cdk::nuts::State>>,
- spending_conditions: Option<Vec<cdk::nuts::SpendingConditions>>,
- ) -> Result<Vec<cdk::types::ProofInfo>, cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.map(Into::into);
- let ffi_unit = unit.map(Into::into);
- let ffi_state = state.map(|s| s.into_iter().map(Into::into).collect());
- let ffi_spending_conditions =
- spending_conditions.map(|sc| sc.into_iter().map(Into::into).collect());
- let result = self
- .ffi_db
- .get_proofs(ffi_mint_url, ffi_unit, ffi_state, ffi_spending_conditions)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- // Convert back to CDK ProofInfo
- let cdk_result: Result<Vec<cdk::types::ProofInfo>, cdk::cdk_database::Error> = result
- .into_iter()
- .map(|info| {
- Ok(cdk::types::ProofInfo {
- proof: info.proof.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- y: info.y.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- mint_url: info.mint_url.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- state: info.state.into(),
- spending_condition: info
- .spending_condition
- .map(|sc| sc.try_into())
- .transpose()
- .map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- unit: info.unit.into(),
- })
- })
- .collect();
- cdk_result
- }
- async fn get_proofs_by_ys(
- &self,
- ys: Vec<cdk::nuts::PublicKey>,
- ) -> Result<Vec<cdk::types::ProofInfo>, cdk::cdk_database::Error> {
- let ffi_ys: Vec<PublicKey> = ys.into_iter().map(Into::into).collect();
- let result = self
- .ffi_db
- .get_proofs_by_ys(ffi_ys)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- // Convert back to CDK ProofInfo
- let cdk_result: Result<Vec<cdk::types::ProofInfo>, cdk::cdk_database::Error> = result
- .into_iter()
- .map(|info| {
- Ok(cdk::types::ProofInfo {
- proof: info.proof.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- y: info.y.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- mint_url: info.mint_url.try_into().map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- state: info.state.into(),
- spending_condition: info
- .spending_condition
- .map(|sc| sc.try_into())
- .transpose()
- .map_err(|e: FfiError| {
- cdk::cdk_database::Error::Database(e.to_string().into())
- })?,
- unit: info.unit.into(),
- })
- })
- .collect();
- cdk_result
- }
- async fn get_balance(
- &self,
- mint_url: Option<cdk::mint_url::MintUrl>,
- unit: Option<cdk::nuts::CurrencyUnit>,
- state: Option<Vec<cdk::nuts::State>>,
- ) -> Result<u64, cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.map(Into::into);
- let ffi_unit = unit.map(Into::into);
- let ffi_state = state.map(|s| s.into_iter().map(Into::into).collect());
- self.ffi_db
- .get_balance(ffi_mint_url, ffi_unit, ffi_state)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- // Transaction Management
- async fn get_transaction(
- &self,
- transaction_id: cdk::wallet::types::TransactionId,
- ) -> Result<Option<cdk::wallet::types::Transaction>, cdk::cdk_database::Error> {
- let ffi_id = transaction_id.into();
- let result = self
- .ffi_db
- .get_transaction(ffi_id)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- result
- .map(|tx| tx.try_into())
- .transpose()
- .map_err(|e: FfiError| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn list_transactions(
- &self,
- mint_url: Option<cdk::mint_url::MintUrl>,
- direction: Option<cdk::wallet::types::TransactionDirection>,
- unit: Option<cdk::nuts::CurrencyUnit>,
- ) -> Result<Vec<cdk::wallet::types::Transaction>, cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.map(Into::into);
- let ffi_direction = direction.map(Into::into);
- let ffi_unit = unit.map(Into::into);
- let result = self
- .ffi_db
- .list_transactions(ffi_mint_url, ffi_direction, ffi_unit)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))?;
- result
- .into_iter()
- .map(|tx| tx.try_into())
- .collect::<Result<Vec<_>, FfiError>>()
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- // Write methods (non-transactional)
- async fn update_proofs(
- &self,
- added: Vec<cdk::types::ProofInfo>,
- removed_ys: Vec<cdk::nuts::PublicKey>,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_added: Vec<ProofInfo> = added.into_iter().map(Into::into).collect();
- let ffi_removed_ys: Vec<PublicKey> = removed_ys.into_iter().map(Into::into).collect();
- self.ffi_db
- .update_proofs(ffi_added, ffi_removed_ys)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn update_proofs_state(
- &self,
- ys: Vec<cdk::nuts::PublicKey>,
- state: cdk::nuts::State,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_ys: Vec<PublicKey> = ys.into_iter().map(Into::into).collect();
- let ffi_state = state.into();
- self.ffi_db
- .update_proofs_state(ffi_ys, ffi_state)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_transaction(
- &self,
- transaction: cdk::wallet::types::Transaction,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_transaction = transaction.into();
- self.ffi_db
- .add_transaction(ffi_transaction)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn update_mint_url(
- &self,
- old_mint_url: cdk::mint_url::MintUrl,
- new_mint_url: cdk::mint_url::MintUrl,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_old = old_mint_url.into();
- let ffi_new = new_mint_url.into();
- self.ffi_db
- .update_mint_url(ffi_old, ffi_new)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn increment_keyset_counter(
- &self,
- keyset_id: &cdk::nuts::Id,
- count: u32,
- ) -> Result<u32, cdk::cdk_database::Error> {
- let ffi_id = (*keyset_id).into();
- self.ffi_db
- .increment_keyset_counter(ffi_id, count)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_mint(
- &self,
- mint_url: cdk::mint_url::MintUrl,
- mint_info: Option<cdk::nuts::MintInfo>,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.into();
- let ffi_mint_info = mint_info.map(Into::into);
- self.ffi_db
- .add_mint(ffi_mint_url, ffi_mint_info)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn remove_mint(
- &self,
- mint_url: cdk::mint_url::MintUrl,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.into();
- self.ffi_db
- .remove_mint(ffi_mint_url)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_mint_keysets(
- &self,
- mint_url: cdk::mint_url::MintUrl,
- keysets: Vec<cdk::nuts::KeySetInfo>,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_mint_url = mint_url.into();
- let ffi_keysets: Vec<KeySetInfo> = keysets.into_iter().map(Into::into).collect();
- self.ffi_db
- .add_mint_keysets(ffi_mint_url, ffi_keysets)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_mint_quote(
- &self,
- quote: cdk::wallet::MintQuote,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_quote = quote.into();
- self.ffi_db
- .add_mint_quote(ffi_quote)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn remove_mint_quote(&self, quote_id: &str) -> Result<(), cdk::cdk_database::Error> {
- self.ffi_db
- .remove_mint_quote(quote_id.to_string())
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_melt_quote(
- &self,
- quote: cdk::wallet::MeltQuote,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_quote = quote.into();
- self.ffi_db
- .add_melt_quote(ffi_quote)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn remove_melt_quote(&self, quote_id: &str) -> Result<(), cdk::cdk_database::Error> {
- self.ffi_db
- .remove_melt_quote(quote_id.to_string())
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn add_keys(&self, keyset: cdk::nuts::KeySet) -> Result<(), cdk::cdk_database::Error> {
- let ffi_keyset: KeySet = keyset.into();
- self.ffi_db
- .add_keys(ffi_keyset)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn remove_keys(&self, id: &cdk::nuts::Id) -> Result<(), cdk::cdk_database::Error> {
- let ffi_id = (*id).into();
- self.ffi_db
- .remove_keys(ffi_id)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn remove_transaction(
- &self,
- transaction_id: cdk::wallet::types::TransactionId,
- ) -> Result<(), cdk::cdk_database::Error> {
- let ffi_id = transaction_id.into();
- self.ffi_db
- .remove_transaction(ffi_id)
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- // KV Store write methods
- async fn kv_write(
- &self,
- primary_namespace: &str,
- secondary_namespace: &str,
- key: &str,
- value: &[u8],
- ) -> Result<(), cdk::cdk_database::Error> {
- self.ffi_db
- .kv_write(
- primary_namespace.to_string(),
- secondary_namespace.to_string(),
- key.to_string(),
- value.to_vec(),
- )
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- async fn kv_remove(
- &self,
- primary_namespace: &str,
- secondary_namespace: &str,
- key: &str,
- ) -> Result<(), cdk::cdk_database::Error> {
- self.ffi_db
- .kv_remove(
- primary_namespace.to_string(),
- secondary_namespace.to_string(),
- key.to_string(),
- )
- .await
- .map_err(|e| cdk::cdk_database::Error::Database(e.to_string().into()))
- }
- }
- pub(crate) struct FfiWalletSQLDatabase<RM>
- where
- RM: DatabasePool + 'static,
- {
- inner: SQLWalletDatabase<RM>,
- }
- impl<RM> FfiWalletSQLDatabase<RM>
- where
- RM: DatabasePool + 'static,
- {
- /// Creates a new instance
- pub fn new(inner: SQLWalletDatabase<RM>) -> Arc<Self> {
- Arc::new(Self { inner })
- }
- }
- // Implement WalletDatabase trait - all read and write methods
- #[async_trait::async_trait]
- impl<RM> WalletDatabase for FfiWalletSQLDatabase<RM>
- where
- RM: DatabasePool + 'static,
- {
- // ========== Read methods ==========
- async fn get_proofs_by_ys(&self, ys: Vec<PublicKey>) -> Result<Vec<ProofInfo>, FfiError> {
- let cdk_ys: Vec<cdk::nuts::PublicKey> = ys
- .into_iter()
- .map(|y| y.try_into())
- .collect::<Result<Vec<_>, FfiError>>()?;
- let result = self
- .inner
- .get_proofs_by_ys(cdk_ys)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(Into::into).collect())
- }
- async fn get_mint(&self, mint_url: MintUrl) -> Result<Option<MintInfo>, FfiError> {
- let cdk_mint_url = mint_url.try_into()?;
- let result = self
- .inner
- .get_mint(cdk_mint_url)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(Into::into))
- }
- async fn get_mints(&self) -> Result<HashMap<MintUrl, Option<MintInfo>>, FfiError> {
- let result = self
- .inner
- .get_mints()
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result
- .into_iter()
- .map(|(k, v)| (k.into(), v.map(Into::into)))
- .collect())
- }
- async fn get_mint_keysets(
- &self,
- mint_url: MintUrl,
- ) -> Result<Option<Vec<KeySetInfo>>, FfiError> {
- let cdk_mint_url = mint_url.try_into()?;
- let result = self
- .inner
- .get_mint_keysets(cdk_mint_url)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(|keysets| keysets.into_iter().map(Into::into).collect()))
- }
- async fn get_keyset_by_id(&self, keyset_id: Id) -> Result<Option<KeySetInfo>, FfiError> {
- let cdk_id = keyset_id.into();
- let result = self
- .inner
- .get_keyset_by_id(&cdk_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(Into::into))
- }
- async fn get_mint_quote(&self, quote_id: String) -> Result<Option<MintQuote>, FfiError> {
- let result = self
- .inner
- .get_mint_quote("e_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(|q| q.into()))
- }
- async fn get_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError> {
- let result = self
- .inner
- .get_mint_quotes()
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(|q| q.into()).collect())
- }
- async fn get_unissued_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError> {
- let result = self
- .inner
- .get_unissued_mint_quotes()
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(|q| q.into()).collect())
- }
- async fn get_melt_quote(&self, quote_id: String) -> Result<Option<MeltQuote>, FfiError> {
- let result = self
- .inner
- .get_melt_quote("e_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(|q| q.into()))
- }
- async fn get_melt_quotes(&self) -> Result<Vec<MeltQuote>, FfiError> {
- let result = self
- .inner
- .get_melt_quotes()
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(|q| q.into()).collect())
- }
- async fn get_keys(&self, id: Id) -> Result<Option<Keys>, FfiError> {
- let cdk_id = id.into();
- let result = self
- .inner
- .get_keys(&cdk_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(Into::into))
- }
- async fn get_proofs(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- spending_conditions: Option<Vec<SpendingConditions>>,
- ) -> Result<Vec<ProofInfo>, FfiError> {
- let cdk_mint_url = mint_url.map(|u| u.try_into()).transpose()?;
- let cdk_unit = unit.map(Into::into);
- let cdk_state = state.map(|s| s.into_iter().map(Into::into).collect());
- let cdk_spending_conditions: Option<Vec<cdk::nuts::SpendingConditions>> =
- spending_conditions
- .map(|sc| {
- sc.into_iter()
- .map(|c| c.try_into())
- .collect::<Result<Vec<_>, FfiError>>()
- })
- .transpose()?;
- let result = self
- .inner
- .get_proofs(cdk_mint_url, cdk_unit, cdk_state, cdk_spending_conditions)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(Into::into).collect())
- }
- async fn get_balance(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- ) -> Result<u64, FfiError> {
- let cdk_mint_url = mint_url.map(|u| u.try_into()).transpose()?;
- let cdk_unit = unit.map(Into::into);
- let cdk_state = state.map(|s| s.into_iter().map(Into::into).collect());
- self.inner
- .get_balance(cdk_mint_url, cdk_unit, cdk_state)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn get_transaction(
- &self,
- transaction_id: TransactionId,
- ) -> Result<Option<Transaction>, FfiError> {
- let cdk_id = transaction_id.try_into()?;
- let result = self
- .inner
- .get_transaction(cdk_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.map(Into::into))
- }
- async fn list_transactions(
- &self,
- mint_url: Option<MintUrl>,
- direction: Option<TransactionDirection>,
- unit: Option<CurrencyUnit>,
- ) -> Result<Vec<Transaction>, FfiError> {
- let cdk_mint_url = mint_url.map(|u| u.try_into()).transpose()?;
- let cdk_direction = direction.map(Into::into);
- let cdk_unit = unit.map(Into::into);
- let result = self
- .inner
- .list_transactions(cdk_mint_url, cdk_direction, cdk_unit)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })?;
- Ok(result.into_iter().map(Into::into).collect())
- }
- async fn kv_read(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<Option<Vec<u8>>, FfiError> {
- self.inner
- .kv_read(&primary_namespace, &secondary_namespace, &key)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn kv_list(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- ) -> Result<Vec<String>, FfiError> {
- self.inner
- .kv_list(&primary_namespace, &secondary_namespace)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn kv_write(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- value: Vec<u8>,
- ) -> Result<(), FfiError> {
- self.inner
- .kv_write(&primary_namespace, &secondary_namespace, &key, &value)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn kv_remove(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<(), FfiError> {
- self.inner
- .kv_remove(&primary_namespace, &secondary_namespace, &key)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- // ========== Write methods ==========
- async fn update_proofs(
- &self,
- added: Vec<ProofInfo>,
- removed_ys: Vec<PublicKey>,
- ) -> Result<(), FfiError> {
- let cdk_added: Result<Vec<cdk::types::ProofInfo>, FfiError> = added
- .into_iter()
- .map(|info| {
- Ok::<cdk::types::ProofInfo, FfiError>(cdk::types::ProofInfo {
- proof: info.proof.try_into()?,
- y: info.y.try_into()?,
- mint_url: info.mint_url.try_into()?,
- state: info.state.into(),
- spending_condition: info
- .spending_condition
- .map(|sc| sc.try_into())
- .transpose()?,
- unit: info.unit.into(),
- })
- })
- .collect();
- let cdk_added = cdk_added?;
- let cdk_removed_ys: Result<Vec<cdk::nuts::PublicKey>, FfiError> =
- removed_ys.into_iter().map(|pk| pk.try_into()).collect();
- let cdk_removed_ys = cdk_removed_ys?;
- self.inner
- .update_proofs(cdk_added, cdk_removed_ys)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn update_proofs_state(
- &self,
- ys: Vec<PublicKey>,
- state: ProofState,
- ) -> Result<(), FfiError> {
- let cdk_ys: Result<Vec<cdk::nuts::PublicKey>, FfiError> =
- ys.into_iter().map(|pk| pk.try_into()).collect();
- let cdk_ys = cdk_ys?;
- let cdk_state = state.into();
- self.inner
- .update_proofs_state(cdk_ys, cdk_state)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_transaction(&self, transaction: Transaction) -> Result<(), FfiError> {
- let cdk_transaction: cdk::wallet::types::Transaction = transaction.try_into()?;
- self.inner
- .add_transaction(cdk_transaction)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn remove_transaction(&self, transaction_id: TransactionId) -> Result<(), FfiError> {
- let cdk_id = transaction_id.try_into()?;
- self.inner
- .remove_transaction(cdk_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn update_mint_url(
- &self,
- old_mint_url: MintUrl,
- new_mint_url: MintUrl,
- ) -> Result<(), FfiError> {
- let cdk_old = old_mint_url.try_into()?;
- let cdk_new = new_mint_url.try_into()?;
- self.inner
- .update_mint_url(cdk_old, cdk_new)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn increment_keyset_counter(&self, keyset_id: Id, count: u32) -> Result<u32, FfiError> {
- let cdk_id = keyset_id.into();
- self.inner
- .increment_keyset_counter(&cdk_id, count)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_mint(
- &self,
- mint_url: MintUrl,
- mint_info: Option<MintInfo>,
- ) -> Result<(), FfiError> {
- let cdk_mint_url = mint_url.try_into()?;
- let cdk_mint_info = mint_info.map(Into::into);
- self.inner
- .add_mint(cdk_mint_url, cdk_mint_info)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn remove_mint(&self, mint_url: MintUrl) -> Result<(), FfiError> {
- let cdk_mint_url = mint_url.try_into()?;
- self.inner
- .remove_mint(cdk_mint_url)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_mint_keysets(
- &self,
- mint_url: MintUrl,
- keysets: Vec<KeySetInfo>,
- ) -> Result<(), FfiError> {
- let cdk_mint_url = mint_url.try_into()?;
- let cdk_keysets: Vec<cdk::nuts::KeySetInfo> = keysets.into_iter().map(Into::into).collect();
- self.inner
- .add_mint_keysets(cdk_mint_url, cdk_keysets)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_mint_quote(&self, quote: MintQuote) -> Result<(), FfiError> {
- let cdk_quote = quote.try_into()?;
- self.inner
- .add_mint_quote(cdk_quote)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn remove_mint_quote(&self, quote_id: String) -> Result<(), FfiError> {
- self.inner
- .remove_mint_quote("e_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_melt_quote(&self, quote: MeltQuote) -> Result<(), FfiError> {
- let cdk_quote = quote.try_into()?;
- self.inner
- .add_melt_quote(cdk_quote)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn remove_melt_quote(&self, quote_id: String) -> Result<(), FfiError> {
- self.inner
- .remove_melt_quote("e_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn add_keys(&self, keyset: KeySet) -> Result<(), FfiError> {
- let cdk_keyset: cdk::nuts::KeySet = keyset.try_into()?;
- self.inner
- .add_keys(cdk_keyset)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- async fn remove_keys(&self, id: Id) -> Result<(), FfiError> {
- let cdk_id = id.into();
- self.inner
- .remove_keys(&cdk_id)
- .await
- .map_err(|e| FfiError::Database { msg: e.to_string() })
- }
- }
- /// Macro to implement WalletDatabase for wrapper types that delegate to an inner FfiWalletSQLDatabase.
- /// This eliminates duplication between SQLite and Postgres FFI implementations.
- ///
- /// Requirements: The following types must be in scope where this macro is invoked:
- /// - WalletDatabase, FfiError, PublicKey, ProofInfo, MintUrl, MintInfo, KeySetInfo, Id,
- /// MintQuote, MeltQuote, Keys, CurrencyUnit, ProofState, SpendingConditions, Transaction,
- /// TransactionId, TransactionDirection, KeySet
- /// - std::collections::HashMap
- #[macro_export]
- macro_rules! impl_ffi_wallet_database {
- ($wrapper_type:ty) => {
- #[uniffi::export(async_runtime = "tokio")]
- #[async_trait::async_trait]
- impl WalletDatabase for $wrapper_type {
- // ========== Read methods ==========
- async fn get_proofs_by_ys(
- &self,
- ys: Vec<PublicKey>,
- ) -> Result<Vec<ProofInfo>, FfiError> {
- self.inner.get_proofs_by_ys(ys).await
- }
- async fn get_mint(&self, mint_url: MintUrl) -> Result<Option<MintInfo>, FfiError> {
- self.inner.get_mint(mint_url).await
- }
- async fn get_mints(
- &self,
- ) -> Result<std::collections::HashMap<MintUrl, Option<MintInfo>>, FfiError> {
- self.inner.get_mints().await
- }
- async fn get_mint_keysets(
- &self,
- mint_url: MintUrl,
- ) -> Result<Option<Vec<KeySetInfo>>, FfiError> {
- self.inner.get_mint_keysets(mint_url).await
- }
- async fn get_keyset_by_id(
- &self,
- keyset_id: Id,
- ) -> Result<Option<KeySetInfo>, FfiError> {
- self.inner.get_keyset_by_id(keyset_id).await
- }
- async fn get_mint_quote(
- &self,
- quote_id: String,
- ) -> Result<Option<MintQuote>, FfiError> {
- self.inner.get_mint_quote(quote_id).await
- }
- async fn get_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError> {
- self.inner.get_mint_quotes().await
- }
- async fn get_unissued_mint_quotes(&self) -> Result<Vec<MintQuote>, FfiError> {
- self.inner.get_unissued_mint_quotes().await
- }
- async fn get_melt_quote(
- &self,
- quote_id: String,
- ) -> Result<Option<MeltQuote>, FfiError> {
- self.inner.get_melt_quote(quote_id).await
- }
- async fn get_melt_quotes(&self) -> Result<Vec<MeltQuote>, FfiError> {
- self.inner.get_melt_quotes().await
- }
- async fn get_keys(&self, id: Id) -> Result<Option<Keys>, FfiError> {
- self.inner.get_keys(id).await
- }
- async fn get_proofs(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- spending_conditions: Option<Vec<SpendingConditions>>,
- ) -> Result<Vec<ProofInfo>, FfiError> {
- self.inner
- .get_proofs(mint_url, unit, state, spending_conditions)
- .await
- }
- async fn get_balance(
- &self,
- mint_url: Option<MintUrl>,
- unit: Option<CurrencyUnit>,
- state: Option<Vec<ProofState>>,
- ) -> Result<u64, FfiError> {
- self.inner.get_balance(mint_url, unit, state).await
- }
- async fn get_transaction(
- &self,
- transaction_id: TransactionId,
- ) -> Result<Option<Transaction>, FfiError> {
- self.inner.get_transaction(transaction_id).await
- }
- async fn list_transactions(
- &self,
- mint_url: Option<MintUrl>,
- direction: Option<TransactionDirection>,
- unit: Option<CurrencyUnit>,
- ) -> Result<Vec<Transaction>, FfiError> {
- self.inner
- .list_transactions(mint_url, direction, unit)
- .await
- }
- async fn kv_read(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<Option<Vec<u8>>, FfiError> {
- self.inner
- .kv_read(primary_namespace, secondary_namespace, key)
- .await
- }
- async fn kv_list(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- ) -> Result<Vec<String>, FfiError> {
- self.inner
- .kv_list(primary_namespace, secondary_namespace)
- .await
- }
- async fn kv_write(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- value: Vec<u8>,
- ) -> Result<(), FfiError> {
- self.inner
- .kv_write(primary_namespace, secondary_namespace, key, value)
- .await
- }
- async fn kv_remove(
- &self,
- primary_namespace: String,
- secondary_namespace: String,
- key: String,
- ) -> Result<(), FfiError> {
- self.inner
- .kv_remove(primary_namespace, secondary_namespace, key)
- .await
- }
- // ========== Write methods ==========
- async fn update_proofs(
- &self,
- added: Vec<ProofInfo>,
- removed_ys: Vec<PublicKey>,
- ) -> Result<(), FfiError> {
- self.inner.update_proofs(added, removed_ys).await
- }
- async fn update_proofs_state(
- &self,
- ys: Vec<PublicKey>,
- state: ProofState,
- ) -> Result<(), FfiError> {
- self.inner.update_proofs_state(ys, state).await
- }
- async fn add_transaction(&self, transaction: Transaction) -> Result<(), FfiError> {
- self.inner.add_transaction(transaction).await
- }
- async fn remove_transaction(
- &self,
- transaction_id: TransactionId,
- ) -> Result<(), FfiError> {
- self.inner.remove_transaction(transaction_id).await
- }
- async fn update_mint_url(
- &self,
- old_mint_url: MintUrl,
- new_mint_url: MintUrl,
- ) -> Result<(), FfiError> {
- self.inner.update_mint_url(old_mint_url, new_mint_url).await
- }
- async fn increment_keyset_counter(
- &self,
- keyset_id: Id,
- count: u32,
- ) -> Result<u32, FfiError> {
- self.inner.increment_keyset_counter(keyset_id, count).await
- }
- async fn add_mint(
- &self,
- mint_url: MintUrl,
- mint_info: Option<MintInfo>,
- ) -> Result<(), FfiError> {
- self.inner.add_mint(mint_url, mint_info).await
- }
- async fn remove_mint(&self, mint_url: MintUrl) -> Result<(), FfiError> {
- self.inner.remove_mint(mint_url).await
- }
- async fn add_mint_keysets(
- &self,
- mint_url: MintUrl,
- keysets: Vec<KeySetInfo>,
- ) -> Result<(), FfiError> {
- self.inner.add_mint_keysets(mint_url, keysets).await
- }
- async fn add_mint_quote(&self, quote: MintQuote) -> Result<(), FfiError> {
- self.inner.add_mint_quote(quote).await
- }
- async fn remove_mint_quote(&self, quote_id: String) -> Result<(), FfiError> {
- self.inner.remove_mint_quote(quote_id).await
- }
- async fn add_melt_quote(&self, quote: MeltQuote) -> Result<(), FfiError> {
- self.inner.add_melt_quote(quote).await
- }
- async fn remove_melt_quote(&self, quote_id: String) -> Result<(), FfiError> {
- self.inner.remove_melt_quote(quote_id).await
- }
- async fn add_keys(&self, keyset: KeySet) -> Result<(), FfiError> {
- self.inner.add_keys(keyset).await
- }
- async fn remove_keys(&self, id: Id) -> Result<(), FfiError> {
- self.inner.remove_keys(id).await
- }
- }
- };
- }
- /// FFI-safe database type enum
- #[derive(uniffi::Enum, Clone)]
- pub enum WalletDbBackend {
- Sqlite {
- path: String,
- },
- #[cfg(feature = "postgres")]
- Postgres {
- url: String,
- },
- }
- /// Factory helpers returning a CDK wallet database behind the FFI trait
- #[uniffi::export]
- pub fn create_wallet_db(backend: WalletDbBackend) -> Result<Arc<dyn WalletDatabase>, FfiError> {
- match backend {
- WalletDbBackend::Sqlite { path } => {
- let sqlite = WalletSqliteDatabase::new(path)?;
- Ok(sqlite as Arc<dyn WalletDatabase>)
- }
- #[cfg(feature = "postgres")]
- WalletDbBackend::Postgres { url } => {
- let pg = WalletPostgresDatabase::new(url)?;
- Ok(pg as Arc<dyn WalletDatabase>)
- }
- }
- }
- /// Helper function to create a CDK database from the FFI trait
- pub fn create_cdk_database_from_ffi(
- ffi_db: Arc<dyn WalletDatabase>,
- ) -> Arc<dyn CdkWalletDatabase<cdk::cdk_database::Error> + Send + Sync> {
- Arc::new(WalletDatabaseBridge::new(ffi_db))
- }
|