mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
64 lines
No EOL
1.4 KiB
Bash
Executable file
64 lines
No EOL
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# usage: check_void.sh -c func.txt <file or directory>
|
|
# Example: check_void.sh -c func.txt -f TDengine/source
|
|
# Example: check_void.sh -c func.txt -f TDengine/source/util/src/ttimer.c
|
|
|
|
while getopts "c:f:h" arg
|
|
do
|
|
case "$arg" in
|
|
c)
|
|
func_list_file=$OPTARG
|
|
;;
|
|
f)
|
|
source_file=$OPTARG
|
|
;;
|
|
h)
|
|
echo "Usage: -c [function list file] "
|
|
echo " -f [source file or directory] "
|
|
echo " -h help"
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Invalid option: -$OPTARG"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# echo "funclist list configuration file: $func_list_file"
|
|
|
|
if [ ! -e "$func_list_file" ] || [ ! -r "$func_list_file" ]
|
|
then
|
|
echo "$func_list_file doesn't exist or is not readable"
|
|
fi
|
|
|
|
# cat $func_list_file
|
|
|
|
grep_string=""
|
|
separator="\|"
|
|
|
|
while read -r line
|
|
do
|
|
# echo "current function: $line"
|
|
tmp="$grep_string"
|
|
grep_string="$tmp$line$separator"
|
|
# echo "grep_string: $grep_string"
|
|
done < $func_list_file
|
|
|
|
# echo "${grep_string:1:-2}"
|
|
|
|
# echo "We are going to check (void) function invocation in $*"
|
|
|
|
grep -Rn "${grep_string:1:-2}" $source_file |grep -v "test" > ./check_void_result.txt
|
|
|
|
if [ -s ./check_void_result.txt ]
|
|
then
|
|
failed_number=$(cat ./check_void_result.txt|wc -l )
|
|
echo "Found $failed_number (void) function invocation in $source_file:"
|
|
cat ./check_void_result.txt
|
|
exit 1
|
|
else
|
|
echo "No (void) function invocation in $source_file"
|
|
exit 0
|
|
fi |