libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
errno.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <iosfwd>
5
6// C
7#include <errno.h>
8
9// cosmos
10#include <cosmos/dso_export.h>
11
19namespace cosmos {
20
21/* netdb.h contains a preprocessor define for this it is part of the
22 * deprecated gethost* API (`man h_errno`). This conflicts with
23 * Errno::NO_DATA. Undefine it. */
24#ifdef NO_DATA
25# undef NO_DATA
26#endif
27
29enum class Errno : int { // errnos are distinct positive `int` values says `man errno.h`
30 NO_ERROR = 0,
31 TOOBIG = E2BIG,
32 ACCESS = EACCES,
33 ADDRESS_IN_USE = EADDRINUSE,
34 ADDRESS_NOT_AVAILABLE = EADDRNOTAVAIL,
35 AF_NOT_SUPPORTED = EAFNOSUPPORT,
36 AGAIN = EAGAIN,
37 ALREADY = EALREADY,
38 BAD_FD = EBADF,
39 BAD_MSG = EBADMSG,
40 BUSY = EBUSY,
41 CANCELED = ECANCELED,
42 NO_CHILD = ECHILD,
43 CONN_ABORTED = ECONNABORTED,
44 CONN_REFUSED = ECONNREFUSED,
45 CONN_RESET = ECONNRESET,
46 DEADLOCK = EDEADLK,
47 DEST_ADDR_REQ = EDESTADDRREQ,
48 OUT_OF_DOMAIN = EDOM,
49 EXISTS = EEXIST,
50 FAULT = EFAULT,
51 FILE_TOO_BIG = EFBIG,
52 HOST_UNREACHABLE = EHOSTUNREACH,
53 ID_REMOVED = EIDRM,
54 ILLEGAL_SEQ = EILSEQ,
55 IN_PROGRESS = EINPROGRESS,
56 INTERRUPTED = EINTR,
57 INVALID_ARG = EINVAL,
58 IO_ERROR = EIO,
59 IS_CONNECTED = EISCONN,
60 IS_DIRECTORY = EISDIR,
61 LINK_LOOP = ELOOP,
62 TOO_MANY_FILES = EMFILE,
63 TOO_MANY_LINKS = EMLINK,
64 MSG_TOO_LARGE = EMSGSIZE,
65 NAME_TOO_LONG = ENAMETOOLONG,
66 NETWORK_DOWN = ENETDOWN,
67 NETWORK_RESET = ENETRESET,
68 NETWORK_UNREACHABLE = ENETUNREACH,
69 TOO_MANY_FILES_IN_SYS = ENFILE,
70 NO_BUFFER_SPACE = ENOBUFS,
71 NO_DATA = ENODATA,
72 NO_DEVICE = ENODEV,
73 NO_ENTRY = ENOENT,
74 NOT_EXECUTABLE = ENOEXEC,
75 NO_LOCKS = ENOLCK,
76 NO_MEMORY = ENOMEM,
77 NO_MESSAGE = ENOMSG,
78 NO_PROTO_OPT = ENOPROTOOPT,
79 NO_SPACE = ENOSPC,
80 NO_STREAM_RESOURCES = ENOSR,
81 NO_STREAM = ENOSTR,
82 NO_SYS = ENOSYS,
83 NOT_CONNECTED = ENOTCONN,
84 NOT_A_DIR = ENOTDIR,
85 NOT_EMPTY = ENOTEMPTY,
86 NOT_RECOVERABLE = ENOTRECOVERABLE,
87 NOT_A_SOCKET = ENOTSOCK,
88 NOT_SUPPORTED = ENOTSUP,
89 OP_NOT_SUPPORTED = EOPNOTSUPP,
90 NOT_A_TTY = ENOTTY,
91 NXIO = ENXIO,
92 OVERFLOW = EOVERFLOW,
93 OWNER_DEAD = EOWNERDEAD,
94 PERMISSION = EPERM,
95 BROKEN_PIPE = EPIPE,
96 PROTO_ERR = EPROTO,
97 PROTO_NOT_SUPPORTED = EPROTONOSUPPORT,
98 PROTO_MISMATCH = EPROTOTYPE,
99 RANGE = ERANGE,
100 READ_ONLY_FS = EROFS,
101 IS_PIPE = ESPIPE,
102 SEARCH = ESRCH,
103 TIMER = ETIME,
104 TIMEDOUT = ETIMEDOUT,
105 WOULD_BLOCK = EWOULDBLOCK,
106 TEXT_FILE_BUSY = ETXTBSY,
107 CROSS_DEVICE = EXDEV
108};
109
111inline Errno get_errno() { return Errno{errno}; }
113inline void reset_errno() { errno = static_cast<int>(Errno::NO_ERROR); }
115inline void set_errno(const Errno err) { errno = static_cast<int>(err); }
117inline bool is_errno_set() { return get_errno() != Errno::NO_ERROR; }
118
119} // end ns
120
121COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::Errno err);
void reset_errno()
Resets the currently set errno to indicate no error.
Definition errno.hxx:113
void set_errno(const Errno err)
Explicitly set a new errno value.
Definition errno.hxx:115
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
@ RANGE
result too large
@ TOO_MANY_FILES_IN_SYS
too many files open system wide
@ OVERFLOW
value too large to be stored in data type
@ ACCESS
permission denied
@ SEARCH
no such process
@ NOT_EMPTY
directory not empty
@ NETWORK_RESET
connection aborted by network
@ IS_PIPE
device does not support seek (e.g. a pipe)
@ NO_SYS
function not available (e.g. unimplemented system call)
@ OUT_OF_DOMAIN
mathematics argument out of domain of function
@ ID_REMOVED
identifier was removed
@ NO_CHILD
no child process
@ NO_ENTRY
no such file or directory (or otherwise an object was not found)
@ NO_DEVICE
no such device (e.g. device node for non-existing device)
@ NETWORK_DOWN
network is down (e.g. route lost)
@ PROTO_MISMATCH
wrong protocol type for socket
@ OP_NOT_SUPPORTED
operation not supported on socket
@ NO_MESSAGE
no message of the desired type
@ NO_SPACE
no space left on device
@ TOO_MANY_FILES
per-process limit of file descriptors encountered
@ NOT_SUPPORTED
not supported
@ AGAIN
resource unavailable, try again (e.g. non-blocking I/O)
@ AF_NOT_SUPPORTED
address family not supported (networking)
@ INTERRUPTED
interrupted function (system call)
@ NO_LOCKS
no locks available
@ PERMISSION
operation not permitted
@ EXISTS
file (already) exists
@ CONN_REFUSED
connection was refused (e.g. no one listening on port)
@ NO_BUFFER_SPACE
no buffer space available
@ ILLEGAL_SEQ
illegal byte sequence
@ BUSY
device or resource busy
@ FAULT
bad address (provided)
@ INVALID_ARG
invalid argument encountered
@ NO_STREAM
not a STREAM
@ BAD_FD
bad file descriptor encountered
@ NXIO
no such device or address
@ DEADLOCK
resource deadlock would occur
@ HOST_UNREACHABLE
host is unreachable
@ NOT_EXECUTABLE
executable file format error
@ IS_DIRECTORY
file is a directory (unexpectedly)
@ WOULD_BLOCK
operation would block
@ TIMER
time expired
@ NO_STREAM_RESOURCES
no stream resources
@ NOT_A_TTY
not a terminal, or unsupported ioctl
@ TOO_MANY_LINKS
too many links encountered (e.g. file system limit)
@ NOT_A_DIR
not a directory, or a symlink link to a directory
@ ADDRESS_IN_USE
network address already in use
@ OWNER_DEAD
previous owner died
@ DEST_ADDR_REQ
destination address required
@ TIMEDOUT
connection timed out
@ TOOBIG
argument list too long
@ IN_PROGRESS
operation is in progress (but not yet completed)
@ FILE_TOO_BIG
file too large
@ ALREADY
connection already in progress
@ NETWORK_UNREACHABLE
network is unreachable (no route to host)
@ IS_CONNECTED
socket is (already?) connected
@ CONN_ABORTED
connection was aborted
@ CONN_RESET
connection was reset
@ CANCELED
operation has been canceled
@ NOT_CONNECTED
socket is not connected
@ NAME_TOO_LONG
filename too long
@ NO_PROTO_OPT
protocol (option) not available
@ NOT_RECOVERABLE
state not recoverable
@ CROSS_DEVICE
cross-device link
@ NO_DATA
no message available
@ LINK_LOOP
too many levels of symlinks
@ NO_MEMORY
not enough (kernel) memory available for operation
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Definition errno.hxx:111
bool is_errno_set()
Checks whether currently an errno is set.
Definition errno.hxx:117