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
use Regex;
use ;
/// Recursively finds all `crate_name::...` references in `path`,
/// up to `remaining_depth` levels (or infinite if `None`), using `visited`
/// to avoid cycles. Returns every file it successfully resolved.
/// Convert `CamelCase` or `PascalCase` to `snake_case`
/// Resolve a single module path like `"foo::CachedEventStream"` to its file,
/// trying progressively shorter snake_case prefixes (and finally the original),
/// then recurse into any found file.
// /// Resolve a single module path like "foo::bar" to its file, recurse, and
// /// return everything found downstream.
// fn resolve_one(
// crate_name: &str,
// crate_toml_path: &PathBuf,
// module_path: &str,
// current_canonical: &PathBuf,
// visited: &mut HashSet<PathBuf>,
// remaining_depth: Option<usize>,
// ) -> Vec<PathBuf> {
// println!("{:?}",module_path);
// let crate_dir = crate_toml_path
// .parent()
// .expect("Cargo.toml should have a parent directory");
// let src_dir = crate_dir.join("src");
// // Split "foo::bar" -> ["foo","bar"]
// let segments: Vec<&str> = module_path.split("::").collect();
// // Build candidate paths
// let mut candidates = Vec::new();
// // src/foo/bar.rs
// let file_rs = segments.iter().fold(src_dir.clone(), |p, seg| p.join(seg))
// .with_extension("rs");
// candidates.push(file_rs);
// // src/foo/bar/mod.rs
// let mod_rs = segments.iter().fold(src_dir.clone(), |p, seg| p.join(seg))
// .join("mod.rs");
// candidates.push(mod_rs);
// // relative to current file's parent
// let parent = current_canonical.parent().unwrap_or(Path::new("")).to_path_buf();
// let rel_rs = segments.iter().fold(parent.clone(), |p, seg| p.join(seg))
// .with_extension("rs");
// candidates.push(rel_rs);
// // relative mod.rs
// let rel_mod_rs = segments.iter().fold(parent.clone(), |p, seg| p.join(seg))
// .join("mod.rs");
// candidates.push(rel_mod_rs);
// // Find the first existing path
// if let Some(found) = candidates.into_iter().find(|p| p.exists()) {
// let found_canon = fs::canonicalize(&found)
// .unwrap_or_else(|e| panic!("Failed to canonicalize {:?}: {}", found, e));
// // Skip self-reference
// if found_canon == *current_canonical {
// println!("Skipping self-reference to {:?}", found);
// return Vec::new();
// }
// println!("Resolved `{}` -> {:?}", module_path, found);
// let mut resolved = vec![found.clone()];
// // Recurse
// let mut child = resolve_local_modules(
// crate_name,
// crate_toml_path,
// &found,
// visited,
// remaining_depth,
// );
// resolved.append(&mut child);
// resolved
// } else {
// eprintln!(
// "Warning: could not resolve `{}` in crate `{}`",
// module_path, crate_name
// );
// Vec::new()
// }
// }
// /// Recursively finds all `crate_name::module` references in `path`,
// /// up to `remaining_depth` levels (or infinite if `None`), using `visited`
// /// to avoid cycles. Returns every file it successfully resolved.
// pub fn resolve_local_modules(
// crate_name: &str,
// crate_toml_path: &PathBuf,
// path: &Path,
// visited: &mut HashSet<PathBuf>,
// remaining_depth: Option<usize>,
// ) -> Vec<PathBuf> {
// // If we've hit the depth limit, stop here.
// if let Some(0) = remaining_depth {
// return Vec::new();
// }
// // Canonicalize so we catch symlinked duplicates too
// let canonical = fs::canonicalize(path)
// .unwrap_or_else(|e| panic!("Failed to canonicalize {:?}: {}", path, e));
// // If we've already been here, bail out
// if !visited.insert(canonical.clone()) {
// return Vec::new();
// }
// let source = fs::read_to_string(path)
// .unwrap_or_else(|e| panic!("Failed to read {:?}: {}", path, e));
// let crate_dir = crate_toml_path
// .parent()
// .expect("Cargo.toml should have a parent directory");
// let src_dir = crate_dir.join("src");
// let crate_ident = crate_name.replace('-', "_");
// // build a regex that captures either:
// // - blinds::{ A, B, C }
// // - blinds::X
// let pattern = format!(
// r"\b{crate}::(?:
// \{{\s*([A-Za-z_][A-Za-z0-9_]*(?:\s*,\s*[A-Za-z_][A-Za-z0-9_]*)*)\s*\}} # group import
// | ([A-Za-z_][A-Za-z0-9_]*) # single import
// )",
// crate = crate_ident,
// );
// let re = Regex::new(&pattern).expect("Failed to compile regex");
// // let re = Regex::new(&format!(r"\b{}::([A-Za-z_][A-Za-z0-9_]*)", crate_ident))
// // .expect("Failed to compile regex");
// println!("Resolving modules in {:?}", path);
// let mut resolved = Vec::new();
// for cap in re.captures_iter(&source) {
// let module = &cap[1];
// let mut candidates = vec![
// src_dir.join(format!("{}.rs", module)),
// src_dir.join(module).join("mod.rs"),
// path.parent().unwrap_or(Path::new("")).join(format!("{}.rs", module)),
// path.parent().unwrap_or(Path::new("")).join(module).join("mod.rs"),
// ];
// if let Some(found) = candidates.drain(..).find(|p| p.exists()) {
// // Avoid self‑reference
// let found_canon = fs::canonicalize(&found)
// .unwrap_or_else(|e| panic!("Failed to canonicalize {:?}: {}", found, e));
// if found_canon == canonical {
// println!("Skipping self‑reference to {:?}", found);
// continue;
// }
// println!("Resolved module `{}` to {:?}", module, found);
// resolved.push(found.clone());
// // Recurse with decremented depth
// let next_depth = remaining_depth.map(|d| d.saturating_sub(1));
// let mut child = resolve_local_modules(
// crate_name,
// crate_toml_path,
// &found,
// visited,
// next_depth,
// );
// resolved.append(&mut child);
// } else {
// eprintln!(
// "Warning: could not resolve module `{}` for crate `{}`",
// module, crate_name
// );
// };
// }
// resolved
// }
// /// Recursively finds all `crate_name::module` references in the file at `path`,
// /// locates the corresponding `.rs` (or `mod.rs`) file under `src/`
// /// (relative to the Cargo.toml) or alongside the current `path`, and
// /// recurses into it.
// ///
// /// For each module found, prints:
// /// Resolved module `<name>` to `<path>`
// ///
// /// If a module cannot be found, prints a warning.
// ///
// /// Returns a Vec<PathBuf> of every file it successfully resolved.
// pub fn resolve_local_modules(
// crate_name: &str,
// crate_toml_path: &PathBuf,
// path: &Path,
// ) -> Vec<PathBuf> {
// let crate_ident = crate_name.replace('-', "_");
// // Read this file’s source
// let source = fs::read_to_string(path)
// .unwrap_or_else(|e| panic!("Failed to read {:?}: {}", path, e));
// // Determine crate root and src directory
// let crate_dir = crate_toml_path
// .parent()
// .expect("Cargo.toml should have a parent directory");
// let src_dir = crate_dir.join("src");
// // Regex to capture `<crate_name>::<module>`
// let re = Regex::new(&format!(r"\b{}::([A-Za-z_][A-Za-z0-9_]*)", crate_ident))
// .expect("Failed to compile regex");
// let mut resolved = Vec::new();
// println!("Resolving modules in {:?}", path);
// println!("Regex: {:?}", re);
// for cap in re.captures_iter(&source) {
// let module = &cap[1];
// // Candidate paths, in order:
// let mut candidates = vec![
// src_dir.join(format!("{}.rs", module)),
// src_dir.join(module).join("mod.rs"),
// path.parent().unwrap_or(Path::new("")).join(format!("{}.rs", module)),
// path.parent().unwrap_or(Path::new("")).join(module).join("mod.rs"),
// ];
// if let Some(found) = candidates.drain(..).find(|p| p.exists()) {
// println!("Resolved module `{}` to {:?}", module, found);
// resolved.push(found.clone());
// // Recurse into the newly found file
// let mut child = resolve_local_modules(crate_name, crate_toml_path, &found);
// resolved.append(&mut child);
// }
// else {
// eprintln!(
// "Warning: could not resolve module `{}` for crate `{}`",
// module, crate_name
// );
// };
// }
// resolved
// }