Manages a set of sockets being polled through the poll() function call. More...
#include <poll_set.h>
Classes | |
struct | SocketInfo |
Public Types | |
typedef std::function< void(int)> | SocketUpdateFunc |
Public Member Functions | |
bool | addEvents (int sock, int events) |
Add events to be polled on a socket. More... | |
bool | addSocket (int sock, const SocketUpdateFunc &update_func, const TransportPtr &transport=TransportPtr()) |
Add a socket. More... | |
bool | delEvents (int sock, int events) |
Delete events to be polled on a socket. More... | |
bool | delSocket (int sock) |
Delete a socket. More... | |
PollSet () | |
void | signal () |
Signal our poll() call to finish if it's blocked waiting (see the poll_timeout option for update()). More... | |
void | update (int poll_timeout) |
Process all socket events. More... | |
~PollSet () | |
Private Types | |
typedef std::map< int, SocketInfo > | M_SocketInfo |
typedef std::vector< int > | V_int |
Private Member Functions | |
void | createNativePollset () |
Creates the native pollset for our sockets, if any have changed. More... | |
void | onLocalPipeEvents (int events) |
Called when events have been triggered on our signal pipe. More... | |
Private Attributes | |
V_int | just_deleted_ |
std::mutex | just_deleted_mutex_ |
std::mutex | signal_mutex_ |
signal_fd_t | signal_pipe_ [2] |
M_SocketInfo | socket_info_ |
std::mutex | socket_info_mutex_ |
bool | sockets_changed_ |
std::vector< socket_pollfd > | ufds_ |
Manages a set of sockets being polled through the poll() function call.
PollSet provides thread-safe ways of adding and deleting sockets, as well as adding and deleting events.
Definition at line 58 of file poll_set.h.
|
private |
Definition at line 138 of file poll_set.h.
typedef std::function<void(int)> roswrap::PollSet::SocketUpdateFunc |
Definition at line 64 of file poll_set.h.
|
private |
Definition at line 144 of file poll_set.h.
roswrap::PollSet::PollSet | ( | ) |
roswrap::PollSet::~PollSet | ( | ) |
bool roswrap::PollSet::addEvents | ( | int | sock, |
int | events | ||
) |
Add events to be polled on a socket.
addEvents() may be called from any thread.
sock | The socket to add events to |
events | The events to add |
bool roswrap::PollSet::addSocket | ( | int | sock, |
const SocketUpdateFunc & | update_func, | ||
const TransportPtr & | transport = TransportPtr() |
||
) |
Add a socket.
addSocket() may be called from any thread.
sock | The socket to add |
update_func | The function to call when a socket has events |
transport | The (optional) transport associated with this socket. Mainly used to prevent the transport from being deleted while we're calling the update function |
|
private |
Creates the native pollset for our sockets, if any have changed.
bool roswrap::PollSet::delEvents | ( | int | sock, |
int | events | ||
) |
Delete events to be polled on a socket.
delEvents() may be called from any thread.
sock | The socket to delete events from |
events | The events to delete |
bool roswrap::PollSet::delSocket | ( | int | sock | ) |
|
private |
Called when events have been triggered on our signal pipe.
void roswrap::PollSet::signal | ( | ) |
Signal our poll() call to finish if it's blocked waiting (see the poll_timeout option for update()).
void roswrap::PollSet::update | ( | int | poll_timeout | ) |
Process all socket events.
This function will actually call poll() on the available sockets, and allow them to do their processing.
update() may only be called from one thread at a time
poll_timeout | The time, in milliseconds, for the poll() call to timeout after if there are no events. Note that this does not provide an upper bound for the entire function, just the call to poll() |
|
private |
Definition at line 145 of file poll_set.h.
|
private |
Definition at line 143 of file poll_set.h.
|
private |
Definition at line 149 of file poll_set.h.
|
private |
Definition at line 150 of file poll_set.h.
|
private |
Definition at line 139 of file poll_set.h.
|
private |
Definition at line 140 of file poll_set.h.
|
private |
Definition at line 141 of file poll_set.h.
|
private |
Definition at line 147 of file poll_set.h.