redb_wallet_storage 0.1.1

A redb storage backend for Bitcoin Development Kit wallets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
//! # redb-wallet-storage
//!
//! A [redb](https://crates.io/crates/redb) storage backend for [Bitcoin Development Kit (BDK)](https://bitcoindevkit.org/).
//!
//! This crate provides an efficient, pure-Rust implementation of the `WalletPersister` and `AsyncWalletPersister`
//! traits from the `bdk_wallet` crate using the redb embedded key-value database.
//!
//! ## Features
//!
//! - Fast, reliable wallet data persistence using redb's ACID-compliant storage
//! - Support for both synchronous and asynchronous wallet operations
//! - Simple, lightweight implementation with minimal dependencies
//! - Configurable database options
//! - Robust error handling
//!
//! ## Usage
//! ```rust,no_run
//! use bdk_wallet::{CreateParams, LoadParams, PersistedWallet};
//! use bitcoin::Network;
//! use redb_wallet_storage::RedbStore;
//!
//! // Example descriptors (use your own securely generated ones)
//! const DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
//! const CHANGE_DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     // Create or open a wallet store
//!     let mut store = RedbStore::open_or_create("wallet.redb")?;
//!     
//!     // Try to load an existing wallet
//!     let wallet = match PersistedWallet::load(&mut store, LoadParams::default())? {
//!         Some(wallet) => wallet,
//!         None => {
//!             // Create a new wallet if one doesn't exist
//!             let create_params = CreateParams::new(DESCRIPTOR, CHANGE_DESCRIPTOR)
//!                 .network(Network::Testnet);
//!             PersistedWallet::create(&mut store, create_params)?
//!         }
//!     };
//!     
//!     println!("Wallet loaded successfully!");
//!     
//!     Ok(())
//! }
//! ```
//!
//! ## Async Usage
//! ```rust,no_run
//! use bdk_wallet::{CreateParams, LoadParams, PersistedWallet};
//! use bitcoin::Network;
//! use redb_wallet_storage::RedbStore;
//!
//! // Example descriptors (use your own securely generated ones)
//! const DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
//! const CHANGE_DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
//!
//! async fn async_example() -> Result<(), Box<dyn std::error::Error>> {
//!     // Create or open a wallet store
//!     let mut store = RedbStore::open_or_create("wallet_async.redb")?;
//!     
//!     // Try to load an existing wallet asynchronously
//!     let wallet = match PersistedWallet::load_async(&mut store, LoadParams::default()).await? {
//!         Some(wallet) => wallet,
//!         None => {
//!             // Create a new wallet if one doesn't exist
//!             let create_params = CreateParams::new(DESCRIPTOR, CHANGE_DESCRIPTOR)
//!                 .network(Network::Testnet);
//!             PersistedWallet::create_async(&mut store, create_params).await?
//!         }
//!     };
//!     
//!     println!("Wallet loaded successfully!");
//!     
//!     Ok(())
//! }
//! ```
//!
//! ## Database Configuration
//!
//! The `RedbStore` provides methods for fine-tuning database settings:
//!
//! ```rust,no_run
//! use redb_wallet_storage::RedbStore;
//!
//! fn custom_config_example() -> Result<(), Box<dyn std::error::Error>> {
//!     // Create a custom database configuration
//!     let mut config = redb::Builder::new();
//!     config.set_cache_size(1024 * 1024 * 10); // 10 MB cache
//!     
//!     // Create a store with custom configuration
//!     let store = RedbStore::create_with_config("custom_wallet.redb", &mut config)?;
//!     
//!     Ok(())
//! }
//! ```
//!
//! ## Error Handling
//!
//! The crate provides a comprehensive `RedbError` type that wraps all potential errors:
//!
//! ```rust,no_run
//! use redb_wallet_storage::{RedbStore, RedbError};
//!
//! fn error_handling_example() {
//!     match RedbStore::open("nonexistent.redb") {
//!         Ok(store) => {
//!             println!("Store opened successfully");
//!         },
//!         Err(RedbError::Database(e)) => {
//!             println!("Database error: {}", e);
//!         },
//!         Err(RedbError::Io(e)) => {
//!             println!("I/O error: {}", e);
//!         },
//!         Err(e) => {
//!             println!("Other error: {}", e);
//!         }
//!     }
//! }
//! ```
//!
use bdk_chain::Merge;
use bdk_wallet::{AsyncWalletPersister, ChangeSet, WalletPersister};
use redb::{Database, ReadableTableMetadata, TableDefinition};
use std::future::Future;
use std::path::Path;
use std::pin::Pin;

/// The table definition for wallet data
const WALLET_TABLE: TableDefinition<&str, &[u8]> = TableDefinition::new("wallet_data");

/// The key used to store the wallet changeset
const CHANGESET_KEY: &str = "wallet_changeset";

/// Persists a wallet changeset in a redb database.
///
/// `RedbStore` implements both the `WalletPersister` trait for synchronous operations
/// and the `AsyncWalletPersister` trait for asynchronous operations, allowing it to be
/// used with both blocking and non-blocking BDK wallet operations.
///
/// The wallet data is stored in a single table with a key-value structure, where the
/// wallet changeset is serialized to JSON and stored under a fixed key. This approach
/// provides a simple, efficient way to persist wallet state while maintaining ACID
/// guarantees through redb's transactional model.
///
/// # Examples
///
/// ```rust,no_run
/// use bdk_wallet::{KeychainKind, LoadParams, PersistedWallet};
/// use redb_wallet_storage::RedbStore;
///
/// // Open or create a wallet database
/// let mut store = RedbStore::open_or_create("my_wallet.redb").unwrap();
///
/// // Load a wallet (if it exists)
/// if let Some(mut wallet) = PersistedWallet::load(&mut store, LoadParams::default()).unwrap() {
///     // Get a new receiving address
///     let address = wallet.reveal_next_address(KeychainKind::External);
///     println!("New address: {}", address.address);
///
///     // Persist changes back to the database
///     wallet.persist(&mut store).unwrap();
/// }
/// ```
///
#[derive(Debug)]
pub struct RedbStore {
    db: Database,
}

impl RedbStore {
    /// Create a new [`RedbStore`]; error if the file exists.
    ///
    /// This function creates a new redb database file at the specified path and
    /// initializes it with the required table structure for wallet storage.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file already exists
    /// - The database cannot be created due to permission issues or other I/O errors
    /// - The required table cannot be created
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// let store = RedbStore::create("new_wallet.redb").unwrap();
    /// ```
    ///
    pub fn create<P>(file_path: P) -> Result<Self, RedbError>
    where
        P: AsRef<Path>,
    {
        let db = Database::create(file_path)?;

        // Initialize the database with the required table
        let write_txn = db.begin_write()?;
        {
            let _table = write_txn.open_table(WALLET_TABLE)?;
        }
        write_txn.commit()?;

        Ok(Self { db })
    }

    /// Create a new [`RedbStore`] with custom configuration; error if the file exists.
    ///
    /// This function allows for fine-tuning the redb database settings using the
    /// `redb::Builder` configuration options.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file already exists
    /// - The database cannot be created with the given configuration
    /// - The required table cannot be created
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// // Create a custom configuration with a larger cache size
    /// let mut config = redb::Builder::new();
    /// config.set_cache_size(1024 * 1024 * 50); // 50 MB cache
    ///
    /// let store = RedbStore::create_with_config("updated_wallet.redb", &mut config).unwrap();
    /// ```
    ///
    pub fn create_with_config<P>(
        file_path: P,
        config: &mut redb::Builder,
    ) -> Result<Self, RedbError>
    where
        P: AsRef<Path>,
    {
        let db = config.create(file_path)?;

        // Initialize the database with the required table
        let write_txn = db.begin_write()?;
        {
            let _table = write_txn.open_table(WALLET_TABLE)?;
        }
        write_txn.commit()?;

        Ok(Self { db })
    }

    /// Open an existing [`RedbStore`].
    ///
    /// This function opens an existing redb database file for wallet storage.
    ///
    /// # Errors
    /// - The file does not exist
    /// - The database cannot be opened due to permission issues or other I/O errors
    /// - The file is not a valid redb database or is corrupted
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// let store = RedbStore::open("existing_wallet.redb").unwrap();
    /// ```
    ///
    pub fn open<P>(file_path: P) -> Result<Self, RedbError>
    where
        P: AsRef<Path>,
    {
        let db = Database::open(file_path)?;
        Ok(Self { db })
    }

    /// Open an existing [`RedbStore`] with custom configuration.
    ///
    /// This function allows for fine-tuning the redb database settings when opening
    /// an existing database file.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file does not exist
    /// - The database cannot be opened with the given configuration
    /// - The file is not a valid redb database or is corrupted
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// // Open with a custom configuration
    /// let config = redb::Builder::new();
    ///
    /// let store = RedbStore::open_with_config("existing_wallet.redb", config).unwrap();
    /// ```
    ///
    pub fn open_with_config<P>(file_path: P, config: redb::Builder) -> Result<Self, RedbError>
    where
        P: AsRef<Path>,
    {
        let db = config.open(file_path)?;
        Ok(Self { db })
    }

    /// Attempt to open an existing [`RedbStore`]; create it if the file does not exist.
    ///
    /// This is a convenience function that tries to open an existing database file,
    /// and if it doesn't exist, creates a new one instead.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file exists but cannot be opened
    /// - The file doesn't exist and cannot be created
    /// - The database is corrupted or invalid
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// // This will open the database if it exists, or create it if it doesn't
    /// let store = RedbStore::open_or_create("wallet.redb").unwrap();
    /// ```
    ///
    pub fn open_or_create<P>(file_path: P) -> Result<Self, RedbError>
    where
        P: AsRef<Path>,
    {
        if file_path.as_ref().exists() {
            Self::open(file_path)
        } else {
            Self::create(file_path)
        }
    }

    /// Get statistics about the wallet table
    ///
    /// Returns statistics about the wallet data table, including the number of entries,
    /// table size, and other metrics.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The database cannot be read
    /// - The wallet table cannot be opened
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use redb_wallet_storage::RedbStore;
    ///
    /// let store = RedbStore::open("wallet.redb").unwrap();
    /// let stats = store.table_stats().unwrap();
    ///
    /// // You can inspect the table statistics
    /// println!("Table stats: {:?}", stats);
    /// ```
    ///
    pub fn table_stats(&self) -> Result<redb::TableStats, RedbError> {
        let read_txn = self.db.begin_read()?;
        let table = read_txn.open_table(WALLET_TABLE)?;
        Ok(table.stats()?)
    }

    /// Get the changeset from the database
    ///
    /// Internal method that retrieves the stored wallet changeset from the database.
    ///
    /// # Returns
    ///
    /// - `Ok(Some(changeset))` if a changeset exists in the database
    /// - `Ok(None)` if no changeset has been stored yet
    /// - `Err(...)` if an error occurs during database access or deserialization
    ///
    fn get_changeset(&self) -> Result<Option<ChangeSet>, RedbError> {
        let read_txn = self.db.begin_read()?;
        let table = read_txn.open_table(WALLET_TABLE)?;

        match table.get(CHANGESET_KEY)? {
            Some(value) => {
                let changeset_bytes = value.value();
                let changeset: ChangeSet =
                    serde_json::from_slice(changeset_bytes).map_err(RedbError::Deserialization)?;
                Ok(Some(changeset))
            }
            None => Ok(None),
        }
    }

    /// Store the changeset in the database
    ///
    /// Internal method that persists a wallet changeset to the database.
    /// If the changeset is empty, this method does nothing.
    ///
    /// # Arguments
    ///
    /// * `changeset` - The wallet changeset to store
    ///
    /// # Returns
    ///
    /// - `Ok(())` if the changeset was successfully stored or was empty
    /// - `Err(...)` if an error occurs during serialization or database access
    ///
    fn store_changeset(&self, changeset: &ChangeSet) -> Result<(), RedbError> {
        // Skip if changeset is empty
        if changeset.is_empty() {
            return Ok(());
        }

        let write_txn = self.db.begin_write()?;
        {
            let mut table = write_txn.open_table(WALLET_TABLE)?;

            // Serialize the changeset
            let changeset_bytes =
                serde_json::to_vec(changeset).map_err(RedbError::Serialization)?;

            table.insert(CHANGESET_KEY, changeset_bytes.as_slice())?;
        }
        write_txn.commit()?;

        Ok(())
    }
}

/// Error type for redb storage operations
/// This enum represents all possible errors that can occur when using the `RedbStore`.
/// It wraps errors from the underlying redb database, serialization/deserialization errors,
/// and I/O errors.
#[derive(Debug)]
pub enum RedbError {
    /// Error from the redb database
    Database(redb::Error),
    /// Error serializing data
    Serialization(serde_json::Error),
    /// Error deserializing data
    Deserialization(serde_json::Error),
    /// I/O error
    Io(std::io::Error),
    /// Commit error
    Commit(redb::CommitError),
    /// Table error
    Table(redb::TableError),
    /// Transaction error
    Transaction(redb::TransactionError),
}

impl std::fmt::Display for RedbError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Database(e) => write!(f, "Database error: {}", e),
            Self::Serialization(e) => write!(f, "Serialization error: {}", e),
            Self::Deserialization(e) => write!(f, "Deserialization error: {}", e),
            Self::Io(e) => write!(f, "I/O error: {}", e),
            Self::Commit(e) => write!(f, "Commit error: {}", e),
            Self::Table(e) => write!(f, "Table error: {}", e),
            Self::Transaction(e) => write!(f, "Transaction error: {}", e),
        }
    }
}

// impl std::error::Error for RedbError {}
impl std::error::Error for RedbError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Self::Database(e) => Some(e),
            Self::Serialization(e) => Some(e),
            Self::Deserialization(e) => Some(e),
            Self::Io(e) => Some(e),
            Self::Commit(e) => Some(e),
            Self::Table(e) => Some(e),
            Self::Transaction(e) => Some(e),
        }
    }
}

impl From<redb::DatabaseError> for RedbError {
    fn from(e: redb::DatabaseError) -> Self {
        Self::Database(e.into())
    }
}

impl From<redb::StorageError> for RedbError {
    fn from(e: redb::StorageError) -> Self {
        Self::Database(e.into())
    }
}

impl From<redb::Error> for RedbError {
    fn from(e: redb::Error) -> Self {
        Self::Database(e)
    }
}

impl From<serde_json::Error> for RedbError {
    fn from(e: serde_json::Error) -> Self {
        Self::Serialization(e)
    }
}

impl From<std::io::Error> for RedbError {
    fn from(e: std::io::Error) -> Self {
        Self::Io(e)
    }
}

impl From<redb::CommitError> for RedbError {
    fn from(e: redb::CommitError) -> Self {
        Self::Commit(e)
    }
}

impl From<redb::TableError> for RedbError {
    fn from(e: redb::TableError) -> Self {
        Self::Table(e)
    }
}

impl From<redb::TransactionError> for RedbError {
    fn from(e: redb::TransactionError) -> Self {
        Self::Transaction(e)
    }
}

/// Type alias for a pinned, boxed future that can be returned by async methods
type FutureResult<'a, T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>;

impl WalletPersister for RedbStore {
    type Error = RedbError;

    /// Initialize the wallet persister by loading the stored changeset
    ///
    /// This method is called by BDK when a wallet is being loaded.
    /// It retrieves the stored wallet changeset from the database or returns
    /// an empty changeset if none exists.
    ///
    /// # Returns
    ///
    /// - The stored wallet changeset, or an empty changeset if none exists
    /// - An error if database access or deserialization fails
    ///
    fn initialize(persister: &mut Self) -> Result<ChangeSet, Self::Error> {
        // Get changeset or return empty if none exists
        persister.get_changeset().map(|opt| opt.unwrap_or_default())
    }

    /// Persist a wallet changeset to the database
    ///
    /// This method is called by BDK when wallet changes need to be saved.
    /// It merges the new changeset with any existing one and stores the result.
    ///
    /// # Arguments
    ///
    /// * `changeset` - The wallet changeset to persist
    ///
    /// # Returns
    ///
    /// - `Ok(())` if the changeset was successfully stored
    /// - An error if serialization or database access fails
    ///
    fn persist(persister: &mut Self, changeset: &ChangeSet) -> Result<(), Self::Error> {
        // Get existing changeset if any
        let existing_changeset = persister.get_changeset()?;

        // Merge with existing or use the new one
        let final_changeset = match existing_changeset {
            Some(mut existing) => {
                existing.merge(changeset.clone());
                existing
            }
            None => changeset.clone(),
        };

        // Store the merged changeset
        persister.store_changeset(&final_changeset)
    }
}

impl AsyncWalletPersister for RedbStore {
    type Error = RedbError;

    /// Initialize the wallet persister asynchronously by loading the stored changeset
    ///
    /// This method is called by BDK when a wallet is being loaded asynchronously.
    /// It retrieves the stored wallet changeset from the database or returns
    /// an empty changeset if none exists.
    ///
    /// # Returns
    ///
    /// - A future that resolves to the stored wallet changeset, or an empty changeset if none exists
    /// - An error if database access or deserialization fails
    ///
    fn initialize<'a>(persister: &'a mut Self) -> FutureResult<'a, ChangeSet, Self::Error>
    where
        Self: 'a,
    {
        Box::pin(async move {
            // Get changeset or return empty if none exists
            persister.get_changeset().map(|opt| opt.unwrap_or_default())
        })
    }

    /// Persist a wallet changeset to the database asynchronously
    ///
    /// This method is called by BDK when wallet changes need to be saved asynchronously.
    /// It merges the new changeset with any existing one and stores the result.
    ///
    /// # Arguments
    ///
    /// * `changeset` - The wallet changeset to persist
    ///
    /// # Returns
    ///
    /// - A future that resolves to `Ok(())` if the changeset was successfully stored
    /// - An error if serialization or database access fails
    fn persist<'a>(
        persister: &'a mut Self,
        changeset: &'a ChangeSet,
    ) -> FutureResult<'a, (), Self::Error>
    where
        Self: 'a,
    {
        Box::pin(async move {
            // Get existing changeset if any
            let existing_changeset = persister.get_changeset()?;

            // Merge with existing or use the new one
            let final_changeset = match existing_changeset {
                Some(mut existing) => {
                    existing.merge(changeset.clone());
                    existing
                }
                None => changeset.clone(),
            };

            // Store the merged changeset
            persister.store_changeset(&final_changeset)
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use bdk_wallet::{CreateParams, KeychainKind, LoadParams, PersistedWallet};
    use bitcoin::Network;
    use futures::future::join_all;
    use std::fs;
    use std::fs::OpenOptions;
    use std::sync::Arc;
    use tempfile::tempdir;
    use tokio::sync::Mutex;

    // Example descriptor for testing
    const TEST_DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdcAqYBpzAFwU5yxBUo88ggoBqu1qPcHUfSbKK1sKMLmC7EAk438btHQrSdu3jGGQa6PA71nvH5nkDexhLteJqkM4dQmWF9g/84'/1'/0'/0/*)";
    const TEST_CHANGE_DESCRIPTOR: &str = "wpkh(tprv8ZgxMBicQKsPdcAqYBpzAFwU5yxBUo88ggoBqu1qPcHUfSbKK1sKMLmC7EAk438btHQrSdu3jGGQa6PA71nvH5nkDexhLteJqkM4dQmWF9g/84'/1'/0'/1/*)";

    #[test]
    fn test_create_and_persist() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("wallet.redb");

        let mut store = RedbStore::create(&db_path).unwrap();

        // Create params with descriptors
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create(&mut store, create_params).unwrap();

        // Make a change to the wallet - reveal an address which will create a change
        let _address = wallet.reveal_next_address(KeychainKind::External);

        // Now persist should return true because we've made changes
        let persisted = wallet.persist(&mut store).unwrap();
        assert!(persisted);

        // Check that we can load the wallet back
        let load_params = LoadParams::default();
        let loaded_wallet = PersistedWallet::load(&mut store, load_params).unwrap();
        assert!(loaded_wallet.is_some());
    }

    #[test]
    fn test_empty_store() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("empty.redb");

        // Create an empty store
        let mut store = RedbStore::create(&db_path).unwrap();

        // Initialize should return an empty changeset
        let changeset = WalletPersister::initialize(&mut store).unwrap();
        assert!(changeset.is_empty());
    }

    #[test]
    fn test_open_nonexistent_file() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("nonexistent.redb");

        // Attempt to open a non-existent database file
        let result = RedbStore::open(&db_path);
        assert!(result.is_err());
    }

    #[test]
    fn test_open_or_create() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("open_or_create.redb");

        // File doesn't exist, should create it
        let store = RedbStore::open_or_create(&db_path).unwrap();
        drop(store);

        // File now exists, should open it
        let store = RedbStore::open_or_create(&db_path).unwrap();
        drop(store);

        // Verify the file exists
        assert!(db_path.exists());
    }

    #[test]
    fn test_empty_changeset() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("empty_changeset.redb");

        let mut store = RedbStore::create(&db_path).unwrap();

        // Create an empty changeset
        let empty_changeset = ChangeSet::default();

        // Persisting an empty changeset should not error
        WalletPersister::persist(&mut store, &empty_changeset).unwrap();

        // Should still get an empty changeset back
        let retrieved = WalletPersister::initialize(&mut store).unwrap();
        assert!(retrieved.is_empty());
    }

    #[test]
    fn test_persist_and_retrieve() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("persist_retrieve.redb");

        // Create a store and a wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create(&mut store, create_params).unwrap();

        // Generate some addresses to create changes
        for _ in 0..5 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist changes
        wallet.persist(&mut store).unwrap();

        // Close and reopen the store
        drop(store);
        let mut store = RedbStore::open(&db_path).unwrap();

        // Load the wallet and verify it has the changes
        let loaded_wallet = PersistedWallet::load(&mut store, LoadParams::default())
            .unwrap()
            .unwrap();

        // The loaded wallet should have the same last revealed index as the original
        let original_address = wallet.peek_address(KeychainKind::External, 4);
        let loaded_address = loaded_wallet.peek_address(KeychainKind::External, 4);

        // Compare the addresses
        assert_eq!(
            original_address.address.to_string(),
            loaded_address.address.to_string()
        );
    }

    #[test]
    fn test_update_existing_data() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("update.redb");

        // Create a store and a wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create(&mut store, create_params).unwrap();

        // Generate a few addresses
        for _ in 0..3 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist the initial state
        wallet.persist(&mut store).unwrap();

        // Generate more addresses to create additional changes
        for _ in 0..3 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist the updated state
        wallet.persist(&mut store).unwrap();

        // Close and reopen the store
        drop(store);
        let mut store = RedbStore::open(&db_path).unwrap();

        // Load the wallet and verify it has all the changes
        let loaded_wallet = PersistedWallet::load(&mut store, LoadParams::default())
            .unwrap()
            .unwrap();

        // The loaded wallet should have all 6 addresses
        let last_address = loaded_wallet.peek_address(KeychainKind::External, 5);

        // This should succeed if the wallet has the address at index 5
        assert_eq!(last_address.index, 5);
    }

    #[test]
    fn test_multiple_stores_same_file() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("multiple.redb");

        // Create first store
        let _store1 = RedbStore::create(&db_path).unwrap();

        // Open second store to the same file
        let result = RedbStore::open(&db_path);

        // This should fail because the file is already opened by store1
        assert!(result.is_err());
    }

    #[test]
    fn test_corrupted_data_recovery() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("corrupt.redb");

        // Create a store with a wallet
        {
            let mut store = RedbStore::create(&db_path).unwrap();
            let create_params = CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR)
                .network(Network::Testnet);

            let mut wallet = PersistedWallet::create(&mut store, create_params).unwrap();
            wallet.reveal_next_address(KeychainKind::External);
            wallet.persist(&mut store).unwrap();
        }

        // Instead of corrupting the file, let's delete it and create a new one
        fs::remove_file(&db_path).unwrap();

        // Create a new file at the same location
        let mut store = RedbStore::create(&db_path).unwrap();

        // Initialize should return an empty changeset since it's a new file
        let changeset = WalletPersister::initialize(&mut store).unwrap();
        assert!(changeset.is_empty());

        // We should be able to create a new wallet
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let _wallet = PersistedWallet::create(&mut store, create_params).unwrap();
    }

    #[tokio::test]
    async fn test_async_create_and_persist() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("wallet.redb");

        let mut store = RedbStore::create(&db_path).unwrap();

        // Create params with descriptors
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Make a change to the wallet - reveal an address which will create a change
        let _address = wallet.reveal_next_address(KeychainKind::External);

        // Now persist should return true because we've made changes
        let persisted = wallet.persist_async(&mut store).await.unwrap();
        assert!(persisted);

        // Check that we can load the wallet back
        let load_params = LoadParams::default();
        let loaded_wallet = PersistedWallet::load_async(&mut store, load_params)
            .await
            .unwrap();
        assert!(loaded_wallet.is_some());
    }

    #[tokio::test]
    async fn test_async_empty_store() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_empty.redb");

        // Create an empty store
        let mut store = RedbStore::create(&db_path).unwrap();

        // Initialize should return an empty changeset
        let changeset = AsyncWalletPersister::initialize(&mut store).await.unwrap();
        assert!(changeset.is_empty());
    }

    #[tokio::test]
    async fn test_async_empty_changeset() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_empty_changeset.redb");

        let mut store = RedbStore::create(&db_path).unwrap();

        // Create an empty changeset
        let empty_changeset = ChangeSet::default();

        // Persisting an empty changeset should not error
        AsyncWalletPersister::persist(&mut store, &empty_changeset)
            .await
            .unwrap();

        // Should still get an empty changeset back
        let retrieved = AsyncWalletPersister::initialize(&mut store).await.unwrap();
        assert!(retrieved.is_empty());
    }

    #[tokio::test]
    async fn test_async_persist_and_retrieve() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_persist_retrieve.redb");

        // Create a store and a wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Generate some addresses to create changes
        for _ in 0..5 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist changes
        wallet.persist_async(&mut store).await.unwrap();

        // Close and reopen the store
        drop(wallet);
        drop(store);
        let mut store = RedbStore::open(&db_path).unwrap();

        // Load the wallet and verify it has the changes
        let loaded_wallet = PersistedWallet::load_async(&mut store, LoadParams::default())
            .await
            .unwrap()
            .unwrap();

        // Verify the last revealed index is correct
        assert_eq!(
            loaded_wallet.peek_address(KeychainKind::External, 4).index,
            4
        );
    }

    #[tokio::test]
    async fn test_async_update_existing_data() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_update.redb");

        // Create a store and a wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Generate a few addresses
        for _ in 0..3 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist the initial state
        wallet.persist_async(&mut store).await.unwrap();

        // Generate more addresses to create additional changes
        for _ in 0..3 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Persist the updated state
        wallet.persist_async(&mut store).await.unwrap();

        // Close and reopen the store
        drop(wallet);
        drop(store);
        let mut store = RedbStore::open(&db_path).unwrap();

        // Load the wallet and verify it has all the changes
        let loaded_wallet = PersistedWallet::load_async(&mut store, LoadParams::default())
            .await
            .unwrap()
            .unwrap();

        // The loaded wallet should have all 6 addresses
        let last_address = loaded_wallet.peek_address(KeychainKind::External, 5);

        // This should succeed if the wallet has the address at index 5
        assert_eq!(last_address.index, 5);
    }

    #[tokio::test]
    async fn test_async_concurrent_operations() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_concurrent.redb");

        // Create a store and a wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Create a shared wallet that can be accessed by multiple tasks
        let shared_wallet = Arc::new(Mutex::new(wallet));
        let shared_store = Arc::new(Mutex::new(store));

        // Create multiple tasks that reveal addresses and persist changes
        let mut tasks = vec![];
        for _ in 0..5 {
            let wallet_clone = Arc::clone(&shared_wallet);
            let store_clone = Arc::clone(&shared_store);

            let task = tokio::spawn(async move {
                let mut wallet_guard = wallet_clone.lock().await;
                let address = wallet_guard.reveal_next_address(KeychainKind::External);

                let mut store_guard = store_clone.lock().await;
                wallet_guard.persist_async(&mut *store_guard).await.unwrap();

                address
            });

            tasks.push(task);
        }

        // Wait for all tasks to complete
        let results = join_all(tasks).await;

        // Ensure all tasks completed successfully
        for result in results {
            assert!(result.is_ok());
        }

        // Verify that the wallet has the correct number of revealed addresses
        let wallet_guard = shared_wallet.lock().await;
        let last_address = wallet_guard.peek_address(KeychainKind::External, 4);
        assert_eq!(last_address.index, 4);

        // Load the wallet from the store to verify persistence worked
        drop(wallet_guard);
        let mut store_guard = shared_store.lock().await;

        let loaded_wallet = PersistedWallet::load_async(&mut *store_guard, LoadParams::default())
            .await
            .unwrap()
            .unwrap();

        let last_address = loaded_wallet.peek_address(KeychainKind::External, 4);
        assert_eq!(last_address.index, 4);
    }

    #[tokio::test]
    async fn test_async_reopen_and_modify() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_reopen.redb");

        // First session: Create wallet and reveal 3 addresses
        {
            let mut store = RedbStore::create(&db_path).unwrap();
            let create_params = CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR)
                .network(Network::Testnet);

            let mut wallet = PersistedWallet::create_async(&mut store, create_params)
                .await
                .unwrap();

            for _ in 0..3 {
                let _address = wallet.reveal_next_address(KeychainKind::External);
            }

            wallet.persist_async(&mut store).await.unwrap();
        }

        // Second session: Load wallet and reveal 2 more addresses
        {
            let mut store = RedbStore::open(&db_path).unwrap();
            let load_params = LoadParams::default();

            let mut wallet = PersistedWallet::load_async(&mut store, load_params)
                .await
                .unwrap()
                .unwrap();

            // Verify we have the first 3 addresses
            assert_eq!(wallet.peek_address(KeychainKind::External, 2).index, 2);

            // Add 2 more addresses
            for _ in 0..2 {
                let _address = wallet.reveal_next_address(KeychainKind::External);
            }

            wallet.persist_async(&mut store).await.unwrap();
        }

        // Third session: Load wallet and verify all 5 addresses
        {
            let mut store = RedbStore::open(&db_path).unwrap();
            let load_params = LoadParams::default();

            let wallet = PersistedWallet::load_async(&mut store, load_params)
                .await
                .unwrap()
                .unwrap();

            // Verify we have all 5 addresses
            assert_eq!(wallet.peek_address(KeychainKind::External, 4).index, 4);
        }
    }

    #[tokio::test]
    async fn test_async_change_addresses() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_change.redb");

        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Reveal some external addresses
        for _ in 0..3 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
        }

        // Reveal some internal (change) addresses
        for _ in 0..2 {
            let _address = wallet.reveal_next_address(KeychainKind::Internal);
        }

        // Persist the wallet
        wallet.persist_async(&mut store).await.unwrap();

        // Reload the wallet and check both address types
        let loaded_wallet = PersistedWallet::load_async(&mut store, LoadParams::default())
            .await
            .unwrap()
            .unwrap();

        // Verify external addresses
        assert_eq!(
            loaded_wallet.peek_address(KeychainKind::External, 2).index,
            2
        );

        // Verify internal addresses
        assert_eq!(
            loaded_wallet.peek_address(KeychainKind::Internal, 1).index,
            1
        );
    }

    #[tokio::test]
    async fn test_async_multiple_persists() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_multiple_persists.redb");

        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Make changes and persist multiple times
        for i in 0..5 {
            let _address = wallet.reveal_next_address(KeychainKind::External);
            let persisted = wallet.persist_async(&mut store).await.unwrap();

            // First persist should return true, subsequent ones might return false if no changes
            if i == 0 {
                assert!(persisted);
            }
        }

        // Reload the wallet and verify all changes were saved
        let loaded_wallet = PersistedWallet::load_async(&mut store, LoadParams::default())
            .await
            .unwrap()
            .unwrap();

        assert_eq!(
            loaded_wallet.peek_address(KeychainKind::External, 4).index,
            4
        );
    }

    #[tokio::test]
    async fn test_async_error_handling() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_errors.redb");

        // Create a store and wallet
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Persist the wallet
        wallet.persist_async(&mut store).await.unwrap();

        // Close the store
        drop(wallet);
        drop(store);

        // Simulate corrupted database by truncating the file
        {
            let file = OpenOptions::new().write(true).open(&db_path).unwrap();
            // Truncate to a small size to corrupt the database
            file.set_len(100).unwrap();
        }

        // Attempt to open the corrupted database
        let result = RedbStore::open(&db_path);
        assert!(result.is_err());

        // Check if the error is the expected type
        match result {
            Err(RedbError::Database(_)) => {
                // This is the expected error type
            }
            Err(e) => {
                panic!("Unexpected error type: {:?}", e);
            }
            Ok(_) => {
                panic!("Expected an error, but got Ok");
            }
        }

        // Test error handling for AsyncWalletPersister operations

        // Create a new valid database
        let db_path2 = temp_dir.path().join("async_errors2.redb");
        let mut store = RedbStore::create(&db_path2).unwrap();

        // Attempt to load a wallet that doesn't exist
        let load_result = PersistedWallet::load_async(&mut store, LoadParams::default()).await;

        // Should be Ok(None) since no wallet exists yet
        assert!(load_result.is_ok());
        assert!(load_result.unwrap().is_none());

        // Test handling invalid descriptor
        let invalid_descriptor = "invalid_descriptor";
        let invalid_params =
            CreateParams::new(invalid_descriptor, invalid_descriptor).network(Network::Testnet);

        let create_result = PersistedWallet::create_async(&mut store, invalid_params).await;

        // Should fail with an error
        assert!(create_result.is_err());

        // Test concurrent access errors
        if cfg!(not(target_os = "windows")) {
            // Skip on Windows as file locking works differently
            // Create a valid database and keep it open
            let db_path3 = temp_dir.path().join("async_errors3.redb");
            let _store1 = RedbStore::create(&db_path3).unwrap();

            // Try to open the same database file concurrently
            let result = RedbStore::open(&db_path3);

            // Should fail with an error (usually Database error on Unix-like systems)
            assert!(result.is_err());
        }
    }

    #[tokio::test]
    async fn test_async_load_with_network() {
        let temp_dir = tempdir().unwrap();
        let db_path = temp_dir.path().join("async_network.redb");

        // Create a store and a wallet with Testnet network
        let mut store = RedbStore::create(&db_path).unwrap();
        let create_params =
            CreateParams::new(TEST_DESCRIPTOR, TEST_CHANGE_DESCRIPTOR).network(Network::Testnet);

        let mut wallet = PersistedWallet::create_async(&mut store, create_params)
            .await
            .unwrap();

        // Verify the network is set correctly
        assert_eq!(wallet.network(), Network::Testnet);

        // Persist the wallet
        wallet.persist_async(&mut store).await.unwrap();

        // Load the wallet with a matching network (should work)
        let load_params = LoadParams::default().check_network(Network::Testnet);
        let loaded_wallet = PersistedWallet::load_async(&mut store, load_params)
            .await
            .unwrap()
            .unwrap();

        assert_eq!(loaded_wallet.network(), Network::Testnet);

        // Try loading with a mismatched network
        let load_params = LoadParams::default().check_network(Network::Bitcoin);
        let result = PersistedWallet::load_async(&mut store, load_params).await;

        // The behavior might vary depending on how strictly BDK enforces network matching
        // Some implementations might return an error, others might just warn and proceed
        match result {
            Ok(Some(wallet)) => {
                // If it succeeds, the wallet's network should still be Testnet
                assert_eq!(wallet.network(), Network::Testnet);
            }
            Ok(None) => {
                // This might happen if the implementation treats network mismatch as "not found"
                panic!("Wallet was not found, but should exist");
            }
            Err(_) => {
                // This is also acceptable if the implementation strictly enforces network matching
                // No assertion needed, this is an expected potential outcome
            }
        }
    }
}