James Kuszmaul | f5eb468 | 2023-09-22 17:16:59 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Wrapper script to handle codegen for the static flatbuffer API. The actual |
| 4 | # work is done in calling the generate C++ script, but we also clang-format |
| 5 | # the output headers so that they are not completely unintelligible. |
| 6 | |
| 7 | # --- begin runfiles.bash initialization v2 --- |
| 8 | # Copy-pasted from the Bazel Bash runfiles library v2. |
| 9 | set -uo pipefail; f=bazel_tools/tools/bash/runfiles/runfiles.bash |
| 10 | source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \ |
| 11 | source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null || \ |
| 12 | source "$0.runfiles/$f" 2>/dev/null || \ |
| 13 | source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ |
| 14 | source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \ |
| 15 | { echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e |
| 16 | # --- end runfiles.bash initialization v2 --- |
| 17 | |
| 18 | BFBS_FILE=$1 |
| 19 | OUT_FILE=$2 |
| 20 | |
| 21 | $(rlocation org_frc971/aos/flatbuffers/generate) --reflection_bfbs "${BFBS_FILE}" --output_file "${OUT_FILE}" |
| 22 | $(rlocation llvm_k8/bin/clang-format) --style=file:"$(rlocation org_frc971/.clang-format)" -i "${OUT_FILE}" |