-
Notifications
You must be signed in to change notification settings - Fork 14
/
zmq.d
380 lines (326 loc) · 11.7 KB
/
zmq.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
Copyright (c) 2007-2012 iMatix Corporation
Copyright (c) 2009-2011 250bpm s.r.o.
Copyright (c) 2011 VMware, Inc.
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/>.
*/
module deimos.zmq.zmq;
import core.stdc.config;
nothrow extern (C)
{
/******************************************************************************/
/* 0MQ versioning support. */
/******************************************************************************/
/* Version macros for compile-time API version detection */
enum
{
ZMQ_VERSION_MAJOR = 3,
ZMQ_VERSION_MINOR = 2,
ZMQ_VERSION_PATCH = 4
}
int ZMQ_MAKE_VERSION(int major, int minor, int patch)
{
return major * 10000 + minor * 100 + patch;
}
enum ZMQ_VERSION =
ZMQ_MAKE_VERSION(ZMQ_VERSION_MAJOR, ZMQ_VERSION_MINOR, ZMQ_VERSION_PATCH);
/* Run-time API version detection */
void zmq_version(int* major, int* minor, int* patch);
/******************************************************************************/
/* 0MQ errors. */
/******************************************************************************/
/* A number random anough not to collide with different errno ranges on */
/* different OSes. The assumption is that error_t is at least 32-bit type. */
enum
{
ZMQ_HAUSNUMERO = 156384712,
/* On Windows platform some of the standard POSIX errnos are not defined. */
ENOTSUP = (ZMQ_HAUSNUMERO + 1),
EPROTONOSUPPORT = (ZMQ_HAUSNUMERO + 2),
ENOBUFS = (ZMQ_HAUSNUMERO + 3),
ENETDOWN = (ZMQ_HAUSNUMERO + 4),
EADDRINUSE = (ZMQ_HAUSNUMERO + 5),
EADDRNOTAVAIL = (ZMQ_HAUSNUMERO + 6),
ECONNREFUSED = (ZMQ_HAUSNUMERO + 7),
EINPROGRESS = (ZMQ_HAUSNUMERO + 8),
ENOTSOCK = (ZMQ_HAUSNUMERO + 9),
EMSGSIZE = (ZMQ_HAUSNUMERO + 10),
EAFNOSUPPORT = (ZMQ_HAUSNUMERO + 11),
ENETUNREACH = (ZMQ_HAUSNUMERO + 12),
ECONNABORTED = (ZMQ_HAUSNUMERO + 13),
ECONNRESET = (ZMQ_HAUSNUMERO + 14),
ENOTCONN = (ZMQ_HAUSNUMERO + 15),
ETIMEDOUT = (ZMQ_HAUSNUMERO + 16),
EHOSTUNREACH = (ZMQ_HAUSNUMERO + 17),
ENETRESET = (ZMQ_HAUSNUMERO + 18),
/* Native 0MQ error codes. */
EFSM = (ZMQ_HAUSNUMERO + 51),
ENOCOMPATPROTO = (ZMQ_HAUSNUMERO + 52),
ETERM = (ZMQ_HAUSNUMERO + 53),
EMTHREAD = (ZMQ_HAUSNUMERO + 54)
}//enum error_code
/* 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. */
int zmq_errno();
/* Resolves system errors and 0MQ errors to human-readable string. */
const char* zmq_strerror(int errnum);
/******************************************************************************/
/* 0MQ infrastructure (a.k.a. context) initialisation & termination. */
/******************************************************************************/
/* New API */
/* Context options */
enum
{
ZMQ_IO_THREADS = 1,
ZMQ_MAX_SOCKETS = 2
}
/* Default for new contexts */
enum
{
ZMQ_IO_THREADS_DFLT = 1,
ZMQ_MAX_SOCKETS_DFLT = 1024
}
void* zmq_ctx_new();
int zmq_ctx_destroy(void* context);
int zmq_ctx_set(void* context, int option, int optval);
int zmq_ctx_get(void* context, int option);
/* Old (legacy) API */
void* zmq_init(int io_threads);
int zmq_term(void* context);
/******************************************************************************/
/* 0MQ message definition. */
/******************************************************************************/
struct zmq_msg_t { ubyte[32] _; }
int zmq_msg_init(zmq_msg_t* msg);
int zmq_msg_init_size(zmq_msg_t* msg, size_t size);
int zmq_msg_init_data(zmq_msg_t* msg, void* data, size_t size,
void function(void* data, void* hint) nothrow ffn, void* hint);
int zmq_msg_send(zmq_msg_t* msg, void* s, int flags);
int zmq_msg_recv(zmq_msg_t* msg, void* s, int flags);
int zmq_msg_close(zmq_msg_t* msg);
int zmq_msg_move(zmq_msg_t* dest, zmq_msg_t* src);
int zmq_msg_copy(zmq_msg_t* dest, zmq_msg_t* src);
void* zmq_msg_data(zmq_msg_t* msg);
size_t zmq_msg_size(zmq_msg_t* msg);
int zmq_msg_more(zmq_msg_t* msg);
int zmq_msg_get(zmq_msg_t* msg, int option);
int zmq_msg_set(zmq_msg_t* msg, int option, int optval);
/******************************************************************************/
/* 0MQ socket definition. */
/******************************************************************************/
/* Socket types. */
enum
{
ZMQ_PAIR = 0,
ZMQ_PUB = 1,
ZMQ_SUB = 2,
ZMQ_REQ = 3,
ZMQ_REP = 4,
ZMQ_DEALER = 5,
ZMQ_ROUTER = 6,
ZMQ_PULL = 7,
ZMQ_PUSH = 8,
ZMQ_XPUB = 9,
ZMQ_XSUB = 10,
}
/* Deprecated aliases */
enum
{
ZMQ_XREQ = ZMQ_DEALER,
ZMQ_XREP = ZMQ_ROUTER,
}
/* Socket options. */
enum
{
ZMQ_AFFINITY = 4,
ZMQ_IDENTITY = 5,
ZMQ_SUBSCRIBE = 6,
ZMQ_UNSUBSCRIBE = 7,
ZMQ_RATE = 8,
ZMQ_RECOVERY_IVL = 9,
ZMQ_SNDBUF = 11,
ZMQ_RCVBUF = 12,
ZMQ_RCVMORE = 13,
ZMQ_FD = 14,
ZMQ_EVENTS = 15,
ZMQ_TYPE = 16,
ZMQ_LINGER = 17,
ZMQ_RECONNECT_IVL = 18,
ZMQ_BACKLOG = 19,
ZMQ_RECONNECT_IVL_MAX = 21,
ZMQ_MAXMSGSIZE = 22,
ZMQ_SNDHWM = 23,
ZMQ_RCVHWM = 24,
ZMQ_MULTICAST_HOPS = 25,
ZMQ_RCVTIMEO = 27,
ZMQ_SNDTIMEO = 28,
ZMQ_IPV4ONLY = 31,
ZMQ_LAST_ENDPOINT = 32,
ZMQ_ROUTER_MANDATORY = 33,
ZMQ_TCP_KEEPALIVE = 34,
ZMQ_TCP_KEEPALIVE_CNT = 35,
ZMQ_TCP_KEEPALIVE_IDLE = 36,
ZMQ_TCP_KEEPALIVE_INTVL = 37,
ZMQ_TCP_ACCEPT_FILTER = 38,
ZMQ_DELAY_ATTACH_ON_CONNECT = 39,
ZMQ_XPUB_VERBOSE = 40,
}
/* Message options */
enum ZMQ_MORE = 1;
/* Send/recv options. */
enum
{
ZMQ_DONTWAIT = 1,
ZMQ_SNDMORE = 2
}
/* Deprecated aliases */
enum
{
ZMQ_NOBLOCK = ZMQ_DONTWAIT,
ZMQ_FAIL_UNROUTABLE = ZMQ_ROUTER_MANDATORY,
ZMQ_ROUTER_BEHAVIOR = ZMQ_ROUTER_MANDATORY,
}
/******************************************************************************/
/* 0MQ socket events and monitoring */
/******************************************************************************/
/* Socket transport events (tcp and ipc only) */
enum
{
ZMQ_EVENT_CONNECTED = 1,
ZMQ_EVENT_CONNECT_DELAYED = 2,
ZMQ_EVENT_CONNECT_RETRIED = 4,
ZMQ_EVENT_LISTENING = 8,
ZMQ_EVENT_BIND_FAILED = 16,
ZMQ_EVENT_ACCEPTED = 32,
ZMQ_EVENT_ACCEPT_FAILED = 64,
ZMQ_EVENT_CLOSED = 128,
ZMQ_EVENT_CLOSE_FAILED = 256,
ZMQ_EVENT_DISCONNECTED = 512,
ZMQ_EVENT_ALL = (ZMQ_EVENT_CONNECTED | ZMQ_EVENT_CONNECT_DELAYED |
ZMQ_EVENT_CONNECT_RETRIED | ZMQ_EVENT_LISTENING |
ZMQ_EVENT_BIND_FAILED | ZMQ_EVENT_ACCEPTED |
ZMQ_EVENT_ACCEPT_FAILED | ZMQ_EVENT_CLOSED |
ZMQ_EVENT_CLOSE_FAILED | ZMQ_EVENT_DISCONNECTED)
}
/* Socket event data (union member per event) */
struct zmq_event_t {
int event;
private union _data {
private struct _connected {
char *addr;
int fd;
}
_connected connected;
private struct _connect_delayed {
char *addr;
int err;
}
_connect_delayed connect_delayed;
private struct _connect_retried {
char *addr;
int interval;
}
_connect_retried connect_retried;
private struct _listening {
char *addr;
int fd;
}
_listening listening;
private struct _bind_failed {
char *addr;
int err;
}
_bind_failed bind_failed;
private struct _accepted {
char *addr;
int fd;
}
_accepted accepted;
private struct _accept_failed {
char *addr;
int err;
}
_accept_failed accept_failed;
private struct _closed {
char *addr;
int fd;
}
_closed closed;
private struct _close_failed {
char *addr;
int err;
}
_close_failed close_failed;
private struct _disconnected {
char *addr;
int fd;
}
_disconnected disconnected;
}
_data data;
}
void* zmq_socket(void*, int type);
int zmq_close(void* s);
int zmq_setsockopt(void* s, int option, const void* optval, size_t optvallen);
int zmq_getsockopt(void* s, int option, void* optval, size_t *optvallen);
int zmq_bind(void* s, const char* addr);
int zmq_connect(void* s, const char* addr);
int zmq_unbind(void* s, const char* addr);
int zmq_disconnect(void* s, const char* addr);
int zmq_send(void* s, const void* buf, size_t len, int flags);
int zmq_recv(void* s, void* buf, size_t len, int flags);
int zmq_socket_monitor(void* s, const char* addr, int events);
int zmq_sendmsg(void* s, zmq_msg_t* msg, int flags);
int zmq_recvmsg(void* s, zmq_msg_t* msg, int flags);
/* Experimental */
struct iovec;
int zmq_sendiov(void* s, iovec* iov, size_t count, int flags);
int zmq_recviov(void* s, iovec* iov, size_t* count, int flags);
/******************************************************************************/
/* I/O multiplexing. */
/******************************************************************************/
enum
{
ZMQ_POLLIN = 1,
ZMQ_POLLOUT = 2,
ZMQ_POLLERR = 4
}
struct zmq_pollitem_t
{
void* socket;
version (win32)
{
SOCKET fd;
}
else
{
int fd;
}
short events;
short revents;
}
int zmq_poll(zmq_pollitem_t* items, int nitems, c_long timeout);
/* Built-in message proxy (3-way) */
int zmq_proxy(void* frontend, void* backend, void* capture);
/* Deprecated aliases */
enum
{
ZMQ_STREAMER = 1,
ZMQ_FORWARDER = 2,
ZMQ_QUEUE = 3
}
/* Deprecated method */
int zmq_device(int type, void* frontend, void* backend);
}// extern (C)