#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <string.h>
#include <thread.h>
#include <synch.h>
#include <slp-internal.h>
struct thr_call_args {
slp_handle_impl_t *hp;
SLPGenericAppCB *cb;
void *cookie;
SLPMsgReplyCB *msg_cb;
slp_target_list_t *targets;
};
static void *consumer(void *);
static void *slp_call(void *);
static SLPError check_message_fit(slp_handle_impl_t *, slp_target_list_t *);
SLPError slp_ua_common(SLPHandle hSLP, const char *scopes,
SLPGenericAppCB cb, void *cookie, SLPMsgReplyCB msg_cb)
{
slp_handle_impl_t *hp;
slp_target_list_t *targets;
struct thr_call_args *args;
slp_queue_t *q;
SLPError err;
thread_t tid;
int terr;
hp = (slp_handle_impl_t *)hSLP;
if ((err = slp_new_target_list(hp, scopes, &targets)) != SLP_OK)
return (err);
if ((err = check_message_fit(hp, targets)) != SLP_OK) {
slp_destroy_target_list(targets);
return (err);
}
args = malloc(sizeof (*args));
if (args == NULL) {
slp_err(LOG_CRIT, 0, "ua_common", "out of memory");
return (SLP_MEMORY_ALLOC_FAILED);
}
args->hp = hp;
args->cb = cb;
args->cookie = cookie;
args->msg_cb = msg_cb;
args->targets = targets;
q = slp_new_queue(&err);
if (err != SLP_OK)
goto error;
hp->q = q;
if ((terr = thr_create(NULL, 0, slp_call, args, 0, &tid)) != 0) {
slp_err(LOG_CRIT, 0, "ua_common", "could not start thread: %s",
strerror(terr));
err = SLP_INTERNAL_SYSTEM_ERROR;
goto error;
}
hp->producer_tid = tid;
if (hp->async) {
if ((terr = thr_create(NULL, 0, consumer,
args, 0, NULL)) != 0) {
slp_err(LOG_CRIT, 0, "ua_common",
"could not start thread: %s",
strerror(terr));
err = SLP_INTERNAL_SYSTEM_ERROR;
hp->cancel = 1;
(void) thr_join(tid, NULL, NULL);
goto error;
}
return (SLP_OK);
}
return ((SLPError)consumer(args));
error:
free(args);
return (err);
}
static void *
consumer(void *ap)
{
slp_handle_impl_t *hp;
char *reply;
void *collator;
int numResults = 0;
struct thr_call_args *args = (struct thr_call_args *)ap;
hp = args->hp;
collator = NULL;
hp->consumer_tid = thr_self();
for (;;) {
SLPBoolean cont;
reply = slp_dequeue(hp->q);
cont = args->msg_cb(hp, reply, args->cb, args->cookie,
&collator, &numResults);
if (reply) {
free(reply);
} else {
break;
}
if (!cont) {
args->msg_cb(hp, NULL, args->cb, args->cookie,
&collator, &numResults);
break;
}
}
hp->cancel = 1;
(void) thr_join(hp->producer_tid, NULL, NULL);
slp_flush_queue(hp->q, free);
slp_destroy_queue(hp->q);
free(args);
slp_end_call(hp);
return ((void *)SLP_OK);
}
static void *
slp_call(void *ap)
{
struct thr_call_args *args = (struct thr_call_args *)ap;
slp_target_t *t;
const char *uc_scopes, *mc_scopes;
SLPBoolean use_tcp = SLP_FALSE;
size_t len;
if (uc_scopes = slp_get_uc_scopes(args->targets)) {
size_t mtu;
int i;
len = slp_hdrlang_length(args->hp);
for (i = 0; i < args->hp->msg.iovlen; i++) {
len += args->hp->msg.iov[i].iov_len;
}
len += strlen(uc_scopes);
mtu = slp_get_mtu();
if (len > mtu)
use_tcp = SLP_TRUE;
for (t = slp_next_uc_target(args->targets); t != NULL;
t = slp_next_uc_target(args->targets)) {
if (args->hp->cancel)
break;
if (use_tcp)
slp_uc_tcp_send(args->hp, t, uc_scopes,
SLP_FALSE, 0);
else
slp_uc_udp_send(args->hp, t, uc_scopes);
}
}
if ((!args->hp->cancel) &&
(mc_scopes = slp_get_mc_scopes(args->targets)))
slp_mc_send(args->hp, mc_scopes);
if (args->hp->tcp_lock)
slp_tcp_wait(args->hp);
slp_destroy_target_list(args->targets);
free(args->hp->msg.iov);
free(args->hp->msg.msg);
(void) slp_enqueue(args->hp->q, NULL);
thr_exit(NULL);
}
static SLPError check_message_fit(slp_handle_impl_t *hp,
slp_target_list_t *targets) {
size_t msgSize;
int i;
const char *mc_scopes;
if (!(mc_scopes = slp_get_mc_scopes(targets)))
return (SLP_OK);
msgSize = slp_hdrlang_length(hp);
for (i = 0; i < hp->msg.iovlen; i++) {
msgSize += hp->msg.iov[i].iov_len;
}
msgSize += strlen(mc_scopes);
if (msgSize > slp_get_mtu())
return (SLP_BUFFER_OVERFLOW);
return (SLP_OK);
}