2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/RuntimeError.hxx>
4#include <cosmos/net/message_header.hxx>
5#include <cosmos/net/SocketAddress.hxx>
6#include <cosmos/net/Socket.hxx>
7#include <cosmos/utils.hxx>
18 to_integral(type) | flags.
raw(),
19 to_integral(protocol));
40 if (
::shutdown(to_integral(m_fd.
raw()), to_integral(dir)) != 0) {
41 cosmos_throw (
ApiError(
"shutdown()"));
46 if (
::listen(to_integral(m_fd.
raw()), backlog) != 0) {
52 socklen_t addrlen = addr ? addr->
maxSize() : 0;
53 auto res =
::accept(to_integral(m_fd.
raw()), addr ? addr->
basePtr() :
nullptr, addr ? &addrlen :
nullptr);
67 const auto res =
::send(to_integral(m_fd.
raw()), buf, length, flags.
raw());
72 return static_cast<size_t>(res);
76 const auto res = ::sendto(to_integral(m_fd.
raw()), buf, length, flags.
raw(), addr.
basePtr(), addr.
size());
81 return static_cast<size_t>(res);
85 const auto res = ::recv(to_integral(m_fd.
raw()), buf, length, flags.
raw());
90 return static_cast<size_t>(res);
93std::pair<size_t, Socket::AddressFilledIn>
95 socklen_t addrlen = addr.
maxSize();
96 const auto res = ::recvfrom(to_integral(m_fd.
raw()), buf, length, flags.
raw(), addr.
basePtr(), &addrlen);
98 cosmos_throw(
ApiError(
"recvfrom()"));
108 return {
static_cast<size_t>(res), filled_in};
112 socklen_t size = addr.
maxSize();
114 if (::getsockname(to_integral(m_fd.
raw()), base, &size) != 0) {
115 cosmos_throw(
ApiError(
"getsockname()"));
120 cosmos_throw(
RuntimeError(
"getsockname: wrong type of SocketAddress was passed"));
129 const auto res = ::sendmsg(
130 to_integral(m_fd.
raw()),
135 cosmos_throw(
ApiError(
"sendmsg()"));
148 const auto res = ::recvmsg(
149 to_integral(m_fd.
raw()),
154 cosmos_throw(
ApiError(
"recvmsg()"));
160 if (
const auto namelen = header.
rawHeader()->msg_namelen; namelen != 0) {
166 header.postReceive(res);
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
bool valid() const
Returns whether currently a valid file descriptor number is assigned.
Strong template type to wrap boolean values in a named type.
Exception type for generic runtime errors.
Base class for all types of socket addresses.
void clear()
Clears the complete address structure.
virtual void update(size_t new_length)
Update the address structure after it has been filled in by the kernel.
virtual size_t maxSize() const
Returns the maximum number of bytes the socket address can hold.
virtual SocketFamily family() const =0
Returns the concrete SocketFamily for the implementation address type.
virtual size_t size() const =0
Returns the size of the socket address in bytes found at basePtr().
virtual sockaddr * basePtr()=0
Returns a mutable pointer to the sockaddr* base structure.
void shutdown(const Direction dir)
Shutdown part or all of the connection on protocol level.
void sendMessage(SendMessageHeader &header, const SocketAddress *addr=nullptr)
Sends a message over the socket using extended SendMessageHeader data.
std::pair< size_t, AddressFilledIn > receiveFrom(void *buf, size_t length, SocketAddress &addr, const MessageFlags flags=MessageFlags{})
Receive a packet, filling in the sender's address.
void connect(const SocketAddress &addr)
Establish a new connection using the given destination address.
Socket(const SocketFamily family, const SocketType type, const SocketFlags flags=SocketFlags{SocketFlag::CLOEXEC}, const SocketProtocol protocol=SocketProtocol::DEFAULT)
Creates a new socket using the given properties.
void listen(const size_t backlog)
Enter into a passive listen state, allowing new connections.
void bind(const SocketAddress &addr)
Bind the socket to the given local address.
Direction
Type used in Socket::shutdown().
AddressFilledIn receiveMessage(ReceiveMessageHeader &header, SocketAddress *addr=nullptr)
Receives a message from the socket using extended ReceiveMessageHeader data.
void getSockName(SocketAddress &addr)
Returns the current address that the socket is bound to, if any.
FileDescriptor accept(SocketAddress *addr)
Accept a new connection on the socket.
NamedBool< struct addr_filled_in_t, false > AddressFilledIn
Boolean flag used in receiveFrom() to signify if a peer address could be provided.
size_t sendTo(const void *buf, size_t length, const SocketAddress &addr, const MessageFlags flags=MessageFlags{})
Send a packet to a specific destination address.
size_t receive(void *buf, size_t length, const MessageFlags flags=MessageFlags{})
Receive data from the socket, using specific receive flags.
size_t send(const void *buf, size_t length, const MessageFlags flags=MessageFlags{})
Send the given data over the socket, using specific send flags.
FileNum
Primitive file descriptor.
SocketProtocol
Specific protocol to use on a socket.
SocketFamily
A socket's family setting.
SocketType
A socket's type setting.