2010-12-04 23:14:38 +01:00
|
|
|
/*
|
2011-03-02 16:30:40 +01:00
|
|
|
Copyright (c) 2007-2011 iMatix Corporation
|
|
|
|
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser 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
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ZMQ_XSUB_HPP_INCLUDED__
|
|
|
|
#define __ZMQ_XSUB_HPP_INCLUDED__
|
|
|
|
|
|
|
|
#include "trie.hpp"
|
|
|
|
#include "socket_base.hpp"
|
2011-04-21 22:27:48 +02:00
|
|
|
#include "msg.hpp"
|
2010-12-04 23:14:38 +01:00
|
|
|
#include "fq.hpp"
|
|
|
|
|
|
|
|
namespace zmq
|
|
|
|
{
|
|
|
|
|
|
|
|
class xsub_t : public socket_base_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
xsub_t (class ctx_t *parent_, uint32_t tid_);
|
|
|
|
~xsub_t ();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// Overloads of functions from socket_base_t.
|
|
|
|
void xattach_pipes (class reader_t *inpipe_, class writer_t *outpipe_,
|
|
|
|
const blob_t &peer_identity_);
|
2011-04-21 22:27:48 +02:00
|
|
|
int xsend (class msg_t *msg_, int options_);
|
2010-12-05 09:48:52 +01:00
|
|
|
bool xhas_out ();
|
2011-04-21 22:27:48 +02:00
|
|
|
int xrecv (class msg_t *msg_, int flags_);
|
2010-12-04 23:14:38 +01:00
|
|
|
bool xhas_in ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Hook into the termination process.
|
|
|
|
void process_term (int linger_);
|
|
|
|
|
|
|
|
// Check whether the message matches at least one subscription.
|
2011-04-21 22:27:48 +02:00
|
|
|
bool match (class msg_t *msg_);
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
// Fair queueing object for inbound pipes.
|
|
|
|
fq_t fq;
|
|
|
|
|
|
|
|
// The repository of subscriptions.
|
|
|
|
trie_t subscriptions;
|
|
|
|
|
|
|
|
// If true, 'message' contains a matching message to return on the
|
|
|
|
// next recv call.
|
|
|
|
bool has_message;
|
2011-04-21 22:27:48 +02:00
|
|
|
msg_t message;
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
// If true, part of a multipart message was already received, but
|
|
|
|
// there are following parts still waiting.
|
|
|
|
bool more;
|
|
|
|
|
|
|
|
xsub_t (const xsub_t&);
|
2011-01-13 11:44:23 +01:00
|
|
|
const xsub_t &operator = (const xsub_t&);
|
2010-12-04 23:14:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|