magellan 4.12.2

Deterministic codebase mapping tool for local development
Documentation
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
//! Slice command implementation
//!
//! Shows program slices (backward/forward) for bug isolation and refactoring safety.

use anyhow::Result;
use magellan::output::command::{SliceResponse, SliceStats, Span, SymbolMatch};
use magellan::output::{output_json, JsonResponse, OutputFormat};
use magellan::CodeGraph;
use std::path::{Path, PathBuf};

/// Resolved target information
struct ResolvedTarget {
    /// The symbol ID (BLAKE3 hash) for SQLite backend
    pub symbol_id: String,
    /// The FQN of the symbol
    pub fqn: String,
    /// The file path
    pub file_path: String,
    /// The symbol kind
    pub kind: String,
}

/// Slice direction for CLI arguments
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CliSliceDirection {
    Backward,
    Forward,
}

impl CliSliceDirection {
    pub fn from_str(s: &str) -> Option<Self> {
        match s.to_lowercase().as_str() {
            "backward" => Some(CliSliceDirection::Backward),
            "forward" => Some(CliSliceDirection::Forward),
            _ => None,
        }
    }

    pub fn as_str(&self) -> &'static str {
        match self {
            CliSliceDirection::Backward => "backward",
            CliSliceDirection::Forward => "forward",
        }
    }
}

/// Resolve a target string to a symbol
///
/// First tries to interpret as a symbol ID (BLAKE3 hash or numeric ID).
/// If not found, searches by name/FQN and shows ranked results if multiple matches.
fn resolve_target(graph: &mut CodeGraph, _db_path: &Path, target: &str) -> Result<ResolvedTarget> {
    resolve_target_sqlite(graph, target)
}

/// Resolve target for SQLite backend
fn resolve_target_sqlite(graph: &mut CodeGraph, target: &str) -> Result<ResolvedTarget> {
    use magellan::graph::query;
    use magellan::ingest::SymbolFact;

    // First try symbol ID (32-char BLAKE3 hash or 64-char hex)
    if target.len() == 64 || target.len() == 32 {
        if let Ok(Some(_symbol)) = query::find_by_symbol_id(graph, target) {
            // Get entity ID for this symbol
            if let Ok(entity_id) = graph.resolve_symbol_entity(target) {
                // Get full symbol info for file path
                if let Ok(info) = graph.symbol_by_entity_id(entity_id) {
                    return Ok(ResolvedTarget {
                        symbol_id: target.to_string(),
                        fqn: info.fqn.unwrap_or_else(|| target.to_string()),
                        file_path: info.file_path,
                        kind: info.kind,
                    });
                }
            }
        }
    }

    // Try FQN lookup using resolve_symbol_entity (handles both symbol_id and FQN)
    match graph.resolve_symbol_entity(target) {
        Ok(entity_id) => {
            // Found by FQN or symbol_id, get symbol info
            if let Ok(info) = graph.symbol_by_entity_id(entity_id) {
                return Ok(ResolvedTarget {
                    symbol_id: info.symbol_id.unwrap_or_default(),
                    fqn: info.fqn.unwrap_or_else(|| target.to_string()),
                    file_path: info.file_path,
                    kind: info.kind,
                });
            }
        }
        Err(_) => {
            // Not found by FQN either, try name search
        }
    }

    // Try name search across all files
    let file_nodes = graph.all_file_nodes()?;
    let mut matches: Vec<(i64, SymbolFact, Option<String>)> = Vec::new();

    for file_path in file_nodes.keys() {
        let entries = query::symbol_nodes_in_file_with_ids(graph, file_path)?;
        for (node_id, symbol, symbol_id) in entries {
            if let Some(name) = &symbol.name {
                if name == target || name.contains(target) {
                    matches.push((node_id, symbol, symbol_id));
                }
            }
        }
    }

    if matches.is_empty() {
        return Err(anyhow::anyhow!(
            "Target symbol '{}' not found (tried symbol_id, FQN, and name)",
            target
        ));
    }

    if matches.len() == 1 {
        let (_node_id, symbol, symbol_id) = &matches[0];
        let fqn = symbol
            .canonical_fqn
            .as_ref()
            .or(symbol.display_fqn.as_ref())
            .map(|s| s.as_str())
            .unwrap_or_else(|| symbol.name.as_deref().unwrap_or("<unknown>"));
        return Ok(ResolvedTarget {
            symbol_id: symbol_id.clone().unwrap_or_default(),
            fqn: fqn.to_string(),
            file_path: symbol.file_path.to_string_lossy().to_string(),
            kind: symbol.kind_normalized.clone(),
        });
    }

    // Multiple matches - show ranked list
    eprintln!(
        "Ambiguous target '{}': found {} candidates",
        target,
        matches.len()
    );
    eprintln!();
    eprintln!("Top matches:");

    for (i, (_node_id, symbol, symbol_id)) in matches.iter().take(10).enumerate() {
        let fqn = symbol
            .canonical_fqn
            .as_ref()
            .or(symbol.display_fqn.as_ref())
            .map(|s| s.as_str())
            .unwrap_or("<unknown>");
        let sid = symbol_id.as_deref().unwrap_or("<none>");
        let name = symbol.name.as_deref().unwrap_or("<unknown>");

        eprintln!(
            "  [{}] {} ({}) in {}:{}",
            i + 1,
            name,
            symbol.kind_normalized,
            symbol.file_path.display(),
            symbol.start_line
        );
        eprintln!("      Symbol ID: {}", sid);
        eprintln!("      FQN: {}", fqn);
    }

    if matches.len() > 10 {
        eprintln!("  ... and {} more", matches.len() - 10);
    }

    eprintln!();
    eprintln!("Use --target <symbol_id> for precise lookup");

    Err(anyhow::anyhow!(
        "Target '{}' is ambiguous ({} matches)",
        target,
        matches.len()
    ))
}

/// Run the slice command
pub fn run_slice(
    db_path: PathBuf,
    target: String,
    direction: CliSliceDirection,
    verbose: bool,
    output_format: OutputFormat,
) -> Result<()> {
    let mut args = vec![
        "slice".to_string(),
        "--target".to_string(),
        target.clone(),
        "--direction".to_string(),
        direction.as_str().to_string(),
    ];
    if verbose {
        args.push("--verbose".to_string());
    }

    let mut graph = CodeGraph::open(&db_path)?;
    let exec_id = magellan::output::generate_execution_id();
    let db_path_str = db_path.to_string_lossy().to_string();

    graph.execution_log().start_execution(
        &exec_id,
        env!("CARGO_PKG_VERSION"),
        &args,
        None,
        &db_path_str,
    )?;

    // Phase: resolve_target
    graph
        .telemetry()
        .record_phase_start(&exec_id, "resolve_target")?;
    let resolved = match resolve_target(&mut graph, &db_path, &target) {
        Ok(r) => r,
        Err(e) => {
            graph
                .telemetry()
                .record_phase_end(&exec_id, "resolve_target")?;
            graph.execution_log().finish_execution(
                &exec_id,
                "error",
                Some(&e.to_string()),
                0,
                0,
                0,
            )?;
            return Err(e);
        }
    };
    graph
        .telemetry()
        .record_phase_end(&exec_id, "resolve_target")?;

    // Phase: compute_slice
    graph
        .telemetry()
        .record_phase_start(&exec_id, "compute_slice")?;
    let included_symbols = {
        // For SQLite backend, use symbol-based reachability
        let symbols_result = match direction {
            CliSliceDirection::Backward => {
                graph.reverse_reachable_symbols(&resolved.symbol_id, None)
            }
            CliSliceDirection::Forward => graph.reachable_symbols(&resolved.symbol_id, None),
        };

        match symbols_result {
            Ok(symbols) => symbols,
            Err(e) => {
                graph
                    .telemetry()
                    .record_phase_end(&exec_id, "compute_slice")?;
                graph.execution_log().finish_execution(
                    &exec_id,
                    "error",
                    Some(&e.to_string()),
                    0,
                    0,
                    0,
                )?;
                return Err(e);
            }
        }
    };
    graph
        .telemetry()
        .record_phase_end(&exec_id, "compute_slice")?;

    let target_info = magellan::graph::SymbolInfo {
        symbol_id: Some(resolved.symbol_id.clone()),
        fqn: Some(resolved.fqn.clone()),
        kind: resolved.kind.clone(),
        file_path: resolved.file_path.clone(),
    };

    let slice_result = magellan::graph::SliceResult {
        slice: magellan::graph::ProgramSlice {
            direction: match direction {
                CliSliceDirection::Backward => magellan::graph::SliceDirection::Backward,
                CliSliceDirection::Forward => magellan::graph::SliceDirection::Forward,
            },
            target: target_info.clone(),
            included_symbols: included_symbols.clone(),
            symbol_count: included_symbols.len(),
        },
        statistics: magellan::graph::SliceStatistics {
            total_symbols: included_symbols.len(),
            data_dependencies: 0,
            control_dependencies: included_symbols.len().saturating_sub(1),
        },
    };

    if output_format == OutputFormat::Json || output_format == OutputFormat::Pretty {
        graph
            .execution_log()
            .finish_execution(&exec_id, "success", None, 0, 0, 0)?;
        return output_json_mode(
            &resolved.fqn,
            slice_result,
            verbose,
            &exec_id,
            output_format,
        );
    }

    // Human mode
    let direction_label = match direction {
        CliSliceDirection::Backward => "that affect",
        CliSliceDirection::Forward => "affected by",
    };

    println!(
        "Program slice: symbols {} \"{}\"",
        direction_label, resolved.fqn
    );
    println!("  Target: {} ({})", resolved.fqn, resolved.kind);
    println!("  File:   {}", resolved.file_path);
    println!("  Total symbols: {}", slice_result.statistics.total_symbols);
    if verbose {
        println!(
            "  Data dependencies: {} (not computed in call-graph fallback)",
            slice_result.statistics.data_dependencies
        );
        println!(
            "  Control dependencies: {}",
            slice_result.statistics.control_dependencies
        );
    }

    if slice_result.slice.included_symbols.is_empty() {
        println!("\n  No symbols in slice.");
    } else {
        println!("\n  Symbols in slice:");
        for symbol in &slice_result.slice.included_symbols {
            let fqn_display = symbol.fqn.as_deref().unwrap_or("?");
            println!(
                "    {} ({}) in {}",
                fqn_display, symbol.kind, symbol.file_path
            );
        }
    }

    if slice_result.statistics.data_dependencies == 0
        && !slice_result.slice.included_symbols.is_empty()
    {
        println!("\n  Note: Current implementation uses call-graph reachability.");
    }

    graph
        .execution_log()
        .finish_execution(&exec_id, "success", None, 0, 0, 0)?;
    Ok(())
}

fn output_json_mode(
    _target: &str,
    slice_result: magellan::graph::SliceResult,
    _verbose: bool,
    exec_id: &str,
    output_format: OutputFormat,
) -> Result<()> {
    // Use placeholder values for line numbers since SymbolInfo doesn't have them
    let target_span = Span::new(
        slice_result.slice.target.file_path.clone(),
        0,
        0,
        1,
        0,
        1,
        0,
    );
    let target_symbol_id = slice_result.slice.target.symbol_id.clone();
    let target_match = SymbolMatch::new(
        slice_result
            .slice
            .target
            .fqn
            .unwrap_or_else(|| "?".to_string()),
        slice_result.slice.target.kind,
        target_span,
        None,
        target_symbol_id,
    );

    let included_symbols: Vec<SymbolMatch> = slice_result
        .slice
        .included_symbols
        .into_iter()
        .map(|sym| {
            let span = Span::new(sym.file_path.clone(), 0, 0, 1, 0, 1, 0);
            SymbolMatch::new(
                sym.fqn.unwrap_or_else(|| "?".to_string()),
                sym.kind,
                span,
                None,
                sym.symbol_id,
            )
        })
        .collect();

    let direction = match slice_result.slice.direction {
        magellan::graph::SliceDirection::Backward => "backward".to_string(),
        magellan::graph::SliceDirection::Forward => "forward".to_string(),
    };

    let statistics = SliceStats {
        total_symbols: slice_result.statistics.total_symbols,
        data_dependencies: slice_result.statistics.data_dependencies,
        control_dependencies: slice_result.statistics.control_dependencies,
    };

    let response = SliceResponse {
        target: target_match,
        direction,
        included_symbols,
        statistics,
    };

    let json_response = JsonResponse::new(response, exec_id);
    output_json(&json_response, output_format)?;

    Ok(())
}