I have a single-threaded program doing some long-running computing job. The main thread is using the console for some output. I'm considering adding another thread to interact with user to query something like the job progress or process internal state.
Assuming synchronization is properly handled and the user interact with the second thread through something like a command line console (no GUI needed). What is a good way to implement this function? I guess I can make the second thread wait for commands at certain named pipe and let the user connect to this pipe using something like a GNU screen (I'm not sure whether it will work).
Are there any libraries (Java or non-Java) or tools to implement this? My program is running on Linux.