nng-c 1.11.1

High level bindings nng C library
Documentation
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! Options

use crate::sys;
use crate::socket::Socket;
use crate::error::{error, ErrorCode};

use core::{fmt, time};
use core::convert::TryInto;

///Property interface
pub trait Property<T>: Sized {
    ///Gets instance of self from the `target
    fn get(target: &T) -> Result<Self, ErrorCode>;
}

///Options interface
pub trait Options<T> {
    ///Applies options to the target, returning error if any happens
    fn apply(&self, target: &T) -> Result<(), ErrorCode>;
}

impl<T> Options<T> for () {
    #[inline(always)]
    fn apply(&self, _: &T) -> Result<(), ErrorCode> {
        Ok(())
    }
}

macro_rules! set_bytes_option {
    ($socket:expr, $name:expr, $bytes:expr) => {
        unsafe {
            let bytes = $bytes;
            match sys::nng_socket_set($socket, $name.as_ptr() as _, bytes.as_ptr() as _, bytes.len()) {
                0 => Ok(()),
                code => Err(error(code)),
            }
        }
    }
}

macro_rules! set_string_option {
    ($socket:expr, $name:expr, $bytes:expr) => {
        unsafe {
            let bytes = $bytes;
            match sys::nng_socket_set_string($socket, $name.as_ptr() as _, bytes.as_ptr() as _) {
                0 => Ok(()),
                code => Err(error(code)),
            }
        }
    }
}

macro_rules! set_int_option {
    ($socket:expr, $name:expr, $num:expr) => {
        unsafe {
            match sys::nng_socket_set_int($socket, $name.as_ptr() as _, $num as _) {
                0 => Ok(()),
                code => Err(error(code)),
            }
        }
    }
}

macro_rules! set_size_t_option {
    ($socket:expr, $name:expr, $num:expr) => {
        unsafe {
            match sys::nng_socket_set_size($socket, $name.as_ptr() as _, $num as _) {
                0 => Ok(()),
                code => Err(error(code)),
            }
        }
    }
}

macro_rules! set_duration_option {
    ($socket:expr, $name:expr, $duration:expr) => {
        match $duration.as_millis().try_into() {
            Ok(duration) => unsafe {
                match sys::nng_socket_set_ms($socket, $name.as_ptr() as _, duration) {
                    0 => Ok(()),
                    code => Err(error(code)),
                }
            },
            Err(_) => Err(error(sys::nng_errno_enum::NNG_EINVAL)),
        }
    }
}

#[derive(Copy, Clone, Debug)]
///Req protocol options
pub struct Req {
    ///Duration after which request is considered failed to be delivered
    ///Therefore triggering re-sending
    pub resend_time: Option<time::Duration>,
    ///Granularity of the clock used to check for resending time
    pub resend_tick: Option<time::Duration>,
}

impl Options<Socket> for Req {
    #[inline]
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        if let Some(resend_time) = self.resend_time {
            set_duration_option!(**target, sys::NNG_OPT_REQ_RESENDTIME, resend_time)?;
        }

        if let Some(resend_tick) = self.resend_tick {
            set_duration_option!(**target, sys::NNG_OPT_REQ_RESENDTICK, resend_tick)?;
        }

        Ok(())
    }
}

#[derive(Copy, Clone, Debug)]
///Topic to subscribe to for sub protocol.
pub struct Subscribe<'a>(pub &'a [u8]);

impl Options<Socket> for Subscribe<'_> {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_bytes_option!(**target, sys::NNG_OPT_SUB_SUBSCRIBE, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Topic to unsubscribe from for sub protocol.
pub struct Unsubscribe<'a>(pub &'a [u8]);

impl Options<Socket> for Unsubscribe<'_> {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_bytes_option!(**target, sys::NNG_OPT_SUB_UNSUBSCRIBE, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Max number of hops message can make to reach peer
///
///Usually defaults to 8
pub struct MaxTtl(pub u8);

impl Options<Socket> for MaxTtl {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_int_option!(**target, sys::NNG_OPT_MAXTTL, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Reconnect options
pub struct Reconnect {
    ///This is the minimum amount of time to wait before attempting to establish a connection after a previous attempt has failed
    pub min_time: Option<time::Duration>,
    ///This is the maximum amount of time to wait before attempting to establish a connection after a previous attempt has failed
    ///
    ///This can be set to 0, to disable exponential back-off
    pub max_time: Option<time::Duration>,
}

impl Options<Socket> for Reconnect {
    #[inline]
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        if let Some(min_time) = self.min_time {
            set_duration_option!(**target, sys::NNG_OPT_RECONNMINT, min_time)?;
        }

        if let Some(max_time) = self.max_time {
            set_duration_option!(**target, sys::NNG_OPT_RECONNMAXT, max_time)?;
        }

        Ok(())
    }
}

#[derive(Copy, Clone, Debug)]
///Sets internal receive buffer to this amount of messages
///
///Allowed values are from 0 to 8192.
pub struct RecvBuf(pub u16);

impl Options<Socket> for RecvBuf {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_int_option!(**target, sys::NNG_OPT_RECVBUF, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Limits size of message that socket can receive
///
///This specifically limits byte size of message, rejecting any attempt sending receiving of size beyond the limit.
pub struct RecvMaxSize(pub usize);

impl Options<Socket> for RecvMaxSize {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_size_t_option!(**target, sys::NNG_OPT_RECVMAXSZ, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Sets timeout on message receive.
///
///If no message is available within specified time, then it shall error out with timed_out error
pub struct RecvTimeout(pub time::Duration);

impl Options<Socket> for RecvTimeout {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_duration_option!(**target, sys::NNG_OPT_RECVTIMEO, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Sets internal send buffer to this amount of messages
///
///Allowed values are from 0 to 8192.
pub struct SendBuf(pub u16);

impl Options<Socket> for SendBuf {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_int_option!(**target, sys::NNG_OPT_SENDBUF, self.0)
    }
}

#[derive(Copy, Clone, Debug)]
///Sets timeout on message send.
///
///If message cannot be sent within specified time, then it shall error out with timed_out error
pub struct SendTimeout(pub time::Duration);

impl Options<Socket> for SendTimeout {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_duration_option!(**target, sys::NNG_OPT_SENDTIMEO, self.0)
    }
}

#[derive(Copy, Clone, Eq)]
///Socket name, limited to 63 characters.
///
///This is purely informative property without any functional use by nng itself
pub struct SocketName(pub(crate) [u8; 64]);

impl SocketName {
    ///Creates new name, returning `Some` if input fits 63 characters limit
    pub fn new(name: &str) -> Option<Self> {
        let mut buf = [0; 64];
        if name.len() < buf.len() {
            buf[..name.len()].copy_from_slice(name.as_bytes());
            Some(Self(buf))
        } else {
            None
        }
    }

    ///Access raw bytes
    pub fn as_bytes(&self) -> &[u8] {
        if let Some(idx) = self.0.iter().position(|byt| *byt == 0) {
            &self.0[..idx]
        } else {
            &self.0
        }
    }

    ///Returns string, if raw bytes are valid unicode
    pub fn as_str(&self) -> Option<&str> {
        core::str::from_utf8(self.as_bytes()).ok()
    }
}

impl Options<Socket> for SocketName {
    fn apply(&self, target: &Socket) -> Result<(), ErrorCode> {
        set_string_option!(**target, sys::NNG_OPT_SOCKNAME, self.0)
    }
}

impl Property<Socket> for SocketName {
    fn get(target: &Socket) -> Result<Self, ErrorCode> {
        let mut buf = [0; 64];
        let result = unsafe {
            sys::nng_socket_get(**target, sys::NNG_OPT_SOCKNAME.as_ptr() as _, buf.as_mut_ptr() as _, &mut buf.len())
        };

        match result {
            0 => Ok(Self(buf)),
            code => Err(error(code))
        }
    }
}

impl PartialEq for SocketName {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<PeerName> for SocketName {
    #[inline]
    fn eq(&self, other: &PeerName) -> bool {
        self.as_bytes() == other.0.as_bytes()
    }
}

impl PartialEq<str> for SocketName {
    #[inline]
    fn eq(&self, other: &str) -> bool {
        self.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<&str> for SocketName {
    #[inline]
    fn eq(&self, other: &&str) -> bool {
        self.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<SocketName> for str {
    #[inline]
    fn eq(&self, other: &SocketName) -> bool {
        self.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<SocketName> for &str {
    #[inline]
    fn eq(&self, other: &SocketName) -> bool {
        self.as_bytes() == other.as_bytes()
    }
}

impl fmt::Debug for SocketName {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut fmt = fmt.debug_tuple("SocketName");
        match self.as_str() {
            Some(name) => fmt.field(&name).finish(),
            None => fmt.field(&self.0).finish(),
        }
    }
}

impl fmt::Display for SocketName {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self.as_str() {
            Some(name) => fmt.write_str(name),
            None => fmt.write_str("<non-utf-8>"),
        }
    }
}

#[derive(Copy, Clone, Eq)]
#[repr(transparent)]
///Peer name, limited to 63 characters.
///
///This tells protocol of the peer
pub struct PeerName(pub(crate) SocketName);

impl Property<Socket> for PeerName {
    fn get(target: &Socket) -> Result<Self, ErrorCode> {
        let mut buf = [0; 64];
        let result = unsafe {
            sys::nng_socket_get(**target, sys::NNG_OPT_PEERNAME.as_ptr() as _, buf.as_mut_ptr() as _, &mut buf.len())
        };

        match result {
            0 => Ok(Self(SocketName(buf))),
            code => Err(error(code))
        }
    }
}

impl PartialEq<SocketName> for PeerName {
    #[inline]
    fn eq(&self, other: &SocketName) -> bool {
        self.0.as_bytes() == other.as_bytes()
    }
}

impl PartialEq for PeerName {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.0.as_bytes() == other.0.as_bytes()
    }
}

impl PartialEq<str> for PeerName {
    #[inline]
    fn eq(&self, other: &str) -> bool {
        self.0.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<&str> for PeerName {
    #[inline]
    fn eq(&self, other: &&str) -> bool {
        self.0.as_bytes() == other.as_bytes()
    }
}

impl PartialEq<PeerName> for str {
    #[inline]
    fn eq(&self, other: &PeerName) -> bool {
        self.as_bytes() == other.0.as_bytes()
    }
}

impl PartialEq<PeerName> for &str {
    #[inline]
    fn eq(&self, other: &PeerName) -> bool {
        self.as_bytes() == other.0.as_bytes()
    }
}

impl fmt::Debug for PeerName {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut fmt = fmt.debug_tuple("PeerName");
        match self.0.as_str() {
            Some(name) => fmt.field(&name).finish(),
            None => fmt.field(&self.0).finish(),
        }
    }
}

impl fmt::Display for PeerName {
    #[inline]
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self.0.as_str() {
            Some(name) => fmt.write_str(name),
            None => fmt.write_str("<non-utf-8>"),
        }
    }
}