I am trying to do work in all subfolders in parallel and describe a status per folder once it is done in bash
.
suppose I have a work
function which can return a couple of statuses
#param #1 is the folder
# can return 1 on fail, 2 on sucess, 3 on nothing happend
work(){
cd $1
// some update thing
return 1, 2, 3
}
now I call this in my wrapper function
do_work(){
while read -r folder; do
tput cup "${row}" 20
echo -n "${folder}"
(
ret=$(work "${folder}")
tput cup "${row}" 0
[[ $ret -eq 1 ]] && echo " \e[0;31mupdate failed \uf00d\e[0m"
[[ $ret -eq 2 ]] && echo " \e[0;32mupdated \uf00c\e[0m"
[[ $ret -eq 3 ]] && echo " \e[0;32malready up to date \uf00c\e[0m"
) &>/dev/null
pids+=("${!}")
((++row))
done < <(find . -maxdepth 1 -mindepth 1 -type d -printf "%f\n" | sort)
echo "waiting for pids ${pids[*]}"
wait "${pids[@]}"
}
and what I want is, that it prints out all the folders per line, and updates them independently from each other in parallel and when they are done, I want that status to be written in that line.
However, I am unsure subshell is writing, which ones I need to capture how and so on.
My attempt above is currently not writing correctly, and not in parallel.
If I get it to work in parallel, I get those [1] <PID>
things and [1] + 3156389 done ...
messing up my screen.
If I put the work itself in a subshell, I don't have anything to wait
for.
If I then collect the pids I dont get the response code to print out the text to show the status.
I did have a look at GNU Parallel but I think I cannot have that behaviour. (I think I could hack it that the finished jobs are printed, but I want all 'running' jobs are printed, and the finished ones get amended).
Assumptions/undestandings:
The general idea is to setup a means of interprocess communications (
IC
) ... named pipe, normal file, queuing/messaging system, sockets (plenty of ideas available via a web search onbash interprocess communications
); the children write to this system while the parent reads from the system and issues the appropriatetput
commands.One very simple example using a normal file:
NOTES:
(child_func 3 &)
construct is one way to eliminate the OS message re: 'background process completed' from showing up in stdout (there may be other ways but I'm drawing a blank at the moment)flock
?) to insure messages from multiple children don't stomp each otherstatus.msgs
in conjunction with parsing logic in the parent'swhile
looptput el
on the end of each printed message in order to 'erase' any characters leftover from a previous/longer message<id>:done
, or keeping track of the number of children still running in the background, or ...Running this at my command line generates 3 separate lines of output that are updated at various times (based on the
sleep $1
):NOTE: comments not actually displayed in console