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
//! Basic store operations trait for tree-level data access
//!
//! This module provides a low-level trait that abstracts the core operations
//! needed for put and get requests at the tree level. This trait is used by
//! the `NetabaseStore` macro to generate efficient RecordStore implementations.
use crateNetabaseModelTraitKey;
use crateNetabaseError;
use crateNetabaseDefinitionTrait;
use crateNetabaseModelTrait;
/// Core store operations for a single tree/table.
///
/// This trait provides the fundamental operations needed to interact with a single
/// tree (table) in the database. It is designed to be implemented by tree types
/// (e.g., `SledStoreTree`, `RedbStoreTree`) and provides the foundation for
/// higher-level operations.
///
/// # Type Parameters
///
/// * `D` - The definition type (wraps all models in the schema)
/// * `M` - The model type stored in this tree
///
/// # Design
///
/// This trait focuses on raw data access without the Definition enum wrapper.
/// When data is stored, it should be stored as the raw model type, not wrapped
/// in the Definition enum. This provides:
///
/// - Better performance (no enum wrapping/unwrapping)
/// - Consistent data format (same format with or without RecordStore layer)
/// - Simpler debugging (raw model data in database)
///
/// # Usage
///
/// This trait is primarily used by the `NetabaseStore` macro to generate
/// RecordStore implementations. Users typically interact with higher-level
/// APIs like `NetabaseTreeSync` or `RecordStore`.
/// Extended store operations for secondary key access
///
/// This trait extends `StoreOps` with support for secondary key queries.
/// It is optional and should be implemented by stores that support secondary indexes.
/// Store operations for iteration
///
/// This trait provides methods for iterating over all records in a tree.
/// It is optional and should be implemented by stores that support iteration.
/// Trait for stores that can open trees/tables/object-stores for specific model types
///
/// This trait provides a unified interface for opening tree-like structures across
/// different backend store implementations:
/// - Sled: trees
/// - Redb: tables
/// - IndexedDB: object stores
/// - Memory: in-memory trees
///
/// The returned type must implement `StoreOps<D, M>` to provide the actual
/// storage operations.
///
/// # Type Parameters
///
/// * `D` - The definition type (wraps all models in the schema)
/// * `M` - The model type to create a tree for
///
/// # Design
///
/// This trait enables generic code (like RecordStore implementations) to work
/// with any backend store type without knowing the specific implementation details.