splice 2.6.3

Span-safe refactoring kernel for 7 languages with Magellan code graph integration
Documentation
use serde::{Deserialize, Serialize};
use std::path::PathBuf;

/// Request for code completion at cursor position
#[derive(Debug, Clone, Deserialize)]
/// Request for code completion at cursor position.
pub struct CompletionRequest {
    /// Path to the file being edited.
    pub file_path: PathBuf,
    /// 1-based line number of the cursor.
    pub line: usize,
    /// 1-based column number of the cursor.
    pub column: usize,
    /// Maximum number of suggestions to return.
    pub max_results: Option<usize>,
}

/// Completion response with grounded suggestions
#[derive(Debug, Clone, Serialize)]
/// Response containing completion suggestions.
pub struct CompletionResponse {
    /// Ranked list of completion suggestions.
    pub suggestions: Vec<CompletionSuggestion>,
    /// Metadata about the completion query.
    pub metadata: CompletionMetadata,
}

/// A single completion suggestion grounded in database
#[derive(Debug, Clone, Serialize)]
pub struct CompletionSuggestion {
    /// Display label for user
    pub label: String,
    /// Text to insert (may include placeholders like ${1:data})
    pub insert_text: String,
    /// Detail information (type signature, docs, etc)
    pub detail: String,
    /// Kind of symbol (function, struct, enum, etc)
    pub kind: SymbolKind,
    /// Relevance score [0, 1]
    pub score: f32,
    /// Where this suggestion came from
    pub source: SuggestionSource,
    /// Database IDs proving this exists (grounding)
    pub grounded_in: Vec<String>,
    /// How many times this pattern appears
    pub usage_count: usize,
    /// When this was last used (Unix timestamp)
    pub last_used: Option<i64>,
    /// Source file path (if cross-file import)
    pub source_file: Option<String>,
    /// Import statement that makes this available (e.g., "use crate::action::calculate")
    pub via_import: Option<String>,
}

/// Source of suggestion
#[derive(Debug, Clone, Serialize)]
pub enum SuggestionSource {
    /// Direct database query result (same file)
    Database,
    /// From imported module (cross-file)
    Imported,
    /// Extracted from recurring patterns
    Pattern,
    /// Found via code similarity
    Similarity,
    /// Project convention
    Convention,
}

/// Symbol kind enum
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
/// Kind of symbol in the codebase.
pub enum SymbolKind {
    /// Function or method.
    Function,
    /// Struct definition.
    Struct,
    /// Enum definition.
    Enum,
    /// Trait definition.
    Trait,
    /// Impl block.
    Impl,
    /// Module.
    Module,
    /// Local or global variable.
    Variable,
    /// Constant.
    Constant,
    /// Type alias.
    TypeAlias,
    /// Enum constructor.
    Constructor,
}

/// Metadata about completion request
#[derive(Debug, Clone, Serialize)]
pub struct CompletionMetadata {
    /// Query time in milliseconds
    pub query_time_ms: u64,
    /// Total symbols in database
    pub total_symbols_indexed: usize,
    /// Database schema version
    pub database_version: u32,
    /// Number of database queries executed
    pub database_queries: usize,
}

/// Result of symbol lookup
#[derive(Debug, Clone)]
/// A symbol found in the codebase.
pub struct Symbol {
    /// Unique identifier for the symbol.
    pub id: String,
    /// Name of the symbol.
    pub name: String,
    /// Kind of the symbol.
    pub kind: SymbolKind,
    /// File path where the symbol is defined.
    pub path: String,
    /// 1-based line number of the symbol definition.
    pub line: usize,
    /// 1-based column number of the symbol definition.
    pub column: usize,
}