splice 2.8.0

Span-safe refactoring kernel for 7 languages with Magellan code graph integration
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
//! DOT graph generation for impact and reference visualization.

use crate::cli::ReachabilityDirection;
use crate::error::{Result, SpliceError};
use std::path::Path;

use super::types::*;
use super::MagellanIntegration;

impl MagellanIntegration {
    /// Generate DOT graph output for impact visualization.
    ///
    /// # Arguments
    /// * `symbol_id` - Entity ID of the root symbol
    /// * `direction` - Direction of traversal (Forward/Reverse/Both)
    /// * `config` - Configuration for DOT output
    ///
    /// # Returns
    /// DOT format string suitable for Graphviz rendering
    pub fn generate_impact_dot(
        &mut self,
        symbol_id: &str,
        direction: &ReachabilityDirection,
        config: &ImpactDotConfig,
    ) -> Result<String> {
        // Parse symbol_id as "file_path:symbol_name" format
        let (file_path, symbol_name) = symbol_id.split_once(':').ok_or_else(|| {
            SpliceError::Other(format!(
                "Invalid symbol_id format: '{}'. Expected 'file_path:symbol_name'",
                symbol_id
            ))
        })?;

        let file_path_obj = Path::new(file_path);

        // Collect reachable symbols based on direction
        let (forward_symbols, reverse_symbols) = match direction {
            ReachabilityDirection::Forward => {
                let symbols = self.reachable_symbols(
                    file_path_obj,
                    symbol_name,
                    config.max_depth.unwrap_or(10),
                )?;
                (symbols, Vec::new())
            }
            ReachabilityDirection::Reverse => {
                let symbols = self.reverse_reachable_symbols(
                    file_path_obj,
                    symbol_name,
                    config.max_depth.unwrap_or(10),
                )?;
                (Vec::new(), symbols)
            }
            ReachabilityDirection::Both => {
                let max_depth = config.max_depth.unwrap_or(10);
                let forward = self.reachable_symbols(file_path_obj, symbol_name, max_depth)?;
                let reverse =
                    self.reverse_reachable_symbols(file_path_obj, symbol_name, max_depth)?;
                (forward, reverse)
            }
        };

        // Generate DOT output
        let mut dot = String::from("digraph Impact {\n");
        dot.push_str("  rankdir=LR;\n");
        dot.push_str("  node [shape=box, style=rounded];\n\n");

        // Track all edges to avoid duplicates
        let mut edges = std::collections::HashSet::new();
        let mut nodes = std::collections::HashSet::new();

        // Add root node
        let root_label = if config.show_symbol_kinds {
            format!(
                "{} ({})",
                symbol_name,
                _get_root_kind(self, file_path, symbol_name)
            )
        } else {
            symbol_name.to_string()
        };

        let root_attrs = if config
            .highlight_symbol
            .as_ref()
            .is_some_and(|h| *h == symbol_name)
        {
            " [style=filled, fillcolor=lightblue]"
        } else {
            ""
        };

        dot.push_str(&format!(
            "  \"{}\"{} [label=\"{}\"];\n",
            _sanitize_id(symbol_id),
            root_attrs,
            _escape_label(&root_label)
        ));
        nodes.insert(symbol_id.to_string());

        // Add forward edges (callees)
        for reachable in &forward_symbols {
            let caller_id = format!("{}:{}", reachable.symbol.file_path, reachable.symbol.name);
            let label = if config.show_symbol_kinds {
                format!("{} ({})", reachable.symbol.name, reachable.symbol.kind)
            } else {
                reachable.symbol.name.clone()
            };

            // Add node if not already added
            if nodes.insert(caller_id.clone()) {
                let attrs = if config
                    .highlight_symbol
                    .as_ref()
                    .is_some_and(|h| *h == reachable.symbol.name)
                {
                    " [style=filled, fillcolor=lightblue]"
                } else {
                    ""
                };
                dot.push_str(&format!(
                    "  \"{}\"{} [label=\"{}\"];\n",
                    _sanitize_id(&caller_id),
                    attrs,
                    _escape_label(&label)
                ));
            }

            // Add edge: root -> callee
            let edge = (symbol_id.to_string(), caller_id.clone());
            if edges.insert(edge) {
                dot.push_str(&format!(
                    "  \"{}\" -> \"{}\";\n",
                    _sanitize_id(symbol_id),
                    _sanitize_id(&caller_id)
                ));
            }

            // Add edges along the path
            for i in 0..reachable.path.len() {
                let from = if i == 0 {
                    symbol_id.to_string()
                } else {
                    format!("{}:{}", reachable.symbol.file_path, reachable.path[i - 1])
                };
                let to = format!("{}:{}", reachable.symbol.file_path, reachable.path[i]);
                let edge = (from.clone(), to.clone());
                if edges.insert(edge) {
                    dot.push_str(&format!(
                        "  \"{}\" -> \"{}\";\n",
                        _sanitize_id(&from),
                        _sanitize_id(&to)
                    ));
                }
            }
        }

        // Add reverse edges (callers)
        for reachable in &reverse_symbols {
            let caller_id = format!("{}:{}", reachable.symbol.file_path, reachable.symbol.name);
            let label = if config.show_symbol_kinds {
                format!("{} ({})", reachable.symbol.name, reachable.symbol.kind)
            } else {
                reachable.symbol.name.clone()
            };

            if nodes.insert(caller_id.clone()) {
                let attrs = if config
                    .highlight_symbol
                    .as_ref()
                    .is_some_and(|h| *h == reachable.symbol.name)
                {
                    " [style=filled, fillcolor=lightblue]"
                } else {
                    ""
                };
                dot.push_str(&format!(
                    "  \"{}\"{} [label=\"{}\"];\n",
                    _sanitize_id(&caller_id),
                    attrs,
                    _escape_label(&label)
                ));
            }

            // Add edge: caller -> root
            let edge = (caller_id.clone(), symbol_id.to_string());
            if edges.insert(edge) {
                dot.push_str(&format!(
                    "  \"{}\" -> \"{}\";\n",
                    _sanitize_id(&caller_id),
                    _sanitize_id(symbol_id)
                ));
            }

            // Add edges along the path
            for i in 0..reachable.path.len() {
                let from = format!("{}:{}", reachable.symbol.file_path, reachable.path[i]);
                let to = if i == reachable.path.len() - 1 {
                    symbol_id.to_string()
                } else {
                    format!("{}:{}", reachable.symbol.file_path, reachable.path[i + 1])
                };
                let edge = (from.clone(), to.clone());
                if edges.insert(edge) {
                    dot.push_str(&format!(
                        "  \"{}\" -> \"{}\";\n",
                        _sanitize_id(&from),
                        _sanitize_id(&to)
                    ));
                }
            }
        }

        dot.push_str("}\n");
        Ok(dot)
    }

    /// Generate DOT graph output for refs command.
    ///
    /// # Arguments
    /// * `symbol_name` - Symbol name
    /// * `file_path` - Path to file containing the symbol
    /// * `config` - Configuration for DOT output
    ///
    /// # Returns
    /// DOT format string suitable for Graphviz rendering
    pub fn generate_refs_dot(
        &mut self,
        symbol_name: &str,
        file_path: &Path,
        config: &ImpactDotConfig,
    ) -> Result<String> {
        let path_str = file_path
            .to_str()
            .ok_or_else(|| SpliceError::Other(format!("Invalid UTF-8 in path: {:?}", file_path)))?;

        let symbol_id = format!("{}:{}", path_str, symbol_name);

        // Get callers and callees
        let callers = self
            .inner
            .callers_of_symbol(path_str, symbol_name)
            .map_err(|e| SpliceError::Other(format!("Failed to get callers: {}", e)))?;

        let callees = self
            .inner
            .calls_from_symbol(path_str, symbol_name)
            .map_err(|e| SpliceError::Other(format!("Failed to get callees: {}", e)))?;

        // Generate DOT output
        let mut dot = String::from("digraph Impact {\n");
        dot.push_str("  rankdir=LR;\n");
        dot.push_str("  node [shape=box, style=rounded];\n\n");

        // Add root node
        let root_label = if config.show_symbol_kinds {
            format!(
                "{} ({})",
                symbol_name,
                _get_root_kind(self, path_str, symbol_name)
            )
        } else {
            symbol_name.to_string()
        };

        let root_attrs = if config
            .highlight_symbol
            .as_ref()
            .is_some_and(|h| *h == symbol_name)
        {
            " [style=filled, fillcolor=lightblue]"
        } else {
            ""
        };

        dot.push_str(&format!(
            "  \"{}\"{} [label=\"{}\"];\n",
            _sanitize_id(&symbol_id),
            root_attrs,
            _escape_label(&root_label)
        ));

        // Add caller nodes and edges
        for call in &callers {
            let caller_id = format!("{}:{}", call.file_path.to_string_lossy(), call.caller);
            let label = if config.show_symbol_kinds {
                // Try to get kind info
                let kind = _get_symbol_kind(self, &call.file_path.to_string_lossy(), &call.caller);
                format!("{} ({})", call.caller, kind)
            } else {
                call.caller.clone()
            };

            let attrs = if config
                .highlight_symbol
                .as_ref()
                .is_some_and(|h| *h == call.caller)
            {
                " [style=filled, fillcolor=lightblue]"
            } else {
                ""
            };

            dot.push_str(&format!(
                "  \"{}\"{} [label=\"{}\"];\n",
                _sanitize_id(&caller_id),
                attrs,
                _escape_label(&label)
            ));
            dot.push_str(&format!(
                "  \"{}\" -> \"{}\";\n",
                _sanitize_id(&caller_id),
                _sanitize_id(&symbol_id)
            ));
        }

        // Add callee nodes and edges
        for call in &callees {
            let callee_id = format!("{}:{}", call.file_path.to_string_lossy(), call.callee);
            let label = if config.show_symbol_kinds {
                let kind = _get_symbol_kind(self, &call.file_path.to_string_lossy(), &call.callee);
                format!("{} ({})", call.callee, kind)
            } else {
                call.callee.clone()
            };

            let attrs = if config
                .highlight_symbol
                .as_ref()
                .is_some_and(|h| *h == call.callee)
            {
                " [style=filled, fillcolor=lightblue]"
            } else {
                ""
            };

            dot.push_str(&format!(
                "  \"{}\"{} [label=\"{}\"];\n",
                _sanitize_id(&callee_id),
                attrs,
                _escape_label(&label)
            ));
            dot.push_str(&format!(
                "  \"{}\" -> \"{}\";\n",
                _sanitize_id(&symbol_id),
                _sanitize_id(&callee_id)
            ));
        }

        dot.push_str("}\n");
        Ok(dot)
    }
}

/// Helper to get the kind of a root symbol for DOT labels.
fn _get_root_kind(
    integration: &mut MagellanIntegration,
    file_path: &str,
    symbol_name: &str,
) -> String {
    integration
        .inner
        .symbol_extents(file_path, symbol_name)
        .ok()
        .and_then(|facts| facts.first().map(|(_, fact)| fact.kind_normalized.clone()))
        .unwrap_or_else(|| "unknown".to_string())
}

/// Helper to get the kind of a symbol for DOT labels.
fn _get_symbol_kind(
    integration: &mut MagellanIntegration,
    file_path: &str,
    symbol_name: &str,
) -> String {
    integration
        .inner
        .symbol_extents(file_path, symbol_name)
        .ok()
        .and_then(|facts| facts.first().map(|(_, fact)| fact.kind_normalized.clone()))
        .unwrap_or_else(|| "unknown".to_string())
}

/// Escape special DOT characters in labels.
fn _escape_label(label: &str) -> String {
    label
        .replace('\\', "\\\\")
        .replace('"', "\\\"")
        .replace('{', "\\{")
        .replace('}', "\\}")
        .replace('<', "\\<")
        .replace('>', "\\>")
        .replace('|', "\\|")
}

/// Sanitize a string for use as a DOT node ID.
fn _sanitize_id(id: &str) -> String {
    // Replace invalid characters with underscores
    id.chars()
        .map(|c| {
            if c.is_alphanumeric() || c == '_' || c == '-' || c == '.' {
                c
            } else {
                '_'
            }
        })
        .collect()
}