libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
EventFile.cxx
1// cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/RuntimeError.hxx>
4#include <cosmos/io/EventFile.hxx>
5#include <cosmos/utils.hxx>
6
7namespace cosmos {
8
9EventFile::EventFile(const Counter initval, const Flags flags) {
10 auto fd = ::eventfd(to_integral(initval), flags.raw());
11
12 if (fd == -1) {
13 cosmos_throw (ApiError("eventfd()"));
14 }
15
16 this->open(FileDescriptor{FileNum{fd}}, AutoCloseFD{true});
17}
18
20 Counter ret;
21 // I don't believe short reads are possible with eventfds, so use
22 // regular read() instead of readAll().
23 const auto bytes = this->read(&ret, sizeof(Counter));
24
25 if (bytes != sizeof(ret)) {
26 cosmos_throw (RuntimeError("short eventfd read?!"));
27 }
28
29 return ret;
30}
31
32void EventFile::signal(const Counter increment) {
33 const auto bytes = this->write(&increment, sizeof(increment));
34
35 if (bytes != sizeof(increment)) {
36 cosmos_throw (RuntimeError("short eventfd write?!"));
37 }
38}
39
40} // end ns
Counter wait()
Wait for the counter to become non-zero.
Definition EventFile.cxx:19
Counter
Strong counter type used with the event fd.
Definition EventFile.hxx:46
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
void signal(const Counter increment=Counter{1})
Signal the eventfd by adding the given value to the counter.
Definition EventFile.cxx:32
void open(const FileDescriptor fd, const AutoCloseFD auto_close)
Takes the already open file descriptor fd and operates on it.
Definition FDFile.hxx:50
Exception type for generic runtime errors.
size_t read(void *buf, size_t length)
Read up to length bytes from the file into buf.
Definition StreamIO.cxx:26
size_t write(const void *buf, size_t length)
Write up to length bytes from buf into the underlying file.
Definition StreamIO.cxx:52
NamedBool< struct close_file_t, true > AutoCloseFD
Strong boolean type for expressing the responsibility to close file descriptors.
Definition types.hxx:29
FileNum
Primitive file descriptor.
Definition types.hxx:32