summaryrefslogtreecommitdiff
path: root/src/pgm_receiver.hpp
diff options
context:
space:
mode:
authormalosek <malosek@fastmq.com>2009-09-16 10:11:01 +0200
committermalosek <malosek@fastmq.com>2009-09-16 10:11:01 +0200
commit969522bbf55467b6f6e8113be28451d087060843 (patch)
tree6a78392b4f76bca99b54c1eb7d44550b4dee34c5 /src/pgm_receiver.hpp
parent0381a78c0484012e760d61051f325c71136df17e (diff)
added OpenPGM receiver - ZMQ_SUB
Diffstat (limited to 'src/pgm_receiver.hpp')
-rw-r--r--src/pgm_receiver.hpp98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/pgm_receiver.hpp b/src/pgm_receiver.hpp
new file mode 100644
index 0000000..ce9fa1a
--- /dev/null
+++ b/src/pgm_receiver.hpp
@@ -0,0 +1,98 @@
+/*
+ Copyright (c) 2007-2009 FastMQ Inc.
+
+ This file is part of 0MQ.
+
+ 0MQ is free software; you can redistribute it and/or modify it under
+ the terms of the Lesser GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ 0MQ is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ Lesser GNU General Public License for more details.
+
+ You should have received a copy of the Lesser GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __ZMQ_PGM_RECEIVER_HPP_INCLUDED__
+#define __ZMQ_PGM_RECEIVER_HPP_INCLUDED__
+
+#include "platform.hpp"
+
+#if defined ZMQ_HAVE_OPENPGM
+
+#include "io_object.hpp"
+#include "i_engine.hpp"
+#include "options.hpp"
+#include "zmq_decoder.hpp"
+#include "pgm_socket.hpp"
+
+namespace zmq
+{
+
+ class pgm_receiver_t : public io_object_t, public i_engine
+ {
+
+ public:
+
+ // Creates gm_engine. Underlying PGM connection is initialised
+ // using network_ parameter.
+ pgm_receiver_t (class io_thread_t *parent_, const options_t &options_,
+ const char *session_name_);
+ ~pgm_receiver_t ();
+
+ int init (const char *network_);
+ void reconnect ();
+
+ // i_engine interface implementation.
+ void plug (struct i_inout *inout_);
+ void unplug ();
+ void revive ();
+
+ // i_poll_events interface implementation.
+ void in_event ();
+ void out_event ();
+
+ private:
+ // Read exactly iov_len_ count APDUs, function returns number
+ // of bytes received. Note that if we did not join message stream
+ // before and there is not message beginning in the APDUs being
+ // received iov_len for such a APDUs will be 0.
+ ssize_t receive_with_offset (void **data_);
+
+ // Message decoder.
+ zmq_decoder_t decoder;
+
+ // PGM socket.
+ pgm_socket_t pgm_socket;
+
+ // Socket options.
+ options_t options;
+
+ // Name of the session associated with the connecter.
+ std::string session_name;
+
+ // If receiver joined the messages stream.
+ bool joined;
+
+ // Parent session.
+ i_inout *inout;
+
+ // Poll handle associated with PGM socket.
+ handle_t socket_handle;
+
+ // Poll handle associated with engine PGM waiting pipe.
+ handle_t pipe_handle;
+
+ pgm_receiver_t (const pgm_receiver_t&);
+ void operator = (const pgm_receiver_t&);
+ };
+
+}
+
+#endif
+
+#endif