libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::UnixClientSocket Class Reference

Client side socket for connection mode UNIX domain sockets. More...

#include <UnixClientSocket.hxx>

+ Inheritance diagram for cosmos::UnixClientSocket:

Public Types

using Connection = UnixConnection
 
- Public Types inherited from cosmos::Socket
enum class  Direction : int { READ = SHUT_RD , WRITE = SHUT_WR , READ_WRITE = SHUT_RDWR }
 Type used in Socket::shutdown(). More...
 
using AddressFilledIn = NamedBool<struct addr_filled_in_t, false>
 Boolean flag used in receiveFrom() to signify if a peer address could be provided.
 
- Public Types inherited from cosmos::StreamIO
enum class  SeekType : int {
  SET = SEEK_SET , CUR = SEEK_CUR , END = SEEK_END , DATA = SEEK_DATA ,
  HOLE = SEEK_HOLE
}
 Different methods for changing the file read/write position. More...
 

Public Member Functions

 UnixClientSocket (const SocketType type, const SocketFlags flags=SocketFlags{SocketFlag::CLOEXEC})
 
auto unixOptions ()
 
auto unixOptions () const
 
void getSockName (UnixAddress &addr)
 Returns the current address that the socket is bound to, if any.
 
void bind (const UnixAddress &addr)
 Bind to the given UNIX address.
 
UnixConnection connect (const UnixAddress &addr)
 Connect to the given UNIX address.
 
- Public Member Functions inherited from cosmos::Socket
auto sockOptions ()
 
auto sockOptions () const
 
void getSockName (SocketAddress &addr)
 Returns the current address that the socket is bound to, if any.
 
void shutdown (const Direction dir)
 Shutdown part or all of the connection on protocol level.
 
- Public Member Functions inherited from cosmos::FDFile
 FDFile (const FileDescriptor fd, const AutoCloseFD auto_close)
 Wrap the given file descriptor applying the specified auto-close behaviour.
 
 FDFile (FDFile &&other) noexcept
 
FDFileoperator= (FDFile &&other) noexcept
 
void open (const FileDescriptor fd, const AutoCloseFD auto_close)
 Takes the already open file descriptor fd and operates on it.
 
void close () override
 Close the current file object.
 
- Public Member Functions inherited from cosmos::FileBase
 FileBase (const FileBase &)=delete
 
FileBaseoperator= (const FileBase &)=delete
 
bool isOpen () const
 Returns whether currently a FileDescriptor is opened.
 
FileDescriptor fd () const
 Allows access to the underlying fd with const semantics.
 
void truncate (const off_t length)
 
- Public Member Functions inherited from cosmos::StreamIO
 StreamIO (FileDescriptor &fd)
 
 StreamIO (const StreamIO &)=delete
 
StreamIOoperator= (const StreamIO &)=delete
 
StreamIOoperator= (StreamIO &&) noexcept
 
size_t read (void *buf, size_t length)
 Read up to length bytes from the file into buf.
 
size_t write (const void *buf, size_t length)
 Write up to length bytes from buf into the underlying file.
 
size_t write (const std::string_view data)
 string_view wrapper around write(const void*, size_t).
 
void readAll (void *buf, size_t length)
 Read all length bytes from the underlying file.
 
void readAll (std::string &s, size_t length)
 Like readAll(void*, size_t) using an STL string.
 
void writeAll (const void *buf, size_t length)
 Write all length bytes into the underlying file.
 
void writeAll (const std::string_view data)
 string_view wrapper around writeAll(const void*, size_t).
 
bool read (ReadIOVector &iovec)
 Read data from file into a vector of data regions.
 
bool write (WriteIOVector &iovec)
 Write data to file from a vector of data regions.
 
void readAll (ReadIOVector &iovec)
 Read into all data regions specified in iovec.
 
void writeAll (WriteIOVector &iovec)
 Write all data regions specified in iovec.
 
off_t seek (const SeekType type, off_t off)
 Seek to the given offset based on the given offset type.
 
off_t seekFromStart (off_t off)
 Seek to the given offset relative to the start of the file.
 
off_t seekFromCurrent (off_t off)
 Seek to the given offset relative to the current file position.
 
off_t seekFromEnd (off_t off)
 Seek to the given offset relative to the end of the file.
 

Protected Member Functions

size_t read (void *buf, size_t length)
 Read up to length bytes from the file into buf.
 
bool read (ReadIOVector &iovec)
 Read data from file into a vector of data regions.
 
void readAll (void *buf, size_t length)
 Read all length bytes from the underlying file.
 
void readAll (std::string &s, size_t length)
 Like readAll(void*, size_t) using an STL string.
 
void readAll (ReadIOVector &iovec)
 Read into all data regions specified in iovec.
 
size_t write (const void *buf, size_t length)
 Write up to length bytes from buf into the underlying file.
 
size_t write (const std::string_view data)
 string_view wrapper around write(const void*, size_t).
 
bool write (WriteIOVector &iovec)
 Write data to file from a vector of data regions.
 
void writeAll (const void *buf, size_t length)
 Write all length bytes into the underlying file.
 
void writeAll (const std::string_view data)
 string_view wrapper around writeAll(const void*, size_t).
 
void writeAll (WriteIOVector &iovec)
 Write all data regions specified in iovec.
 
- Protected Member Functions inherited from cosmos::Socket
 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.
 
 Socket (FileDescriptor fd, const AutoCloseFD auto_close)
 Creates a new socket from the given existing file descriptor.
 
void bind (const SocketAddress &addr)
 Bind the socket to the given local address.
 
void connect (const SocketAddress &addr)
 Establish a new connection using the given destination address.
 
void listen (const size_t backlog)
 Enter into a passive listen state, allowing new connections.
 
FileDescriptor accept (SocketAddress *addr)
 Accept a new connection on the socket.
 
size_t send (const void *buf, size_t length, const MessageFlags flags=MessageFlags{})
 Send the given data over the socket, using specific send flags.
 
size_t send (const std::string_view data, const MessageFlags flags=MessageFlags{})
 Variant of send() that takes a std::string_view container instead of a raw input buffer.
 
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 sendTo (const std::string_view data, const SocketAddress &addr, const MessageFlags flags=MessageFlags{})
 Variant of sendTo() that takes a std::string_view container instead of a raw input buffer.
 
void sendMessage (SendMessageHeader &header, const SocketAddress *addr=nullptr)
 Sends a message over the socket using extended SendMessageHeader data.
 
size_t receive (void *buf, size_t length, const MessageFlags flags=MessageFlags{})
 Receive data from the socket, using specific receive flags.
 
std::pair< size_t, AddressFilledInreceiveFrom (void *buf, size_t length, SocketAddress &addr, const MessageFlags flags=MessageFlags{})
 Receive a packet, filling in the sender's address.
 
AddressFilledIn receiveMessage (ReceiveMessageHeader &header, SocketAddress *addr=nullptr)
 Receives a message from the socket using extended ReceiveMessageHeader data.
 
- Protected Member Functions inherited from cosmos::FileBase
 FileBase (const FileDescriptor fd=FileDescriptor{})
 
 FileBase (FileBase &&other) noexcept
 
FileBaseoperator= (FileBase &&other) noexcept
 

Additional Inherited Members

- Protected Attributes inherited from cosmos::FDFile
AutoCloseFD m_auto_close
 
- Protected Attributes inherited from cosmos::FileBase
FileDescriptor m_fd
 
- Protected Attributes inherited from cosmos::StreamIO
FileDescriptorm_stream_fd
 

Detailed Description

Client side socket for connection mode UNIX domain sockets.

The send and receive I/O functions are not available on this level. connect() will return a UnixConnection type that represents an existing connection and corresponding I/O methods.

For the server side listening socket look at the UnixListenSocket.

Definition at line 17 of file UnixClientSocket.hxx.

Member Typedef Documentation

◆ Connection

Constructor & Destructor Documentation

◆ UnixClientSocket()

cosmos::UnixClientSocket::UnixClientSocket ( const SocketType type,
const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC} )
explicit

Definition at line 7 of file UnixClientSocket.cxx.

7 :
8 Socket{SocketFamily::UNIX, type, flags} {
9 if (type != SocketType::STREAM && type != SocketType::SEQPACKET) {
10 cosmos_throw(RuntimeError("invalid socket type for unix connection mode socket"));
11 }
12}
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.
Definition Socket.cxx:11

Member Function Documentation

◆ bind()

void cosmos::UnixClientSocket::bind ( const UnixAddress & addr)
inline

Bind to the given UNIX address.

Explicitly bind to a local UNIX address. This is usually not necessary for client side sockets. The operating system will automatically select a proper local address when connecting to a remote party. In some cases this can be helpful to have full control over the local address, though.

See also
Socket::bind

Definition at line 50 of file UnixClientSocket.hxx.

50 {
51 return Socket::bind(addr);
52 }
void bind(const SocketAddress &addr)
Bind the socket to the given local address.
Definition Socket.cxx:27

◆ connect()

UnixConnection cosmos::UnixClientSocket::connect ( const UnixAddress & addr)
inline

Connect to the given UNIX address.

By connecting a UNIX client socket, a connection is established. After this is done send() and receive() can be used to exchange data on the connection.

Normally if the call returns successfully then the connection has been established. Special rules apply if the socket is in non-blocking mode, though.

After a successful return the ownership of the socket file descriptor is transferred to the connection instance, and the client socket will no longer be valid for use.

See also
Socket::connect()

Definition at line 70 of file UnixClientSocket.hxx.

70 {
71 Socket::connect(addr);
72 auto ret = UnixConnection{this->m_fd};
73 this->m_fd.reset();
74 return ret;
75 }
void reset()
Invalidates the stored file descriptor.
void connect(const SocketAddress &addr)
Establish a new connection using the given destination address.
Definition Socket.cxx:33

◆ getSockName()

void cosmos::UnixClientSocket::getSockName ( UnixAddress & addr)
inline

Returns the current address that the socket is bound to, if any.

Definition at line 36 of file UnixClientSocket.hxx.

36 {
38 }
void getSockName(SocketAddress &addr)
Returns the current address that the socket is bound to, if any.
Definition Socket.cxx:111

◆ read() [1/2]

bool cosmos::StreamIO::read ( ReadIOVector & iovec)
protected

Read data from file into a vector of data regions.

The iovec specifies memory regions into which data from the file should be written. The data will be filled sequentially starting from the first memory region.

Partial reads can occur, thus on return the length and base fields of each vector entry will be updated to reflect this. The return value is a flag indicating whether the complete vector has been filled, or whether a partial read occurred.

These vector I/O operations are useful when structured binary of fixed size is transferred e.g. in network protocols for the different header layers. This way the individual headers can be kept in distinct places while only a single system call is necessary to transfer them.

Definition at line 168 of file StreamIO.cxx.

75 {
76 while (true) {
77 const auto res = ::readv(
78 to_integral(m_stream_fd.raw()), iovec.raw(), iovec.size());
79
80 if (res < 0) {
81 handleIOError("reading to vector from file");
82 continue;
83 }
84
85 return iovec.update(static_cast<size_t>(res));
86 }
87}
FileNum raw() const
Returns the primitive file descriptor contained in the object.

◆ read() [2/2]

size_t cosmos::StreamIO::read ( void * buf,
size_t length )
protected

Read up to length bytes from the file into buf.

An attempt is made to read data from the underlying file object and place it into buf. buf needs to be able to hold at least length bytes. Short reads can occur in which case less bytes will be read. The number of bytes actually read is returned from this function.

A return value of zero indicates that the End-of-File has been reached and no further data can be obtained.

On error conditions an exception is thrown.

Definition at line 93 of file StreamIO.cxx.

26 {
27 while (true) {
28 auto res = ::read(to_integral(m_stream_fd.raw()), buf, length);
29
30 if (res < 0) {
31 handleIOError("reading from file");
32 continue;
33 }
34
35 return static_cast<size_t>(res);
36 }
37}
size_t read(void *buf, size_t length)
Read up to length bytes from the file into buf.
Definition StreamIO.cxx:26

◆ readAll() [1/3]

void cosmos::StreamIO::readAll ( ReadIOVector & iovec)
inlineprotected

Read into all data regions specified in iovec.

This is just like read(IOVector&) but it takes care of partial reads and continues until all data of the IOVector has been filled or an error occurs. On return the complete vector has been filled.

Definition at line 189 of file StreamIO.hxx.

189 {
190 while (!read(iovec)) {
191 ;
192 }
193 }

◆ readAll() [2/3]

void cosmos::StreamIO::readAll ( std::string & s,
size_t length )
inlineprotected

Like readAll(void*, size_t) using an STL string.

Definition at line 125 of file StreamIO.hxx.

125 {
126 s.resize(length);
127 try {
128 readAll(s.data(), length);
129 } catch(...) {
130 s.clear();
131 throw;
132 }
133 }
void readAll(void *buf, size_t length)
Read all length bytes from the underlying file.
Definition StreamIO.cxx:39

◆ readAll() [3/3]

void cosmos::StreamIO::readAll ( void * buf,
size_t length )
protected

Read all length bytes from the underlying file.

This behaves just like read() with the exception that on short reads the operation will be continued until all length bytes have been obtained from the file.

An End-of-File condition is considered an error in this context and results in a RuntimeError exception. If the function returns normally then all length bytes will have been obtained.

Definition at line 122 of file StreamIO.cxx.

39 {
40 size_t res;
41 while (length != 0) {
42 res = read(buf, length);
43 buf = reinterpret_cast<char*>(buf) + res;
44 length -= res;
45
46 if (res == 0) {
47 cosmos_throw (RuntimeError("unexpected EOF"));
48 }
49 }
50}

◆ unixOptions() [1/2]

auto cosmos::UnixClientSocket::unixOptions ( )
inline

Definition at line 27 of file UnixClientSocket.hxx.

27 {
28 return UnixOptions{this->m_fd};
29 }

◆ unixOptions() [2/2]

auto cosmos::UnixClientSocket::unixOptions ( ) const
inline

Definition at line 31 of file UnixClientSocket.hxx.

31 {
32 return UnixOptions{this->m_fd};
33 }

◆ write() [1/3]

size_t cosmos::StreamIO::write ( const std::string_view data)
inlineprotected

string_view wrapper around write(const void*, size_t).

Definition at line 108 of file StreamIO.hxx.

108 {
109 return write(data.data(), data.size());
110 }
size_t write(const void *buf, size_t length)
Write up to length bytes from buf into the underlying file.
Definition StreamIO.cxx:52

◆ write() [2/3]

size_t cosmos::StreamIO::write ( const void * buf,
size_t length )
protected

Write up to length bytes from buf into the underlying file.

An attempt is made to write data from the given buf and pass it to the underlying file object. buf needs to hold at least length bytes of data. Short writes can occur in which case less bytes will be written. The number of bytes actually written is returned from this function.

On error conditions an exception is thrown.

Definition at line 105 of file StreamIO.cxx.

52 {
53 while (true) {
54 auto res = ::write(to_integral(m_stream_fd.raw()), buf, length);
55
56 if (res < 0) {
57 handleIOError("writing to file");
58 continue;
59 }
60
61 return static_cast<size_t>(res);
62 }
63}

◆ write() [3/3]

bool cosmos::StreamIO::write ( WriteIOVector & iovec)
protected

Write data to file from a vector of data regions.

The iovec specifies memory regions whose data will be written to the file. The data will be written sequentially starting from the first memory region.

Partial writes can occur, thus on return the length and base fields of each vector entry will be updated to reflect this. The return value is a flag indicating whether the complete vector has been written out, or whether a partial write occurred.

Definition at line 181 of file StreamIO.cxx.

89 {
90 while (true) {
91 auto res = ::writev(to_integral(m_stream_fd.raw()), iovec.raw(), iovec.size());
92
93 if (res < 0) {
94 handleIOError("writing vector to file");
95 continue;
96 }
97
98 return iovec.update(static_cast<size_t>(res));
99 }
100}

◆ writeAll() [1/3]

void cosmos::StreamIO::writeAll ( const std::string_view data)
inlineprotected

string_view wrapper around writeAll(const void*, size_t).

Definition at line 147 of file StreamIO.hxx.

147 {
148 return writeAll(data.data(), data.size());
149 }
void writeAll(const void *buf, size_t length)
Write all length bytes into the underlying file.
Definition StreamIO.cxx:65

◆ writeAll() [2/3]

void cosmos::StreamIO::writeAll ( const void * buf,
size_t length )
protected

Write all length bytes into the underlying file.

This behaves just like write() with the exception that on short writes the operation will be continued until all length bytes have been written to the file.

If the function returns normally then all length bytes will have been transferred.

Definition at line 144 of file StreamIO.cxx.

65 {
66 size_t res;
67
68 while (length != 0) {
69 res = write(buf, length);
70 buf = reinterpret_cast<const char*>(buf) + res;
71 length -= res;
72 }
73}

◆ writeAll() [3/3]

void cosmos::StreamIO::writeAll ( WriteIOVector & iovec)
inlineprotected

Write all data regions specified in iovec.

This is just like write(const IOVector&) but it takes care of partial writes and continues until all data of the IOVector has been written out or an error occurs. On return the complete vector has been written.

Definition at line 202 of file StreamIO.hxx.

202 {
203 while (!write(iovec)) {
204 ;
205 }
206 }

The documentation for this class was generated from the following files: