Debug
This commit is contained in:
parent
be4c8b2f37
commit
25e3092887
2 changed files with 57 additions and 14 deletions
|
@ -11,6 +11,8 @@
|
||||||
- Force the removal of a pool with `./pool.sh remove-force <poolname>` all running processes will be killed and the pool will be deleted
|
- Force the removal of a pool with `./pool.sh remove-force <poolname>` all running processes will be killed and the pool will be deleted
|
||||||
- Additional properties can be attach to processes with `./pool.sh setp <poolname> <procid> <propname> <propvalue>` Defaults properties are `<cmd>`,`<procpid>`,`<startat>`.
|
- Additional properties can be attach to processes with `./pool.sh setp <poolname> <procid> <propname> <propvalue>` Defaults properties are `<cmd>`,`<procpid>`,`<startat>`.
|
||||||
- Properties can be retrieve with `./pool.sh getp <poolname> <procid> <propname>`
|
- Properties can be retrieve with `./pool.sh getp <poolname> <procid> <propname>`
|
||||||
|
- Processes in a pool can be paused with `./pool.sh pause <poolname>`
|
||||||
|
- Processes in a pool can be resumed with `./pool.sh resume <poolname>`
|
||||||
- Available pools can be retrieve with `./pool.sh ls`
|
- Available pools can be retrieve with `./pool.sh ls`
|
||||||
- All the processes output file can be retrieve with `./pool.sh ls-output <poolname>`
|
- All the processes output file can be retrieve with `./pool.sh ls-output <poolname>`
|
||||||
|
|
||||||
|
|
69
pool.sh
69
pool.sh
|
@ -30,7 +30,7 @@ write_status() {
|
||||||
}
|
}
|
||||||
|
|
||||||
create_properties() {
|
create_properties() {
|
||||||
file="${POOL}/proc_${procid}"
|
local file="${POOL}/proc_${procid}"
|
||||||
echo cmd=\"${PROC_CMD}\" > "$file"
|
echo cmd=\"${PROC_CMD}\" > "$file"
|
||||||
echo "procpid=${procpid}" >> "$file"
|
echo "procpid=${procpid}" >> "$file"
|
||||||
echo "procid=${procid}" >> "$file"
|
echo "procid=${procid}" >> "$file"
|
||||||
|
@ -38,19 +38,20 @@ create_properties() {
|
||||||
}
|
}
|
||||||
|
|
||||||
setp() {
|
setp() {
|
||||||
file="${POOL}/proc_${procid}"
|
local file="${POOL}/proc_${procid}"
|
||||||
echo $1=$2 >> "$file"
|
sed -i "/${1}=/d" "$file"
|
||||||
|
echo $1=\"$2\" >> "$file"
|
||||||
}
|
}
|
||||||
|
|
||||||
getp() {
|
getp() {
|
||||||
file="${POOL}/proc_${procid}"
|
local file="${POOL}/proc_${procid}"
|
||||||
source "$file"
|
value=$(grep "^$1=" "$file"||:)
|
||||||
echo "${!1}"
|
[ -z "$value" ] && echo "Property $1 not found for process ${procid}" || { echo "$value" | sed "s/^$1=//" | xargs echo; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
create() {
|
create() {
|
||||||
[ -d "$POOL" ] && abort "Pool \"$POOL\" already exists"
|
[ -d "$POOL" ] && abort "Pool \"$POOL\" already exists" || :
|
||||||
mkdir -p "$POOL"
|
mkdir -p "$POOL"
|
||||||
# Write pool status
|
# Write pool status
|
||||||
maxproc=$1
|
maxproc=$1
|
||||||
|
@ -62,7 +63,7 @@ create() {
|
||||||
|
|
||||||
remove() {
|
remove() {
|
||||||
refresh # Refresh process status and load status
|
refresh # Refresh process status and load status
|
||||||
[ $nproc -gt 0 ] && abort "Processes are still running in the pool!"
|
[ $nproc -gt 0 ] && abort "Processes are still running in the pool!" || :
|
||||||
rm -rf "$POOL"
|
rm -rf "$POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,7 +95,7 @@ run() {
|
||||||
procid=$(( lastprocid + 1 ))
|
procid=$(( lastprocid + 1 ))
|
||||||
lastprocid=$procid
|
lastprocid=$procid
|
||||||
startat=$(date +"%s")
|
startat=$(date +"%s")
|
||||||
$PROC_CMD > "$POOL/out_$procid" &
|
$PROC_CMD &> "$POOL/out_$procid" &
|
||||||
procpid=$!
|
procpid=$!
|
||||||
[ -z "$procs" ] && procs="$procpid" || procs="$procs $procpid"
|
[ -z "$procs" ] && procs="$procpid" || procs="$procs $procpid"
|
||||||
write_status # Update status
|
write_status # Update status
|
||||||
|
@ -103,7 +104,7 @@ run() {
|
||||||
}
|
}
|
||||||
|
|
||||||
cat_output() {
|
cat_output() {
|
||||||
file="${POOL}/out_${procid}"
|
local file="${POOL}/out_${procid}"
|
||||||
cat "$file"
|
cat "$file"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,8 +135,31 @@ remove_force() {
|
||||||
rm -rf "$POOL"
|
rm -rf "$POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Ensure pool exists
|
check_pool() {
|
||||||
[ ! "$CMD" == "create" ] && [ ! "$CMD" == "ls" ] && [ ! -d "$POOL" ] && abort "Pool $POOL_ID not found"
|
if [ ! -d "$POOL" ]; then abort "Pool ${POOL_ID} not found"; fi
|
||||||
|
if [ ! -f "$POOL_STATUS" ]; then abort "Pool ${POOL_ID} corrupted: status file not found"; fi
|
||||||
|
if [ $# -gt 0 ]
|
||||||
|
then
|
||||||
|
[ ! -f "${POOL}/proc_${1}" ] && echo abort "Process $1 does not exists in pool ${POOL_ID}" || :
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
pause() {
|
||||||
|
refresh
|
||||||
|
for proc in $procs
|
||||||
|
do
|
||||||
|
kill -STOP $proc
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
resume() {
|
||||||
|
refresh
|
||||||
|
for proc in $procs
|
||||||
|
do
|
||||||
|
kill -CONT $proc
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Launch command
|
# Launch command
|
||||||
case "$CMD" in
|
case "$CMD" in
|
||||||
|
@ -143,37 +167,54 @@ case "$CMD" in
|
||||||
create $1
|
create $1
|
||||||
;;
|
;;
|
||||||
"remove")
|
"remove")
|
||||||
|
check_pool
|
||||||
remove
|
remove
|
||||||
;;
|
;;
|
||||||
"run")
|
"run")
|
||||||
|
check_pool
|
||||||
run
|
run
|
||||||
;;
|
;;
|
||||||
"cat")
|
"cat")
|
||||||
|
check_pool $1
|
||||||
procid=$1
|
procid=$1
|
||||||
refresh
|
refresh
|
||||||
[ $procid -gt $lastprocid ] && abort "Processus $procid not found"
|
[ $procid -gt $lastprocid ] && abort "Processus $procid not found" || cat_output
|
||||||
cat_output
|
|
||||||
;;
|
;;
|
||||||
"ls-output")
|
"ls-output")
|
||||||
|
check_pool
|
||||||
list_output
|
list_output
|
||||||
;;
|
;;
|
||||||
"ls")
|
"ls")
|
||||||
|
check_pool
|
||||||
list_pool
|
list_pool
|
||||||
;;
|
;;
|
||||||
"wait")
|
"wait")
|
||||||
|
check_pool
|
||||||
wait_pool
|
wait_pool
|
||||||
;;
|
;;
|
||||||
"remove-force")
|
"remove-force")
|
||||||
|
check_pool
|
||||||
remove_force
|
remove_force
|
||||||
;;
|
;;
|
||||||
"setp")
|
"setp")
|
||||||
|
check_pool $1
|
||||||
procid=$1
|
procid=$1
|
||||||
setp $2 $3
|
setp $2 $3
|
||||||
;;
|
;;
|
||||||
"getp")
|
"getp")
|
||||||
|
check_pool $1
|
||||||
procid=$1
|
procid=$1
|
||||||
getp $2
|
getp $2
|
||||||
;;
|
;;
|
||||||
|
"pause")
|
||||||
|
check_pool
|
||||||
|
pause
|
||||||
|
;;
|
||||||
|
"resume")
|
||||||
|
check_pool
|
||||||
|
resume
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
abort "Command $CMD unknown"
|
abort "Command $CMD unknown"
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue