Thanks for the feedback! I appreciate the response...but I guess I was not clear with my desired outcome...I am using this: http://demos.telerik.com/kendo-ui/web/progressbar/index.html. Which will definitely handle everything for me as you suggested with ProgressBar (javascript library).
My main concern is actually with the mechanics of the loop that will supply the updated progress. I need to start execution, then (in a loop) periodically send the progress updates through a web socket message...until the program finishes.
I know I can kick off execution with open3 or run3, and then watch STDOUT from that program...but how do I break out of the loop? I guess I am not very familiar with how those libraries handle the file handles for STDOUT/ERR.
I wonder if something like this would work as intended?
... run3 "somecommand -i somefile -o someoutputfile", $stdout, $stderr; while(my $line = <$stdout>) { if($line =~ m/Progress: (\d+) lines processed/) { # Assume that $ws is the web socket object I have created and will + allow for the message to be sent... $ws->send($1); } }
In reply to Re^2: capture periodic updates from external program
by mabossert
in thread capture periodic updates from external program
by mabossert
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |