2009-07-29 12:07:54 +02:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
libzmq is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
|
|
by the Free Software Foundation; either version 3 of the License, or
|
2009-07-29 12:07:54 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
As a special exception, the Contributors give you permission to link
|
|
|
|
this library with independent modules to produce an executable,
|
|
|
|
regardless of the license terms of these independent modules, and to
|
|
|
|
copy and distribute the resulting executable under terms of your choice,
|
|
|
|
provided that you also meet, for each linked independent module, the
|
|
|
|
terms and conditions of the license of that module. An independent
|
|
|
|
module is a module which is not derived from or based on this library.
|
|
|
|
If you modify this library, you must extend this exception to your
|
|
|
|
version of the library.
|
|
|
|
|
|
|
|
libzmq 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.
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-10-30 15:08:28 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2009-07-29 12:07:54 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
#ifndef __ZMQ_MSG_HPP_INCLUDE__
|
|
|
|
#define __ZMQ_MSG_HPP_INCLUDE__
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
#include <stddef.h>
|
2012-02-16 22:55:18 +01:00
|
|
|
#include <stdio.h>
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
#include "config.hpp"
|
2016-01-28 10:25:26 +01:00
|
|
|
#include "fd.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "atomic_counter.hpp"
|
2014-05-03 21:00:42 +02:00
|
|
|
#include "metadata.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2011-05-03 23:20:43 +02:00
|
|
|
// Signature for free function to deallocate the message content.
|
|
|
|
// Note that it has to be declared as "C" so that it is the same as
|
|
|
|
// zmq_free_fn defined in zmq.h.
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
typedef void (msg_free_fn) (void *data, void *hint);
|
|
|
|
}
|
|
|
|
|
2009-08-21 14:29:22 +02:00
|
|
|
namespace zmq
|
|
|
|
{
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
// Note that this structure needs to be explicitly constructed
|
|
|
|
// (init functions) and destructed (close function).
|
2009-08-21 14:29:22 +02:00
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
class msg_t
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2011-04-21 22:27:48 +02:00
|
|
|
public:
|
2015-06-13 17:30:36 +02:00
|
|
|
|
2016-01-29 09:45:44 +01:00
|
|
|
// Shared message buffer. Message data are either allocated in one
|
|
|
|
// continuous block along with this structure - thus avoiding one
|
2017-03-25 21:51:18 +01:00
|
|
|
// malloc/free pair or they are stored in user-supplied memory.
|
2016-01-29 09:45:44 +01:00
|
|
|
// In the latter case, ffn member stores pointer to the function to be
|
|
|
|
// used to deallocate the data. If the buffer is actually shared (there
|
|
|
|
// are at least 2 references to it) refcount member contains number of
|
|
|
|
// references.
|
|
|
|
struct content_t
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
size_t size;
|
|
|
|
msg_free_fn *ffn;
|
|
|
|
void *hint;
|
|
|
|
zmq::atomic_counter_t refcnt;
|
|
|
|
};
|
|
|
|
|
2013-08-18 22:50:50 +02:00
|
|
|
// Message flags.
|
2011-04-21 22:27:48 +02:00
|
|
|
enum
|
|
|
|
{
|
2013-09-04 17:59:45 +02:00
|
|
|
more = 1, // Followed by more parts
|
|
|
|
command = 2, // Command frame (see ZMTP spec)
|
2014-01-12 21:58:36 +01:00
|
|
|
credential = 32,
|
2011-11-04 08:00:47 +01:00
|
|
|
identity = 64,
|
2011-11-01 13:39:54 +01:00
|
|
|
shared = 128
|
2011-04-21 22:27:48 +02:00
|
|
|
};
|
|
|
|
|
2017-03-26 08:49:23 +02:00
|
|
|
bool check () const;
|
2015-06-13 17:30:36 +02:00
|
|
|
int init();
|
|
|
|
|
|
|
|
int init (void* data, size_t size_,
|
|
|
|
msg_free_fn* ffn_, void* hint,
|
2016-01-29 09:45:44 +01:00
|
|
|
content_t* content_ = NULL);
|
2015-06-13 17:30:36 +02:00
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
int init_size (size_t size_);
|
2011-05-03 23:20:43 +02:00
|
|
|
int init_data (void *data_, size_t size_, msg_free_fn *ffn_,
|
2015-06-13 17:30:36 +02:00
|
|
|
void *hint_);
|
2016-01-29 09:45:44 +01:00
|
|
|
int init_external_storage(content_t* content_, void *data_, size_t size_,
|
2015-06-13 17:30:36 +02:00
|
|
|
msg_free_fn *ffn_, void *hint_);
|
2011-04-21 22:27:48 +02:00
|
|
|
int init_delimiter ();
|
2016-01-28 17:20:01 +01:00
|
|
|
int init_join ();
|
|
|
|
int init_leave ();
|
2011-04-21 22:27:48 +02:00
|
|
|
int close ();
|
|
|
|
int move (msg_t &src_);
|
|
|
|
int copy (msg_t &src_);
|
|
|
|
void *data ();
|
2017-03-26 08:49:23 +02:00
|
|
|
size_t size () const;
|
|
|
|
unsigned char flags () const;
|
2011-04-21 22:27:48 +02:00
|
|
|
void set_flags (unsigned char flags_);
|
|
|
|
void reset_flags (unsigned char flags_);
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata () const;
|
|
|
|
void set_metadata (metadata_t *metadata_);
|
2014-08-13 08:51:13 +02:00
|
|
|
void reset_metadata ();
|
2012-07-31 16:31:41 +02:00
|
|
|
bool is_identity () const;
|
2014-01-12 21:58:36 +01:00
|
|
|
bool is_credential () const;
|
2014-01-08 07:49:02 +01:00
|
|
|
bool is_delimiter () const;
|
2016-01-28 17:20:01 +01:00
|
|
|
bool is_join () const;
|
|
|
|
bool is_leave () const;
|
2015-06-13 17:30:36 +02:00
|
|
|
bool is_vsm () const;
|
|
|
|
bool is_cmsg () const;
|
|
|
|
bool is_zcmsg() const;
|
2015-09-11 19:15:00 +02:00
|
|
|
uint32_t get_routing_id ();
|
|
|
|
int set_routing_id (uint32_t routing_id_);
|
2016-01-19 19:05:22 +01:00
|
|
|
int reset_routing_id ();
|
2016-01-28 12:43:23 +01:00
|
|
|
const char * group ();
|
|
|
|
int set_group (const char* group_);
|
2016-01-28 14:26:07 +01:00
|
|
|
int set_group (const char*, size_t length);
|
2011-04-21 22:27:48 +02:00
|
|
|
|
|
|
|
// After calling this function you can copy the message in POD-style
|
|
|
|
// refs_ times. No need to call copy.
|
|
|
|
void add_refs (int refs_);
|
|
|
|
|
2011-09-02 13:44:22 +02:00
|
|
|
// Removes references previously added by add_refs. If the number of
|
|
|
|
// references drops to 0, the message is closed and false is returned.
|
|
|
|
bool rm_refs (int refs_);
|
2011-04-21 22:27:48 +02:00
|
|
|
|
2011-07-08 18:12:59 +02:00
|
|
|
// Size in bytes of the largest message that is still copied around
|
|
|
|
// rather than being reference-counted.
|
2015-01-10 23:44:55 +01:00
|
|
|
enum { msg_t_size = 64 };
|
2016-01-28 10:25:26 +01:00
|
|
|
enum { max_vsm_size = msg_t_size - (sizeof (metadata_t *) +
|
|
|
|
3 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))};
|
2015-06-13 17:30:36 +02:00
|
|
|
private:
|
|
|
|
zmq::atomic_counter_t* refcnt();
|
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
// Different message types.
|
|
|
|
enum type_t
|
|
|
|
{
|
|
|
|
type_min = 101,
|
2013-08-19 14:45:29 +02:00
|
|
|
// VSM messages store the content in the message itself
|
2011-04-21 22:27:48 +02:00
|
|
|
type_vsm = 101,
|
2013-08-19 14:45:29 +02:00
|
|
|
// LMSG messages store the content in malloc-ed memory
|
2011-04-21 22:27:48 +02:00
|
|
|
type_lmsg = 102,
|
2013-08-19 14:45:29 +02:00
|
|
|
// Delimiter messages are used in envelopes
|
2011-04-21 22:27:48 +02:00
|
|
|
type_delimiter = 103,
|
2013-08-19 14:45:29 +02:00
|
|
|
// CMSG messages point to constant data
|
2013-08-18 23:40:38 +02:00
|
|
|
type_cmsg = 104,
|
2014-04-29 22:30:51 +02:00
|
|
|
|
2015-06-13 17:30:36 +02:00
|
|
|
// zero-copy LMSG message for v2_decoder
|
|
|
|
type_zclmsg = 105,
|
|
|
|
|
2016-01-28 17:20:01 +01:00
|
|
|
// Join message for radio_dish
|
|
|
|
type_join = 106,
|
|
|
|
|
|
|
|
// Leave message for radio_dish
|
|
|
|
type_leave = 107,
|
|
|
|
|
|
|
|
type_max = 107
|
2015-06-13 17:30:36 +02:00
|
|
|
};
|
2015-05-29 23:47:03 +02:00
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
// Note that fields shared between different message types are not
|
2015-06-23 13:45:51 +02:00
|
|
|
// moved to the parent class (msg_t). This way we get tighter packing
|
2011-04-21 22:27:48 +02:00
|
|
|
// of the data. Shared fields can be accessed via 'base' member of
|
|
|
|
// the union.
|
|
|
|
union {
|
|
|
|
struct {
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata;
|
2016-01-28 10:25:26 +01:00
|
|
|
unsigned char unused [msg_t_size - (sizeof (metadata_t *) +
|
|
|
|
2 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))];
|
2011-04-21 22:27:48 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-02-02 00:17:37 +01:00
|
|
|
uint32_t routing_id;
|
2011-04-21 22:27:48 +02:00
|
|
|
} base;
|
|
|
|
struct {
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata;
|
2011-07-08 18:12:59 +02:00
|
|
|
unsigned char data [max_vsm_size];
|
|
|
|
unsigned char size;
|
2011-04-21 22:27:48 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-02-02 00:17:37 +01:00
|
|
|
uint32_t routing_id;
|
2011-04-21 22:27:48 +02:00
|
|
|
} vsm;
|
2015-06-13 17:30:36 +02:00
|
|
|
struct {
|
|
|
|
metadata_t *metadata;
|
|
|
|
content_t *content;
|
2016-01-28 10:25:26 +01:00
|
|
|
unsigned char unused [msg_t_size - (sizeof (metadata_t *) +
|
|
|
|
sizeof (content_t*) +
|
|
|
|
2 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))];
|
2015-06-13 17:30:36 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-06-13 17:30:36 +02:00
|
|
|
uint32_t routing_id;
|
|
|
|
} lmsg;
|
|
|
|
struct {
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata;
|
2016-01-29 09:45:44 +01:00
|
|
|
content_t *content;
|
2016-01-28 10:25:26 +01:00
|
|
|
unsigned char unused [msg_t_size - (sizeof (metadata_t *) +
|
2016-01-29 09:45:44 +01:00
|
|
|
sizeof (content_t*) +
|
2016-01-28 10:25:26 +01:00
|
|
|
2 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))];
|
2011-04-21 22:27:48 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-02-02 00:17:37 +01:00
|
|
|
uint32_t routing_id;
|
2015-06-13 17:30:36 +02:00
|
|
|
} zclmsg;
|
2013-08-18 23:40:38 +02:00
|
|
|
struct {
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata;
|
2013-08-18 23:40:38 +02:00
|
|
|
void* data;
|
|
|
|
size_t size;
|
2016-01-28 10:25:26 +01:00
|
|
|
unsigned char unused [msg_t_size - (sizeof (metadata_t *) +
|
|
|
|
sizeof (void*) +
|
|
|
|
sizeof (size_t) +
|
|
|
|
2 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))];
|
2013-08-18 23:40:38 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-02-02 00:17:37 +01:00
|
|
|
uint32_t routing_id;
|
2013-08-18 23:40:38 +02:00
|
|
|
} cmsg;
|
2011-04-21 22:27:48 +02:00
|
|
|
struct {
|
2014-05-03 21:00:42 +02:00
|
|
|
metadata_t *metadata;
|
2016-01-28 10:25:26 +01:00
|
|
|
unsigned char unused [msg_t_size - (sizeof (metadata_t *) +
|
|
|
|
2 +
|
2016-01-28 12:43:23 +01:00
|
|
|
16 +
|
2016-05-04 14:03:15 +02:00
|
|
|
sizeof (uint32_t))];
|
2011-04-21 22:27:48 +02:00
|
|
|
unsigned char type;
|
|
|
|
unsigned char flags;
|
2016-01-28 12:43:23 +01:00
|
|
|
char group [16];
|
2015-02-02 00:17:37 +01:00
|
|
|
uint32_t routing_id;
|
2011-04-21 22:27:48 +02:00
|
|
|
} delimiter;
|
|
|
|
} u;
|
2009-07-29 12:07:54 +02:00
|
|
|
};
|
|
|
|
|
2009-08-21 14:29:22 +02:00
|
|
|
}
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
#endif
|