aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/survey
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-09 13:01:22 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-09 13:01:22 -0800
commit848f8f62d7c6d6ea061dd0513a6bffc1ef358ff3 (patch)
tree24a31a22803355a4a85293cb35c066b32c651b58 /src/protocol/survey
parent02231e715c4cb67d3394ee363a758f6b3e6b53b8 (diff)
downloadnng-848f8f62d7c6d6ea061dd0513a6bffc1ef358ff3.tar.gz
nng-848f8f62d7c6d6ea061dd0513a6bffc1ef358ff3.tar.bz2
nng-848f8f62d7c6d6ea061dd0513a6bffc1ef358ff3.zip
Add survey test (and fix survey pattern).
As part of this, we've added a way to unblock callers in a message queue with an error, even without a signal channel. This was necessary to interrupt blockers upon survey timeout. They will get NNG_ETIMEDOUT, but afterwards callers get NNG_ESTATE.
Diffstat (limited to 'src/protocol/survey')
-rw-r--r--src/protocol/survey/respond.c1
-rw-r--r--src/protocol/survey/survey.c13
2 files changed, 8 insertions, 6 deletions
diff --git a/src/protocol/survey/respond.c b/src/protocol/survey/respond.c
index 2891edc1..2359fef1 100644
--- a/src/protocol/survey/respond.c
+++ b/src/protocol/survey/respond.c
@@ -228,7 +228,6 @@ again:
if (rv != 0) {
break;
}
-
// Store the pipe id in the header, first thing.
rv = nni_msg_append_header(msg, idbuf, 4);
if (rv != 0) {
diff --git a/src/protocol/survey/survey.c b/src/protocol/survey/survey.c
index 9def9292..3870a9ef 100644
--- a/src/protocol/survey/survey.c
+++ b/src/protocol/survey/survey.c
@@ -36,8 +36,8 @@ struct nni_surv_pipe {
nni_pipe * npipe;
nni_surv_sock * psock;
nni_msgq * sendq;
- int sigclose;
nni_list_node node;
+ int sigclose;
};
static int
@@ -71,8 +71,7 @@ nni_surv_sock_close(void *arg)
{
nni_surv_sock *psock = arg;
- // Shut down the resender. We request it to exit by clearing
- // its old value, then kick it.
+ // Shut down the resender.
psock->closing = 1;
nni_cv_wake(&psock->cv);
}
@@ -103,8 +102,8 @@ nni_surv_pipe_init(void **pp, nni_pipe *npipe, void *psock)
return (rv);
}
ppipe->npipe = npipe;
- ppipe->sigclose = 0;
ppipe->psock = psock;
+ ppipe->sigclose = 0;
*pp = ppipe;
return (0);
}
@@ -146,7 +145,7 @@ nni_surv_pipe_sender(void *arg)
nni_surv_pipe *ppipe = arg;
nni_surv_sock *psock = ppipe->psock;
nni_pipe *npipe = ppipe->npipe;
- nni_msgq *uwq = nni_sock_sendq(psock->nsock);
+ nni_msgq *uwq = ppipe->sendq;
nni_msgq *urq = nni_sock_recvq(psock->nsock);
nni_mtx *mx = nni_sock_mtx(psock->nsock);
nni_msg *msg;
@@ -206,6 +205,7 @@ nni_surv_pipe_receiver(void *arg)
}
}
nni_msgq_signal(uwq, &ppipe->sigclose);
+ nni_msgq_set_error(ppipe->sendq, NNG_ECLOSED);
nni_pipe_close(npipe);
}
@@ -308,6 +308,7 @@ nni_surv_sock_timeout(void *arg)
{
nni_surv_sock *psock = arg;
nni_mtx *mx = nni_sock_mtx(psock->nsock);
+ nni_msgq *urq = nni_sock_recvq(psock->nsock);
nni_mtx_lock(mx);
for (;;) {
@@ -322,6 +323,7 @@ nni_surv_sock_timeout(void *arg)
// so zeroing means that nothing can match.
memset(psock->survid, 0, sizeof (psock->survid));
nni_sock_recverr(psock->nsock, NNG_ESTATE);
+ nni_msgq_set_get_error(urq, NNG_ETIMEDOUT);
}
nni_cv_until(&psock->cv, psock->expire);
}
@@ -362,6 +364,7 @@ nni_surv_sock_sfilter(void *arg, nni_msg *msg)
// Clear the error condition.
nni_sock_recverr(psock->nsock, 0);
+ nni_msgq_set_get_error(nni_sock_recvq(psock->nsock), 0);
return (msg);
}