Reorganize PhutilDaemon into Overseers, Pools and Daemons in libphutil
Summary:
Ref T12298. Ultimate goal is to let daemon pools scale down to 0 daemons when they aren't doing anything. This doesn't do that yet (and attempts to change no behavior).
This reorganizes the daemon code to make this change easier. Currently, some daemons are in pools and some are not. Intead, make everything a pool (the Pull and Trigger daemons just get pools with maximum size 1).
New object hiearchy is:
- Overseer
- Pool
- Daemon
- Pool
...and those objects each pretty much take care of their own stuff, instead of having daemons reach up into the Overseer to dispatch events back to themselves.
Test Plan:
- Ran phd debug, phd start, phd stop, phd status, etc.
- Reviewed daemons in web console.
- Changed config, saw daemons automatically restart.
- Sent daemons signals.
- Used --trace, activated memory tracing, activated verbose mode.
Reviewers: chad
Reviewed By: chad
Maniphest Tasks: T12298
Differential Revision: https://secure.phabricator.com/D17389