4cade/bin/buildindexedfile.sh
2021-10-23 01:20:34 -04:00

84 lines
2.7 KiB
Bash
Executable File

#!/bin/bash
# flags
# -a append to data file (default off = truncate)
# -p pad sizes within data file to next block size (default off)
# parameters
# stdin - input containing list of effects (probably FX.CONF or DFX.CONF)
# 1 - output filename for index file
# 2 - output filename for data file
# 3 - input directory of files to merge into data file
pad=false
append=false
standardoffset=0
standardsize=0
while getopts ":ap" opt; do
case $opt in
a) append=true
;;
p) pad=true
;;
esac
done
shift $((OPTIND-1))
if [ "$append" = false ]; then
rm -f "$2"
fi
touch "$2"
# if there is a file called "STANDARD" in the input directory, add it now
# because we will reuse it for any files that don't exist
if [ -f "$3"/STANDARD ]; then
standardoffset=$(wc -c < "$2")
standardsize=$(wc -c < "$3/STANDARD")
cat "$3"/STANDARD >> "$2"
fi
# make temp file with list of lines that contain keys
records=$(mktemp)
awk '!/^$|^#|^\[/' > "$records"
# make temp assembly source file that represents the binary OKVS data structure
source=$(mktemp)
(echo "*=0" # dummy program counter for assembler
echo "!le16 $(wc -l <"$records"), 0" # OKVS header
while IFS="=" read -r key value; do
echo "!byte ${#key}+7" # OKVS record length
echo "!byte ${#key}" # OKVS key length
echo "!text \"$key\"" # OKVS key
if [ -f "$3/$key" ]; then # if file exists, determine offset and size
offset=$(wc -c < "$2")
echo "!be24 $offset" # offset into merged data file
echo -n "!le16 "
size=$(wc -c < "$3/$key")
if [ "$pad" = true ]; then
# If offset+size does not cross a block boundary, use file's true size.
# Otherwise, round up size to the next block boundary.
# This padding does not get added to the file; it is just an
# optimization to avoid a partial copy on the last block read.
if [ $(($offset / 512)) -eq $((($offset + $size) / 512)) ]; then
echo "$size"
else
echo "$(((($offset + $size + 511) & -512) - $offset))"
fi
else
# Caller said never pad, so always use file's true size.
echo "$size"
fi
cat "$3/$key" >> "$2" # append this file to the end of the merged data file
else # if file does not exist, reuse STANDARD file
echo "!be24 $standardoffset"
echo "!le16 $standardsize"
fi
done < "$records") > "$source"
# assemble temp source file to create binary OKVS data structure
acme -o "$1" "$source"
# clean up
rm "$source"
rm "$records"