Commit 5852db45 authored by Martin Sustrik's avatar Martin Sustrik

PGM code cleanup

parent aebff623
...@@ -27,9 +27,6 @@ ...@@ -27,9 +27,6 @@
#include "windows.hpp" #include "windows.hpp"
#endif #endif
#include <pgm/pgm.h>
#include <iostream>
#include "pgm_receiver.hpp" #include "pgm_receiver.hpp"
#include "err.hpp" #include "err.hpp"
#include "stdint.hpp" #include "stdint.hpp"
...@@ -58,20 +55,12 @@ int zmq::pgm_receiver_t::init (bool udp_encapsulation_, const char *network_) ...@@ -58,20 +55,12 @@ int zmq::pgm_receiver_t::init (bool udp_encapsulation_, const char *network_)
void zmq::pgm_receiver_t::plug (i_inout *inout_) void zmq::pgm_receiver_t::plug (i_inout *inout_)
{ {
// Allocate 2 fds one for socket second for waiting pipe. // Retrieve PGM fds and start polling.
int socket_fd; int socket_fd;
int waiting_pipe_fd; int waiting_pipe_fd;
// Fill socket_fd and waiting_pipe_fd from PGM transport
pgm_socket.get_receiver_fds (&socket_fd, &waiting_pipe_fd); pgm_socket.get_receiver_fds (&socket_fd, &waiting_pipe_fd);
// Add socket_fd into poller.
socket_handle = add_fd (socket_fd); socket_handle = add_fd (socket_fd);
// Add waiting_pipe_fd into poller.
pipe_handle = add_fd (waiting_pipe_fd); pipe_handle = add_fd (waiting_pipe_fd);
// Set POLLIN for both handlers.
set_pollin (pipe_handle); set_pollin (pipe_handle);
set_pollin (socket_handle); set_pollin (socket_handle);
...@@ -81,15 +70,16 @@ void zmq::pgm_receiver_t::plug (i_inout *inout_) ...@@ -81,15 +70,16 @@ void zmq::pgm_receiver_t::plug (i_inout *inout_)
void zmq::pgm_receiver_t::unplug () void zmq::pgm_receiver_t::unplug ()
{ {
// Delete decoders. // Delete decoders.
for (peer_t::iterator it = peers.begin (); it != peers.end (); it++) { for (peers_t::iterator it = peers.begin (); it != peers.end (); it++) {
if (it->second.decoder != NULL) if (it->second.decoder != NULL)
delete it->second.decoder; delete it->second.decoder;
} }
peers.clear (); peers.clear ();
// Stop polling.
rm_fd (socket_handle); rm_fd (socket_handle);
rm_fd (pipe_handle); rm_fd (pipe_handle);
inout = NULL; inout = NULL;
} }
...@@ -98,101 +88,77 @@ void zmq::pgm_receiver_t::revive () ...@@ -98,101 +88,77 @@ void zmq::pgm_receiver_t::revive ()
zmq_assert (false); zmq_assert (false);
} }
// POLLIN event from socket or waiting_pipe.
void zmq::pgm_receiver_t::in_event () void zmq::pgm_receiver_t::in_event ()
{ {
// Iterator to peers map. // Read data from the underlying pgm_socket.
peer_t::iterator it; unsigned char *data = NULL;
// Data from PGM socket.
unsigned char *raw_data = NULL;
const pgm_tsi_t *tsi = NULL; const pgm_tsi_t *tsi = NULL;
ssize_t nbytes = 0; ssize_t received = pgm_socket.receive ((void**) &data, &tsi);
do {
// Read data from underlying pgm_socket.
nbytes = pgm_socket.receive ((void**) &raw_data, &tsi);
// No ODATA or RDATA.
if (!nbytes)
break;
// Fid TSI in peers list. // No data to process. This may happen if the packet received is
it = peers.find (*tsi); // neither ODATA nor ODATA.
if (received == 0)
return;
// Data loss. // Find the peer based on its TSI.
if (nbytes == -1) { peers_t::iterator it = peers.find (*tsi);
zmq_assert (it != peers.end ()); // Data loss. Delete decoder and mark the peer as disjoint.
if (received == -1) {
// Delete decoder and set joined to false. zmq_assert (it != peers.end ());
it->second.joined = false; it->second.joined = false;
if (it->second.decoder != NULL) {
if (it->second.decoder != NULL) { delete it->second.decoder;
delete it->second.decoder; it->second.decoder = NULL;
it->second.decoder = NULL;
}
break;
} }
return;
}
// Read offset of the fist message in current APDU. // New peer. Add it to the list of know but unjoint peers.
zmq_assert ((size_t) nbytes >= sizeof (uint16_t)); if (it == peers.end ()) {
uint16_t apdu_offset = get_uint16 (raw_data); peer_info_t peer_info = {false, NULL};
it = peers.insert (std::make_pair (*tsi, peer_info)).first;
}
// Shift raw_data & decrease nbytes by the first message offset // Read the offset of the fist message in the current packet.
// information (sizeof uint16_t). zmq_assert ((size_t) received >= sizeof (uint16_t));
raw_data += sizeof (uint16_t); uint16_t offset = get_uint16 (data);
nbytes -= sizeof (uint16_t); data += sizeof (uint16_t);
received -= sizeof (uint16_t);
// New peer. // Join the stream if needed.
if (it == peers.end ()) { if (!it->second.joined) {
peer_info_t peer_info = {false, NULL};
it = peers.insert (std::make_pair (*tsi, peer_info)).first;
}
// There is not beginning of the message in current APDU and we // There is no beginning of the message in current packet.
// are not joined jet -> throwing data. // Ignore the data.
if (apdu_offset == 0xFFFF && !it->second.joined) { if (offset == 0xffff)
break; return;
}
// Now is the possibility to join the stream. zmq_assert (offset <= received);
if (!it->second.joined) { zmq_assert (it->second.decoder == NULL);
zmq_assert (apdu_offset <= nbytes);
zmq_assert (it->second.decoder == NULL);
// We have to move data to the begining of the first message. // We have to move data to the begining of the first message.
raw_data += apdu_offset; data += offset;
nbytes -= apdu_offset; received -= offset;
// Joined the stream. // Mark the stream as joined.
it->second.joined = true; it->second.joined = true;
// Create and connect decoder for joined peer. // Create and connect decoder for the peer.
it->second.decoder = new (std::nothrow) zmq_decoder_t (0, NULL, 0); it->second.decoder = new (std::nothrow) zmq_decoder_t (0, NULL, 0);
it->second.decoder->set_inout (inout); it->second.decoder->set_inout (inout);
} }
if (nbytes > 0) {
// Push all the data to the decoder.
// TODO: process_buffer may not process entire buffer!
it->second.decoder->process_buffer (raw_data, nbytes);
}
} while (nbytes > 0); if (received) {
// Flush any messages decoder may have produced to the dispatcher. // Push all the data to the decoder.
inout->flush (); // TODO: process_buffer may not process entire buffer!
size_t processed = it->second.decoder->process_buffer (data, received);
} zmq_assert (processed == received);
void zmq::pgm_receiver_t::out_event () // Flush any messages decoder may have produced.
{ inout->flush ();
zmq_assert (false); }
} }
#endif #endif
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#endif #endif
#include <map> #include <map>
#include <pgm/pgm.h> #include <algorithm>
#include "io_object.hpp" #include "io_object.hpp"
#include "i_engine.hpp" #include "i_engine.hpp"
...@@ -45,8 +45,6 @@ namespace zmq ...@@ -45,8 +45,6 @@ namespace zmq
public: public:
// Creates gm_engine. Underlying PGM connection is initialised
// using network_ parameter.
pgm_receiver_t (class io_thread_t *parent_, const options_t &options_); pgm_receiver_t (class io_thread_t *parent_, const options_t &options_);
~pgm_receiver_t (); ~pgm_receiver_t ();
...@@ -59,11 +57,12 @@ namespace zmq ...@@ -59,11 +57,12 @@ namespace zmq
// i_poll_events interface implementation. // i_poll_events interface implementation.
void in_event (); void in_event ();
void out_event ();
private: private:
// Map to hold TSI, joined and decoder for each peer. // If joined is true we are already getting messages from the peer.
// It it's false, we are getting data but still we haven't seen
// beginning of a message.
struct peer_info_t struct peer_info_t
{ {
bool joined; bool joined;
...@@ -84,8 +83,8 @@ namespace zmq ...@@ -84,8 +83,8 @@ namespace zmq
} }
}; };
typedef std::map <pgm_tsi_t, peer_info_t, tsi_comp> peer_t; typedef std::map <pgm_tsi_t, peer_info_t, tsi_comp> peers_t;
peer_t peers; peers_t peers;
// PGM socket. // PGM socket.
pgm_socket_t pgm_socket; pgm_socket_t pgm_socket;
......
...@@ -25,12 +25,13 @@ ...@@ -25,12 +25,13 @@
#include "windows.hpp" #include "windows.hpp"
#endif #endif
#include <iostream> #include <stdlib.h>
#include "io_thread.hpp" #include "io_thread.hpp"
#include "pgm_sender.hpp" #include "pgm_sender.hpp"
#include "err.hpp" #include "err.hpp"
#include "wire.hpp" #include "wire.hpp"
#include "stdint.hpp"
zmq::pgm_sender_t::pgm_sender_t (io_thread_t *parent_, zmq::pgm_sender_t::pgm_sender_t (io_thread_t *parent_,
const options_t &options_) : const options_t &options_) :
...@@ -38,18 +39,21 @@ zmq::pgm_sender_t::pgm_sender_t (io_thread_t *parent_, ...@@ -38,18 +39,21 @@ zmq::pgm_sender_t::pgm_sender_t (io_thread_t *parent_,
encoder (0, false), encoder (0, false),
pgm_socket (false, options_), pgm_socket (false, options_),
options (options_), options (options_),
inout (NULL),
out_buffer (NULL), out_buffer (NULL),
out_buffer_size (0), out_buffer_size (0),
write_size (0), write_size (0)
write_pos (0),
first_message_offset (-1)
{ {
} }
int zmq::pgm_sender_t::init (bool udp_encapsulation_, const char *network_) int zmq::pgm_sender_t::init (bool udp_encapsulation_, const char *network_)
{ {
return pgm_socket.init (udp_encapsulation_, network_); int rc = pgm_socket.init (udp_encapsulation_, network_);
if (rc != 0)
return rc;
out_buffer_size = pgm_socket.get_max_tsdu_size ();
out_buffer = (unsigned char*) malloc (out_buffer_size);
zmq_assert (out_buffer);
} }
void zmq::pgm_sender_t::plug (i_inout *inout_) void zmq::pgm_sender_t::plug (i_inout *inout_)
...@@ -61,17 +65,11 @@ void zmq::pgm_sender_t::plug (i_inout *inout_) ...@@ -61,17 +65,11 @@ void zmq::pgm_sender_t::plug (i_inout *inout_)
encoder.set_inout (inout_); encoder.set_inout (inout_);
// Fill fds from PGM transport. // Fill fds from PGM transport and add them to the poller.
pgm_socket.get_sender_fds pgm_socket.get_sender_fds (&downlink_socket_fd, &uplink_socket_fd,
(&downlink_socket_fd, &uplink_socket_fd, &rdata_notify_fd); &rdata_notify_fd);
// Add downlink_socket_fd into poller.
handle = add_fd (downlink_socket_fd); handle = add_fd (downlink_socket_fd);
// Add uplink_socket_fd into the poller.
uplink_handle = add_fd (uplink_socket_fd); uplink_handle = add_fd (uplink_socket_fd);
// Add rdata_notify_fd into the poller.
rdata_notify_handle = add_fd (rdata_notify_fd); rdata_notify_handle = add_fd (rdata_notify_fd);
// Set POLLIN. We wont never want to stop polling for uplink = we never // Set POLLIN. We wont never want to stop polling for uplink = we never
...@@ -81,8 +79,6 @@ void zmq::pgm_sender_t::plug (i_inout *inout_) ...@@ -81,8 +79,6 @@ void zmq::pgm_sender_t::plug (i_inout *inout_)
// Set POLLOUT for downlink_socket_handle. // Set POLLOUT for downlink_socket_handle.
set_pollout (handle); set_pollout (handle);
inout = inout_;
} }
void zmq::pgm_sender_t::unplug () void zmq::pgm_sender_t::unplug ()
...@@ -91,7 +87,6 @@ void zmq::pgm_sender_t::unplug () ...@@ -91,7 +87,6 @@ void zmq::pgm_sender_t::unplug ()
rm_fd (uplink_handle); rm_fd (uplink_handle);
rm_fd (rdata_notify_handle); rm_fd (rdata_notify_handle);
encoder.set_inout (NULL); encoder.set_inout (NULL);
inout = NULL;
} }
void zmq::pgm_sender_t::revive () void zmq::pgm_sender_t::revive ()
...@@ -103,14 +98,14 @@ void zmq::pgm_sender_t::revive () ...@@ -103,14 +98,14 @@ void zmq::pgm_sender_t::revive ()
zmq::pgm_sender_t::~pgm_sender_t () zmq::pgm_sender_t::~pgm_sender_t ()
{ {
if (out_buffer) { if (out_buffer) {
pgm_socket.free_buffer (out_buffer); free (out_buffer);
out_buffer = NULL; out_buffer = NULL;
} }
} }
// In event on sender side means NAK or SPMR receiving from some peer.
void zmq::pgm_sender_t::in_event () void zmq::pgm_sender_t::in_event ()
{ {
// In event on sender side means NAK or SPMR receiving from some peer.
pgm_socket.process_upstream (); pgm_socket.process_upstream ();
} }
...@@ -118,55 +113,36 @@ void zmq::pgm_sender_t::out_event () ...@@ -118,55 +113,36 @@ void zmq::pgm_sender_t::out_event ()
{ {
// POLLOUT event from send socket. If write buffer is empty, // POLLOUT event from send socket. If write buffer is empty,
// try to read new data from the encoder. // try to read new data from the encoder.
if (write_pos == write_size) { if (write_size == 0) {
// Get buffer if we do not have already one.
if (!out_buffer) {
out_buffer = (unsigned char*)
pgm_socket.get_buffer (&out_buffer_size);
}
assert (out_buffer_size > 0); // First two bytes (sizeof uint16_t) are used to store message
// offset in following steps. Note that by passing our buffer to
// First two bytes /sizeof (uint16_t)/ are used to store message // the get data function we prevent it from returning its own buffer.
// offset in following steps.
unsigned char *bf = out_buffer + sizeof (uint16_t); unsigned char *bf = out_buffer + sizeof (uint16_t);
write_size = out_buffer_size - sizeof (uint16_t); size_t bfsz = out_buffer_size - sizeof (uint16_t);
encoder.get_data (&bf, &write_size, &first_message_offset); int offset = -1;
write_pos = 0; encoder.get_data (&bf, &bfsz, &offset);
// If there are no data to write stop polling for output. // If there are no data to write stop polling for output.
if (!write_size) { if (!bfsz) {
reset_pollout (handle); reset_pollout (handle);
} else { return;
// Addning uint16_t for offset in a case when encoder returned > 0B.
write_size += sizeof (uint16_t);
} }
}
// If there are any data to write, write them into the socket.
// Note that all data has to written in one write_one_pkt_with_offset call.
if (write_pos < write_size) {
size_t nbytes = write_one_pkt_with_offset (out_buffer + write_pos,
write_size - write_pos, (uint16_t) first_message_offset);
// We can write either all data or 0 which means rate limit reached.
zmq_assert (write_size - write_pos == nbytes || nbytes == 0);
write_pos += nbytes; // Put offset information in the buffer.
write_size = bfsz + sizeof (uint16_t);
put_uint16 (out_buffer, offset == -1 ? 0xffff : (uint16_t) offset);
} }
}
size_t zmq::pgm_sender_t::write_one_pkt_with_offset (unsigned char *data_, // Send the data.
size_t size_, uint16_t offset_) size_t nbytes = pgm_socket.send (out_buffer, write_size);
{
// Put offset information in the buffer.
put_uint16 (data_, offset_);
// Send data.
size_t nbytes = pgm_socket.send (data_, size_);
return nbytes; // We can write either all data or 0 which means rate limit reached.
if (nbytes == write_size)
write_size = 0;
else
zmq_assert (nbytes == 0);
} }
#endif #endif
...@@ -42,6 +42,7 @@ namespace zmq ...@@ -42,6 +42,7 @@ namespace zmq
{ {
public: public:
pgm_sender_t (class io_thread_t *parent_, const options_t &options_); pgm_sender_t (class io_thread_t *parent_, const options_t &options_);
~pgm_sender_t (); ~pgm_sender_t ();
...@@ -58,12 +59,6 @@ namespace zmq ...@@ -58,12 +59,6 @@ namespace zmq
private: private:
// Send one APDU with first message offset information.
// Note that first 2 bytes in data_ are used to store the offset_
// and thus user data has to start at data_ + sizeof (uint16_t).
size_t write_one_pkt_with_offset (unsigned char *data_, size_t size_,
uint16_t offset_);
// Message encoder. // Message encoder.
zmq_encoder_t encoder; zmq_encoder_t encoder;
...@@ -78,20 +73,15 @@ namespace zmq ...@@ -78,20 +73,15 @@ namespace zmq
handle_t uplink_handle; handle_t uplink_handle;
handle_t rdata_notify_handle; handle_t rdata_notify_handle;
// Parent session.
i_inout *inout;
// Output buffer from pgm_socket. // Output buffer from pgm_socket.
unsigned char *out_buffer; unsigned char *out_buffer;
// Output buffer size. // Output buffer size.
size_t out_buffer_size; size_t out_buffer_size;
// Number of bytes in the buffer to be written to the socket.
// If zero, there are no data to be sent.
size_t write_size; size_t write_size;
size_t write_pos;
// Offset of the first mesage in data chunk taken from encoder.
int first_message_offset;
pgm_sender_t (const pgm_sender_t&); pgm_sender_t (const pgm_sender_t&);
void operator = (const pgm_sender_t&); void operator = (const pgm_sender_t&);
......
This diff is collapsed.
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
#include <pgm/pgm.h> #include <pgm/pgm.h>
#include "stdint.hpp"
#include "options.hpp" #include "options.hpp"
namespace zmq namespace zmq
...@@ -62,11 +61,8 @@ namespace zmq ...@@ -62,11 +61,8 @@ namespace zmq
// Send data as one APDU, transmit window owned memory. // Send data as one APDU, transmit window owned memory.
size_t send (unsigned char *data_, size_t data_len_); size_t send (unsigned char *data_, size_t data_len_);
// Allocates one slice for packet in tx window. // Returns max tsdu size without fragmentation.
void *get_buffer (size_t *size_); size_t get_max_tsdu_size ();
// Fees memory allocated by get_buffer.
void free_buffer (void *data_);
// Receive data from pgm socket. // Receive data from pgm socket.
ssize_t receive (void **data_, const pgm_tsi_t **tsi_); ssize_t receive (void **data_, const pgm_tsi_t **tsi_);
...@@ -76,21 +72,9 @@ namespace zmq ...@@ -76,21 +72,9 @@ namespace zmq
void process_upstream (); void process_upstream ();
private: private:
// Open PGM transport.
int open_transport ();
// Close transport.
void close_transport ();
// OpenPGM transport // OpenPGM transport
pgm_transport_t* transport; pgm_transport_t* transport;
// Returns max tsdu size without fragmentation.
size_t get_max_tsdu_size ();
// Returns maximum count of apdus which fills readbuf_size_
size_t get_max_apdu_at_once (size_t readbuf_size_);
// Associated socket options. // Associated socket options.
options_t options; options_t options;
...@@ -98,19 +82,13 @@ namespace zmq ...@@ -98,19 +82,13 @@ namespace zmq
// true when pgm_socket should create receiving side. // true when pgm_socket should create receiving side.
bool receiver; bool receiver;
// TIBCO Rendezvous format network info. // Array of pgm_msgv_t structures to store received data
char network [256];
// PGM transport port number.
uint16_t port_number;
// If we are using UDP encapsulation.
bool udp_encapsulation;
// Array of pgm_msgv_t structures to store received data
// from the socket (pgm_transport_recvmsgv). // from the socket (pgm_transport_recvmsgv).
pgm_msgv_t *pgm_msgv; pgm_msgv_t *pgm_msgv;
// Size of pgm_msgv array.
size_t pgm_msgv_len;
// How many bytes were read from pgm socket. // How many bytes were read from pgm socket.
size_t nbytes_rec; size_t nbytes_rec;
...@@ -119,9 +97,6 @@ namespace zmq ...@@ -119,9 +97,6 @@ namespace zmq
// How many messages from pgm_msgv were already sent up. // How many messages from pgm_msgv were already sent up.
size_t pgm_msgv_processed; size_t pgm_msgv_processed;
// Size of pgm_msgv array.
size_t pgm_msgv_len;
}; };
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment