5 #include "ace/Time_Value.h" 12 std::map <std::string, ACE_INET_Addr> & addresses,
13 ACE_SOCK_Dgram & socket,
17 : settings_ (settings), id_ (id), context_ (0),
18 addresses_ (addresses),
20 send_monitor_ (send_monitor),
21 receive_monitor_ (receive_monitor),
22 packet_scheduler_ (packet_scheduler)
44 #ifndef _MADARA_NO_KARL_ 46 "UdpRegistryClientReadThread::init:" \
47 " setting rules to %s\n",
52 #endif // _MADARA_NO_KARL_ 57 "UdpRegistryClientReadThread::init:" \
58 " no permanent rules were set\n");
65 const char * print_prefix,
82 uint64_t bytes_sent = 0;
83 uint64_t packet_size = (uint64_t)result;
91 " fragmenting %" PRIu64
" byte packet (%" PRIu32
" bytes is max fragment size)\n",
98 for (FragmentMap::iterator i = map.begin (); i != map.end ();
104 for (std::map <std::string, ACE_INET_Addr>::const_iterator addr =
111 " Sending fragment %d\n",
114 int send_attempts = -1;
115 ssize_t actual_sent = -1;
117 while (actual_sent < 0 &&
124 i->second, frag_size, addr->second);
130 bytes_sent = (uint64_t)actual_sent;
134 " Sent packet of size %" PRIu64
"\n",
135 print_prefix, bytes_sent);
139 else if (actual_sent == ECONNRESET)
143 " WARNING: Remote socket disappeared during send (ECONNRESET)\n",
146 else if (actual_sent == EINTR)
150 " Local socket was interrupted during send (EINTR)\n",
153 else if (actual_sent == EWOULDBLOCK)
157 " Send would have blocked (EWOULDBLOCK)\n",
160 else if (actual_sent == ENOTCONN)
164 " Send reports socket is not connected (ENOTCONN)\n",
167 else if (actual_sent == EADDRINUSE)
171 " Send reports the interface is busy (EADDRINUSE)\n",
174 else if (actual_sent == EBADF)
178 " Send socket is invalid (EBADF)\n",
185 " Packet was not sent due to unknown error (%d)\n",
186 print_prefix, (int)actual_sent);
200 " Sent fragments totalling %" PRIu64
" bytes\n",
201 print_prefix, bytes_sent);
207 for (std::map <std::string, ACE_INET_Addr>::const_iterator i =
215 " Sending packet of size %ld\n",
216 print_prefix, result);
218 int send_attempts = -1;
219 ssize_t actual_sent = -1;
221 while (actual_sent < 0 &&
228 (ssize_t)result, i->second);
234 bytes_sent += actual_sent;
239 " Sent packet of size %" PRIu64
"\n",
240 print_prefix, (int)actual_sent);
244 else if (actual_sent == ECONNRESET)
249 " WARNING: Remote socket disappeared during send (ECONNRESET)\n",
252 else if (actual_sent == EINTR)
257 " Local socket was interrupted during send (EINTR)\n",
260 else if (actual_sent == EWOULDBLOCK)
265 " Send would have blocked (EWOULDBLOCK)\n",
268 else if (actual_sent == ENOTCONN)
273 " Send reports socket is not connected (ENOTCONN)\n",
276 else if (actual_sent == EADDRINUSE)
281 " Send reports the interface is busy (EADDRINUSE)\n",
284 else if (actual_sent == EBADF)
289 " Send socket is invalid (EBADF)\n",
297 " Packet was not sent due to unknown error (%d)\n",
298 print_prefix, (int)actual_sent);
306 " Sent %d total bytes via rebroadcast\n",
307 print_prefix, bytes_sent);
312 " Send bandwidth = %" PRIu64
" B/s\n",
330 ACE_Time_Value wait_time (1);
331 ACE_INET_Addr remote;
335 const char * print_prefix =
"UdpRegistryClientReadThread::run";
339 " entering main service loop.\n",
348 " Unable to allocate buffer of size " PRIu32
". Exiting thread.\n",
357 " entering a recv on the socket.\n",
361 ssize_t bytes_read =
socket_.recv ((
void *)buffer,
366 if (remote.get_host_addr () != 0)
371 " received a message header of %lld bytes from %s:%d\n",
373 (
long long)bytes_read,
374 remote.get_host_addr (), (int)remote.get_port_number ());
381 " received %lld bytes from unknown host\n",
383 (
long long)bytes_read);
387 std::stringstream remote_host;
388 remote_host << remote.get_host_addr ();
390 remote_host << remote.get_port_number ();
394 #ifndef _MADARA_NO_KARL_
398 remote_host.str ().c_str (), header);
402 if (header->
ttl > 0 && rebroadcast_records.size () > 0 &&
406 header->
ttl = std::min (
409 rebroadcast (print_prefix, header, rebroadcast_records);
420 " wait timeout on new messages. Proceeding to next wait\n",
knowledge::ThreadSafeContext * context_
knowledge context
PacketScheduler & packet_scheduler_
scheduler for mimicking target network conditions
madara::utility::ScopedArray< char > buffer_
buffer for sending
uint64_t get_bytes_per_second(void)
Queries the monitor for the current bandwidth utilization per second over the past window...
UdpRegistryClientReadThread(const TransportSettings &settings, const std::string &id, std::map< std::string, ACE_INET_Addr > &addresses, ACE_SOCK_Dgram &socket, BandwidthMonitor &send_monitor, BandwidthMonitor &receive_monitor, PacketScheduler &packet_scheduler)
Constructor.
void init(knowledge::KnowledgeBase &knowledge)
Initializes MADARA context-related items.
std::map< std::string, ACE_INET_Addr > addresses_
internet addresses of our peers
MADARA_Export void frag(char *source, uint32_t fragment_size, FragmentMap &map)
Breaks a large packet into smaller packets.
void run(void)
The main loop internals for the read thread.
void rebroadcast(const char *print_prefix, MessageHeader *header, const knowledge::KnowledgeMap &records)
Sends a rebroadcast packet to all peers.
Provides scheduler for dropping packets.
std::vector< std::string > hosts
Host information for transports that require it.
MADARA_Export utility::Refcounter< logger::Logger > global_logger
MADARA_Export double sleep(double sleep_time)
Sleeps for a certain amount of time.
Holds basic transport settings.
#define madara_logger_log(logger, level,...)
Fast version of the madara::logger::log method.
const QoSTransportSettings settings_
Transport settings.
T * get_ptr(void)
get the underlying pointer
bool no_receiving
if true, never receive over transport
madara::knowledge::CompiledExpression on_data_received_
data received rules, defined in Transport settings
#define madara_logger_ptr_log(logger, level,...)
Fast version of the madara::logger::log method for Logger pointers.
void cleanup(void)
Cleanup function called by thread manager.
This class provides a distributed knowledge base to users.
Parses incoming expression strings into a parse tree and generates an expression tree from the parse ...
::std::map< std::string, KnowledgeRecord > KnowledgeMap
bool no_sending
if true, never send over transport
void add(uint64_t size)
Adds a message to the monitor.
std::string on_data_received_logic
logic to be evaluated after every successful update
double slack_time
time to sleep between sends and rebroadcasts
MADARA_Export void delete_fragments(FragmentMap &map)
Deletes fragments within a fragment map and clears the map.
int MADARA_Export process_received_update(const char *buffer, uint32_t bytes_read, const std::string &id, knowledge::ThreadSafeContext &context, const QoSTransportSettings &settings, BandwidthMonitor &send_monitor, BandwidthMonitor &receive_monitor, knowledge::KnowledgeMap &rebroadcast_records, knowledge::CompiledExpression &on_data_received, const char *print_prefix, const char *remote_host, MessageHeader *&header)
Processes a received update, updates monitors, fills rebroadcast records according to settings filter...
ACE_SOCK_Dgram & socket_
The socket we are writing to and reading from.
uint32_t queue_length
Length of the buffer used to store history of events.
CompiledExpression compile(const std::string &expression)
Compiles a KaRL expression into an expression tree.
ThreadSafeContext & get_context(void)
Returns the ThreadSafeContext associated with this Knowledge Base.
const std::string id_
host:port identifier of this process
int MADARA_Export prep_rebroadcast(knowledge::ThreadSafeContext &context, char *buffer, int64_t &buffer_remaining, const QoSTransportSettings &settings, const char *print_prefix, MessageHeader *header, const knowledge::KnowledgeMap &records, PacketScheduler &packet_scheduler)
Preps a buffer for rebroadcasting records to other agents on the network.
Provides monitoring capability of a transport's bandwidth.
Provides functions and classes for the distributed knowledge base.
std::map< uint32_t, const char * > FragmentMap
Map of fragment identifiers to fragments.
logger::Logger & get_logger(void) const
Gets the logger used for information printing.
BandwidthMonitor & send_monitor_
monitor for sending bandwidth usage
BandwidthMonitor & receive_monitor_
monitor for receiving bandwidth usage
uint32_t max_fragment_size
Maximum allowed fragment size for partitioning large messages.
int resend_attempts
Maximum number of attempts to resend if transport is busy.
unsigned char get_participant_ttl(void) const
Returns the maximum time to live participation of this transport in rebroadcasting of other agent's m...