use std::time::Instant;
use crate::extraction::ts_state::ExtractionState;
use tree_sitter::{Node as TsNode, Parser, Tree};
use crate::types::{
generate_node_id, Edge, EdgeKind, ExtractionResult, Node, NodeKind, UnresolvedRef, Visibility,
};
pub struct ClojureExtractor;
impl ClojureExtractor {
pub fn extract_clojure(file_path: &str, source: &str) -> ExtractionResult {
let start = Instant::now();
let mut state = ExtractionState::new(file_path, source);
let tree = match Self::parse_source(source) {
Ok(t) => t,
Err(msg) => {
state.errors.push(msg);
return state.build_result(start);
}
};
let file_node = Node {
id: generate_node_id(file_path, &NodeKind::File, file_path, 0),
kind: NodeKind::File,
name: file_path.to_string(),
qualified_name: file_path.to_string(),
file_path: file_path.to_string(),
start_line: 0,
attrs_start_line: 0,
end_line: source.lines().count().saturating_sub(1) as u32,
start_column: 0,
end_column: 0,
signature: None,
docstring: None,
visibility: Visibility::Pub,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
let file_node_id = file_node.id.clone();
state.nodes.push(file_node);
state.node_stack.push((file_path.to_string(), file_node_id));
let root = tree.root_node();
Self::visit_children(&mut state, root);
state.node_stack.pop();
state.build_result(start)
}
fn parse_source(source: &str) -> Result<Tree, String> {
let mut parser = Parser::new();
let language = crate::extraction::ts_provider::language("clojure");
parser
.set_language(&language)
.map_err(|e| format!("failed to load Clojure grammar: {e}"))?;
parser
.parse(source, None)
.ok_or_else(|| "tree-sitter parse returned None".to_string())
}
fn visit_children(state: &mut ExtractionState, node: TsNode<'_>) {
let mut cursor = node.walk();
if cursor.goto_first_child() {
loop {
Self::visit_node(state, cursor.node());
if !cursor.goto_next_sibling() {
break;
}
}
}
}
fn visit_node(state: &mut ExtractionState, node: TsNode<'_>) {
if node.kind() != "list_lit" {
Self::visit_children(state, node);
return;
}
let head_text = Self::first_sym(state, node);
let head = head_text.as_deref().unwrap_or("");
match head {
"ns" => Self::visit_ns(state, node),
"defn" | "defn-" => Self::visit_defn(state, node, false),
"defmacro" => Self::visit_defn(state, node, true),
"def" | "defonce" => Self::visit_def(state, node),
"defprotocol" | "defrecord" | "deftype" | "definterface" => {
Self::visit_deftype(state, node);
}
"require" | "use" | "import" => Self::visit_require(state, node),
_ => Self::visit_children(state, node),
}
}
fn visit_ns(state: &mut ExtractionState, node: TsNode<'_>) {
let Some(name) = Self::nth_sym(state, node, 1) else {
return;
};
let start_line = node.start_position().row as u32;
let qualified_name = format!("{}::{}", state.file_path, name);
let id = generate_node_id(&state.file_path, &NodeKind::Module, &name, start_line);
let graph_node = Node {
id: id.clone(),
kind: NodeKind::Module,
name: name.clone(),
qualified_name,
file_path: state.file_path.clone(),
start_line,
attrs_start_line: start_line,
end_line: node.end_position().row as u32,
start_column: node.start_position().column as u32,
end_column: node.end_position().column as u32,
signature: None,
docstring: None,
visibility: Visibility::Pub,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
state.nodes.push(graph_node);
if let Some(parent_id) = state.parent_node_id() {
state.edges.push(Edge {
source: parent_id.to_string(),
target: id.clone(),
kind: EdgeKind::Contains,
line: Some(start_line),
});
}
state.node_stack.push((name, id));
Self::visit_children(state, node);
state.node_stack.pop();
}
fn visit_defn(state: &mut ExtractionState, node: TsNode<'_>, is_macro: bool) {
let Some(name) = Self::nth_sym(state, node, 1) else {
return;
};
let docstring = Self::extract_string_child(state, node);
let kind = if is_macro {
NodeKind::Macro
} else {
NodeKind::Function
};
let start_line = node.start_position().row as u32;
let qualified_name = format!("{}::{}", state.qualified_prefix(), name);
let id = generate_node_id(&state.file_path, &kind, &name, start_line);
let sig = Self::first_line(state, node);
let graph_node = Node {
id: id.clone(),
kind,
name,
qualified_name,
file_path: state.file_path.clone(),
start_line,
attrs_start_line: start_line,
end_line: node.end_position().row as u32,
start_column: node.start_position().column as u32,
end_column: node.end_position().column as u32,
signature: sig,
docstring,
visibility: Visibility::Pub,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
state.nodes.push(graph_node);
if let Some(parent_id) = state.parent_node_id() {
state.edges.push(Edge {
source: parent_id.to_string(),
target: id.clone(),
kind: EdgeKind::Contains,
line: Some(start_line),
});
}
Self::extract_calls(state, node, &id, 2);
}
fn visit_def(state: &mut ExtractionState, node: TsNode<'_>) {
let Some(name) = Self::nth_sym(state, node, 1) else {
return;
};
let start_line = node.start_position().row as u32;
let qualified_name = format!("{}::{}", state.qualified_prefix(), name);
let id = generate_node_id(&state.file_path, &NodeKind::Const, &name, start_line);
let sig = Self::first_line(state, node);
let graph_node = Node {
id: id.clone(),
kind: NodeKind::Const,
name,
qualified_name,
file_path: state.file_path.clone(),
start_line,
attrs_start_line: start_line,
end_line: node.end_position().row as u32,
start_column: node.start_position().column as u32,
end_column: node.end_position().column as u32,
signature: sig,
docstring: None,
visibility: Visibility::Pub,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
state.nodes.push(graph_node);
if let Some(parent_id) = state.parent_node_id() {
state.edges.push(Edge {
source: parent_id.to_string(),
target: id,
kind: EdgeKind::Contains,
line: Some(start_line),
});
}
}
fn visit_deftype(state: &mut ExtractionState, node: TsNode<'_>) {
let Some(name) = Self::nth_sym(state, node, 1) else {
return;
};
let start_line = node.start_position().row as u32;
let qualified_name = format!("{}::{}", state.qualified_prefix(), name);
let id = generate_node_id(&state.file_path, &NodeKind::Class, &name, start_line);
let sig = Self::first_line(state, node);
let graph_node = Node {
id: id.clone(),
kind: NodeKind::Class,
name,
qualified_name,
file_path: state.file_path.clone(),
start_line,
attrs_start_line: start_line,
end_line: node.end_position().row as u32,
start_column: node.start_position().column as u32,
end_column: node.end_position().column as u32,
signature: sig,
docstring: None,
visibility: Visibility::Pub,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
state.nodes.push(graph_node);
if let Some(parent_id) = state.parent_node_id() {
state.edges.push(Edge {
source: parent_id.to_string(),
target: id,
kind: EdgeKind::Contains,
line: Some(start_line),
});
}
}
fn visit_require(state: &mut ExtractionState, node: TsNode<'_>) {
let text = state.node_text(node);
let start_line = node.start_position().row as u32;
let id = generate_node_id(&state.file_path, &NodeKind::Use, "require", start_line);
let graph_node = Node {
id: id.clone(),
kind: NodeKind::Use,
name: "require".to_string(),
qualified_name: format!("{}::require", state.file_path),
file_path: state.file_path.clone(),
start_line,
attrs_start_line: start_line,
end_line: node.end_position().row as u32,
start_column: node.start_position().column as u32,
end_column: node.end_position().column as u32,
signature: Some(text.trim().to_string()),
docstring: None,
visibility: Visibility::Private,
is_async: false,
branches: 0,
loops: 0,
returns: 0,
max_nesting: 0,
unsafe_blocks: 0,
unchecked_calls: 0,
assertions: 0,
cognitive_complexity: 0,
distinct_operators: 0,
distinct_operands: 0,
total_operators: 0,
total_operands: 0,
updated_at: state.timestamp,
parent_id: None,
};
state.nodes.push(graph_node);
if let Some(parent_id) = state.parent_node_id() {
state.edges.push(Edge {
source: parent_id.to_string(),
target: id,
kind: EdgeKind::Contains,
line: Some(start_line),
});
}
}
fn first_sym(state: &ExtractionState, node: TsNode<'_>) -> Option<String> {
let mut cursor = node.walk();
if cursor.goto_first_child() {
loop {
let child = cursor.node();
if child.kind() == "sym_lit" {
return Some(state.node_text(child));
}
if !cursor.goto_next_sibling() {
break;
}
}
}
None
}
fn nth_sym(state: &ExtractionState, node: TsNode<'_>, n: usize) -> Option<String> {
let mut count = 0;
let mut cursor = node.walk();
if cursor.goto_first_child() {
loop {
let child = cursor.node();
if child.kind() == "sym_lit" {
if count == n {
return Some(state.node_text(child));
}
count += 1;
}
if !cursor.goto_next_sibling() {
break;
}
}
}
None
}
fn extract_string_child(state: &ExtractionState, node: TsNode<'_>) -> Option<String> {
let mut cursor = node.walk();
if cursor.goto_first_child() {
loop {
let child = cursor.node();
if child.kind() == "str_lit" {
let text = state.node_text(child);
return Some(text.trim_matches('"').to_string());
}
if !cursor.goto_next_sibling() {
break;
}
}
}
None
}
fn extract_calls(state: &mut ExtractionState, node: TsNode<'_>, fn_id: &str, skip: usize) {
let mut cursor = node.walk();
if !cursor.goto_first_child() {
return;
}
for _ in 0..skip {
if !cursor.goto_next_sibling() {
return;
}
}
loop {
let child = cursor.node();
if child.kind() == "list_lit" {
if let Some(head) = Self::first_sym(state, child) {
if !matches!(
head.as_str(),
"defn" | "defn-" | "defmacro" | "def" | "defonce" | "ns"
) {
state.unresolved_refs.push(UnresolvedRef {
from_node_id: fn_id.to_string(),
reference_name: head,
reference_kind: EdgeKind::Calls,
line: child.start_position().row as u32,
column: child.start_position().column as u32,
file_path: state.file_path.clone(),
});
}
Self::extract_calls(state, child, fn_id, 1);
}
} else {
Self::extract_calls(state, child, fn_id, 0);
}
if !cursor.goto_next_sibling() {
break;
}
}
}
fn first_line(state: &ExtractionState, node: TsNode<'_>) -> Option<String> {
let text = state.node_text(node);
text.lines().next().map(|l| l.trim().to_string())
}
}
impl crate::extraction::LanguageExtractor for ClojureExtractor {
fn extensions(&self) -> &[&str] {
&["clj", "cljs", "cljc"]
}
fn language_name(&self) -> &'static str {
"Clojure"
}
fn extract(&self, file_path: &str, source: &str) -> ExtractionResult {
Self::extract_clojure(file_path, source)
}
}