MADARA
3.1.8
|
Thread for reading knowledge updates through a Multicast datagram socket. More...
#include <BroadcastTransportReadThread.h>
Public Member Functions | |
BroadcastTransportReadThread (const TransportSettings &settings, const std::string &id, const ACE_INET_Addr &address, ACE_SOCK_Dgram_Bcast &socket, BandwidthMonitor &send_monitor, BandwidthMonitor &receive_monitor, PacketScheduler &packet_scheduler) | |
Constructor. More... | |
void | cleanup (void) |
Cleanup function called by thread manager. More... | |
void | init (knowledge::KnowledgeBase &knowledge) |
Initializes MADARA context-related items. More... | |
void | rebroadcast (const char *print_prefix, MessageHeader *header, const knowledge::KnowledgeMap &records) |
Sends a rebroadcast packet. More... | |
void | run (void) |
The main loop internals for the read thread. More... | |
Protected Member Functions | |
virtual void | init_control_vars (knowledge::KnowledgeBase &control) |
Initializes the Java thread implementation's control plane variables. More... | |
Protected Attributes | |
std::string | name |
The unique name of your thread. More... | |
madara::knowledge::containers::Integer | paused |
thread safe paused flag that may be set by the Threader More... | |
madara::knowledge::containers::Integer | terminated |
thread safe terminated flag that may be set by the Threader base More... | |
Private Attributes | |
ACE_INET_Addr | address_ |
The broadcast address we are subscribing to. More... | |
madara::utility::ScopedArray< char > | buffer_ |
buffer for sending More... | |
knowledge::ThreadSafeContext * | context_ |
knowledge context More... | |
const std::string | id_ |
host:port identifier of this process More... | |
madara::knowledge::CompiledExpression | on_data_received_ |
data received rules, defined in Transport settings More... | |
PacketScheduler & | packet_scheduler_ |
scheduler for mimicking target network conditions More... | |
const QoSTransportSettings * | qos_settings_ |
pointer to qos_settings (if applicable) More... | |
ACE_SOCK_Dgram | read_socket_ |
The broadcast socket we are reading from. More... | |
BandwidthMonitor & | receive_monitor_ |
monitor for receiving bandwidth usage More... | |
BandwidthMonitor & | send_monitor_ |
monitor for sending bandwidth usage More... | |
const TransportSettings & | settings_ |
Transport settings. More... | |
ACE_SOCK_Dgram_Bcast | write_socket_ |
underlying socket for rebroadcasting More... | |
Thread for reading knowledge updates through a Multicast datagram socket.
Definition at line 42 of file BroadcastTransportReadThread.h.
madara::transport::BroadcastTransportReadThread::BroadcastTransportReadThread | ( | const TransportSettings & | settings, |
const std::string & | id, | ||
const ACE_INET_Addr & | address, | ||
ACE_SOCK_Dgram_Bcast & | socket, | ||
BandwidthMonitor & | send_monitor, | ||
BandwidthMonitor & | receive_monitor, | ||
PacketScheduler & | packet_scheduler | ||
) |
Constructor.
settings | Transport settings |
id | host:port identifier of this process, to allow for rejection of duplicates |
address | the ACE socket address to read from |
socket | socket for sending |
send_monitor | bandwidth monitor for enforcing send limits |
receive_monitor | bandwidth monitor for enforcing receive limits |
packet_scheduler | scheduler for mimicking network conditions |
Definition at line 10 of file BroadcastTransportReadThread.cpp.
|
virtual |
Cleanup function called by thread manager.
Reimplemented from madara::threads::BaseThread.
Definition at line 135 of file BroadcastTransportReadThread.cpp.
|
virtual |
Initializes MADARA context-related items.
knowledge | context for querying current program state |
Reimplemented from madara::threads::BaseThread.
Definition at line 104 of file BroadcastTransportReadThread.cpp.
|
inlineprotectedvirtualinherited |
Initializes the Java thread implementation's control plane variables.
control | the control plane between Threader and threads |
Reimplemented in madara::threads::JavaThread.
Definition at line 86 of file BaseThread.h.
void madara::transport::BroadcastTransportReadThread::rebroadcast | ( | const char * | print_prefix, |
MessageHeader * | header, | ||
const knowledge::KnowledgeMap & | records | ||
) |
Sends a rebroadcast packet.
print_prefix | prefix to include before every log message, e.g., "MyTransport::svc" |
header | header for the rebroadcasted packet |
records | records to rebroadcast (already filtered for rebroadcast) |
Definition at line 147 of file BroadcastTransportReadThread.cpp.
|
virtual |
The main loop internals for the read thread.
Implements madara::threads::BaseThread.
Definition at line 383 of file BroadcastTransportReadThread.cpp.
|
private |
The broadcast address we are subscribing to.
Definition at line 107 of file BroadcastTransportReadThread.h.
|
private |
buffer for sending
Definition at line 121 of file BroadcastTransportReadThread.h.
|
private |
knowledge context
Definition at line 104 of file BroadcastTransportReadThread.h.
|
private |
host:port identifier of this process
Definition at line 101 of file BroadcastTransportReadThread.h.
|
protectedinherited |
The unique name of your thread.
Definition at line 96 of file BaseThread.h.
|
private |
data received rules, defined in Transport settings
Definition at line 117 of file BroadcastTransportReadThread.h.
|
private |
scheduler for mimicking target network conditions
Definition at line 133 of file BroadcastTransportReadThread.h.
|
protectedinherited |
thread safe paused flag that may be set by the Threader
Definition at line 107 of file BaseThread.h.
|
private |
pointer to qos_settings (if applicable)
Definition at line 124 of file BroadcastTransportReadThread.h.
|
private |
The broadcast socket we are reading from.
Definition at line 110 of file BroadcastTransportReadThread.h.
|
private |
monitor for receiving bandwidth usage
Definition at line 130 of file BroadcastTransportReadThread.h.
|
private |
monitor for sending bandwidth usage
Definition at line 127 of file BroadcastTransportReadThread.h.
|
private |
Transport settings.
Definition at line 98 of file BroadcastTransportReadThread.h.
|
protectedinherited |
thread safe terminated flag that may be set by the Threader base
Definition at line 102 of file BaseThread.h.
|
private |
underlying socket for rebroadcasting
Definition at line 113 of file BroadcastTransportReadThread.h.