fix bashscript: add --help option

This commit is contained in:
bolero-MURAKAMI 2013-09-23 18:56:57 +09:00
parent 12838cc11a
commit 63757a9105
2 changed files with 93 additions and 36 deletions

View file

@ -14,33 +14,34 @@ user_macros=()
declare -a include_paths declare -a include_paths
include_paths=() include_paths=()
force=0 force=0
use_help=0
declare -A version_specific_options declare -A version_specific_options
version_specific_options=( version_specific_options=(
[clang-3.3]="-ftemplate-depth=512" [clang-3.3]="-ftemplate-depth=512"
) )
compile() { compile() {
echo ": $1-$2 compile..." echo "$1-$2 compile..."
/usr/local/$1-$2/bin/${1/%cc}++ -Wall -pedantic -std=c++11 -o ${stagedir}/test_$1${2//.} $4 $3 /usr/local/$1-$2/bin/${1/%cc}++ -Wall -pedantic -std=c++11 -o ${stagedir}/test_$1${2//.} $4 $3
let "succ_$1${2//.}=$?" let "succ_$1${2//.}=$?"
} }
execute() { execute() {
if eval [ \$succ_$1${2//.} -eq 0 ]; then if eval [ \$succ_$1${2//.} -eq 0 ]; then
echo ": $1-$2 compile succeeded." echo "$1-$2 compile succeeded."
if ${stagedir}/test_$1${2//.}; then if ${stagedir}/test_$1${2//.}; then
echo ": $1-$2 execute succeeded." echo "$1-$2 execute succeeded."
else else
echo >&2 -e ": \e[31m$1-$2 execute failed.\e[m" echo >&2 "$1-$2 execute failed."
fi fi
else else
echo >&2 -e ": \e[31m$1-$2 compile failed.\e[m" echo >&2 "$1-$2 compile failed."
fi fi
} }
args=`getopt -o S:D:I:f -l stagedir:,gcc-version:,clang-version:,define:,include:,force -- "$@"` args=`getopt -o S:D:I:f -l stagedir:,gcc-version:,clang-version:,define:,include:,force,help -- "$@"`
if [ "$?" -ne 0 ]; then if [ "$?" -ne 0 ]; then
echo >&2 -e ": \e[31musage: $0 [-S|--stagedir=path] [--gcc-version=versions] [--clang-version=versions] [-D|--define=identifier]* [-I|--include=path]* [-f|-force]\e[m" echo >&2 "error: options parse error. see 'test.sh --help'"
exit 1 exit 1
fi fi
eval set -- ${args} eval set -- ${args}
@ -52,25 +53,49 @@ while [ -n "$1" ]; do
-D|--define) user_macros=(${user_macros[@]} "$2"); shift 2;; -D|--define) user_macros=(${user_macros[@]} "$2"); shift 2;;
-I|--include) include_paths=(${include_paths[@]} "$2"); shift 2;; -I|--include) include_paths=(${include_paths[@]} "$2"); shift 2;;
-f|--force) force=1; shift;; -f|--force) force=1; shift;;
--help) use_help=1; shift;;
--) shift; break;; --) shift; break;;
*) echo >&2 -e ": \e[31munknown option($1) used.\e[m"; exit 1;; *) echo >&2 "error: unknown option($1) used."; exit 1;;
esac esac
done done
echo ": settings"
echo ": stagedir = \"${stagedir}\"" if [ ${use_help} -ne 0 ]; then
echo ": gcc-version = (${gcc_version})" echo "help:"
echo ": clang-version = (${clang_version})" echo ""
echo " -S, --stagedir=<directory> Output files here."
echo " Default; testspr"
echo ""
echo " --gcc-version=<value> Indicates gcc version."
echo " Default; 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0 4.8.1"
echo ""
echo " --clang-version=<value> Indicates clang version."
echo " Default; 3.2 3.3"
echo ""
echo " -D, --define=<identifier> Define macro for preprocessor."
echo ""
echo " -I, --include=<directory> Add system include path."
echo ""
echo " -f, --force Allow overwrite of <stagedir>."
echo ""
echo " --help This message."
exit 0
fi
echo "settings:"
echo " stagedir = \"${stagedir}\""
echo " gcc-version = (${gcc_version})"
echo " clang-version = (${clang_version})"
if [ ${#user_macros[*]} -gt 0 ]; then if [ ${#user_macros[*]} -gt 0 ]; then
echo ": user-macros = (${user_macros[*]})" echo " user-macros = (${user_macros[*]})"
fi fi
if [ ${#include_paths[*]} -gt 0 ]; then if [ ${#include_paths[*]} -gt 0 ]; then
echo ": include-paths = (${include_paths[*]})" echo " include-paths = (${include_paths[*]})"
fi fi
echo ": force = ${force}" echo " force = ${force}"
if [ -d "${stagedir}" ]; then if [ -d "${stagedir}" ]; then
if [ ${force} -eq 0 ]; then if [ ${force} -eq 0 ]; then
echo >&2 -e ": \e[31mstagedir(${stagedir}) already exists.\e[m" echo >&2 "error: stagedir(${stagedir}) already exists."
exit 1 exit 1
else else
rm -f -r ${stagedir}/* rm -f -r ${stagedir}/*

View file

@ -20,10 +20,11 @@ user_macros=()
declare -a include_paths declare -a include_paths
include_paths=() include_paths=()
force=0 force=0
use_help=0
args=`getopt -o s:S:w:h:W:H:D:I:f -l source:,stagedir:,width:,height:,tile-width:,tile-height:,define:,include:,force -- "$@"` args=`getopt -o s:S:w:h:W:H:D:I:f -l source:,stagedir:,width:,height:,tile-width:,tile-height:,define:,include:,force,help -- "$@"`
if [ "$?" -ne 0 ]; then if [ "$?" -ne 0 ]; then
echo >&2 -e ": \e[31musage: $0 [-s|--source=file] [-S|--stagedir=path] [-w|--width=value] [-h|--height=value] [-W|--tile-width=value] [-H|--tile-height=value] [-D|--define=identifier]* [-I|--include=path]* [-f|-force]\e[m" echo >&2 "error: options parse error. see 'darkcult.sh --help'"
exit 1 exit 1
fi fi
eval set -- ${args} eval set -- ${args}
@ -38,34 +39,65 @@ while [ -n "$1" ]; do
-D|--define) user_macros=(${user_macros[@]} "$2"); shift 2;; -D|--define) user_macros=(${user_macros[@]} "$2"); shift 2;;
-I|--include) include_paths=(${include_paths[@]} "$2"); shift 2;; -I|--include) include_paths=(${include_paths[@]} "$2"); shift 2;;
-f|--force) force=1; shift;; -f|--force) force=1; shift;;
--help) use_help=1; shift;;
--) shift; break;; --) shift; break;;
*) echo >&2 -e ": \e[31munknown option($1) used.\e[m"; exit 1;; *) echo >&2 "error: unknown option($1) used."; exit 1;;
esac esac
done done
echo ": settings" if [ ${use_help} -ne 0 ]; then
echo ": source = \"${src}\"" echo "help:"
echo ": stagedir = \"${stagedir}\"" echo ""
echo ": width = ${width}" echo " -s, --source=<file> Indicates the source file."
echo ": height = ${height}" echo ""
echo ": tile-width = ${tile_width}" echo " -S, --stagedir=<directory> Output files here."
echo ": tile-height = ${tile_height}" echo " Default; darkroom"
echo ""
echo " -w, --width=<value> Output width of rendering."
echo " Default; 16"
echo ""
echo " -h, --height=<value> Output height of rendering."
echo " Default; 16"
echo ""
echo " -W, --tile-width=<value> Output width of divided rendering."
echo " Default; 16"
echo ""
echo " -H, --tile-height=<value> Output height of divided rendering."
echo " Default; 16"
echo ""
echo " -D, --define=<identifier> Define macro for preprocessor."
echo ""
echo " -I, --include=<directory> Add system include path."
echo ""
echo " -f, --force Allow overwrite of <stagedir>."
echo ""
echo " --help This message."
exit 0
fi
echo "settings:"
echo " source = \"${src}\""
echo " stagedir = \"${stagedir}\""
echo " width = ${width}"
echo " height = ${height}"
echo " tile-width = ${tile_width}"
echo " tile-height = ${tile_height}"
if [ ${#user_macros[*]} -gt 0 ]; then if [ ${#user_macros[*]} -gt 0 ]; then
echo ": user-macros = (${user_macros[*]})" echo " user-macros = (${user_macros[*]})"
fi fi
if [ ${#include_paths[*]} -gt 0 ]; then if [ ${#include_paths[*]} -gt 0 ]; then
echo ": include-paths = (${include_paths[*]})" echo " include-paths = (${include_paths[*]})"
fi fi
echo ": force = ${force}" echo " force = ${force}"
if [ ! -f "${src}" -a ! -f "$(cd $(dirname $0); pwd)/${src}" ]; then if [ ! -f "${src}" -a ! -f "$(cd $(dirname $0); pwd)/${src}" ]; then
echo >&2 -e ": \e[31msource(${src}) not exists.\e[m" echo >&2 "error: source(${src}) not exists."
exit 1 exit 1
fi fi
if [ -d "${stagedir}" ]; then if [ -d "${stagedir}" ]; then
if [ ${force} -eq 0 ]; then if [ ${force} -eq 0 ]; then
echo >&2 -e ": \e[31mstagedir(${stagedir}) already exists.\e[m" echo >&2 "error: stagedir(${stagedir}) already exists."
exit 1 exit 1
else else
rm -f -r ${stagedir}/* rm -f -r ${stagedir}/*
@ -82,11 +114,11 @@ for include_path in ${include_paths}; do
include_options="${include_options} -I${include_path}" include_options="${include_options} -I${include_path}"
done done
echo ": start." echo "start."
start=${SECONDS} start=${SECONDS}
for ((y=0; y<height; y+=tile_height)); do for ((y=0; y<height; y+=tile_height)); do
echo ": rendering(${y}/${height})..." echo "rendering(${y}/${height})..."
y_start=${SECONDS} y_start=${SECONDS}
for ((x=0; x<width; x+=tile_width)); do for ((x=0; x<width; x+=tile_width)); do
@ -109,7 +141,7 @@ for ((y=0; y<height; y+=tile_height)); do
popd > /dev/null popd > /dev/null
let "y_elapsed=${SECONDS}-${y_start}" let "y_elapsed=${SECONDS}-${y_start}"
echo ": elapsed = ${y_elapsed}s" echo " elapsed = ${y_elapsed}s"
done done
pushd ${stagedir} > /dev/null pushd ${stagedir} > /dev/null
#convert -append $(ls *.ppm | sort -n) out.ppm #convert -append $(ls *.ppm | sort -n) out.ppm
@ -117,5 +149,5 @@ pnmcat -tb $(ls *.ppm | sort -n) > out.ppm
popd > /dev/null popd > /dev/null
let "elapsed=${SECONDS}-${start}" let "elapsed=${SECONDS}-${start}"
echo ": elapsed(total) = ${elapsed}s" echo "elapsed(total) = ${elapsed}s"
echo ": finished." echo "finished."