sem-cli 0.10.1

Semantic version control CLI. Shows what entities changed (functions, classes, methods) instead of lines.
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
use std::{collections::HashSet, path::Path};

use colored::Colorize;
use sem_core::git::bridge::GitBridge;
use sem_core::model::entity::SemanticEntity;
use sem_core::parser::graph::{EntityGraph, EntityRef, RefType};
use sem_core::parser::registry::ParserRegistry;
use serde::ser::{SerializeMap, Serializer};

use crate::cache::DiskCache;
use crate::timings::Timings;

pub struct GraphOptions {
    pub cwd: String,
    pub json: bool,
    pub file_exts: Vec<String>,
    pub no_cache: bool,
    pub no_default_excludes: bool,
}

pub fn graph_command(opts: GraphOptions) {
    let mut timings = Timings::from_env("graph");
    let root = match GitBridge::open(Path::new(&opts.cwd)) {
        Ok(git) => git.repo_root().to_path_buf(),
        Err(_) => Path::new(&opts.cwd).to_path_buf(),
    };
    let root = root.as_path();
    let registry = super::create_registry(&root.to_string_lossy());
    let ext_filter = normalize_exts(&opts.file_exts);
    let file_paths =
        find_supported_files_inner(root, &registry, &ext_filter, opts.no_default_excludes);
    timings.mark("file_discovery");
    if opts.json && !opts.no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            let stdout = std::io::stdout();
            match disk.write_graph_json_topology(root, &file_paths, stdout.lock()) {
                Ok(true) => {
                    timings.mark("cache_topology_json_stream");
                    timings.finish();
                    return;
                }
                Ok(false) => {}
                Err(err) => {
                    eprintln!(
                        "{} failed to stream cached graph JSON: {}",
                        "error:".red().bold(),
                        err
                    );
                    std::process::exit(1);
                }
            }
        }
    }

    let graph = get_or_build_graph_topology_with_timings(
        root,
        &file_paths,
        &registry,
        opts.no_cache,
        &mut timings,
    );

    if opts.json {
        write_graph_json(&graph).unwrap();
        timings.mark("cli_output_serialization");
    } else {
        timings.mark("cli_output_serialization");
        println!(
            "{} {} entities, {} edges",
            "⊕".green(),
            graph.entities.len().to_string().bold(),
            graph.edges.len().to_string().bold(),
        );
    }
    timings.finish();
}

#[derive(serde::Serialize)]
#[serde(rename_all = "camelCase")]
struct GraphStats {
    entity_count: usize,
    edge_count: usize,
}

fn write_graph_json(graph: &EntityGraph) -> serde_json::Result<()> {
    let mut entities = graph.entities.values().collect::<Vec<_>>();
    entities.sort_by(|a, b| a.id.cmp(&b.id));

    let mut edges = graph.edges.iter().collect::<Vec<_>>();
    edges.sort_by(compare_entity_refs);

    let stdout = std::io::stdout();
    let mut stdout = stdout.lock();
    let mut serializer = serde_json::Serializer::new(&mut stdout);
    let mut map = (&mut serializer).serialize_map(Some(3))?;
    map.serialize_entry("entities", &entities)?;
    map.serialize_entry("edges", &edges)?;
    map.serialize_entry(
        "stats",
        &GraphStats {
            entity_count: graph.entities.len(),
            edge_count: graph.edges.len(),
        },
    )?;
    map.end()?;
    use std::io::Write;
    stdout.write_all(b"\n").map_err(serde_json::Error::io)
}

fn compare_entity_refs(a: &&EntityRef, b: &&EntityRef) -> std::cmp::Ordering {
    a.from_entity
        .cmp(&b.from_entity)
        .then_with(|| a.to_entity.cmp(&b.to_entity))
        .then_with(|| ref_type_sort_key(&a.ref_type).cmp(&ref_type_sort_key(&b.ref_type)))
}

fn ref_type_sort_key(ref_type: &RefType) -> u8 {
    match ref_type {
        RefType::Calls => 0,
        RefType::Imports => 1,
        RefType::TypeRef => 2,
    }
}

/// Normalize extension strings: ensure each starts with '.'
pub fn normalize_exts(exts: &[String]) -> Vec<String> {
    exts.iter()
        .map(|e| {
            if e.starts_with('.') {
                e.clone()
            } else {
                format!(".{}", e)
            }
        })
        .collect()
}

/// Find all supported files in the repo (public for use by other commands).
pub fn find_supported_files_public(
    root: &Path,
    registry: &ParserRegistry,
    ext_filter: &[String],
) -> Vec<String> {
    find_supported_files_with_options(root, registry, ext_filter, false)
}

pub fn find_supported_files_with_options(
    root: &Path,
    registry: &ParserRegistry,
    ext_filter: &[String],
    no_default_excludes: bool,
) -> Vec<String> {
    super::files::find_supported_files_in_path(
        root,
        root,
        registry,
        ext_filter,
        no_default_excludes,
    )
}

fn find_supported_files_inner(
    root: &Path,
    registry: &ParserRegistry,
    ext_filter: &[String],
    no_default_excludes: bool,
) -> Vec<String> {
    find_supported_files_with_options(root, registry, ext_filter, no_default_excludes)
}

/// Build the entity graph + entities, using the disk cache when possible.
/// Tries: full cache hit → incremental rebuild (stale files only) → full rebuild.
pub fn get_or_build_graph(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
) -> (EntityGraph, Vec<SemanticEntity>) {
    let mut timings = Timings::disabled("graph");
    get_or_build_graph_with_timings(root, file_paths, registry, no_cache, &mut timings)
}

pub fn get_or_build_graph_with_timings(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
) -> (EntityGraph, Vec<SemanticEntity>) {
    get_or_build_graph_with_cache_policy(
        root,
        file_paths,
        registry,
        no_cache,
        CacheMissSavePolicy::Full,
        timings,
    )
}

pub fn get_or_build_graph_with_topology_save_on_miss_with_timings(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
) -> (EntityGraph, Vec<SemanticEntity>) {
    get_or_build_graph_with_cache_policy(
        root,
        file_paths,
        registry,
        no_cache,
        CacheMissSavePolicy::Topology,
        timings,
    )
}

pub enum GraphWithTestData {
    Full(EntityGraph, Vec<SemanticEntity>),
    Topology {
        graph: EntityGraph,
        test_entity_ids: HashSet<String>,
    },
}

pub fn get_or_build_graph_with_test_data_and_topology_save_on_miss_with_timings(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
) -> GraphWithTestData {
    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            if let Some((graph, entities)) = disk.load(root, file_paths) {
                timings.mark("cache_full_load");
                return GraphWithTestData::Full(graph, entities);
            }
            if let Some((graph, test_entity_ids)) =
                disk.load_graph_topology_with_test_ids(root, file_paths)
            {
                timings.mark("cache_topology_load");
                return GraphWithTestData::Topology {
                    graph,
                    test_entity_ids,
                };
            }

            if let Some(partial) = disk.load_partial(root, file_paths) {
                timings.mark("cache_partial_load");
                let (graph, entities, metadata) =
                    EntityGraph::build_incremental_with_metadata_and_import_candidates(
                        root,
                        &partial.stale_files,
                        file_paths,
                        partial.cached_entities,
                        partial.cached_edges,
                        partial.stale_file_entities,
                        Some(&partial.cached_importing_stale_files),
                        registry,
                    );
                timings.mark("incremental_graph_rebuild");
                let _ = disk.save_incremental_with_repair_metadata(
                    root,
                    file_paths,
                    &partial.stale_files,
                    &graph,
                    &entities,
                    metadata.repaired_clean_entity_ids,
                    &metadata.recomputed_edge_source_ids,
                    &metadata.deleted_entity_ids,
                );
                timings.mark("cache_incremental_save");
                return GraphWithTestData::Full(graph, entities);
            }
        }
    }

    let (graph, entities) = EntityGraph::build(root, file_paths, registry);
    timings.mark("full_graph_build");

    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            let _ = disk.save_topology(root, file_paths, &graph, &entities, &registry.custom_test_dirs);
            timings.mark("cache_topology_save");
        }
    }

    GraphWithTestData::Full(graph, entities)
}

#[derive(Clone, Copy)]
enum CacheMissSavePolicy {
    Full,
    Topology,
}

fn get_or_build_graph_with_cache_policy(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    save_policy: CacheMissSavePolicy,
    timings: &mut Timings,
) -> (EntityGraph, Vec<SemanticEntity>) {
    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            // Try full cache hit
            if let Some(cached) = disk.load(root, file_paths) {
                timings.mark("cache_full_load");
                return cached;
            }

            // Try incremental: load clean cached data, rebuild only stale files
            if let Some(partial) = disk.load_partial(root, file_paths) {
                timings.mark("cache_partial_load");
                let (graph, entities, metadata) =
                    EntityGraph::build_incremental_with_metadata_and_import_candidates(
                        root,
                        &partial.stale_files,
                        file_paths,
                        partial.cached_entities,
                        partial.cached_edges,
                        partial.stale_file_entities,
                        Some(&partial.cached_importing_stale_files),
                        registry,
                    );
                timings.mark("incremental_graph_rebuild");
                let _ = disk.save_incremental_with_repair_metadata(
                    root,
                    file_paths,
                    &partial.stale_files,
                    &graph,
                    &entities,
                    metadata.repaired_clean_entity_ids,
                    &metadata.recomputed_edge_source_ids,
                    &metadata.deleted_entity_ids,
                );
                timings.mark("cache_incremental_save");
                return (graph, entities);
            }
        }
    }

    // Full rebuild
    let (graph, entities) = EntityGraph::build(root, file_paths, registry);
    timings.mark("full_graph_build");

    if !no_cache {
        match save_policy {
            CacheMissSavePolicy::Full => {
                if let Ok(disk) = DiskCache::open(root) {
                    let _ = disk.save(root, file_paths, &graph, &entities);
                    timings.mark("cache_full_save");
                }
            }
            CacheMissSavePolicy::Topology => {
                if let Ok(disk) = DiskCache::open(root) {
                    let _ = disk.save_topology(root, file_paths, &graph, &entities, &registry.custom_test_dirs);
                    timings.mark("cache_topology_save");
                }
            }
        }
    }

    (graph, entities)
}

pub fn get_or_build_graph_topology_with_timings(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
) -> EntityGraph {
    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            if let Some(graph) = disk.load_graph_topology(root, file_paths) {
                timings.mark("cache_topology_load");
                return graph;
            }
        }
    }

    let (graph, _entities) =
        get_or_build_graph_with_timings(root, file_paths, registry, no_cache, timings);
    graph
}

pub fn get_or_build_graph_topology_with_topology_save_on_miss_with_timings(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
) -> EntityGraph {
    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            if let Some(graph) = disk.load_graph_topology(root, file_paths) {
                timings.mark("cache_topology_load");
                return graph;
            }
        }
    }

    let (graph, _entities) = get_or_build_graph_with_topology_save_on_miss_with_timings(
        root, file_paths, registry, no_cache, timings,
    );
    graph
}

pub fn get_or_build_direct_dependency_graph_with_timings<F>(
    root: &Path,
    file_paths: &[String],
    registry: &ParserRegistry,
    no_cache: bool,
    timings: &mut Timings,
    should_resolve: F,
) -> EntityGraph
where
    F: FnMut(&sem_core::parser::graph::EntityInfo) -> bool,
{
    if !no_cache {
        if let Ok(disk) = DiskCache::open(root) {
            timings.mark("cache_open");
            if let Some(graph) = disk.load_graph_topology(root, file_paths) {
                timings.mark("cache_topology_load");
                return graph;
            }
        }
    }

    let (graph, _entities) =
        EntityGraph::build_direct_dependencies(root, file_paths, registry, should_resolve);
    timings.mark("direct_dependency_graph_build");
    graph
}