aeruginous 3.7.17

The Aeruginous Open Source Development Toolbox.
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
/*********************** GNU General Public License 3.0 ***********************\
|                                                                              |
|  Copyright (C) 2023 Kevin Matthes                                            |
|                                                                              |
|  This program is free software: you can redistribute it and/or modify        |
|  it under the terms of the GNU General Public License as published by        |
|  the Free Software Foundation, either version 3 of the License, or           |
|  (at your option) any later version.                                         |
|                                                                              |
|  This program is distributed in the hope that it will be useful,             |
|  but WITHOUT ANY WARRANTY; without even the implied warranty of              |
|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               |
|  GNU General Public License for more details.                                |
|                                                                              |
|  You should have received a copy of the GNU General Public License           |
|  along with this program.  If not, see <https://www.gnu.org/licenses/>.      |
|                                                                              |
\******************************************************************************/

use crate::ceprintlns;
use aeruginous_io::PathBufLikeReader;
use std::path::PathBuf;
use sysexits::Result;

/// Complain about certain stylistic issues.
#[allow(clippy::struct_excessive_bools)]
#[derive(clap::Parser, Clone)]
pub struct Complain {
    /// The files to analyse.
    files: Vec<PathBuf>,

    /// Whether to ignore CRLFs.
    #[arg(long)]
    ignore_carriage_return_line_feeds: bool,

    /// Whether to ignore line width issues.
    #[arg(long)]
    ignore_line_width_issues: bool,

    /// Whether to ignore if a file should not be terminated by a line feed.
    #[arg(long)]
    ignore_missing_final_line_feed: bool,

    /// Whether to ignore the usage of mixed indentation units.
    #[arg(long)]
    ignore_mixed_indentation: bool,

    /// Whether to ignore tabs within lines.
    #[arg(long)]
    ignore_tabs_within_lines: bool,

    /// Whether to ignore TWS.
    #[arg(long)]
    ignore_trailing_white_space_characters: bool,

    /// Whether to ignore the usage of wrong indentation units.
    #[arg(long)]
    ignore_wrong_indentation: bool,

    /// The indentation unit.
    #[arg(default_value = "spaces", long, short)]
    indent_by: IndentationUnit,

    /// The maximum line width to check for.
    #[arg(
        default_value = "80",
        long,
        short,
        visible_aliases = ["length", "line", "width"]
    )]
    line_width: usize,

    /// Also print results for files which do not violate against any lint.
    #[arg(long)]
    verbose: bool,
}

impl Complain {
    /// Ignore CRLFs.
    pub fn ignore_carriage_return_line_feeds(&mut self) {
        self.ignore_carriage_return_line_feeds = true;
    }

    /// Ignore too long lines.
    pub fn ignore_line_width_issues(&mut self) {
        self.ignore_line_width_issues = true;
    }

    /// Ignore missing trailing newline characters.
    pub fn ignore_missing_final_line_feed(&mut self) {
        self.ignore_missing_final_line_feed = true;
    }

    /// Ignore the application of multiple indentation units.
    pub fn ignore_mixed_indentation(&mut self) {
        self.ignore_mixed_indentation = true;
    }

    /// Ignore tab characters in input lines.
    pub fn ignore_tabs_within_lines(&mut self) {
        self.ignore_tabs_within_lines = true;
    }

    /// Ignore lines ending with spaces and / or tab characters.
    pub fn ignore_trailing_white_space_characters(&mut self) {
        self.ignore_trailing_white_space_characters = true;
    }

    /// Ignore applications of the opposite indentation unit.
    pub fn ignore_wrong_indentation(&mut self) {
        self.ignore_wrong_indentation = true;
    }

    /// Set another indentation unit.
    pub fn indent_by(&mut self, i: IndentationUnit) {
        self.indent_by = i;
    }

    /// Process the input data.
    ///
    /// # Errors
    ///
    /// See
    ///
    /// - [`aeruginous_io::PathBufLikeReader::read_loudly`]
    /// - [`crate::ColourMessage`]
    /// - [`sysexits::ExitCode::DataErr`]
    pub fn main(&self) -> Result<()> {
        self.wrap().main()
    }

    /// Create a new instance.
    #[must_use]
    pub fn new(files: Vec<PathBuf>) -> Self {
        Self {
            files,
            ignore_carriage_return_line_feeds: false,
            ignore_line_width_issues: false,
            ignore_missing_final_line_feed: false,
            ignore_mixed_indentation: false,
            ignore_tabs_within_lines: false,
            ignore_trailing_white_space_characters: false,
            ignore_wrong_indentation: false,
            indent_by: IndentationUnit::Spaces,
            line_width: 80,
            verbose: false,
        }
    }

    /// Push a new path to the list of paths to process.
    pub fn push<T>(&mut self, path: T)
    where
        PathBuf: From<T>,
    {
        self.files.push(PathBuf::from(path));
    }

    /// Process this instance.
    ///
    /// # Errors
    ///
    /// See [`Self::main`].
    pub fn process(&self) -> Result<usize> {
        self.wrap().process()
    }

    /// Query the current state of settings.
    #[must_use]
    pub const fn state(
        &self,
    ) -> (&Vec<PathBuf>, [bool; 7], IndentationUnit, usize) {
        (
            &self.files,
            [
                self.ignore_carriage_return_line_feeds,
                self.ignore_line_width_issues,
                self.ignore_missing_final_line_feed,
                self.ignore_mixed_indentation,
                self.ignore_tabs_within_lines,
                self.ignore_trailing_white_space_characters,
                self.ignore_wrong_indentation,
            ],
            self.indent_by,
            self.line_width,
        )
    }

    fn wrap(&self) -> Logic {
        Logic {
            cli: self.clone(),
            data: String::new(),
            errors: 0,
            total_errors: 0,
        }
    }
}

impl Default for Complain {
    fn default() -> Self {
        Self::new(Vec::new())
    }
}

/// The possible indentation units.
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
pub enum IndentationUnit {
    /// Indent by spaces.
    #[default]
    Spaces,

    /// Indent by tabs.
    Tabs,
}

crate::enum_trait!(IndentationUnit {
    Spaces <-> "spaces",
    Tabs <-> "tabs"
});

struct Logic {
    cli: Complain,
    data: String,
    errors: usize,
    total_errors: usize,
}

impl Logic {
    fn aec_0001(&mut self) -> Result<()> {
        if !self.data.ends_with('\n') {
            self.errors += 1;

            ceprintlns!(
                "ÆC-0001"!Green,
                "File not terminated by line feed."
            );
        }

        Ok(())
    }

    fn aec_0002(&mut self) -> Result<()> {
        let mut line = 1;

        for l in self.data.split_inclusive('\n') {
            if l.ends_with("\r\n") {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0002"!Yellow,
                    "CRLF in line {line}."
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn aec_0003(&mut self) -> Result<()> {
        let mut line = 1;
        let mut mercy = false;

        for l in self.data.lines() {
            if l.contains("#[aeruginous::mercy::0003::start]") {
                mercy = true;
            } else if l.contains("#[aeruginous::mercy::0003::end]") {
                mercy = false;
            }

            if mercy {
                continue;
            }

            let c = l.chars().count();

            if c > self.cli.line_width
                && !l.contains("#[aeruginous::mercy::0003]")
            {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0003"!Red,
                    "Line {line} is {} character(s) too long.",
                    c - self.cli.line_width
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn aec_0004(&mut self) -> Result<()> {
        let mut line = 1;

        for l in self.data.lines() {
            if l.ends_with(char::is_whitespace) {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0004"!Green,
                    "TWS in line {line}."
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn aec_0005(&mut self) -> Result<()> {
        let mut line = 1;
        let trigger = match self.cli.indent_by {
            IndentationUnit::Spaces => '\t',
            IndentationUnit::Tabs => ' ',
        };

        for l in self.data.lines() {
            if l.starts_with(trigger) {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0005"!Green,
                    "Line {line} indented by {}.",
                    if trigger == '\t' { "tabs" } else { "spaces" }
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn aec_0006(&mut self) -> Result<()> {
        let mut line = 1;

        for l in self.data.lines() {
            if l.split_once(|c| !char::is_whitespace(c)).is_some_and(
                |(indentation, _)| {
                    indentation.contains('\t') && indentation.contains(' ')
                },
            ) {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0006"!Yellow,
                    "Line {line} is indented by both spaces and tabs."
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn aec_0007(&mut self) -> Result<()> {
        let mut line = 1;

        for l in self.data.lines() {
            if l.trim().contains('\t') {
                self.errors += 1;

                ceprintlns!(
                    "ÆC-0007"!Yellow,
                    "Tabs within line {line}."
                );
            }

            line += 1;
        }

        Ok(())
    }

    fn complain(&mut self, f: &PathBuf) -> Result<()> {
        self.data = f.read_loudly()?;

        if !self.cli.ignore_missing_final_line_feed {
            self.aec_0001()?;
        }

        if !self.cli.ignore_carriage_return_line_feeds {
            self.aec_0002()?;
        }

        if !self.cli.ignore_line_width_issues {
            self.aec_0003()?;
        }

        if !self.cli.ignore_trailing_white_space_characters {
            self.aec_0004()?;
        }

        if !self.cli.ignore_wrong_indentation {
            self.aec_0005()?;
        }

        if !self.cli.ignore_mixed_indentation {
            self.aec_0006()?;
        }

        if !self.cli.ignore_tabs_within_lines {
            self.aec_0007()?;
        }

        if self.cli.verbose || self.errors > 0 {
            ceprintlns!("ˇ;{\"};ˇ"!Blue, "{} {}", self.errors, f.display());
        }

        self.total_errors += self.errors;
        self.errors = 0;

        Ok(())
    }

    fn main(&mut self) -> Result<()> {
        if self.process()? == 0 {
            Ok(())
        } else {
            Err(sysexits::ExitCode::DataErr)
        }
    }

    fn process(&mut self) -> Result<usize> {
        for f in self.cli.files.clone() {
            if f.is_dir() {
                self.process_dir(f.read_dir()?)?;
            } else {
                self.complain(&f)?;
            }
        }

        Ok(self.total_errors)
    }

    fn process_dir(&mut self, directory: std::fs::ReadDir) -> Result<()> {
        for entry in directory {
            let entry = entry?.path();

            if entry.is_dir() {
                self.process_dir(entry.read_dir()?)?;
            } else {
                self.complain(&entry)?;
            }
        }

        Ok(())
    }
}

/******************************************************************************/