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
//! Utility functions for redb zero-copy backend
//!
//! This module provides helper functions for transaction management
//! and table name generation.
use crateNetabaseError;
use crateNetabaseDefinitionTrait;
use RedbStoreZeroCopy;
use ;
/// Execute a function within a write transaction scope
///
/// This is a convenience function that automatically handles transaction
/// creation, execution, and commit. If the function returns an error,
/// the transaction is automatically aborted.
///
/// # Arguments
///
/// * `store` - The store to create the transaction from
/// * `f` - The function to execute within the transaction
///
/// # Returns
///
/// The result of the function execution
///
/// # Examples
///
/// ```no_run
/// use netabase_store::databases::redb_zerocopy::*;
/// use netabase_store::error::NetabaseError;
/// use netabase_store::{NetabaseModel, netabase, netabase_definition_module};
///
/// #[netabase_definition_module(MyDefinition, MyKeys)]
/// mod my_models {
/// use netabase_store::{NetabaseModel, netabase};
/// #[derive(NetabaseModel, Clone, Debug, PartialEq,
/// bincode::Encode, bincode::Decode,
/// serde::Serialize, serde::Deserialize)]
/// #[netabase(MyDefinition)]
/// pub struct User {
/// #[primary_key]
/// pub id: u64,
/// pub name: String,
/// }
/// }
/// use my_models::*;
///
/// # fn main() -> Result<(), NetabaseError> {
/// let store = RedbStoreZeroCopy::<MyDefinition>::new("./test.db")?;
/// let result = with_write_transaction(&store, |txn| {
/// let mut tree = txn.open_tree::<User>()?;
/// tree.put(User { id: 1, name: "Alice".to_string() })?;
/// Ok("Success".to_string())
/// })?;
/// assert_eq!(result, "Success");
/// # Ok(())
/// # }
/// ```
/// Execute a function within a read transaction scope
///
/// This is a convenience function that automatically handles read transaction
/// creation and cleanup. Read transactions are automatically cleaned up
/// when they go out of scope.
///
/// # Arguments
///
/// * `store` - The store to create the transaction from
/// * `f` - The function to execute within the transaction
///
/// # Returns
///
/// The result of the function execution
///
/// # Examples
///
/// ```no_run
/// use netabase_store::databases::redb_zerocopy::*;
/// use netabase_store::error::NetabaseError;
/// use netabase_store::{NetabaseModel, netabase, netabase_definition_module};
///
/// #[netabase_definition_module(MyDefinition, MyKeys)]
/// mod my_models {
/// use netabase_store::{NetabaseModel, netabase};
/// #[derive(NetabaseModel, Clone, Debug, PartialEq,
/// bincode::Encode, bincode::Decode,
/// serde::Serialize, serde::Deserialize)]
/// #[netabase(MyDefinition)]
/// pub struct User {
/// #[primary_key]
/// pub id: u64,
/// pub name: String,
/// }
/// }
/// use my_models::*;
///
/// # fn main() -> Result<(), NetabaseError> {
/// let store = RedbStoreZeroCopy::<MyDefinition>::new("./test.db")?;
/// let name = with_read_transaction(&store, |txn| {
/// let tree = txn.open_tree::<User>()?;
/// Ok(tree.get(&UserPrimaryKey(1))?.map(|u| u.name).unwrap_or_default())
/// })?;
/// # Ok(())
/// # }
/// ```
/// Get table name for a discriminant (leaks string to get 'static lifetime)
///
/// This creates a unique table name based on the discriminant value.
/// The string is intentionally leaked to provide a 'static lifetime
/// as required by redb's table definitions.
///
/// # Arguments
///
/// * `discriminant` - The discriminant value to create a table name for
///
/// # Returns
///
/// A 'static string containing the table name
///
/// # Note
///
/// This function intentionally leaks memory to provide the required
/// 'static lifetime. In typical usage, there are only a few different
/// discriminants per application, so the memory leak is minimal.
/// Get secondary table name for a discriminant (leaks string to get 'static lifetime)
///
/// This creates a unique secondary index table name based on the discriminant value.
/// The string is intentionally leaked to provide a 'static lifetime
/// as required by redb's table definitions.
///
/// # Arguments
///
/// * `discriminant` - The discriminant value to create a secondary table name for
///
/// # Returns
///
/// A 'static string containing the secondary table name
///
/// # Note
///
/// This function intentionally leaks memory to provide the required
/// 'static lifetime. In typical usage, there are only a few different
/// discriminants per application, so the memory leak is minimal.
/// Batch operation helper for bulk model insertion
///
/// This utility function provides a convenient way to perform bulk
/// insertions with automatic transaction management.
///
/// # Arguments
///
/// * `store` - The store to operate on
/// * `models` - Vector of models to insert
///
/// # Returns
///
/// Result indicating success or failure
///
/// # Examples
///
/// ```no_run
/// use netabase_store::databases::redb_zerocopy::*;
/// use netabase_store::error::NetabaseError;
/// use netabase_store::{NetabaseModel, netabase, netabase_definition_module};
///
/// #[netabase_definition_module(MyDefinition, MyKeys)]
/// mod my_models {
/// use netabase_store::{NetabaseModel, netabase};
/// #[derive(NetabaseModel, Clone, Debug, PartialEq,
/// bincode::Encode, bincode::Decode,
/// serde::Serialize, serde::Deserialize)]
/// #[netabase(MyDefinition)]
/// pub struct User {
/// #[primary_key]
/// pub id: u64,
/// pub name: String,
/// }
/// }
/// use my_models::*;
///
/// # fn main() -> Result<(), NetabaseError> {
/// let store = RedbStoreZeroCopy::<MyDefinition>::new("./test.db")?;
/// let users = vec![
/// User { id: 1, name: "Alice".to_string() },
/// User { id: 2, name: "Bob".to_string() },
/// ];
/// // bulk_insert(&store, users)?; // Function would insert users in bulk
/// # Ok(())
/// # }
/// ```
/// Batch operation helper for bulk model removal
///
/// This utility function provides a convenient way to perform bulk
/// removals with automatic transaction management.
///
/// # Arguments
///
/// * `store` - The store to operate on
/// * `keys` - Vector of primary keys to remove
///
/// # Returns
///
/// Vector of removed models (Some if existed, None if not found)
///
/// # Examples
///
/// ```no_run
/// use netabase_store::databases::redb_zerocopy::*;
/// use netabase_store::error::NetabaseError;
/// use netabase_store::{NetabaseModel, netabase, netabase_definition_module};
///
/// #[netabase_definition_module(MyDefinition, MyKeys)]
/// mod my_models {
/// use netabase_store::{NetabaseModel, netabase};
/// #[derive(NetabaseModel, Clone, Debug, PartialEq,
/// bincode::Encode, bincode::Decode,
/// serde::Serialize, serde::Deserialize)]
/// #[netabase(MyDefinition)]
/// pub struct User {
/// #[primary_key]
/// pub id: u64,
/// pub name: String,
/// }
/// }
/// use my_models::*;
///
/// # fn main() -> Result<(), NetabaseError> {
/// let store = RedbStoreZeroCopy::<MyDefinition>::new("./test.db")?;
/// let keys_to_remove = vec![
/// UserPrimaryKey(1),
/// UserPrimaryKey(2),
/// UserPrimaryKey(3)
/// ];
/// // bulk_remove::<MyDefinition, User, _>(&store, keys_to_remove)?; // Function would remove users by keys
/// # Ok(())
/// # }
/// ```
// Tests temporarily disabled due to macro resolution issues within the crate itself
// #[cfg(test)]
// mod tests {
// use super::*;
// use tempfile::tempdir;
//
// // Tests would go here but require proper macro setup
// }