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

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

pub fn check_repr_packed(path: &Path, fix: bool) -> anyhow::Result<()> {
    let ext = path
        .extension()
        .and_then(|e| e.to_str())
        .unwrap_or_default();

    if !matches!(ext, "rs") {
        return Ok(());
    }

    let mut needs_fixing = false;
    let f = BufReader::new(File::open(path)?);
    for (i, line) in f.lines().enumerate() {
        let line = line?;
        if line.trim() == "#[repr(packed)]" {
            needs_fixing = true;

            let msg = format!("#[repr(packed)]: {}:{}", path.display(), i + 1);
            if fix {
                log::info!("fixing {}", msg);
            } else {
                log::error!("found {}", msg);
            }
        }
    }

    if fix && needs_fixing {
        let path_fix = &{
            let mut p = path.to_path_buf();
            let ok = p.set_extension(format!("{}.fix", ext));
            assert!(ok);
            p
        };

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

        for line in f.lines() {
            let line = line?;
            if line.trim() == "#[repr(packed)]" {
                let whitespace = line.split('#').next().unwrap();
                writeln!(f_fixed, "{whitespace}#[repr(C, packed)]")?;
            } else {
                writeln!(f_fixed, "{}", line)?;
            }
        }

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

    if needs_fixing && !fix {
        Err(anyhow!(
            "found uses of #[repr(packed)] in {}",
            path.display()
        ))
    } else {
        Ok(())
    }
}