#zeromq #nng #nanomsg #next-generation #service-discovery

sys no-std runng-sys

Bindings to NNG (Nanomsg-Next-Generation) aka Nanomsg2

15 releases (2 stable)

1.2.4-rc.1 Jan 14, 2020
1.1.2-ver.2 Dec 5, 2018
1.1.2-rc.1 Oct 28, 2019
1.1.1 Nov 28, 2018
0.1.4 Nov 8, 2018

#3 in #nng

Download history 9/week @ 2024-01-13 18/week @ 2024-01-20 163/week @ 2024-01-27 89/week @ 2024-02-03 21/week @ 2024-02-10 233/week @ 2024-02-17 50/week @ 2024-02-24 151/week @ 2024-03-02 69/week @ 2024-03-09 20/week @ 2024-03-16 34/week @ 2024-03-23

286 downloads per month
Used in 3 crates (2 directly)

MIT license

2.5MB
75K SLoC

C 56K SLoC // 0.1% comments AsciiDoc 16K SLoC // 0.1% comments Rust 2.5K SLoC // 0.0% comments Shell 648 SLoC // 0.2% comments C++ 62 SLoC // 0.1% comments PowerShell 50 SLoC // 0.2% comments

Rust FFI bindings to NNG:

NNG, like its predecessors nanomsg (and to some extent ZeroMQ), is a lightweight, broker-less library, offering a simple API to solve common recurring messaging problems, such as publish/subscribe, RPC-style request/reply, or service discovery. The API frees the programmer from worrying about details like connection management, retries, and other common considerations, so that they can focus on the application instead of the plumbing.

docs.rs crates.io MIT License Rustc 1.31+ travis Build Status

Usage

Version of this crate tracks NNG: <NNG_version>-rc.<crate_version> (e.g. 1.1.1-rc.2).

To use the latest crate for the most recent stable version of NNG (1.2.x), in Cargo.toml:

[dependencies]
nng-sys = "1.2.4-rc"

Requirements:

  • cmake in PATH
    • On Linux/macOS: default generator is "Unix Makefiles"
    • On Windows: default generator is generally latest version of Visual Studio installed
  • Optional libclang needed if using build-bindgen feature to run bindgen

Features

  • build-nng: use cmake to build NNG from source (enabled by default)
  • build-bindgen: run bindgen to re-generate Rust FFI bindings to C
  • cmake-unix: use cmake generator "Unix Makefiles" (default on Linux/macOS)
  • cmake-ninja: use cmake generator "Ninja"
  • cmake-vs2017: use cmake generator "Visual Studio 15 2017"
  • cmake-vs2019: use cmake generator "Visual Studio 16 2019"
  • nng-stats: enable NNG stats NNG_ENABLE_STATS (enabled by default)
  • nng-tls: enable TLS NNG_ENABLE_TLS (requires mbedTLS)
  • nng-supplemental: generate bindings to NNG's supplemental functions
  • nng-compat: generate bindings to NNG's nanomsg compatible functions

Example) Re-generate FFI bindings with bindgen:

[dependencies]
nng-sys = { version = "1.2.4-rc", features = ["build-bindgen"] }

Example) Disable stats and use Ninja cmake generator:

[dependencies.nng-sys]
version = "1.2.4-rc"
default-features = false
features = ["cmake-ninja"]

Examples

use nng_sys::*;
use std::{ffi::CString, os::raw::c_char, ptr::null_mut};

fn example() {
    unsafe {
        let url = CString::new("inproc://nng_sys/tests/example").unwrap();
        let url = url.as_bytes_with_nul().as_ptr() as *const c_char;

        // Reply socket
        let mut rep_socket = nng_socket::default();
        nng_rep0_open(&mut rep_socket);
        nng_listen(rep_socket, url, null_mut(), 0);

        // Request socket
        let mut req_socket = nng_socket::default();
        nng_req0_open(&mut req_socket);
        nng_dial(req_socket, url, null_mut(), 0);

        // Send message
        let mut req_msg: *mut nng_msg = null_mut();
        nng_msg_alloc(&mut req_msg, 0);
        // Add a value to the body of the message
        let val = 0x12345678;
        nng_msg_append_u32(req_msg, val);
        nng_sendmsg(req_socket, req_msg, 0);

        // Receive it
        let mut recv_msg: *mut nng_msg = null_mut();
        nng_recvmsg(rep_socket, &mut recv_msg, 0);
        // Remove our value from the body of the received message
        let mut recv_val: u32 = 0;
        nng_msg_trim_u32(recv_msg, &mut recv_val);
        assert_eq!(val, recv_val);
        // Can't do this because nng uses network order (big-endian)
        //assert_eq!(val, *(nng_msg_body(recv_msg) as *const u32));

        nng_close(req_socket);
        nng_close(rep_socket);
    }
}

Dependencies