1use std::collections::HashMap;
7use std::io::{BufRead, BufReader};
8use std::path::Path;
9use std::process::{Command, Stdio};
10
11use thiserror::Error;
12
13#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
15pub enum Volatility {
16 Low,
18 Medium,
20 High,
22}
23
24impl Volatility {
25 pub fn value(&self) -> f64 {
27 match self {
28 Volatility::Low => 0.0,
29 Volatility::Medium => 0.5,
30 Volatility::High => 1.0,
31 }
32 }
33
34 pub fn from_count(count: usize) -> Self {
36 match count {
37 0..=2 => Volatility::Low,
38 3..=10 => Volatility::Medium,
39 _ => Volatility::High,
40 }
41 }
42}
43
44#[derive(Error, Debug)]
46pub enum VolatilityError {
47 #[error("Failed to execute git command: {0}")]
48 GitCommand(#[from] std::io::Error),
49
50 #[error("Invalid UTF-8 in git output: {0}")]
51 InvalidUtf8(#[from] std::string::FromUtf8Error),
52
53 #[error("Not a git repository")]
54 NotGitRepo,
55}
56
57#[derive(Debug, Default)]
59pub struct VolatilityAnalyzer {
60 pub file_changes: HashMap<String, usize>,
62 pub period_months: usize,
64}
65
66impl VolatilityAnalyzer {
67 pub fn new(period_months: usize) -> Self {
69 Self {
70 file_changes: HashMap::new(),
71 period_months,
72 }
73 }
74
75 pub fn analyze(&mut self, repo_path: &Path) -> Result<(), VolatilityError> {
82 let git_check = Command::new("git")
84 .args(["rev-parse", "--git-dir"])
85 .current_dir(repo_path)
86 .stderr(Stdio::null())
87 .output()?;
88
89 if !git_check.status.success() {
90 return Err(VolatilityError::NotGitRepo);
91 }
92
93 let mut child = Command::new("git")
96 .args([
97 "log",
98 "--pretty=format:",
99 "--name-only",
100 "--diff-filter=AMRC",
101 &format!("--since={} months ago", self.period_months),
102 "--",
103 "*.rs",
104 ])
105 .current_dir(repo_path)
106 .stdout(Stdio::piped())
107 .stderr(Stdio::null())
108 .spawn()?;
109
110 if let Some(stdout) = child.stdout.take() {
112 let reader = BufReader::with_capacity(64 * 1024, stdout); for line in reader.lines() {
115 let line = match line {
116 Ok(l) => l,
117 Err(_) => continue,
118 };
119
120 let line = line.trim();
121 if !line.is_empty() && line.ends_with(".rs") {
122 *self.file_changes.entry(line.to_string()).or_insert(0) += 1;
123 }
124 }
125 }
126
127 let _ = child.wait();
129
130 Ok(())
131 }
132
133 pub fn get_volatility(&self, file_path: &str) -> Volatility {
135 let count = self.file_changes.get(file_path).copied().unwrap_or(0);
136 Volatility::from_count(count)
137 }
138
139 pub fn get_change_count(&self, file_path: &str) -> usize {
141 self.file_changes.get(file_path).copied().unwrap_or(0)
142 }
143
144 pub fn high_volatility_files(&self) -> Vec<(&String, usize)> {
146 self.file_changes
147 .iter()
148 .filter(|&(_, count)| *count > 10)
149 .map(|(path, count)| (path, *count))
150 .collect()
151 }
152
153 pub fn analyze_temporal_coupling(
160 &self,
161 repo_path: &Path,
162 ) -> Result<Vec<TemporalCoupling>, VolatilityError> {
163 let mut child = Command::new("git")
165 .args([
166 "log",
167 "--pretty=format:__COMMIT__",
168 "--name-only",
169 "--diff-filter=AMRC",
170 &format!("--since={} months ago", self.period_months),
171 "--",
172 "*.rs",
173 ])
174 .current_dir(repo_path)
175 .stdout(Stdio::piped())
176 .stderr(Stdio::null())
177 .spawn()?;
178
179 let mut commits: Vec<Vec<String>> = Vec::new();
180 let mut current_files: Vec<String> = Vec::new();
181
182 if let Some(stdout) = child.stdout.take() {
183 let reader = BufReader::with_capacity(64 * 1024, stdout);
184 for line in reader.lines() {
185 let line = match line {
186 Ok(l) => l,
187 Err(_) => continue,
188 };
189 let trimmed = line.trim();
190 if trimmed == "__COMMIT__" {
191 if current_files.len() >= 2 {
192 commits.push(std::mem::take(&mut current_files));
193 } else {
194 current_files.clear();
195 }
196 } else if !trimmed.is_empty() && trimmed.ends_with(".rs") {
197 current_files.push(trimmed.to_string());
198 }
199 }
200 if current_files.len() >= 2 {
202 commits.push(current_files);
203 }
204 }
205
206 let _ = child.wait();
207
208 const MAX_FILES_PER_COMMIT: usize = 50;
212 let mut pair_counts: HashMap<(String, String), usize> = HashMap::new();
213 for changed_files in &commits {
214 if changed_files.len() > MAX_FILES_PER_COMMIT {
215 continue;
216 }
217 for left_index in 0..changed_files.len() {
218 for right_index in (left_index + 1)..changed_files.len() {
219 let (first_file, second_file) =
220 if changed_files[left_index] < changed_files[right_index] {
221 (
222 changed_files[left_index].clone(),
223 changed_files[right_index].clone(),
224 )
225 } else {
226 (
227 changed_files[right_index].clone(),
228 changed_files[left_index].clone(),
229 )
230 };
231 *pair_counts.entry((first_file, second_file)).or_default() += 1;
232 }
233 }
234 }
235
236 let mut result: Vec<TemporalCoupling> = pair_counts
238 .into_iter()
239 .filter(|(_, count)| *count >= 3)
240 .map(|((file_a, file_b), count)| {
241 let total_a = self.file_changes.get(&file_a).copied().unwrap_or(1);
242 let total_b = self.file_changes.get(&file_b).copied().unwrap_or(1);
243 let coupling_ratio = count as f64 / total_a.min(total_b).max(1) as f64;
244 TemporalCoupling {
245 file_a,
246 file_b,
247 co_change_count: count,
248 coupling_ratio: coupling_ratio.min(1.0),
249 }
250 })
251 .collect();
252
253 result.sort_by(|a, b| {
254 b.co_change_count.cmp(&a.co_change_count).then(
255 b.coupling_ratio
256 .partial_cmp(&a.coupling_ratio)
257 .unwrap_or(std::cmp::Ordering::Equal),
258 )
259 });
260 Ok(result)
261 }
262
263 pub fn statistics(&self) -> VolatilityStats {
265 if self.file_changes.is_empty() {
266 return VolatilityStats::default();
267 }
268
269 let counts: Vec<usize> = self.file_changes.values().copied().collect();
270 let total: usize = counts.iter().sum();
271 let max = counts.iter().max().copied().unwrap_or(0);
272 let min = counts.iter().min().copied().unwrap_or(0);
273 let avg = total as f64 / counts.len() as f64;
274
275 let low_count = counts.iter().filter(|&&c| c <= 2).count();
276 let medium_count = counts.iter().filter(|&&c| c > 2 && c <= 10).count();
277 let high_count = counts.iter().filter(|&&c| c > 10).count();
278
279 VolatilityStats {
280 total_files: counts.len(),
281 total_changes: total,
282 max_changes: max,
283 min_changes: min,
284 avg_changes: avg,
285 low_volatility_count: low_count,
286 medium_volatility_count: medium_count,
287 high_volatility_count: high_count,
288 }
289 }
290}
291
292#[derive(Debug, Clone)]
297pub struct TemporalCoupling {
298 pub file_a: String,
300 pub file_b: String,
302 pub co_change_count: usize,
304 pub coupling_ratio: f64,
306}
307
308impl TemporalCoupling {
309 pub fn is_strong(&self) -> bool {
311 self.coupling_ratio >= 0.5
312 }
313}
314
315#[derive(Debug, Default)]
317pub struct VolatilityStats {
318 pub total_files: usize,
320 pub total_changes: usize,
322 pub max_changes: usize,
324 pub min_changes: usize,
326 pub avg_changes: f64,
328 pub low_volatility_count: usize,
330 pub medium_volatility_count: usize,
332 pub high_volatility_count: usize,
334}
335
336#[cfg(test)]
337mod tests {
338 use super::*;
339
340 #[test]
341 fn test_volatility_classification() {
342 let mut analyzer = VolatilityAnalyzer::new(6);
343 analyzer.file_changes.insert("stable.rs".to_string(), 1);
344 analyzer.file_changes.insert("moderate.rs".to_string(), 5);
345 analyzer.file_changes.insert("volatile.rs".to_string(), 15);
346
347 assert_eq!(analyzer.get_volatility("stable.rs"), Volatility::Low);
348 assert_eq!(analyzer.get_volatility("moderate.rs"), Volatility::Medium);
349 assert_eq!(analyzer.get_volatility("volatile.rs"), Volatility::High);
350 assert_eq!(analyzer.get_volatility("unknown.rs"), Volatility::Low);
351 }
352
353 #[test]
354 fn test_high_volatility_files() {
355 let mut analyzer = VolatilityAnalyzer::new(6);
356 analyzer.file_changes.insert("stable.rs".to_string(), 2);
357 analyzer.file_changes.insert("volatile.rs".to_string(), 15);
358 analyzer
359 .file_changes
360 .insert("very_volatile.rs".to_string(), 25);
361
362 let high_vol = analyzer.high_volatility_files();
363 assert_eq!(high_vol.len(), 2);
364 }
365
366 #[test]
367 fn test_statistics() {
368 let mut analyzer = VolatilityAnalyzer::new(6);
369 analyzer.file_changes.insert("a.rs".to_string(), 1);
370 analyzer.file_changes.insert("b.rs".to_string(), 5);
371 analyzer.file_changes.insert("c.rs".to_string(), 15);
372
373 let stats = analyzer.statistics();
374 assert_eq!(stats.total_files, 3);
375 assert_eq!(stats.total_changes, 21);
376 assert_eq!(stats.max_changes, 15);
377 assert_eq!(stats.min_changes, 1);
378 assert_eq!(stats.low_volatility_count, 1);
379 assert_eq!(stats.medium_volatility_count, 1);
380 assert_eq!(stats.high_volatility_count, 1);
381 }
382
383 #[test]
384 fn test_temporal_coupling_is_strong() {
385 let strong = TemporalCoupling {
386 file_a: "a.rs".to_string(),
387 file_b: "b.rs".to_string(),
388 co_change_count: 10,
389 coupling_ratio: 0.8,
390 };
391 assert!(strong.is_strong());
392
393 let exactly_threshold = TemporalCoupling {
394 file_a: "a.rs".to_string(),
395 file_b: "b.rs".to_string(),
396 co_change_count: 5,
397 coupling_ratio: 0.5,
398 };
399 assert!(exactly_threshold.is_strong());
400
401 let weak = TemporalCoupling {
402 file_a: "a.rs".to_string(),
403 file_b: "b.rs".to_string(),
404 co_change_count: 3,
405 coupling_ratio: 0.3,
406 };
407 assert!(!weak.is_strong());
408 }
409}