Innovation Award
 June 2004
Number 7 |
A daemon is what are usually called the programs that run on their own under Unix/Linux based systems.
Thy usually implement services of handling events that may occur any time. Examples of daemon services include network connection handlers, mail processors, print spoolers, etc..
This class provides a solution that simplifies the implementation common details of operation of daemons, like being able to detach from the shell process that started it and so not end even if the starting process exits, assure that only one copy of the same daemon is running, handle signals that request termination, etc..
Even though running daemon scripts is not the a common use of PHP, this class simplifies the development of new useful daemons that may enhance the value of many PHP applications.
Manuel Lemos |
This class is intended to automate the creation of system daemons proceses under Unix like operating systems or those with POSIX compliant API like Linux, OpenBSD, FreeBSD, Solaris, Mac OS X, etc...
It can fork a new process using the PHP pcntl extension and detach from the starting shell so it can exit without killing the daemon process.
It can maintain a file that stores the daemon process identifier to prevent that more than one copy of the daemon is started.
It also creates a log file to register the daemon activity.
It is also possible register PHP callback functions to handle different types of signals.
| Ratings | Utility |
Consistency |
Documentation |
Examples |
Tests |
Videos |
Overall |
Rank |
| All time: |
Sufficient (75.0%) |
Sufficient (75.0%) |
- |
Not sure (54.2%) |
- |
- |
Not sure (50.4%) |
1217 |
| Month: |
Not yet rated by the users |
No application links were specified for this class.
 If you know an application of this package, send a message to the author to add a link here.
|
|