// Copyright: Ankitects Pty Ltd and contributors // License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html use maplit::hashmap; use crate::{ action::BuildAction, archives::{download_and_extract, with_exe, OnlineArchive, Platform}, hash::simple_hash, input::BuildInput, inputs, }; pub fn protoc_archive(platform: Platform) -> OnlineArchive { match platform { Platform::LinuxX64 => { OnlineArchive { url: "https://github.com/protocolbuffers/protobuf/releases/download/v21.8/protoc-21.8-linux-x86_64.zip", sha256: "f90d0dd59065fef94374745627336d622702b67f0319f96cee894d41a974d47a", } } Platform::LinuxArm => { OnlineArchive { url: "https://github.com/protocolbuffers/protobuf/releases/download/v21.8/protoc-21.8-linux-aarch_64.zip", sha256: "f3d8eb5839d6186392d8c7b54fbeabbb6fcdd90618a500b77cb2e24faa245cad", } } Platform::MacX64 | Platform::MacArm => { OnlineArchive { url: "https://github.com/protocolbuffers/protobuf/releases/download/v21.8/protoc-21.8-osx-universal_binary.zip", sha256: "e3324d3bc2e9bc967a0bec2472e0ec73b26f952c7c87f2403197414f780c3c6c", } } Platform::WindowsX64 => { OnlineArchive { url: "https://github.com/protocolbuffers/protobuf/releases/download/v21.8/protoc-21.8-win64.zip", sha256: "3657053024faa439ff5f8c1dd2ee06bac0f9b9a3d660e99944f015a7451e87ec", } } } } fn clang_format_archive(platform: Platform) -> OnlineArchive { match platform { Platform::LinuxX64 => { OnlineArchive { url: "https://github.com/ankitects/clang-format-binaries/releases/download/anki-2021-01-09/clang-format_linux_x86_64.zip", sha256: "64060bc4dbca30d0d96aab9344e2783008b16e1cae019a2532f1126ca5ec5449", } } Platform::LinuxArm => { // todo: replace with arm64 binary OnlineArchive { url: "https://github.com/ankitects/clang-format-binaries/releases/download/anki-2021-01-09/clang-format_linux_x86_64.zip", sha256: "64060bc4dbca30d0d96aab9344e2783008b16e1cae019a2532f1126ca5ec5449", } } Platform::MacX64 | Platform::MacArm => { OnlineArchive { url: "https://github.com/ankitects/clang-format-binaries/releases/download/anki-2021-01-09/clang-format_macos_x86_64.zip", sha256: "238be68d9478163a945754f06a213483473044f5a004c4125d3d9d8d3556466e", } } Platform::WindowsX64 => { OnlineArchive { url: "https://github.com/ankitects/clang-format-binaries/releases/download/anki-2021-01-09/clang-format_windows_x86_64.zip", sha256: "7d9f6915e3f0fb72407830f0fc37141308d2e6915daba72987a52f309fbeaccc", } } } } pub struct ClangFormat { pub inputs: BuildInput, pub check_only: bool, } impl BuildAction for ClangFormat { fn command(&self) -> &str { "$clang-format --style=google $args $in" } fn files(&mut self, build: &mut impl crate::build::FilesHandle) { build.add_inputs("clang-format", inputs![":extract:clang-format:bin"]); build.add_inputs("in", &self.inputs); let (args, mode) = if self.check_only { ("--dry-run -ferror-limit=1 -Werror", "check") } else { ("-i", "fix") }; build.add_variable("args", args); let hash = simple_hash(&self.inputs); build.add_output_stamp(format!("tests/clang-format.{mode}.{hash}")); } fn on_first_instance(&self, build: &mut crate::Build) -> crate::Result<()> { let binary = with_exe("clang-format"); download_and_extract( build, "clang-format", clang_format_archive(build.host_platform), hashmap! { "bin" => [binary] }, ) } }