Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SPDX headers #1532

Merged
merged 8 commits into from
Feb 7, 2025
Merged

Conversation

nicholasbishop
Copy link
Member

  • The first commit adds SPDX headers to the two generated source files.
  • The second commit adds xtask code for checking/adding SPDX headers.
  • The next five commits add the SPDX headers to uefi-macros, uefi-raw, uefi-test-runner, uefi, and xtask directories
  • The final commit makes the xtask header check fatal if any headers are missing.

Closes #1511

Checklist

  • Sensible git history (for example, squash "typo" or "fix" commits). See the Rewriting History guide for help.
  • Update the changelog (if necessary)

let paths = std::str::from_utf8(&output.stdout)?.lines();

// Path prefixes that should not be checked/formatted.
let exclude_path_prefixes = [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: This could be a more prominent constant

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

"uefi-macros/tests/ui/",
];

let expected_header = "// SPDX-License-Identifier: MIT OR Apache-2.0\n\n";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe also make this a constant; close to the new constant mentioned above?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

// Paths that are missing the file header (only used in check mode).
let mut missing = Vec::new();

for path in paths {
Copy link
Member

@phip1611 phip1611 Feb 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: this could be written more nice

paths.into_iter()
  .filter(|path| !exclude_path_prefixes.any(|e| e.startsWith(path)))
  .filter(|path| {
    let text = fs_err::read_to_string(path)?;
    !text.startsWith(expected_header)
  })
  .forEach(|missing| /* ... */)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO too much iterator chaining can make things less readable than an imperative loop. I've updated it to move the filtering of excluded paths out of the main loop though, I agree that is little clearer.

Copy link
Member

@phip1611 phip1611 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks for working on this! Left a few remarks

This will be used to verify that source files (just *.rs for now) all have an
SPDX license header. In non-check mode, the license header will be added.

For now, in check mode an error is shown but it's not treated as fatal. Once all
files have been fixed, the error will be made fatal.
@nicholasbishop nicholasbishop added this pull request to the merge queue Feb 7, 2025
Merged via the queue into rust-osdev:main with commit 33c30fc Feb 7, 2025
15 checks passed
@nicholasbishop nicholasbishop deleted the bishop-spdx branch February 7, 2025 18:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add SPDX IDs
2 participants