blob: e7f65950b089715c88caa39e0a80464ce130ed87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/zsh
verbose=false
if [[ "$1" == "-v" || "$1" == "--verbose" ]]; then
verbose=true
shift
fi
if [[ "$#" -lt 1 ]]; then
echo "too few arguments: $0 [-v|--verbose] FILE_1 [… FILE_N]" >&2
exit -127
fi
echo "WARNING: This script updates header hashes without checking whether the \
underlying functionality changed. If you added or removed any python-bound \
function in the header to this binding file THIS IS NOT THE TOOL YOU SHOULD BE \
USING. Use bindtool instead to generate correct binding code." >&2
errcount=0
patchfile() {
header_fname=$(grep -o -e 'BINDTOOL_HEADER_FILE(\(.*\))' "${1}" | sed 's/BINDTOOL_HEADER_FILE(\(.*\))/\1/')
if [[ -z "$header_fname" ]]; then
echo "WARNING: skipping '$1': no BINDTOOL_HEADER_FILE defined" >&2
return -1
fi
fullp=$(realpath "$1")
folder=$(dirname "${fullp}")
if [[ "${folder}" =~ "gnuradio-runtime" ]]; then
includedir="${folder}/../../../../include/gnuradio/"
else
mod=$(basename $(dirname "${folder}"))
includedir="${folder}/../../../include/gnuradio/${mod}/"
fi
headerp=$(realpath "${includedir}${header_fname}")
$verbose && echo "Include directory: ${includedir}"
$verbose && echo "Full File Path: ${headerp}"
if [[ -r "${headerp}" ]]; then
hhash=$(md5sum "${headerp}" | cut '-d ' -f1)
$verbose && echo "Calculated Hash: ${hhash}"
sed -i "s/BINDTOOL_HEADER_FILE_HASH(.*)/BINDTOOL_HEADER_FILE_HASH(${hhash})/" "$1" && $verbose && echo "success"
else
echo "ERROR: '$1': Header file '${headerp}' not found" >&2
errcount=$(($errcount + 1))
fi
}
for binding in $@; do
patchfile $binding
done
exit $((0 - $errcount))
|