1 /* 2 Copyright (c) 2012-2014 Martin Sustrik All rights reserved. 3 Copyright (c) 2013 GoPivotal, Inc. All rights reserved. 4 Copyright 2015 Garrett D'Amore <garrett@damore.org> 5 6 Permission is hereby granted, free of charge, to any person obtaining a copy 7 of this software and associated documentation files (the "Software"), 8 to deal in the Software without restriction, including without limitation 9 the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 and/or sell copies of the Software, and to permit persons to whom 11 the Software is furnished to do so, subject to the following conditions: 12 13 The above copyright notice and this permission notice shall be included 14 in all copies or substantial portions of the Software. 15 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 22 IN THE SOFTWARE. 23 IN THE SOFTWARE. 24 */ 25 module deimos.nanomsg.nn; 26 27 extern(C): 28 @system nothrow @nogc: 29 30 /******************************************************************************/ 31 /* ABI versioning support. */ 32 /******************************************************************************/ 33 34 /* Don't change this unless you know exactly what you're doing and have */ 35 /* read and understand the following documents: */ 36 /* www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html */ 37 /* www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html */ 38 39 /* The current interface version. */ 40 enum NN_VERSION_CURRENT = 4; 41 42 /* The latest revision of the current interface. */ 43 enum NN_VERSION_REVISION = 0; 44 45 /* How many past interface versions are still supported. */ 46 enum NN_VERSION_AGE = 0; 47 48 /******************************************************************************/ 49 /* Errors. */ 50 /******************************************************************************/ 51 52 /* A number random enough not to collide with different errno ranges on */ 53 /* different OSes. The assumption is that error_t is at least 32-bit type. */ 54 enum NN_HAUSNUMERO = 156384712; 55 56 /* Native nanomsg error codes. */ 57 enum ETERM = NN_HAUSNUMERO + 53; 58 enum EFSM = NN_HAUSNUMERO + 54; 59 60 /* This function retrieves the errno as it is known to the library. */ 61 /* The goal of this function is to make the code 100% portable, including */ 62 /* where the library is compiled with certain CRT library (on Windows) and */ 63 /* linked to an application that uses different CRT library. */ 64 int nn_errno(); 65 66 /* Resolves system errors and native errors to human-readable string. */ 67 const(char)* nn_strerror (int errnum); 68 69 70 /* Returns the symbol name (e.g. "NN_REQ") and value at a specified index. */ 71 /* If the index is out-of-range, returns null and sets errno to EINVAL */ 72 /* General usage is to start at i=0 and iterate until null is returned. */ 73 const(char)* nn_symbol (int i, int *value); 74 75 /* Constants that are returned in `ns` member of nn_symbol_properties */ 76 enum NN_NS_NAMESPACE = 0; 77 enum NN_NS_VERSION = 1; 78 enum NN_NS_DOMAIN = 2; 79 enum NN_NS_TRANSPORT = 3; 80 enum NN_NS_PROTOCOL = 4; 81 enum NN_NS_OPTION_LEVEL = 5; 82 enum NN_NS_SOCKET_OPTION = 6; 83 enum NN_NS_TRANSPORT_OPTION = 7; 84 enum NN_NS_OPTION_TYPE = 8; 85 enum NN_NS_OPTION_UNIT = 9; 86 enum NN_NS_FLAG = 10; 87 enum NN_NS_ERROR = 11; 88 enum NN_NS_LIMIT = 12; 89 enum NN_NS_EVENT = 13; 90 91 /* Constants that are returned in `type` member of nn_symbol_properties */ 92 enum NN_TYPE_NONE = 0; 93 enum NN_TYPE_INT = 1; 94 enum NN_TYPE_STR = 2; 95 96 /* Constants that are returned in the `unit` member of nn_symbol_properties */ 97 enum NN_UNIT_NONE = 0; 98 enum NN_UNIT_BYTES = 1; 99 enum NN_UNIT_MILLISECONDS = 2; 100 enum NN_UNIT_PRIORITY = 3; 101 enum NN_UNIT_BOOLEAN = 4; 102 103 /* Structure that is returned from nn_symbol */ 104 struct nn_symbol_properties { 105 106 /* The constant value */ 107 int value; 108 109 /* The constant name */ 110 const(char)* name; 111 112 /* The constant namespace, or zero for namespaces themselves */ 113 int ns; 114 115 /* The option type for socket option constants */ 116 int type; 117 118 /* The unit for the option value for socket option constants */ 119 int unit; 120 } 121 122 /* Fills in nn_symbol_properties structure and returns it's length */ 123 /* If the index is out-of-range, returns 0 */ 124 /* General usage is to start at i=0 and iterate until zero is returned. */ 125 int nn_symbol_info (int i, 126 nn_symbol_properties* buf, int buflen); 127 128 /******************************************************************************/ 129 /* Helper function for shutting down multi-threaded applications. */ 130 /******************************************************************************/ 131 132 void nn_term(); 133 134 /******************************************************************************/ 135 /* Zero-copy support. */ 136 /******************************************************************************/ 137 138 enum size_t NN_MSG = -1; 139 140 void* nn_allocmsg (size_t size, int type); 141 void* nn_reallocmsg (void* msg, size_t size); 142 int nn_freemsg (void* msg); 143 144 /******************************************************************************/ 145 /* Socket definition. */ 146 /******************************************************************************/ 147 148 struct nn_iovec { 149 void* iov_base; 150 size_t iov_len; 151 } 152 153 struct nn_msghdr { 154 nn_iovec *msg_iov; 155 int msg_iovlen; 156 void* msg_control; 157 size_t msg_controllen; 158 } 159 160 struct nn_cmsghdr { 161 size_t cmsg_len; 162 int cmsg_level; 163 int cmsg_type; 164 } 165 166 /* Internal stuff. Not to be used directly. */ 167 nn_cmsghdr* nn_cmsg_nxthdr_ ( 168 const (nn_msghdr)* mhdr, 169 const (nn_cmsghdr)* cmsg); 170 alias NN_CMSG_ALIGN_ = (len) => (len + size_t.sizeof - 1) & cast(size_t) ~(size_t.sizeof - 1); 171 172 /* POSIX-defined msghdr manipulation. */ 173 174 alias NN_CMSG_FIRSTHDR = (mhdr) => nn_cmsg_nxthdr_ (cast(nn_msghdr*) mhdr, null); 175 176 alias NN_CMSG_NXTHDR = (mhdr, cmsg) => nn_cmsg_nxthdr_ (cast(nn_msghdr*) mhdr, cast(nn_cmsghdr*) cmsg); 177 178 alias NN_CMSG_DATA = (cmsg) => cast(ubyte*) ((cast(nn_cmsghdr*) cmsg) + 1); 179 180 /* Extensions to POSIX defined by RFC 3542. */ 181 182 alias NN_CMSG_SPACE = (len) => (NN_CMSG_ALIGN_ (len) + NN_CMSG_ALIGN_ (nn_cmsghdr.sizeof)); 183 184 alias NN_CMSG_LEN = (len) => (NN_CMSG_ALIGN_ (nn_cmsghdr.sizeof) + (len)); 185 186 /* SP address families. */ 187 enum AF_SP = 1; 188 enum AF_SP_RAW = 2; 189 190 /* Max size of an SP address. */ 191 enum NN_SOCKADDR_MAX = 128; 192 193 /* Socket option levels: Negative numbers are reserved for transports, 194 positive for socket types. */ 195 enum NN_SOL_SOCKET = 0; 196 197 /* Generic socket options (NN_SOL_SOCKET level). */ 198 enum NN_LINGER = 1; 199 enum NN_SNDBUF = 2; 200 enum NN_RCVBUF = 3; 201 enum NN_SNDTIMEO = 4; 202 enum NN_RCVTIMEO = 5; 203 enum NN_RECONNECT_IVL = 6; 204 enum NN_RECONNECT_IVL_MAX = 7; 205 enum NN_SNDPRIO = 8; 206 enum NN_RCVPRIO = 9; 207 enum NN_SNDFD = 10; 208 enum NN_RCVFD = 11; 209 enum NN_DOMAIN = 12; 210 enum NN_PROTOCOL = 13; 211 enum NN_IPV4ONLY = 14; 212 enum NN_SOCKET_NAME = 15; 213 enum NN_RCVMAXSIZE = 16; 214 215 /* Send/recv options. */ 216 enum NN_DONTWAIT = 1; 217 218 /* Ancillary data. */ 219 enum PROTO_SP = 1; 220 enum SP_HDR = 1; 221 222 int nn_socket (int domain, int protocol); 223 int nn_close (int s); 224 int nn_setsockopt (int s, int level, int option, const(void)* optval, 225 size_t optvallen); 226 int nn_getsockopt (int s, int level, int option, void* optval, 227 size_t *optvallen); 228 int nn_bind (int s, const(char)* addr); 229 int nn_connect (int s, const(char)* addr); 230 int nn_shutdown (int s, int how); 231 int nn_send (int s, const(void)* buf, size_t len, int flags); 232 int nn_recv (int s, void* buf, size_t len, int flags); 233 int nn_sendmsg (int s, const nn_msghdr* msghdr, int flags); 234 int nn_recvmsg (int s, nn_msghdr* msghdr, int flags); 235 236 /******************************************************************************/ 237 /* Socket mutliplexing support. */ 238 /******************************************************************************/ 239 240 enum NN_POLLIN = 1; 241 enum NN_POLLOUT = 2; 242 243 struct nn_pollfd { 244 int fd; 245 short events; 246 short revents; 247 } 248 249 int nn_poll (nn_pollfd* fds, int nfds, int timeout); 250 251 /******************************************************************************/ 252 /* Built-in support for devices. */ 253 /******************************************************************************/ 254 255 int nn_device (int s1, int s2); 256 257 /******************************************************************************/ 258 /* Built-in support for multiplexers. */ 259 /******************************************************************************/ 260 261 int nn_tcpmuxd (int port);