blob: 5d697750e0b1ff591bd9cca056a03bbf5cc84009 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2024 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
"""Substitute a template file with variables from bazel workspace status."""
import argparse
import string
import sys
from typing import TextIO
def _load_status_file(file: TextIO) -> dict[str, str]:
"""Load a bazel status file.
E.g. bazel-out/stable-status.txt and volatile-status.txt.
Args:
file: The open status file handle to be read.
Returns:
A dictionary of key => value pairs (both strings) read from the file.
If the value is missing, and empty string is provided.
"""
result = {}
for line in file:
line = line.strip()
parts = line.split(maxsplit=1)
key = parts[0]
value = parts[1] if len(parts) >= 2 else ""
result[key] = value
return result
def _parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser()
parser.add_argument(
"--status-file",
action="append",
dest="status_files",
type=argparse.FileType("r"),
help="A bazel status file, e.g. bazel-out/stable-status.txt",
)
parser.add_argument(
"template",
type=argparse.FileType("r"),
help="The input template file whose $(VARIABLES) are to be expanded.",
)
parser.add_argument(
"out",
type=argparse.FileType("w"),
nargs="?",
default=sys.stdout,
help="The output file to which the expanded template is written.",
)
args = parser.parse_args()
if len(args.status_files) < 1:
parser.error("At least one --status-file is required")
return args
def main():
args = _parse_args()
# Load all of the status files, merging them into a single dictionary.
replacements: dict[str, str] = {}
for status_file in args.status_files:
with status_file:
replacements.update(_load_status_file(status_file))
# Load the template input file.
with args.template as file:
template = string.Template(args.template.read())
# Expand the variables in the template.
try:
result = template.substitute(replacements)
except KeyError as err:
raise SystemExit(f"Invalid key found in input file: {err}")
# Write the result to the output file.
args.out.write(result)
if __name__ == "__main__":
main()