spow
This commit is contained in:
parent
4798d25b91
commit
0885fe0e60
2 changed files with 49 additions and 16 deletions
63
s+ow
63
s+ow
|
@ -211,15 +211,13 @@ notify() {
|
||||||
}
|
}
|
||||||
|
|
||||||
notify_end() {
|
notify_end() {
|
||||||
# $1 is s+ow status (0, 1, 2)
|
# $1 is done tuple
|
||||||
# $2 is termux-location run number
|
# $2 is sharetext
|
||||||
# $3 is sent type (0, 1, 2)
|
|
||||||
# $4 is sharetext
|
|
||||||
termux-notification \
|
termux-notification \
|
||||||
--priority "min" \
|
--priority "min" \
|
||||||
--id "s+ow" \
|
--id "s+ow" \
|
||||||
--title "surplus on wheels" \
|
--title "surplus on wheels" \
|
||||||
--content "$(printf 'Run has finished. (%d, %d, %d)\n\n%s' "$1" "$2" "$3" "$4")"
|
--content "$(printf 'Run has finished. %s\n\n%s' "$1" "$2")"
|
||||||
}
|
}
|
||||||
|
|
||||||
# program functions
|
# program functions
|
||||||
|
@ -233,6 +231,21 @@ run() {
|
||||||
printf "[run! stdout (%s)]\n" "$(date)" >>"$SPOW_SESH_OUT"
|
printf "[run! stdout (%s)]\n" "$(date)" >>"$SPOW_SESH_OUT"
|
||||||
printf "[run! stderr (%s)]\n" "$(date)" >>"$SPOW_SESH_ERR"
|
printf "[run! stderr (%s)]\n" "$(date)" >>"$SPOW_SESH_ERR"
|
||||||
|
|
||||||
|
time_run_start="$(date +%s)"
|
||||||
|
|
||||||
|
# if cron: wait until its the new hour
|
||||||
|
if [ -n "$SPOW_CRON" ]; then
|
||||||
|
notify "Waiting for the 30th second to pass..."
|
||||||
|
printf "waiting for the 30th second to pass...\n"
|
||||||
|
while [ "$(date +'%S')" -lt 30 ]; do
|
||||||
|
printf " $(date)\n"
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
printf "proceeding\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
time_locate_start="$(date +%s)"
|
||||||
|
|
||||||
# termux-location
|
# termux-location
|
||||||
location=""
|
location=""
|
||||||
for locate_run in 1 2 3; do # run three times in case :p
|
for locate_run in 1 2 3; do # run three times in case :p
|
||||||
|
@ -252,6 +265,11 @@ run() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
time_locate_end="$(date +%s)"
|
||||||
|
time_locate=$((time_locate_end - time_locate_start))
|
||||||
|
|
||||||
|
time_surplus_start="$(date +%s)"
|
||||||
|
|
||||||
# surplus
|
# surplus
|
||||||
printf "running surplus... "
|
printf "running surplus... "
|
||||||
notify "Running surplus -td $location"
|
notify "Running surplus -td $location"
|
||||||
|
@ -270,22 +288,28 @@ run() {
|
||||||
printf "skipped\n"
|
printf "skipped\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
time_surplus_end="$(date +%s)"
|
||||||
|
time_surplus=$((time_surplus_end - time_surplus_start))
|
||||||
|
|
||||||
# if cron: wait until its the new hour
|
# if cron: wait until its the new hour
|
||||||
if [ -n "$SPOW_CRON" ]; then
|
if [ -n "$SPOW_CRON" ]; then
|
||||||
|
notify "Waiting for the new hour..."
|
||||||
printf "waiting until the new hour...\n"
|
printf "waiting until the new hour...\n"
|
||||||
while [ "$(date +'%M')" -eq 59 ]; do
|
while [ "$(date +'%M')" -eq 59 ]; do
|
||||||
printf " $(date)\n"
|
printf " $(date)\n"
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
printf "done\n"
|
printf "proceeding\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
time_sendmsg_start="$(date +%s)"
|
||||||
|
|
||||||
# mdtest/send message
|
# mdtest/send message
|
||||||
printf "sending message(s)... "
|
printf "sending message(s)... "
|
||||||
notify "Sending message(s)"
|
notify "Sending message(s)"
|
||||||
sent_type=0 # 0 for freshly made sharetext
|
sent_type=0 # 0 for freshly made sharetext
|
||||||
# 1 for recycling a last location
|
# 1 for recycling a last location
|
||||||
# 2 for using fallback template
|
# 2 for using fallback template
|
||||||
sharetext=""
|
sharetext=""
|
||||||
if [ "$status" -eq 0 ]; then
|
if [ "$status" -eq 0 ]; then
|
||||||
# s+ow has behaved nominally until now, send as per normal
|
# s+ow has behaved nominally until now, send as per normal
|
||||||
|
@ -308,18 +332,24 @@ run() {
|
||||||
printf "using fallback... \n"
|
printf "using fallback... \n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# send done info except
|
||||||
|
printf "(%d, %d, %d) [lc:%ds sp:%ds]\n" "$status" "$locate_run" "$sent_type" "$time_locate" "$time_surplus" >>"$SPOW_SESH_ERR"
|
||||||
|
|
||||||
send "$JID_NOMINAL_TARGET" "$sharetext"
|
send "$JID_NOMINAL_TARGET" "$sharetext"
|
||||||
send "$JID_ERRORED_TARGET" "$(cat "$SPOW_SESH_ERR")"
|
send "$JID_ERRORED_TARGET" "$(cat "$SPOW_SESH_ERR")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done_msg="$(printf "done (%d, %d, %d)\n" "$status" "$locate_run" "$sent_type")"
|
time_sendmsg_end="$(date +%s)"
|
||||||
echo "$done_msg"
|
time_sendmsg=$((time_sendmsg_end - time_sendmsg_start))
|
||||||
echo "$done_msg" >>"$SPOW_SESH_ERR"
|
|
||||||
|
time_run_end="$(date +%s)"
|
||||||
|
time_run=$((time_run_end - time_run_start))
|
||||||
|
|
||||||
|
done_info="$(printf "(%d, %d, %d) [lc:%ds sp:%ds sm:%ds - %ds]\n" "$status" "$locate_run" "$sent_type" "$time_locate" "$time_surplus" "$time_sendmsg" "$time_run")"
|
||||||
|
echo "done $done_info" | tee -a "$SPOW_SESH_ERR"
|
||||||
|
|
||||||
# cleanup
|
# cleanup
|
||||||
printf "%s\n\n" "$(cat "$SPOW_SESH_OUT")" >>"$SPOW_WEEK_OUT"
|
notify_end "$done_info" "$sharetext"
|
||||||
printf "%s\n\n" "$(cat "$SPOW_SESH_ERR")" >>"$SPOW_WEEK_ERR"
|
|
||||||
notify_end "$status" "$locate_run" "$sent_type" "$sharetext"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# script entry
|
# script entry
|
||||||
|
@ -344,3 +374,6 @@ choices
|
||||||
$0
|
$0
|
||||||
run surplus on wheels normally"
|
run surplus on wheels normally"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
printf "%s\n\n" "$(cat "$SPOW_SESH_OUT")" >>"$SPOW_WEEK_OUT"
|
||||||
|
printf "%s\n\n" "$(cat "$SPOW_SESH_ERR")" >>"$SPOW_WEEK_ERR"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
sv-enable crond
|
sv-enable crond
|
||||||
printf "59 * * * *\t(sleep 30; JID_NOMINAL_TARGET=\"\" JID_ERRORED_TARGET=\"\" LOCATION_PRIORITISE_NETWORK=n SPOW_CRON=y ~/.local/bin/s+ow)\n" | crontab -
|
printf "59 * * * *\tJID_NOMINAL_TARGET=\"\" JID_ERRORED_TARGET=\"\" LOCATION_PRIORITISE_NETWORK=n SPOW_CRON=y ~/.local/bin/s+ow\n" | crontab -
|
||||||
crontab -e
|
crontab -e
|
||||||
|
|
Loading…
Add table
Reference in a new issue