// // Copyright 2017 Garrett D'Amore // // This software is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // #include #include #include "core/nng_impl.h" // Pair protocol. The PAIR protocol is a simple 1:1 messaging pattern. // While a peer is connected to the server, all other peer connection // attempts are discarded. typedef struct nni_pair_pipe nni_pair_pipe; typedef struct nni_pair_sock nni_pair_sock; // An nni_pair_sock is our per-socket protocol private structure. struct nni_pair_sock { nni_sock * sock; nni_pair_pipe * pipe; nni_msgq * uwq; nni_msgq * urq; }; // An nni_pair_pipe is our per-pipe protocol private structure. We keep // one of these even though in theory we'd only have a single underlying // pipe. The separate data structure is more like other protocols that do // manage multiple pipes. struct nni_pair_pipe { nni_pipe * pipe; nni_pair_sock * pair; int sigclose; }; static void nni_pair_receiver(void *); static void nni_pair_sender(void *); static int nni_pair_sock_init(void **pairp, nni_sock *sock) { nni_pair_sock *pair; int rv; if ((pair = NNI_ALLOC_STRUCT(pair)) == NULL) { return (NNG_ENOMEM); } pair->sock = sock; pair->pipe = NULL; pair->uwq = nni_sock_sendq(sock); pair->urq = nni_sock_recvq(sock); *pairp = pair; return (0); } static void nni_pair_sock_fini(void *arg) { nni_pair_sock *pair = arg; // If we had any worker threads that we have not unregistered, // this wold be the time to shut them all down. We don't, because // the socket already shut us down, and we don't have any other // threads that run. NNI_FREE_STRUCT(pair); } static int nni_pair_pipe_init(void **ppp, nni_pipe *pipe, void *psock) { nni_pair_pipe *pp; if ((pp = NNI_ALLOC_STRUCT(pp)) == NULL) { return (NNG_ENOMEM); } pp->pipe = pipe; pp->sigclose = 0; pp->pair = psock; *ppp = pp; return (0); } static void nni_pair_pipe_fini(void *arg) { nni_pair_pipe *pp = arg; NNI_FREE_STRUCT(pp); } static int nni_pair_pipe_add(void *arg) { nni_pair_pipe *pp = arg; nni_pair_sock *pair = pp->pair; if (pair->pipe != NULL) { return (NNG_EBUSY); // Already have a peer, denied. } pair->pipe = pp; return (0); } static void nni_pair_pipe_rem(void *arg) { nni_pair_pipe *pp = arg; nni_pair_sock *pair = pp->pair; if (pair->pipe == pp) { pair->pipe = NULL; } } static void nni_pair_pipe_send(void *arg) { nni_pair_pipe *pp = arg; nni_pair_sock *pair = pp->pair; nni_msgq *uwq = pair->uwq; nni_msgq *urq = pair->urq; nni_pipe *pipe = pp->pipe; nni_msg *msg; int rv; for (;;) { rv = nni_msgq_get_sig(uwq, &msg, &pp->sigclose); if (rv != 0) { break; } rv = nni_pipe_send(pipe, msg); if (rv != 0) { nni_msg_free(msg); break; } } nni_msgq_signal(urq, &pp->sigclose); nni_pipe_close(pipe); } static void nni_pair_pipe_recv(void *arg) { nni_pair_pipe *pp = arg; nni_pair_sock *pair = pp->pair; nni_msgq *urq = pair->urq; nni_msgq *uwq = pair->uwq; nni_pipe *pipe = pp->pipe; nni_msg *msg; int rv; for (;;) { rv = nni_pipe_recv(pipe, &msg); if (rv != 0) { break; } rv = nni_msgq_put_sig(urq, msg, &pp->sigclose); if (rv != 0) { nni_msg_free(msg); break; } } nni_msgq_signal(uwq, &pp->sigclose); nni_pipe_close(pipe); } // TODO: probably we could replace these with NULL, since we have no // protocol specific options? static int nni_pair_sock_setopt(void *arg, int opt, const void *buf, size_t sz) { return (NNG_ENOTSUP); } static int nni_pair_sock_getopt(void *arg, int opt, void *buf, size_t *szp) { return (NNG_ENOTSUP); } // This is the global protocol structure -- our linkage to the core. // This should be the only global non-static symbol in this file. static nni_proto_pipe_ops nni_pair_pipe_ops = { .pipe_init = nni_pair_pipe_init, .pipe_fini = nni_pair_pipe_fini, .pipe_add = nni_pair_pipe_add, .pipe_rem = nni_pair_pipe_rem, .pipe_worker = { nni_pair_pipe_send, nni_pair_pipe_recv }, }; static nni_proto_sock_ops nni_pair_sock_ops = { .sock_init = nni_pair_sock_init, .sock_fini = nni_pair_sock_fini, .sock_setopt = nni_pair_sock_setopt, .sock_getopt = nni_pair_sock_getopt, }; nni_proto nni_pair_proto = { .proto_self = NNG_PROTO_PAIR, .proto_peer = NNG_PROTO_PAIR, .proto_name = "pair", .proto_sock_ops = &nni_pair_sock_ops, .proto_pipe_ops = &nni_pair_pipe_ops, };