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
//! Base detector trait and types
//!
//! This module defines the core abstractions for code smell detection:
//! - `Detector` trait that all detectors must implement
//! - `DetectorResult` for capturing execution results
//! - Helper types for detector configuration
use crate::graph::GraphStore;
use crate::models::{Finding, Severity};
use anyhow::Result;
use std::collections::HashMap;
/// Result from running a single detector
#[derive(Debug, Clone)]
pub struct DetectorResult {
/// Name of the detector that produced these results
pub detector_name: String,
/// Findings produced by the detector
pub findings: Vec<Finding>,
/// Execution time in milliseconds
pub duration_ms: u64,
/// Whether the detector completed successfully
pub success: bool,
/// Error message if the detector failed
pub error: Option<String>,
}
impl DetectorResult {
/// Create a successful result
pub fn success(detector_name: String, findings: Vec<Finding>, duration_ms: u64) -> Self {
Self {
detector_name,
findings,
duration_ms,
success: true,
error: None,
}
}
/// Create a failed result
pub fn failure(detector_name: String, error: String, duration_ms: u64) -> Self {
Self {
detector_name,
findings: Vec::new(),
duration_ms,
success: false,
error: Some(error),
}
}
}
/// Configuration options for detectors
#[derive(Debug, Clone, Default)]
pub struct DetectorConfig {
/// Repository ID for multi-tenant filtering
pub repo_id: Option<String>,
/// Maximum findings to return per detector
pub max_findings: Option<usize>,
/// Detector-specific thresholds and options
pub options: HashMap<String, serde_json::Value>,
}
impl DetectorConfig {
/// Create a new config with default values
pub fn new() -> Self {
Self::default()
}
/// Create a config populated from project-level detector thresholds
///
/// Looks up the detector by name in the project config and copies
/// any threshold values into the options map.
pub fn from_project_config(
detector_name: &str,
project_config: &crate::config::ProjectConfig,
) -> Self {
let mut config = Self::new();
// Normalize detector name for lookup (GodClassDetector -> god-class)
let normalized = crate::config::normalize_detector_name(detector_name);
// Look up detector config in project config
if let Some(detector_override) = project_config.detectors.get(&normalized)
.or_else(|| project_config.detectors.get(detector_name))
{
// Copy thresholds to options
for (key, value) in &detector_override.thresholds {
let json_value = match value {
crate::config::ThresholdValue::Integer(v) => serde_json::json!(*v),
crate::config::ThresholdValue::Float(v) => serde_json::json!(*v),
crate::config::ThresholdValue::Boolean(v) => serde_json::json!(*v),
crate::config::ThresholdValue::String(v) => serde_json::json!(v),
};
config.options.insert(key.clone(), json_value);
}
}
config
}
/// Set the repository ID
pub fn with_repo_id(mut self, repo_id: impl Into<String>) -> Self {
self.repo_id = Some(repo_id.into());
self
}
/// Set maximum findings
pub fn with_max_findings(mut self, max: usize) -> Self {
self.max_findings = Some(max);
self
}
/// Set a custom option
pub fn with_option(mut self, key: impl Into<String>, value: serde_json::Value) -> Self {
self.options.insert(key.into(), value);
self
}
/// Get a typed option value
pub fn get_option<T: serde::de::DeserializeOwned>(&self, key: &str) -> Option<T> {
self.options
.get(key)
.and_then(|v| serde_json::from_value(v.clone()).ok())
}
/// Get an option with a default value
pub fn get_option_or<T: serde::de::DeserializeOwned>(&self, key: &str, default: T) -> T {
self.get_option(key).unwrap_or(default)
}
}
/// Check if a file path appears to be a test file
/// Used by security detectors to avoid flagging test certificates, test fixtures, etc.
pub fn is_test_file(path: &std::path::Path) -> bool {
let path_str = path.to_string_lossy().to_lowercase();
let filename = path.file_name()
.and_then(|s| s.to_str())
.unwrap_or("")
.to_lowercase();
// Go test files
path_str.ends_with("_test.go") ||
// Python test files
path_str.ends_with("_test.py") ||
filename.starts_with("test_") || // test_foo.py
// Test directories
path_str.contains("/tests/") ||
path_str.contains("/test/") ||
path_str.contains("/__tests__/") ||
// Ruby/JS spec files
path_str.contains("/spec/") ||
path_str.ends_with("_spec.rb") ||
path_str.ends_with(".test.ts") ||
path_str.ends_with(".test.js") ||
path_str.ends_with(".test.tsx") ||
path_str.ends_with(".test.jsx") ||
path_str.ends_with(".spec.ts") ||
path_str.ends_with(".spec.js") ||
path_str.ends_with(".spec.tsx") ||
path_str.ends_with(".spec.jsx") ||
// Test fixtures/data
path_str.contains("/fixtures/") ||
path_str.contains("/testdata/") ||
path_str.contains("/__fixtures__/") ||
path_str.contains("/__mocks__/")
}
/// Trait for all code smell detectors
///
/// Detectors analyze the code graph to find issues like:
/// - Circular dependencies
/// - God classes (classes that do too much)
/// - Long parameter lists
/// - Dead code
/// - And more...
///
/// # Example Implementation
///
/// ```ignore
/// pub struct MyDetector {
/// config: DetectorConfig,
/// }
///
/// impl Detector for MyDetector {
/// fn name(&self) -> &'static str {
/// "MyDetector"
/// }
///
/// fn description(&self) -> &'static str {
/// "Detects my specific code smell"
/// }
///
/// fn detect(&self, graph: &GraphStore) -> Result<Vec<Finding>> {
/// // Query the graph and analyze results
/// Ok(vec![])
/// }
/// }
/// ```
pub trait Detector: Send + Sync {
/// Unique identifier for this detector
///
/// Should match the Python detector name for consistency
/// (e.g., "CircularDependencyDetector")
fn name(&self) -> &'static str;
/// Human-readable description of what this detector finds
fn description(&self) -> &'static str;
/// Run detection and return findings
///
/// This is the main entry point for detection. Implementations should:
/// 1. Query the graph store for relevant data
/// 2. Analyze the data to find issues
/// 3. Return a list of findings with appropriate severity
///
/// # Arguments
/// * `graph` - Graph store for querying code structure
///
/// # Returns
/// A list of findings, or an error if detection fails
fn detect(&self, graph: &GraphStore) -> Result<Vec<Finding>>;
/// Whether this detector depends on results from other detectors
///
/// Dependent detectors run sequentially after all independent detectors
/// have completed. This allows them to use findings from other detectors.
///
/// Default: `false` (independent)
fn is_dependent(&self) -> bool {
false
}
/// Optional: Dependencies on other detectors
///
/// Only meaningful if `is_dependent()` returns true.
/// Returns names of detectors that must run before this one.
fn dependencies(&self) -> Vec<&'static str> {
vec![]
}
/// Category of issues this detector finds
///
/// Used for grouping and filtering findings in reports.
fn category(&self) -> &'static str {
"code_smell"
}
/// Get the configuration for this detector
fn config(&self) -> Option<&DetectorConfig> {
None
}
}
/// Progress callback for detector execution
pub type ProgressCallback = Box<dyn Fn(&str, usize, usize) + Send + Sync>;
/// Summary statistics from running all detectors
#[derive(Debug, Clone, Default)]
pub struct DetectionSummary {
/// Total number of detectors run
pub detectors_run: usize,
/// Number of detectors that succeeded
pub detectors_succeeded: usize,
/// Number of detectors that failed
pub detectors_failed: usize,
/// Total findings across all detectors
pub total_findings: usize,
/// Findings by severity
pub by_severity: HashMap<Severity, usize>,
/// Total execution time in milliseconds
pub total_duration_ms: u64,
}
impl DetectionSummary {
/// Update summary with a detector result
pub fn add_result(&mut self, result: &DetectorResult) {
self.detectors_run += 1;
self.total_duration_ms += result.duration_ms;
if result.success {
self.detectors_succeeded += 1;
self.total_findings += result.findings.len();
for finding in &result.findings {
*self.by_severity.entry(finding.severity).or_insert(0) += 1;
}
} else {
self.detectors_failed += 1;
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_detector_config() {
let config = DetectorConfig::new()
.with_repo_id("test-repo")
.with_max_findings(100)
.with_option("threshold", serde_json::json!(10));
assert_eq!(config.repo_id, Some("test-repo".to_string()));
assert_eq!(config.max_findings, Some(100));
assert_eq!(config.get_option::<i32>("threshold"), Some(10));
assert_eq!(config.get_option_or("missing", 5), 5);
}
#[test]
fn test_detector_result_success() {
let result = DetectorResult::success("TestDetector".to_string(), vec![], 100);
assert!(result.success);
assert!(result.error.is_none());
assert_eq!(result.duration_ms, 100);
}
#[test]
fn test_detector_result_failure() {
let result = DetectorResult::failure("TestDetector".to_string(), "oops".to_string(), 50);
assert!(!result.success);
assert_eq!(result.error, Some("oops".to_string()));
}
#[test]
fn test_detection_summary() {
let mut summary = DetectionSummary::default();
let result1 = DetectorResult::success("D1".to_string(), vec![], 100);
let result2 = DetectorResult::failure("D2".to_string(), "err".to_string(), 50);
summary.add_result(&result1);
summary.add_result(&result2);
assert_eq!(summary.detectors_run, 2);
assert_eq!(summary.detectors_succeeded, 1);
assert_eq!(summary.detectors_failed, 1);
assert_eq!(summary.total_duration_ms, 150);
}
#[test]
fn test_is_test_file() {
use super::is_test_file;
use std::path::Path;
assert!(is_test_file(Path::new("foo_test.go")));
assert!(is_test_file(Path::new("test_foo.py")));
assert!(is_test_file(Path::new("src/tests/helper.py")));
assert!(is_test_file(Path::new("app.spec.ts")));
assert!(!is_test_file(Path::new("src/main.py")));
assert!(!is_test_file(Path::new("testing_utils.py"))); // "testing" != "test"
}
}