1use std::path::Path;
2
3use anyhow::{Context, Result};
4use tree_sitter::{Language, Parser, Query, QueryCursor, StreamingIterator};
5
6use boundary_core::analyzer::{LanguageAnalyzer, ParsedFile};
7use boundary_core::types::*;
8
9struct QuerySet {
11 interface_query: Query,
12 type_alias_query: Query,
13 class_query: Query,
14 import_query: Query,
15}
16
17const INTERFACE_QUERY_SRC: &str = r#"
18(interface_declaration
19 name: (type_identifier) @name
20 body: (interface_body) @body)
21"#;
22
23const TYPE_ALIAS_QUERY_SRC: &str = r#"
24(type_alias_declaration
25 name: (type_identifier) @name
26 value: (object_type))
27"#;
28
29const CLASS_QUERY_SRC: &str = r#"
30(class_declaration
31 name: (type_identifier) @name
32 (class_heritage
33 (implements_clause
34 (type_identifier) @implements))?
35 body: (class_body))
36"#;
37
38const IMPORT_QUERY_SRC: &str = r#"
39(import_statement
40 source: (string) @path)
41"#;
42
43fn compile_queries(language: &Language) -> Result<QuerySet> {
44 Ok(QuerySet {
45 interface_query: Query::new(language, INTERFACE_QUERY_SRC)
46 .context("failed to compile interface query")?,
47 type_alias_query: Query::new(language, TYPE_ALIAS_QUERY_SRC)
48 .context("failed to compile type alias query")?,
49 class_query: Query::new(language, CLASS_QUERY_SRC)
50 .context("failed to compile class query")?,
51 import_query: Query::new(language, IMPORT_QUERY_SRC)
52 .context("failed to compile import query")?,
53 })
54}
55
56pub struct TypeScriptAnalyzer {
58 ts_language: Language,
59 tsx_language: Language,
60 ts_queries: QuerySet,
61 tsx_queries: QuerySet,
62}
63
64impl TypeScriptAnalyzer {
65 pub fn new() -> Result<Self> {
66 let ts_language: Language = tree_sitter_typescript::LANGUAGE_TYPESCRIPT.into();
67 let tsx_language: Language = tree_sitter_typescript::LANGUAGE_TSX.into();
68
69 let ts_queries = compile_queries(&ts_language)?;
70 let tsx_queries = compile_queries(&tsx_language)?;
71
72 Ok(Self {
73 ts_language,
74 tsx_language,
75 ts_queries,
76 tsx_queries,
77 })
78 }
79
80 fn language_for_file(&self, path: &Path) -> &Language {
81 match path.extension().and_then(|e| e.to_str()) {
82 Some("tsx") => &self.tsx_language,
83 _ => &self.ts_language,
84 }
85 }
86
87 fn queries_for_file(&self, path: &Path) -> &QuerySet {
88 match path.extension().and_then(|e| e.to_str()) {
89 Some("tsx") => &self.tsx_queries,
90 _ => &self.ts_queries,
91 }
92 }
93}
94
95impl LanguageAnalyzer for TypeScriptAnalyzer {
96 fn language(&self) -> &'static str {
97 "typescript"
98 }
99
100 fn file_extensions(&self) -> &[&str] {
101 &["ts", "tsx"]
102 }
103
104 fn parse_file(&self, path: &Path, content: &str) -> Result<ParsedFile> {
105 let language = self.language_for_file(path);
106 let mut parser = Parser::new();
107 parser
108 .set_language(language)
109 .context("failed to set TypeScript language")?;
110 let tree = parser
111 .parse(content, None)
112 .context("failed to parse TypeScript file")?;
113 Ok(ParsedFile {
114 path: path.to_path_buf(),
115 tree,
116 content: content.to_string(),
117 })
118 }
119
120 fn extract_components(&self, parsed: &ParsedFile) -> Vec<Component> {
121 let mut components = Vec::new();
122 let module_path = derive_module_path(&parsed.path);
123
124 if parsed.path.to_string_lossy().ends_with(".d.ts") {
126 return components;
127 }
128
129 let queries = self.queries_for_file(&parsed.path);
130 extract_interfaces(
131 &queries.interface_query,
132 parsed,
133 &module_path,
134 &mut components,
135 );
136 extract_type_aliases(
137 &queries.type_alias_query,
138 parsed,
139 &module_path,
140 &mut components,
141 );
142 extract_classes(&queries.class_query, parsed, &module_path, &mut components);
143
144 components
145 }
146
147 fn extract_dependencies(&self, parsed: &ParsedFile) -> Vec<Dependency> {
148 let mut deps = Vec::new();
149 let module_path = derive_module_path(&parsed.path);
150 let from_id = ComponentId::new(&module_path, "<file>");
151
152 let queries = self.queries_for_file(&parsed.path);
153 let mut cursor = QueryCursor::new();
154 let path_idx = queries
155 .import_query
156 .capture_names()
157 .iter()
158 .position(|n| *n == "path")
159 .unwrap_or(0);
160
161 let mut matches = cursor.matches(
162 &queries.import_query,
163 parsed.tree.root_node(),
164 parsed.content.as_bytes(),
165 );
166
167 while let Some(m) = matches.next() {
168 for capture in m.captures {
169 if capture.index as usize == path_idx {
170 let node = capture.node;
171 let raw = node_text(node, &parsed.content);
172 let import_path = raw.trim_matches('"').trim_matches('\'').to_string();
174 let to_id = ComponentId::new(&import_path, "<module>");
175
176 deps.push(Dependency {
177 from: from_id.clone(),
178 to: to_id,
179 kind: DependencyKind::Import,
180 location: SourceLocation {
181 file: parsed.path.clone(),
182 line: node.start_position().row + 1,
183 column: node.start_position().column + 1,
184 },
185 import_path: Some(import_path),
186 });
187 }
188 }
189 }
190
191 deps
192 }
193}
194
195fn extract_interfaces(
196 query: &Query,
197 parsed: &ParsedFile,
198 module_path: &str,
199 components: &mut Vec<Component>,
200) {
201 let mut cursor = QueryCursor::new();
202 let name_idx = query
203 .capture_names()
204 .iter()
205 .position(|n| *n == "name")
206 .unwrap_or(0);
207 let body_idx = query.capture_names().iter().position(|n| *n == "body");
208
209 let mut matches = cursor.matches(query, parsed.tree.root_node(), parsed.content.as_bytes());
210
211 while let Some(m) = matches.next() {
212 let mut name = String::new();
213 let mut methods = Vec::new();
214 let mut start_row = 0;
215 let mut start_col = 0;
216
217 for capture in m.captures {
218 if capture.index as usize == name_idx {
219 name = node_text(capture.node, &parsed.content);
220 start_row = capture.node.start_position().row;
221 start_col = capture.node.start_position().column;
222 } else if Some(capture.index as usize) == body_idx {
223 let body_node = capture.node;
225 let mut child_cursor = body_node.walk();
226 if child_cursor.goto_first_child() {
227 loop {
228 let child = child_cursor.node();
229 if child.kind() == "method_signature" {
230 if let Some(name_node) = child.child_by_field_name("name") {
231 methods.push(MethodInfo {
232 name: node_text(name_node, &parsed.content),
233 parameters: String::new(),
234 return_type: String::new(),
235 });
236 }
237 }
238 if !child_cursor.goto_next_sibling() {
239 break;
240 }
241 }
242 }
243 }
244 }
245
246 if name.is_empty() {
247 continue;
248 }
249
250 components.push(Component {
251 id: ComponentId::new(module_path, &name),
252 name: name.clone(),
253 kind: ComponentKind::Port(PortInfo { name, methods }),
254 layer: None,
255 location: SourceLocation {
256 file: parsed.path.clone(),
257 line: start_row + 1,
258 column: start_col + 1,
259 },
260 is_cross_cutting: false,
261 architecture_mode: ArchitectureMode::default(),
262 });
263 }
264}
265
266fn extract_type_aliases(
267 query: &Query,
268 parsed: &ParsedFile,
269 module_path: &str,
270 components: &mut Vec<Component>,
271) {
272 let mut cursor = QueryCursor::new();
273 let name_idx = query
274 .capture_names()
275 .iter()
276 .position(|n| *n == "name")
277 .unwrap_or(0);
278
279 let mut matches = cursor.matches(query, parsed.tree.root_node(), parsed.content.as_bytes());
280
281 while let Some(m) = matches.next() {
282 for capture in m.captures {
283 if capture.index as usize == name_idx {
284 let name = node_text(capture.node, &parsed.content);
285 if name.is_empty() {
286 continue;
287 }
288
289 components.push(Component {
290 id: ComponentId::new(module_path, &name),
291 name: name.clone(),
292 kind: ComponentKind::Port(PortInfo {
293 name,
294 methods: vec![],
295 }),
296 layer: None,
297 location: SourceLocation {
298 file: parsed.path.clone(),
299 line: capture.node.start_position().row + 1,
300 column: capture.node.start_position().column + 1,
301 },
302 is_cross_cutting: false,
303 architecture_mode: ArchitectureMode::default(),
304 });
305 }
306 }
307 }
308}
309
310fn extract_classes(
311 query: &Query,
312 parsed: &ParsedFile,
313 module_path: &str,
314 components: &mut Vec<Component>,
315) {
316 let mut cursor = QueryCursor::new();
317 let name_idx = query
318 .capture_names()
319 .iter()
320 .position(|n| *n == "name")
321 .unwrap_or(0);
322 let implements_idx = query
323 .capture_names()
324 .iter()
325 .position(|n| *n == "implements");
326
327 let mut matches = cursor.matches(query, parsed.tree.root_node(), parsed.content.as_bytes());
328
329 while let Some(m) = matches.next() {
330 let mut name = String::new();
331 let mut implements = Vec::new();
332 let mut start_row = 0;
333 let mut start_col = 0;
334
335 for capture in m.captures {
336 if capture.index as usize == name_idx {
337 name = node_text(capture.node, &parsed.content);
338 start_row = capture.node.start_position().row;
339 start_col = capture.node.start_position().column;
340 } else if Some(capture.index as usize) == implements_idx {
341 implements.push(node_text(capture.node, &parsed.content));
342 }
343 }
344
345 if name.is_empty() {
346 continue;
347 }
348
349 let kind = classify_class_kind(&name, &implements);
350
351 components.push(Component {
352 id: ComponentId::new(module_path, &name),
353 name: name.clone(),
354 kind,
355 layer: None,
356 location: SourceLocation {
357 file: parsed.path.clone(),
358 line: start_row + 1,
359 column: start_col + 1,
360 },
361 is_cross_cutting: false,
362 architecture_mode: ArchitectureMode::default(),
363 });
364 }
365}
366
367fn classify_class_kind(name: &str, implements: &[String]) -> ComponentKind {
369 let lower = name.to_lowercase();
370 if lower.ends_with("repository") || lower.ends_with("repo") {
371 ComponentKind::Repository
372 } else if lower.ends_with("service") || lower.ends_with("svc") {
373 ComponentKind::Service
374 } else if lower.ends_with("handler") || lower.ends_with("controller") {
375 ComponentKind::Adapter(AdapterInfo {
376 name: name.to_string(),
377 implements: implements.to_vec(),
378 confidence: AdapterConfidence::default(),
379 })
380 } else if lower.ends_with("usecase") || lower.ends_with("interactor") {
381 ComponentKind::UseCase
382 } else if !implements.is_empty() {
383 ComponentKind::Adapter(AdapterInfo {
384 name: name.to_string(),
385 implements: implements.to_vec(),
386 confidence: AdapterConfidence::default(),
387 })
388 } else {
389 ComponentKind::Entity(EntityInfo {
390 name: name.to_string(),
391 fields: vec![],
392 methods: Vec::new(),
393 is_active_record: false,
394 is_anemic_domain_model: false,
395 })
396 }
397}
398
399fn node_text(node: tree_sitter::Node, source: &str) -> String {
401 source[node.byte_range()].to_string()
402}
403
404fn derive_module_path(path: &Path) -> String {
406 path.parent()
407 .map(|p| p.to_string_lossy().replace('\\', "/"))
408 .unwrap_or_default()
409}
410
411#[cfg(test)]
412mod tests {
413 use super::*;
414 use std::path::PathBuf;
415
416 #[test]
417 fn test_parse_typescript_interface() {
418 let analyzer = TypeScriptAnalyzer::new().unwrap();
419 let content = r#"
420export interface UserRepository {
421 save(user: User): Promise<void>;
422 findById(id: string): Promise<User | null>;
423}
424
425export interface User {
426 id: string;
427 name: string;
428 email: string;
429}
430"#;
431 let path = PathBuf::from("src/domain/user/user.ts");
432 let parsed = analyzer.parse_file(&path, content).unwrap();
433 let components = analyzer.extract_components(&parsed);
434
435 assert!(
436 components.len() >= 2,
437 "expected at least 2 components, got {}",
438 components.len()
439 );
440
441 let repo = components.iter().find(|c| c.name == "UserRepository");
442 assert!(repo.is_some(), "should find UserRepository interface");
443 assert!(matches!(repo.unwrap().kind, ComponentKind::Port(_)));
444
445 if let ComponentKind::Port(ref info) = repo.unwrap().kind {
446 assert!(info.methods.iter().any(|m| m.name == "save"));
447 assert!(info.methods.iter().any(|m| m.name == "findById"));
448 }
449 }
450
451 #[test]
452 fn test_extract_class_with_implements() {
453 let analyzer = TypeScriptAnalyzer::new().unwrap();
454 let content = r#"
455export class PostgresUserRepository implements UserRepository {
456 constructor(private pool: Pool) {}
457
458 async save(user: User): Promise<void> {
459 // save
460 }
461
462 async findById(id: string): Promise<User | null> {
463 return null;
464 }
465}
466"#;
467 let path = PathBuf::from("src/infrastructure/postgres/user-repo.ts");
468 let parsed = analyzer.parse_file(&path, content).unwrap();
469 let components = analyzer.extract_components(&parsed);
470
471 let repo = components
472 .iter()
473 .find(|c| c.name == "PostgresUserRepository");
474 assert!(repo.is_some(), "should find PostgresUserRepository");
475
476 match &repo.unwrap().kind {
477 ComponentKind::Repository => {} ComponentKind::Adapter(info) => {
479 assert!(info.implements.contains(&"UserRepository".to_string()));
480 }
481 other => panic!("expected Repository or Adapter, got {:?}", other),
482 }
483 }
484
485 #[test]
486 fn test_extract_imports() {
487 let analyzer = TypeScriptAnalyzer::new().unwrap();
488 let content = r#"
489import { User } from '../domain/user/user';
490import { UserRepository } from '../domain/user/user-repository';
491import { Pool } from 'pg';
492"#;
493 let path = PathBuf::from("src/infrastructure/postgres/user-repo.ts");
494 let parsed = analyzer.parse_file(&path, content).unwrap();
495 let deps = analyzer.extract_dependencies(&parsed);
496
497 assert_eq!(deps.len(), 3, "expected 3 imports");
498 let paths: Vec<&str> = deps
499 .iter()
500 .filter_map(|d| d.import_path.as_deref())
501 .collect();
502 assert!(paths.contains(&"../domain/user/user"));
503 assert!(paths.contains(&"../domain/user/user-repository"));
504 assert!(paths.contains(&"pg"));
505 }
506
507 #[test]
508 fn test_parse_tsx_file() {
509 let analyzer = TypeScriptAnalyzer::new().unwrap();
510 let content = r#"
511import React from 'react';
512
513interface Props {
514 name: string;
515}
516
517export class UserHandler {
518 render() {
519 return "Hello";
520 }
521}
522"#;
523 let path = PathBuf::from("src/presentation/user.tsx");
524 let parsed = analyzer.parse_file(&path, content).unwrap();
525 let components = analyzer.extract_components(&parsed);
526 assert!(!components.is_empty(), "should extract components from TSX");
527
528 let props = components.iter().find(|c| c.name == "Props");
530 assert!(props.is_some(), "should find Props interface in TSX");
531 }
532
533 #[test]
534 fn test_struct_classification() {
535 let analyzer = TypeScriptAnalyzer::new().unwrap();
536 let content = r#"
537export class UserService {
538 constructor(private repo: UserRepository) {}
539}
540
541export class UserHandler {
542 constructor(private service: UserService) {}
543}
544
545export class CreateUserUseCase {
546 constructor(private repo: UserRepository) {}
547}
548"#;
549 let path = PathBuf::from("src/app.ts");
550 let parsed = analyzer.parse_file(&path, content).unwrap();
551 let components = analyzer.extract_components(&parsed);
552
553 let svc = components.iter().find(|c| c.name == "UserService");
554 assert!(matches!(svc.unwrap().kind, ComponentKind::Service));
555
556 let handler = components.iter().find(|c| c.name == "UserHandler");
557 assert!(matches!(handler.unwrap().kind, ComponentKind::Adapter(_)));
558
559 let uc = components.iter().find(|c| c.name == "CreateUserUseCase");
560 assert!(matches!(uc.unwrap().kind, ComponentKind::UseCase));
561 }
562
563 #[test]
564 fn test_type_alias_port() {
565 let analyzer = TypeScriptAnalyzer::new().unwrap();
566 let content = r#"
567export type UserPort = {
568 save(user: User): Promise<void>;
569 findById(id: string): Promise<User>;
570};
571"#;
572 let path = PathBuf::from("src/domain/user/ports.ts");
573 let parsed = analyzer.parse_file(&path, content).unwrap();
574 let components = analyzer.extract_components(&parsed);
575
576 let port = components.iter().find(|c| c.name == "UserPort");
577 assert!(port.is_some(), "should find UserPort type alias");
578 assert!(matches!(port.unwrap().kind, ComponentKind::Port(_)));
579 }
580}