Skip to content

Commit

Permalink
refactor pipe script and improve debug mode (#201)
Browse files Browse the repository at this point in the history
* refactor pipe script

* fix indents

---------

Co-authored-by: lukasz.dzwoniarek <[email protected]>
  • Loading branch information
lukdz and lukaszdzwoniarek authored Aug 22, 2023
1 parent 5bcb8ab commit df881d5
Showing 1 changed file with 20 additions and 15 deletions.
35 changes: 20 additions & 15 deletions apps/scripts/pipe
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@

#main function that ends up being called by this client
function do_curl() {
curlCommand="curl -u $user -s $verbose -S $opts $server$uri"
if [ "$pipe_debug" ]; then
echo "$curlCommand"
set -x
fi
eval "$curlCommand"
curl \
--user $user \
--show-error --silent \
$verbose \
--form "$cmd" \
$opts \
$server$uri
}

#function to generate transform arg1=val1,arg2=val2 into {"arg1":"val1","arg2":"val2"}
Expand Down Expand Up @@ -66,8 +71,8 @@ if [ -z "$uri" ]; then
uri=/apps/dx/scripts/exec.$ext
fi
if [ -z "$verbose" ]; then
verbose=" --fail "
pipe_debug=1
verbose="--fail"
pipe_debug=true
fi

while [ $# -gt 0 ]; do
Expand All @@ -89,13 +94,13 @@ while [ $# -gt 0 ]; do
h) show_help; exit ;;
s) server=$2; shift ;;
u) user=$2; shift ;;
v) verbose=' -v '; shift ;;
d) opts="-F dryRun=true $opts";;
b) opts="-F bindings='`generate_json "$2"`' $opts"; shift ;;
v) verbose="--verbose"; shift ;;
d) opts="--form dryRun=true $opts";;
b) opts="--form bindings='$(generate_json "$2")' $opts"; shift ;;
c) uri=/apps/dx/scripts/exec.csv ;;
n) opts="-F size=$2 $opts"; shift ;;
f) opts="-F pipes_inputFile=@$2"; shift ;;
o) opts="-F writer=$2 $opts"; shift ;;
n) opts="--form size=$2 $opts"; shift ;;
f) opts="--form pipes_inputFile=@$2"; shift ;;
o) opts="--form writer=$2 $opts"; shift ;;
*) userfail "Unrecognized option." ;;
esac
done
Expand All @@ -107,9 +112,9 @@ while [ $# -gt 0 ]; do
done

if [ -f "$cmd" ]; then
opts="-F pipe_cmdfile=@$cmd $opts"
do_curl
cmd="pipe_cmdfile=@$cmd"
else
opts="-F pipe_cmd=\"$cmd\" $opts"
do_curl
cmd="pipe_cmd=$cmd"
fi

do_curl

0 comments on commit df881d5

Please sign in to comment.