blob: aecab26a38e73112a8bb3e61397afb79620ac269 [file] [log] [blame]
James Kuszmaulf5eb4682023-09-22 17:16:59 -07001#!/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.
9set -uo pipefail; f=bazel_tools/tools/bash/runfiles/runfiles.bash
10source "${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
18BFBS_FILE=$1
19OUT_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}"