Menyeragamkan format kode sesuai rustfmt (126 file). Sebelumnya lefthook pre-commit 'cargo fmt --check' akan gagal pada commit apa pun.
82 lines
2.7 KiB
Rust
82 lines
2.7 KiB
Rust
//! Find references via LSP.
|
|
//!
|
|
//! Sends a `textDocument/references` request to the connected language
|
|
//! server for a symbol at a given file position.
|
|
|
|
use crate::tools::{Tool, ToolCtx};
|
|
use anyhow::Result;
|
|
use serde_json::{json, Value};
|
|
use tracing::{error, info, instrument};
|
|
|
|
/// Tool that finds all references to a symbol at a position via LSP.
|
|
///
|
|
/// Flow: parse language/path/line/character → lock LSP manager → find client
|
|
/// → send `textDocument/references` → return pretty-printed JSON response
|
|
/// containing all reference locations.
|
|
pub struct LspReferences;
|
|
|
|
impl Tool for LspReferences {
|
|
fn name(&self) -> &'static str {
|
|
"lsp_references"
|
|
}
|
|
|
|
fn description(&self) -> &'static str {
|
|
"Find all references to a symbol at a position"
|
|
}
|
|
|
|
fn parameters(&self) -> Value {
|
|
json!({
|
|
"type": "object",
|
|
"properties": {
|
|
"language": {
|
|
"type": "string",
|
|
"description": "Language identifier"
|
|
},
|
|
"path": {
|
|
"type": "string",
|
|
"description": "File path"
|
|
},
|
|
"line": {
|
|
"type": "integer",
|
|
"description": "Line number (0-based)"
|
|
},
|
|
"character": {
|
|
"type": "integer",
|
|
"description": "Character offset (0-based)"
|
|
}
|
|
},
|
|
"required": ["language", "path", "line", "character"]
|
|
})
|
|
}
|
|
|
|
#[instrument(skip(self, ctx, args))]
|
|
fn run(&self, ctx: &ToolCtx, args: &Value) -> Result<String> {
|
|
let language = crate::tools::arg_str(args, "language")?;
|
|
let path = crate::tools::arg_str(args, "path")?;
|
|
let line = args.get("line").and_then(|v| v.as_i64()).unwrap_or(0);
|
|
let character = args.get("character").and_then(|v| v.as_i64()).unwrap_or(0);
|
|
|
|
info!(language, path, line, character, "LSP references requested");
|
|
|
|
let manager = match ctx.lsp_manager.lock() {
|
|
Ok(g) => g,
|
|
Err(poisoned) => {
|
|
error!("LSP manager mutex poisoned, recovering");
|
|
poisoned.into_inner()
|
|
}
|
|
};
|
|
if let Some(client) = manager.get_client(&language) {
|
|
let result = client.send_request(
|
|
"textDocument/references",
|
|
&json!({
|
|
"textDocument": { "uri": format!("file://{}", path) },
|
|
"position": { "line": line, "character": character }
|
|
}),
|
|
)?;
|
|
Ok(serde_json::to_string_pretty(&result)?)
|
|
} else {
|
|
anyhow::bail!("no LSP client connected for '{language}'")
|
|
}
|
|
}
|
|
}
|