reformat-core 0.1.6

Core library for text and file reformatting
Documentation
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
//! Indentation normalization transformer

use std::fs;
use std::path::Path;
use walkdir::WalkDir;

/// Indentation style
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum IndentStyle {
    /// Use spaces for indentation
    Spaces,
    /// Use tabs for indentation
    Tabs,
}

impl IndentStyle {
    /// Parse from string representation
    pub fn parse(s: &str) -> Option<Self> {
        match s {
            "spaces" | "space" => Some(IndentStyle::Spaces),
            "tabs" | "tab" => Some(IndentStyle::Tabs),
            _ => None,
        }
    }
}

/// Options for indentation normalization
#[derive(Debug, Clone)]
pub struct IndentOptions {
    /// Target indentation style
    pub style: IndentStyle,
    /// Number of spaces per indent level (used when converting tabs to spaces,
    /// or as the tab width when converting spaces to tabs)
    pub width: usize,
    /// File extensions to process
    pub file_extensions: Vec<String>,
    /// Process directories recursively
    pub recursive: bool,
    /// Dry run mode (don't modify files)
    pub dry_run: bool,
}

impl Default for IndentOptions {
    fn default() -> Self {
        IndentOptions {
            style: IndentStyle::Spaces,
            width: 4,
            file_extensions: vec![
                ".py", ".pyx", ".pxd", ".pxi", ".c", ".h", ".cpp", ".hpp", ".rs", ".go", ".java",
                ".js", ".ts", ".jsx", ".tsx", ".md", ".qmd", ".txt", ".toml", ".yaml", ".yml",
                ".json", ".xml", ".html", ".css",
            ]
            .iter()
            .map(|s| s.to_string())
            .collect(),
            recursive: true,
            dry_run: false,
        }
    }
}

/// Indentation normalizer
pub struct IndentNormalizer {
    options: IndentOptions,
}

impl IndentNormalizer {
    /// Creates a new normalizer with the given options
    pub fn new(options: IndentOptions) -> Self {
        IndentNormalizer { options }
    }

    /// Creates a normalizer with default options
    pub fn with_defaults() -> Self {
        IndentNormalizer {
            options: IndentOptions::default(),
        }
    }

    /// Checks if a file should be processed
    fn should_process(&self, path: &Path) -> bool {
        if !path.is_file() {
            return false;
        }

        if path.components().any(|c| {
            c.as_os_str()
                .to_str()
                .map(|s| s.starts_with('.'))
                .unwrap_or(false)
        }) {
            return false;
        }

        let skip_dirs = [
            "build",
            "__pycache__",
            ".git",
            "node_modules",
            "venv",
            ".venv",
            "target",
        ];
        if path.components().any(|c| {
            c.as_os_str()
                .to_str()
                .map(|s| skip_dirs.contains(&s))
                .unwrap_or(false)
        }) {
            return false;
        }

        if let Some(ext) = path.extension() {
            let ext_str = format!(".{}", ext.to_string_lossy());
            self.options.file_extensions.contains(&ext_str)
        } else {
            false
        }
    }

    /// Convert leading whitespace on a single line.
    /// Returns the converted line and whether it changed.
    fn convert_line(&self, line: &str) -> (String, bool) {
        // Find the leading whitespace
        let trimmed = line.trim_start_matches([' ', '\t']);
        let leading = &line[..line.len() - trimmed.len()];

        if leading.is_empty() {
            return (line.to_string(), false);
        }

        let width = self.options.width;

        match self.options.style {
            IndentStyle::Spaces => {
                // Convert tabs to spaces
                if !leading.contains('\t') {
                    return (line.to_string(), false);
                }
                let mut spaces = 0usize;
                for ch in leading.chars() {
                    if ch == '\t' {
                        // Align to next tab stop
                        spaces = ((spaces / width) + 1) * width;
                    } else {
                        spaces += 1;
                    }
                }
                let new_leading: String = " ".repeat(spaces);
                (format!("{}{}", new_leading, trimmed), true)
            }
            IndentStyle::Tabs => {
                // Convert spaces to tabs
                if !leading.contains(' ') {
                    return (line.to_string(), false);
                }
                // Count effective column width
                let mut col = 0usize;
                for ch in leading.chars() {
                    if ch == '\t' {
                        col = ((col / width) + 1) * width;
                    } else {
                        col += 1;
                    }
                }
                let tabs = col / width;
                let remaining_spaces = col % width;
                let new_leading = format!("{}{}", "\t".repeat(tabs), " ".repeat(remaining_spaces));
                let changed = new_leading != leading;
                (format!("{}{}", new_leading, trimmed), changed)
            }
        }
    }

    /// Normalize indentation in a single file. Returns the number of lines changed.
    pub fn normalize_file(&self, path: &Path) -> crate::Result<usize> {
        if !self.should_process(path) {
            return Ok(0);
        }

        let content = fs::read_to_string(path)?;
        let ends_with_newline = content.ends_with('\n');
        let lines: Vec<&str> = content.lines().collect();

        let mut changed_count = 0;
        let mut new_lines: Vec<String> = Vec::with_capacity(lines.len());

        for line in &lines {
            let (converted, changed) = self.convert_line(line);
            if changed {
                changed_count += 1;
            }
            new_lines.push(converted);
        }

        if changed_count > 0 {
            if self.options.dry_run {
                println!(
                    "Would normalize {} line(s) of indentation in '{}'",
                    changed_count,
                    path.display()
                );
            } else {
                let mut output = new_lines.join("\n");
                if ends_with_newline {
                    output.push('\n');
                }
                fs::write(path, output)?;
                println!(
                    "Normalized {} line(s) of indentation in '{}'",
                    changed_count,
                    path.display()
                );
            }
        }

        Ok(changed_count)
    }

    /// Processes a directory or file. Returns (files_changed, lines_changed).
    pub fn process(&self, path: &Path) -> crate::Result<(usize, usize)> {
        let mut total_files = 0;
        let mut total_lines = 0;

        if path.is_file() {
            let lines = self.normalize_file(path)?;
            if lines > 0 {
                total_files = 1;
                total_lines = lines;
            }
        } else if path.is_dir() {
            if self.options.recursive {
                for entry in WalkDir::new(path).into_iter().filter_map(|e| e.ok()) {
                    if entry.file_type().is_file() {
                        let lines = self.normalize_file(entry.path())?;
                        if lines > 0 {
                            total_files += 1;
                            total_lines += lines;
                        }
                    }
                }
            } else {
                for entry in fs::read_dir(path)? {
                    let entry = entry?;
                    let entry_path = entry.path();
                    if entry_path.is_file() {
                        let lines = self.normalize_file(&entry_path)?;
                        if lines > 0 {
                            total_files += 1;
                            total_lines += lines;
                        }
                    }
                }
            }
        }

        Ok((total_files, total_lines))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;

    #[test]
    fn test_tabs_to_spaces() {
        let dir = std::env::temp_dir().join("reformat_indent_t2s");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        fs::write(&file, "\tline1\n\t\tline2\nline3\n").unwrap();

        let normalizer = IndentNormalizer::with_defaults();
        let (files, lines) = normalizer.process(&file).unwrap();

        assert_eq!(files, 1);
        assert_eq!(lines, 2);

        let content = fs::read_to_string(&file).unwrap();
        assert_eq!(content, "    line1\n        line2\nline3\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_spaces_to_tabs() {
        let dir = std::env::temp_dir().join("reformat_indent_s2t");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        fs::write(&file, "    line1\n        line2\nline3\n").unwrap();

        let options = IndentOptions {
            style: IndentStyle::Tabs,
            width: 4,
            ..Default::default()
        };
        let normalizer = IndentNormalizer::new(options);
        let (files, lines) = normalizer.process(&file).unwrap();

        assert_eq!(files, 1);
        assert_eq!(lines, 2);

        let content = fs::read_to_string(&file).unwrap();
        assert_eq!(content, "\tline1\n\t\tline2\nline3\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_width_2_spaces() {
        let dir = std::env::temp_dir().join("reformat_indent_w2");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        fs::write(&file, "\tline1\n\t\tline2\n").unwrap();

        let options = IndentOptions {
            style: IndentStyle::Spaces,
            width: 2,
            ..Default::default()
        };
        let normalizer = IndentNormalizer::new(options);
        normalizer.process(&file).unwrap();

        let content = fs::read_to_string(&file).unwrap();
        assert_eq!(content, "  line1\n    line2\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_partial_tab_stop_spaces_to_tabs() {
        let dir = std::env::temp_dir().join("reformat_indent_partial");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        // 6 spaces with width 4: 1 tab + 2 spaces
        fs::write(&file, "      line1\n").unwrap();

        let options = IndentOptions {
            style: IndentStyle::Tabs,
            width: 4,
            ..Default::default()
        };
        let normalizer = IndentNormalizer::new(options);
        normalizer.process(&file).unwrap();

        let content = fs::read_to_string(&file).unwrap();
        assert_eq!(content, "\t  line1\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_already_normalized() {
        let dir = std::env::temp_dir().join("reformat_indent_noop");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        fs::write(&file, "    line1\n        line2\n").unwrap();

        let normalizer = IndentNormalizer::with_defaults();
        let (files, lines) = normalizer.process(&file).unwrap();

        assert_eq!(files, 0);
        assert_eq!(lines, 0);

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_dry_run() {
        let dir = std::env::temp_dir().join("reformat_indent_dry");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        let original = "\tline1\n";
        fs::write(&file, original).unwrap();

        let options = IndentOptions {
            dry_run: true,
            ..Default::default()
        };
        let normalizer = IndentNormalizer::new(options);
        let (_, lines) = normalizer.process(&file).unwrap();

        assert_eq!(lines, 1);
        let content = fs::read_to_string(&file).unwrap();
        assert_eq!(content, original);

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_preserves_trailing_newline() {
        let dir = std::env::temp_dir().join("reformat_indent_newline");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        fs::write(&file, "\tline1\n\tline2\n").unwrap();

        let normalizer = IndentNormalizer::with_defaults();
        normalizer.process(&file).unwrap();

        let content = fs::read_to_string(&file).unwrap();
        assert!(content.ends_with('\n'));
        assert_eq!(content, "    line1\n    line2\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_mixed_indent() {
        let dir = std::env::temp_dir().join("reformat_indent_mixed");
        fs::create_dir_all(&dir).unwrap();

        let file = dir.join("test.py");
        // Tab followed by spaces
        fs::write(&file, "\t  line1\n").unwrap();

        let normalizer = IndentNormalizer::with_defaults();
        normalizer.process(&file).unwrap();

        let content = fs::read_to_string(&file).unwrap();
        // Tab (=4 col) + 2 spaces = 6 spaces
        assert_eq!(content, "      line1\n");

        fs::remove_dir_all(&dir).unwrap();
    }

    #[test]
    fn test_parse_indent_style() {
        assert_eq!(IndentStyle::parse("spaces"), Some(IndentStyle::Spaces));
        assert_eq!(IndentStyle::parse("space"), Some(IndentStyle::Spaces));
        assert_eq!(IndentStyle::parse("tabs"), Some(IndentStyle::Tabs));
        assert_eq!(IndentStyle::parse("tab"), Some(IndentStyle::Tabs));
        assert_eq!(IndentStyle::parse("bogus"), None);
    }

    #[test]
    fn test_recursive_processing() {
        let dir = std::env::temp_dir().join("reformat_indent_recursive");
        fs::create_dir_all(&dir).unwrap();

        let sub = dir.join("sub");
        fs::create_dir_all(&sub).unwrap();

        let f1 = dir.join("a.py");
        let f2 = sub.join("b.py");
        fs::write(&f1, "\tline1\n").unwrap();
        fs::write(&f2, "\tline2\n").unwrap();

        let normalizer = IndentNormalizer::with_defaults();
        let (files, lines) = normalizer.process(&dir).unwrap();

        assert_eq!(files, 2);
        assert_eq!(lines, 2);

        fs::remove_dir_all(&dir).unwrap();
    }
}