I'm working with daemons in python using the Sander's recipy.
Till now has run fine, but I have to introduce some changes which are drilling my brain. The fact is:
The Sander's daemon way of life creates a new instance of the object everytime you ask for it. Example:
[prompt]> python my_daemon.py start
[prompt]> python my_daemon.py check_whatever (new instance of my_daemon.py is created, but it looks for pid and finally gets the first one.)
Then, looking for the pid used to create the older instance, you can access to it and manage with it.
The situation is: this daemon spawns two threads that continue working after the daemon has performed the start command and is ready for admit another one (remember, a new instance is created). I would like to access to this threads in another command but, I haven't found the way (if there's one).
As far as I researched, with the pid you can only kill or check the daemon, but don't know if is posible to get the objects (ergo, the threads) created by that instance.
Open questions:
-If I can recover the process from its pid, can I also access to its objects?
-Do I have to consider convert this threads to subprocess in order to keep them alive after, its main thread has finished (or is still waiting)?