zmq.h 9.56 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
2
    Copyright (c) 2007-2012 iMatix Corporation
Pieter Hintjens's avatar
Pieter Hintjens committed
3
    Copyright (c) 2009-2011 250bpm s.r.o.
4
    Copyright (c) 2011 VMware, Inc.
5
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
Martin Sustrik's avatar
Martin Sustrik committed
6 7 8 9

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
10
    the terms of the GNU Lesser General Public License as published by
Martin Sustrik's avatar
Martin Sustrik committed
11 12 13 14 15 16
    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
17
    GNU Lesser General Public License for more details.
Martin Sustrik's avatar
Martin Sustrik committed
18

19
    You should have received a copy of the GNU Lesser General Public License
Martin Sustrik's avatar
Martin Sustrik committed
20 21 22
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

Martin Sustrik's avatar
Martin Sustrik committed
23 24
#ifndef __ZMQ_H_INCLUDED__
#define __ZMQ_H_INCLUDED__
Martin Sustrik's avatar
Martin Sustrik committed
25 26 27 28 29

#ifdef __cplusplus
extern "C" {
#endif

30
#include <errno.h>
Martin Sustrik's avatar
Martin Sustrik committed
31
#include <stddef.h>
32
#include <stdio.h>
33
#if defined _WIN32
34
#include <winsock2.h>
35
#endif
Martin Sustrik's avatar
Martin Sustrik committed
36

37
/*  Handle DSO symbol visibility                                             */
38 39 40 41 42 43
#if defined _WIN32
#   if defined DLL_EXPORT
#       define ZMQ_EXPORT __declspec(dllexport)
#   else
#       define ZMQ_EXPORT __declspec(dllimport)
#   endif
Martin Sustrik's avatar
Martin Sustrik committed
44
#else
45 46 47 48 49 50
#   if defined __SUNPRO_C  || defined __SUNPRO_CC
#       define ZMQ_EXPORT __global
#   elif (defined __GNUC__ && __GNUC__ >= 4) || defined __INTEL_COMPILER
#       define ZMQ_EXPORT __attribute__ ((visibility("default")))
#   else
#       define ZMQ_EXPORT
51
#   endif
Martin Sustrik's avatar
Martin Sustrik committed
52 53
#endif

54
/******************************************************************************/
55
/*  0MQ versioning support.                                                   */
56
/******************************************************************************/
57

58
/*  Version macros for compile-time API version detection                     */
59 60
#define ZMQ_VERSION_MAJOR 3
#define ZMQ_VERSION_MINOR 1
Martin Sustrik's avatar
Martin Sustrik committed
61
#define ZMQ_VERSION_PATCH 1
62 63 64 65 66 67

#define ZMQ_MAKE_VERSION(major, minor, patch) \
    ((major) * 10000 + (minor) * 100 + (patch))
#define ZMQ_VERSION \
    ZMQ_MAKE_VERSION(ZMQ_VERSION_MAJOR, ZMQ_VERSION_MINOR, ZMQ_VERSION_PATCH)

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
/* ensure one of ZMQ_TYPE_SAFE/UNSAFE is defined */
/* Choose default based on version */

/* Uncomment to test */
/* #define ZMQ_EMULATE_TYPE_SAFE */

#if !defined(ZMQ_TYPE_SAFE) && !defined(ZMQ_TYPE_UNSAFE)
#   if ZMQ_VERSION_MAJOR <= 3
#       if defined ZMQ_EMULATE_TYPE_SAFE
#       else
#           define ZMQ_TYPE_UNSAFE 
#       endif
#    else
#        define ZMQ_TYPE_SAFE
#    endif
#elif defined(ZMQ_TYPE_SAFE) && defined(ZMQ_TYPE_UNSAFE)
#     error "BOTH ZMQ_TYPE_SAFE and ZMQ_TYPE_UNSAFE are defined!"
#endif
   
#ifdef ZMQ_TYPE_UNSAFE
typedef void *zmq_socket_t;
typedef void *zmq_ctx_t;
#else
typedef struct zmq_socket_t { void *data; } zmq_socket_t;
typedef struct zmq_ctx_t { void *data; } zmq_ctx_t;
#endif

95
/*  Run-time API version detection                                            */
96 97
ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch);

98
/******************************************************************************/
99
/*  0MQ errors.                                                               */
100
/******************************************************************************/
101

102
/*  A number random enough not to collide with different errno ranges on      */
103
/*  different OSes. The assumption is that error_t is at least 32-bit type.   */
104 105
#define ZMQ_HAUSNUMERO 156384712

106
/*  On Windows platform some of the standard POSIX errnos are not defined.    */
107 108 109 110 111 112
#ifndef ENOTSUP
#define ENOTSUP (ZMQ_HAUSNUMERO + 1)
#endif
#ifndef EPROTONOSUPPORT
#define EPROTONOSUPPORT (ZMQ_HAUSNUMERO + 2)
#endif
113 114 115 116 117 118 119 120 121 122 123 124
#ifndef ENOBUFS
#define ENOBUFS (ZMQ_HAUSNUMERO + 3)
#endif
#ifndef ENETDOWN
#define ENETDOWN (ZMQ_HAUSNUMERO + 4)
#endif
#ifndef EADDRINUSE
#define EADDRINUSE (ZMQ_HAUSNUMERO + 5)
#endif
#ifndef EADDRNOTAVAIL
#define EADDRNOTAVAIL (ZMQ_HAUSNUMERO + 6)
#endif
malosek's avatar
malosek committed
125 126 127
#ifndef ECONNREFUSED
#define ECONNREFUSED (ZMQ_HAUSNUMERO + 7)
#endif
128 129 130
#ifndef EINPROGRESS
#define EINPROGRESS (ZMQ_HAUSNUMERO + 8)
#endif
131 132 133
#ifndef ENOTSOCK
#define ENOTSOCK (ZMQ_HAUSNUMERO + 9)
#endif
134 135 136
#ifndef EAFNOSUPPORT
#define EAFNOSUPPORT (ZMQ_HAUSNUMERO + 10)
#endif
137

138
/*  Native 0MQ error codes.                                                   */
139 140
#define EFSM (ZMQ_HAUSNUMERO + 51)
#define ENOCOMPATPROTO (ZMQ_HAUSNUMERO + 52)
141
#define ETERM (ZMQ_HAUSNUMERO + 53)
142
#define EMTHREAD (ZMQ_HAUSNUMERO + 54)
143

144 145 146 147
/*  This function retrieves the errno as it is known to 0MQ library. The goal */
/*  of this function is to make the code 100% portable, including where 0MQ   */
/*  compiled with certain CRT library (on Windows) is linked to an            */
/*  application that uses different CRT library.                              */
148
ZMQ_EXPORT int zmq_errno (void);
149 150

/*  Resolves system errors and 0MQ errors to human-readable string.           */
151 152
ZMQ_EXPORT const char *zmq_strerror (int errnum);

153 154 155
/******************************************************************************/
/*  0MQ message definition.                                                   */
/******************************************************************************/
156

157
typedef struct {unsigned char _ [32];} zmq_msg_t;
Martin Sustrik's avatar
Martin Sustrik committed
158

159
typedef void (zmq_free_fn) (void *data, void *hint);
Martin Sustrik's avatar
Martin Sustrik committed
160

161
ZMQ_EXPORT int zmq_msg_init (zmq_msg_t *msg);
162 163
ZMQ_EXPORT int zmq_msg_init_size (zmq_msg_t *msg, size_t size);
ZMQ_EXPORT int zmq_msg_init_data (zmq_msg_t *msg, void *data,
164
    size_t size, zmq_free_fn *ffn, void *hint);
165 166
ZMQ_EXPORT int zmq_msg_send (zmq_msg_t *msg, zmq_socket_t s, int flags);
ZMQ_EXPORT int zmq_msg_recv (zmq_msg_t *msg, zmq_socket_t s, int flags);
167 168 169 170
ZMQ_EXPORT int zmq_msg_close (zmq_msg_t *msg);
ZMQ_EXPORT int zmq_msg_move (zmq_msg_t *dest, zmq_msg_t *src);
ZMQ_EXPORT int zmq_msg_copy (zmq_msg_t *dest, zmq_msg_t *src);
ZMQ_EXPORT void *zmq_msg_data (zmq_msg_t *msg);
171
ZMQ_EXPORT size_t zmq_msg_size (zmq_msg_t *msg);
172
ZMQ_EXPORT int zmq_msg_more (zmq_msg_t *msg);
173 174 175 176
ZMQ_EXPORT int zmq_msg_get (zmq_msg_t *msg, int option, void *optval,
                            size_t *optvallen);
ZMQ_EXPORT int zmq_msg_set (zmq_msg_t *msg, int option, const void *optval,
                            size_t *optvallen);
177

178 179 180
/******************************************************************************/
/*  0MQ infrastructure (a.k.a. context) initialisation & termination.         */
/******************************************************************************/
181

182 183
ZMQ_EXPORT zmq_ctx_t zmq_init (int io_threads);
ZMQ_EXPORT int zmq_term (zmq_ctx_t context);
Martin Sustrik's avatar
Martin Sustrik committed
184

185 186 187
/******************************************************************************/
/*  0MQ socket definition.                                                    */
/******************************************************************************/
188

Martin Sustrik's avatar
Martin Sustrik committed
189
/*  Socket types.                                                             */ 
190 191 192 193 194
#define ZMQ_PAIR 0
#define ZMQ_PUB 1
#define ZMQ_SUB 2
#define ZMQ_REQ 3
#define ZMQ_REP 4
Pieter Hintjens's avatar
Pieter Hintjens committed
195 196
#define ZMQ_DEALER 5
#define ZMQ_ROUTER 6
197 198
#define ZMQ_PULL 7
#define ZMQ_PUSH 8
199 200
#define ZMQ_XPUB 9
#define ZMQ_XSUB 10
201

Pieter Hintjens's avatar
Pieter Hintjens committed
202 203 204
/*  Deprecated aliases                                                        */
#define ZMQ_XREQ ZMQ_DEALER
#define ZMQ_XREP ZMQ_ROUTER
205

206
/*  Socket options.                                                           */
207
#define ZMQ_AFFINITY 4
208
#define ZMQ_IDENTITY 5
209 210 211
#define ZMQ_SUBSCRIBE 6
#define ZMQ_UNSUBSCRIBE 7
#define ZMQ_RATE 8
212
#define ZMQ_RECOVERY_IVL 9
213 214 215 216 217
#define ZMQ_SNDBUF 11
#define ZMQ_RCVBUF 12
#define ZMQ_RCVMORE 13
#define ZMQ_FD 14
#define ZMQ_EVENTS 15
218
#define ZMQ_TYPE 16
219
#define ZMQ_LINGER 17
220
#define ZMQ_RECONNECT_IVL 18
221
#define ZMQ_BACKLOG 19
222
#define ZMQ_RECONNECT_IVL_MAX 21
223
#define ZMQ_MAXMSGSIZE 22
224 225
#define ZMQ_SNDHWM 23
#define ZMQ_RCVHWM 24
226
#define ZMQ_MULTICAST_HOPS 25
227 228
#define ZMQ_RCVTIMEO 27
#define ZMQ_SNDTIMEO 28
Steven McCoy's avatar
Steven McCoy committed
229
#define ZMQ_IPV4ONLY 31
230
#define ZMQ_LAST_ENDPOINT 32
Steven McCoy's avatar
Steven McCoy committed
231

232 233 234
/*  Message options                                                           */
#define ZMQ_MORE 1

235
/*  Send/recv options.                                                        */
236
#define ZMQ_DONTWAIT 1
237
#define ZMQ_SNDMORE 2
238

239 240 241
ZMQ_EXPORT zmq_socket_t zmq_socket (zmq_ctx_t context, int type);
ZMQ_EXPORT int zmq_close (zmq_socket_t s);
ZMQ_EXPORT int zmq_setsockopt (zmq_socket_t s, int option, const void *optval,
242
    size_t optvallen); 
243
ZMQ_EXPORT int zmq_getsockopt (zmq_socket_t s, int option, void *optval,
244
    size_t *optvallen);
245 246 247 248
ZMQ_EXPORT int zmq_bind (zmq_socket_t s, const char *addr);
ZMQ_EXPORT int zmq_connect (zmq_socket_t s, const char *addr);
ZMQ_EXPORT int zmq_send (zmq_socket_t s, const void *buf, size_t len, int flags);
ZMQ_EXPORT int zmq_recv (zmq_socket_t s, void *buf, size_t len, int flags);
249

250 251
ZMQ_EXPORT int zmq_sendmsg (zmq_socket_t s, zmq_msg_t *msg, int flags);
ZMQ_EXPORT int zmq_recvmsg (zmq_socket_t s, zmq_msg_t *msg, int flags);
Martin Sustrik's avatar
Martin Sustrik committed
252

253
/*  Experimental                                                              */
254 255
ZMQ_EXPORT int zmq_sendiov (zmq_socket_t s, struct iovec *iov, size_t count, int flags);
ZMQ_EXPORT int zmq_recviov (zmq_socket_t s, struct iovec *iov, size_t *count, int flags);
skaller's avatar
skaller committed
256

257 258 259
/******************************************************************************/
/*  I/O multiplexing.                                                         */
/******************************************************************************/
260

261 262 263
#define ZMQ_POLLIN 1
#define ZMQ_POLLOUT 2
#define ZMQ_POLLERR 4
264 265 266

typedef struct
{
267
    zmq_socket_t socket;
268 269 270
#if defined _WIN32
    SOCKET fd;
#else
271
    int fd;
272
#endif
273 274 275 276
    short events;
    short revents;
} zmq_pollitem_t;

277
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout);
278

279 280
#undef ZMQ_EXPORT

Martin Sustrik's avatar
Martin Sustrik committed
281 282 283 284 285
#ifdef __cplusplus
}
#endif

#endif
286