Skip to content

Commit

Permalink
sockfd: convert to use nni_aio_start
Browse files Browse the repository at this point in the history
  • Loading branch information
gdamore committed Dec 26, 2024
1 parent b5826da commit 2c4324c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 39 deletions.
9 changes: 5 additions & 4 deletions src/core/sockfd.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2023 Staysail Systems, Inc. <[email protected]>
// Copyright 2024 Staysail Systems, Inc. <[email protected]>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
Expand Down Expand Up @@ -116,10 +116,11 @@ sfd_listener_accept(void *arg, nng_aio *aio)
{
sfd_listener *l = arg;

if (nni_aio_begin(aio) != 0) {
nni_mtx_lock(&l->mtx);
if (!nni_aio_start(aio, sfd_cancel_accept, l)) {
nni_mtx_unlock(&l->mtx);
return;
}
nni_mtx_lock(&l->mtx);
if (l->closed) {
nni_mtx_unlock(&l->mtx);
nni_aio_finish_error(aio, NNG_ECLOSED);
Expand All @@ -128,7 +129,7 @@ sfd_listener_accept(void *arg, nng_aio *aio)

if (l->listen_cnt) {
sfd_start_conn(l, aio);
} else if (nni_aio_defer(aio, sfd_cancel_accept, l)) {
} else {
nni_aio_list_append(&l->accept_q, aio);
}
nni_mtx_unlock(&l->mtx);
Expand Down
14 changes: 2 additions & 12 deletions src/platform/posix/posix_sockfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,16 +275,11 @@ static void
sfd_send(void *arg, nni_aio *aio)
{
nni_sfd_conn *c = arg;
int rv;

if (nni_aio_begin(aio) != 0) {
return;
}
nni_mtx_lock(&c->mtx);

if ((rv = nni_aio_schedule(aio, sfd_cancel, c)) != 0) {
if (!nni_aio_start(aio, sfd_cancel, c)) {
nni_mtx_unlock(&c->mtx);
nni_aio_finish_error(aio, rv);
return;
}
nni_aio_list_append(&c->writeq, aio);
Expand All @@ -305,16 +300,11 @@ static void
sfd_recv(void *arg, nni_aio *aio)
{
nni_sfd_conn *c = arg;
int rv;

if (nni_aio_begin(aio) != 0) {
return;
}
nni_mtx_lock(&c->mtx);

if ((rv = nni_aio_schedule(aio, sfd_cancel, c)) != 0) {
if (!nni_aio_start(aio, sfd_cancel, c)) {
nni_mtx_unlock(&c->mtx);
nni_aio_finish_error(aio, rv);
return;
}
nni_aio_list_append(&c->readq, aio);
Expand Down
27 changes: 4 additions & 23 deletions src/sp/transport/socket/sockfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,19 +453,10 @@ static void
sfd_tran_pipe_send(void *arg, nni_aio *aio)
{
sfd_tran_pipe *p = arg;
int rv;

if (nni_aio_begin(aio) != 0) {
// No way to give the message back to the protocol, so
// we just discard it silently to prevent it from leaking.
nni_msg_free(nni_aio_get_msg(aio));
nni_aio_set_msg(aio, NULL);
return;
}
nni_mtx_lock(&p->mtx);
if ((rv = nni_aio_schedule(aio, sfd_tran_pipe_send_cancel, p)) != 0) {
if (!nni_aio_start(aio, sfd_tran_pipe_send_cancel, p)) {
nni_mtx_unlock(&p->mtx);
nni_aio_finish_error(aio, rv);
return;
}
nni_list_append(&p->sendq, aio);
Expand Down Expand Up @@ -530,15 +521,10 @@ static void
sfd_tran_pipe_recv(void *arg, nni_aio *aio)
{
sfd_tran_pipe *p = arg;
int rv;

if (nni_aio_begin(aio) != 0) {
return;
}
nni_mtx_lock(&p->mtx);
if ((rv = nni_aio_schedule(aio, sfd_tran_pipe_recv_cancel, p)) != 0) {
if (!nni_aio_start(aio, sfd_tran_pipe_recv_cancel, p)) {
nni_mtx_unlock(&p->mtx);
nni_aio_finish_error(aio, rv);
return;
}

Expand Down Expand Up @@ -687,7 +673,7 @@ sfd_tran_accept_cb(void *arg)
ep->useraio = NULL;
nni_aio_finish_error(aio, rv);
}
if (!ep->closed) {
if (!ep->closed && rv != NNG_ESTOPPED) {
nng_stream_listener_accept(ep->listener, &ep->connaio);
}
nni_mtx_unlock(&ep->mtx);
Expand Down Expand Up @@ -791,11 +777,7 @@ static void
sfd_tran_ep_accept(void *arg, nni_aio *aio)
{
sfd_tran_ep *ep = arg;
int rv;

if (nni_aio_begin(aio) != 0) {
return;
}
nni_mtx_lock(&ep->mtx);
if (ep->closed) {
nni_mtx_unlock(&ep->mtx);
Expand All @@ -807,9 +789,8 @@ sfd_tran_ep_accept(void *arg, nni_aio *aio)
nni_aio_finish_error(aio, NNG_EBUSY);
return;
}
if ((rv = nni_aio_schedule(aio, sfd_tran_ep_cancel, ep)) != 0) {
if (!nni_aio_start(aio, sfd_tran_ep_cancel, ep)) {
nni_mtx_unlock(&ep->mtx);
nni_aio_finish_error(aio, rv);
return;
}
ep->useraio = aio;
Expand Down

0 comments on commit 2c4324c

Please sign in to comment.