xtask/tasks/fmt/house_rules/
autogen_comment.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use anyhow::anyhow;
use fs_err::File;
use std::ffi::OsStr;
use std::io::BufRead;
use std::io::BufReader;
use std::io::Write;
use std::path::Path;

const AUTOGEN_COMMENT: &str = "# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html";

pub fn check_autogen_comment(path: &Path, fix: bool) -> anyhow::Result<()> {
    if path.file_name() != Some(OsStr::new("Cargo.toml")) {
        return Ok(());
    }

    let f = BufReader::new(File::open(path)?);
    let mut found = false;
    for line in f.lines() {
        let line = line?;
        if line.trim() == AUTOGEN_COMMENT {
            found = true;
            break;
        }
    }

    if found && fix {
        let path_fix = &{
            let mut p = path.to_path_buf();
            let ok = p.set_extension("toml.fix");
            assert!(ok);
            p
        };

        let f = BufReader::new(File::open(path)?);
        let mut f_fixed = File::create(path_fix)?;

        let mut just_fixed = false;
        for line in f.lines() {
            let line = line?;

            if line.trim() == AUTOGEN_COMMENT {
                just_fixed = true;
                continue;
            }

            // also remove the extra newline that comes after the comment
            if just_fixed {
                if line.trim().is_empty() {
                    just_fixed = false;
                    continue;
                }
            }

            just_fixed = false;
            writeln!(f_fixed, "{}", line)?;
        }

        // swap the file with the newly fixed file
        fs_err::rename(path_fix, path)?;
    }

    if found {
        let msg = "autogenerated \"keys and their definitions\" comment";
        if fix {
            log::info!("fixed {} in {}", msg, path.display());
            Ok(())
        } else {
            Err(anyhow!("{} in {}", msg, path.display()))
        }
    } else {
        Ok(())
    }
}