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
//! Zipper traits for navigating dictionary structures.
//!
//! This module provides trait abstractions for zipper-based dictionary navigation.
//! A zipper is a functional data structure that represents a position (focus) in a
//! tree-like structure along with the context needed to navigate back to the root.
//!
//! # Zipper Hierarchy
//!
//! This crate uses multiple zipper types for different purposes:
//!
//! * **`DictZipper`** - Navigate dictionary graph structures (this module)
//! * **`AutomatonZipper`** - Track Levenshtein automaton state (future)
//! * **`IntersectionZipper`** - Compose dictionary + automaton (future)
//! * **`ContextualZipper`** - Draft management for code completion (future)
//!
//! # Design Philosophy
//!
//! The zipper traits enable efficient navigation through dictionary structures without
//! requiring mutable references or extensive cloning. Each zipper implementation can
//! choose the most efficient representation for its backend (e.g., path-based for
//! PathMap, index-based for DoubleArrayTrie).
//!
//! # Examples
//!
//! ```ignore
//! use libdictenstein::DictZipper;
//! use libdictenstein::pathmap::PathMapDictionary;
//! use libdictenstein::pathmap_zipper::PathMapZipper;
//!
//! // Create a dictionary zipper
//! let dict = PathMapDictionary::<()>::new();
//! // Insert some terms...
//!
//! // Create zipper and navigate
//! let zipper = PathMapZipper::new_from_dict(&dict);
//! if let Some(child) = zipper.descend(b'a') {
//! if child.is_final() {
//! println!("Found a term ending at 'a'");
//! }
//! }
//! ```
use crateDictionaryValue;
use crateCharUnit;
/// Core trait for dictionary navigation via zippers.
///
/// `DictZipper` is specifically for navigating the graph structure of dictionaries
/// (DAWG, PathMap, DoubleArrayTrie, etc.). Other zipper types (AutomatonZipper,
/// IntersectionZipper) handle different navigation concerns.
///
/// A `DictZipper` represents a cursor position in a dictionary structure,
/// providing methods to navigate through the tree and query properties at the
/// current position.
///
/// # Type Parameters
///
/// * `Unit` - The character unit type (typically `u8` or `char`)
///
/// # Navigation Model
///
/// Zippers use a functional navigation model:
/// - `descend(label)` moves down to a child, returning a new zipper
/// - `children()` iterates over all children from current position
/// - Movement is non-destructive; the original zipper remains valid
///
/// # Implementation Notes
///
/// Implementations should be lightweight and prefer Copy semantics where possible.
/// For backends that require locking (e.g., PathMap with RwLock), prefer a
/// lock-per-operation pattern to maximize concurrency.
/// Extension trait for dictionaries with associated values.
///
/// A `ValuedDictZipper` extends `DictZipper` with the ability to
/// access values stored at final positions. This is used for dictionaries that
/// map terms to metadata, such as context IDs for hierarchical scoping.
///
/// # Type Parameters
///
/// * `Value` - The type of values stored in the dictionary
///
/// # Examples
///
/// ```ignore
/// use libdictenstein::{ValuedDictZipper, PathMapDictionary};
///
/// // Dictionary mapping terms to context IDs
/// let dict = PathMapDictionary::<Vec<u32>>::new();
/// dict.insert_with_value("print", vec![0]); // global scope
/// dict.insert_with_value("local", vec![1, 2]); // visible in scopes 1 and 2
///
/// let zipper = dict.root_zipper();
/// if let Some(z) = zipper.descend(b'p')
/// .and_then(|z| z.descend(b'r'))
/// .and_then(|z| z.descend(b'i'))
/// .and_then(|z| z.descend(b'n'))
/// .and_then(|z| z.descend(b't')) {
///
/// if let Some(contexts) = z.value() {
/// println!("'print' is visible in contexts: {:?}", contexts);
/// }
/// }
/// ```