CuteHMI - Daemon (cutehmi.daemon.3)
|
Console program, which allows one to run QML project in the background.
Daemon mode is currently supported only on Linux. On Windows program can be run in application mode only (--app
option).
Any extension that does not provide graphical UI QML component can be loaded as cutehmi.daemon.3 project. Use positional argument to specify an extension. For example to run Count Daemon example use following command.
Read system logs to investigate whether daemon is running (e.g. journalctl -n20
on a system with systemd).
One may use --app
option to tell the program to work as a foreground process (this can be useful when testing projects). For example following command runs Count Daemon in application mode.
Default loader picks Daemon.qml
as default QML component to load. Component can be specified with second positional argument.
One can also use --init
option to replace default loader with custom one.
You can use --help
command line argument to see the list of all possible command line options.
Setting empty path for PID file option (--pidfile=
) disables creation of PID file.
Fore debug builds use cutehmi.daemon.3.debug
instead of cutehmi.daemon.3
.
Under Unix daemon will respond to signals in a following way.
Daemon is a program, which is supposed to work as a background process. This could be achieved in many ways, but lots of traditional UNIX daemons have been accomplishing it through techniques, which involve forking. Unfortunately this spots a controversy. It comes out there are three conflicting schools on how many forks daemon should perform. According to these daemon should fork once, twice or not fork at all... Detailed description on the topic is out of the scope of this document, but here are some major points.
Single fork is performed to exit the parent process and get rid of controlling terminal. After forking, daemon can become a new session leader, so that when user logs out from the session, process is not killed along with processes associated with that session. This is how daemon() function has been implemented.
After first fork process can still acquire controlling terminal if it opens tty according to System V rules [1]. Second fork prevents this [2]. Unfortunately this approach heavily obscures process hierarchy, because daemon continues as orphaned process.
Notably systemd has troubles handling double-forking daemons as service units. Documentation of systemd is explicit about expected behaviour of daemon for forking service type.
In double-forking approach the child won't continue as main service process, but rather its own child will do. This can deceive systemd to think that the daemon has finished.
Many people advice to not fork at all, as it is a domain of the user to detrmine the way how the program shall be run. By this view program should not daemonize itself. Instead it can be run as a background process (by putting &
after the command) and tools such as screen and nohup can be used to prevent process from being killed when user logs out [4].
There are some valid points in each of these views, so cutehmi.daemon.3 allows you to pick number of forks by setting --forks={number}
parameter. For systemd service pick --forks=1
and use Type=forking
or --forks=0
with Type=simple
. Note that --forks=0
is not the same as application mode (--app
option) - daemon uses system logging facility instead of standard output, responds to signals, unlocks former working directory, creates PID file, closes file descriptors and resets its umask.
Compared to previous major version following changes were made.
Daemon
QML component instead of Main
.--extension
argument.--component
argument.--nforks
has been renamed to --forks
.