I have a LaunchDaemon written in python that performs a long and resource intensive background task with root privileges. As it works it needs to send status updates to multiple GUI agents (one per logged in user) and I'm struggling to find an appropriate IPC mechanism. Shared objects won't work since the daemon and agents run in a different bootstrap context. I can't have the daemon open a socket, since it's incapable of replying for long periods of time and clients would have to poll for updates. The best I've come up with is for each agent to open its own socket and the daemon writing to each one in turn, but that seems inelegant at best. Are there any other options? Oh, and it must work on Mac OS X 10.5 and up.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I ended up having each GUI agent create a datagram socket under /tmp, and then the launchdaemon sends a message to each one in turn and cleans up stale sockets:
The full implementation can be found at github:
|
|||
|
|