zmqd 1.0.0-beta

A safe and convenient wrapper for the ∅MQ/ZeroMQ messaging framework


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

∅MQD – a ∅MQ wrapper for the D programming language

∅MQD is a D library that wraps the low-level C API of the ∅MQ messaging framework (also known as ZeroMQ). It is a rather thin wrapper that maps closely to the C API, while making it safer, easier and more pleasant to use. Here's how:

  • Errors are signalled by means of exceptions rather than return codes.
  • Functions are appropriately marked with @safe/@trusted/@system, pure and nothrow.
  • Memory and resources (i.e. contexts, sockets and messages) are automatically managed, thus preventing leaks.
  • Context, socket and message options are implemented as properties.

The names of functions and types in ∅MQD are very similar to those in ∅MQ, but they follow the D naming conventions. Thus, the library should feel both familiar to ∅MQ users and natural to D users.

The API documentation may be browsed online at http://kyllingstad.github.io/zmqd/.

Support and contributions

If you have questions, enhancement requests or bug reports, please submit them as issues on GitHub. Bug fixes in the form of pull requests are very welcome.

Requirements

What you need is:

Tell the compiler where to find the libraries and the import files, and you're good to go.

Example: Hello World server

The C implementation of the "Hello World server" from the ∅MQ Guide looks like this:

// Hello World server

#include <zmq.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>

int main (void)
{
    // Socket to talk to clients
    void *context = zmq_ctx_new ();
    void *responder = zmq_socket (context, ZMQ_REP);
    int rc = zmq_bind (responder, "tcp://*:5555");
    assert (rc == 0);

    while (1) {
        char buffer [10];
        zmq_recv (responder, buffer, 10, 0);
        printf ("Received Hello\n");
        sleep (1); // Do some 'work'
        zmq_send (responder, "World", 5, 0);
    }
    return 0;
}

The equivalent ∅MQD program looks like this:

import core.thread, core.time;
import std.stdio;
import zmqd;

void main()
{
    // Socket to talk to clients
    auto responder = Socket(SocketType.rep);
    responder.bind("tcp://*:5555");

    while (true) {
        ubyte[10] buffer;
        responder.receive(buffer);
        writeln("Received Hello");
        Thread.sleep(1.seconds);
        responder.send("World");
    }
}

Note how Socket does not need a context, because the library creates a global "default context", since this is what the majority of programs will do anyway. Of course, if we wanted to, we could replace the first line of main() with the following:

auto context = Context();
auto responder = Socket(context, SocketType.rep);

More examples may be found in the examples subdirectory.

Authors:
  • Lars T. Kyllingstad
Dependencies:
zeromq
Versions:
1.3.0 2022-Aug-06
1.2.0 2020-Feb-20
1.1.2 2019-Sep-30
1.1.1 2017-Nov-13
1.1.0 2016-May-17
Show all 19 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 6 downloads this month

  • 119235 downloads total

Score:
2.4
Short URL:
zmqd.dub.pm