libcosmos
Linux C++ System Programming Library
|
A file descriptor for receiving process signals. More...
#include <SignalFD.hxx>
Classes | |
class | Info |
SigInfo style data structure returned by SignalFD::readEvent(). More... | |
Public Member Functions | |
SignalFD () | |
Creates an invalid SignalFD object. | |
SignalFD (const SigSet &mask) | |
Creates a signal FD listening on the given signals. | |
SignalFD (const std::initializer_list< Signal > siglist) | |
Creates a signal FD listening on the given list of signals. | |
SignalFD (const Signal s) | |
Creates a signal FD listening on exactly the given signal. | |
SignalFD (const SignalFD &)=delete | |
SignalFD & | operator= (const SignalFD &)=delete |
void | create (const SigSet &mask) |
Creates a new SignalFD. | |
void | close () |
auto | valid () const |
void | adjustMask (const SigSet &mask) |
Change the signals the file descriptor is listening for. | |
void | readEvent (Info &info) |
Reads the next event event from the SignalFD. | |
auto | fd () |
Returns the FileDescriptor object associated with the SignalFD. | |
Protected Attributes | |
FileDescriptor | m_fd |
A file descriptor for receiving process signals.
A SignalFD is used for handling process signals on file descriptor level. During creation of the file descriptor the signals that the caller is interested in are declared. Once one of these signals is sent to the process, the file descriptor will become readable and returns the SignalFD::SigInfo data structure describing the event.
As usual with signal handling you need to block the signals that you want to handle synchronously via a SignalFD by calling cosmos::signal::block(). Use the readEvent() member function to comfortably receive the signal information. The underlying file descriptor can be used with common file descriptor monitoring interfaces like Poller.
The SignalFD mirrors the behaviour of other ways to handle signals: When calling readEvent() then signals directed to the calling thread and those directed to the process can be received. Signals directed at other threads cannot be seen.
The readEvent() function fills in SignalFD::Info, a data structure that is very similar to the SigInfo structure, but not quite, which made it necessary to model a distinct type for use with SignalFD.
Definition at line 37 of file SignalFD.hxx.
|
inline |
cosmos::SignalFD::~SignalFD | ( | ) |
Definition at line 17 of file SignalFD.cxx.
|
inlineexplicit |
Creates a signal FD listening on the given signals.
Definition at line 50 of file SignalFD.hxx.
|
inlineexplicit |
Creates a signal FD listening on the given list of signals.
Definition at line 55 of file SignalFD.hxx.
|
inlineexplicit |
Creates a signal FD listening on exactly the given signal.
Definition at line 60 of file SignalFD.hxx.
void cosmos::SignalFD::adjustMask | ( | const SigSet & | mask | ) |
Change the signals the file descriptor is listening for.
A valid SignalFD must be opened for this to work, otherwise an exception is thrown.
Definition at line 35 of file SignalFD.cxx.
|
inline |
Definition at line 75 of file SignalFD.hxx.
void cosmos::SignalFD::create | ( | const SigSet & | mask | ) |
Creates a new SignalFD.
if a SignalFD is already open then it will be closed first. If an error occurs creating the new SignalFD then an exception is thrown.
Definition at line 25 of file SignalFD.cxx.
|
inline |
Returns the FileDescriptor object associated with the SignalFD.
Definition at line 98 of file SignalFD.hxx.
void cosmos::SignalFD::readEvent | ( | Info & | info | ) |
Reads the next event event from the SignalFD.
This is a blocking operation so you should use an efficient poll mechanism like select() to determine whether there is anything to read.
If an error occurs trying to read a signal description then an exception is thrown.
Definition at line 49 of file SignalFD.cxx.
|
inline |
Definition at line 77 of file SignalFD.hxx.
|
protected |
Definition at line 102 of file SignalFD.hxx.