-static const char rcsId[] = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/allParam/rpc/rpcParam.c,v 1.10 2004-05-24 12:07:33 muench Exp $";
+static const char rcsId[] = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/allParam/rpc/rpcParam.c,v 1.11 2004-05-26 11:34:38 muench Exp $";
#define _POSIX_C_SOURCE 199509L
#if HAVE_CONFIG_H
#include <ctype.h>
#include <errno.h>
+#ifdef PTHREADS
+#include <pthread.h>
+#endif /* PTHREADS */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
CLIENT *cl;
unsigned long remParam;
PCache *cache;
+#ifdef PTHREADS
+ pthread_mutex_t *rpcLock;
+#endif /* PTHREADS */
} RpcParam;
int conSetupParam(Param * my, const char *setup)
my->setup = NULL;
}
+ rpcParam = malloc(sizeof(RpcParam));
+
+#ifdef PTHREADS
+ rpcParam->rpcLock = malloc(sizeof(pthread_mutex_t));
+ pthread_mutex_init(rpcParam->rpcLock, NULL);
+#endif /* PTHREADS */
+
server = getenv("PARAM_RPCPAS_ADDR");
if (server == NULL) {
Param_strerror(my, "Environment variable PARAM_RPCPAS_ADDR not set");
retVal = -1;
} else {
- rpcParam = malloc(sizeof(RpcParam));
rpcParam->cl = clnt_create(server, RPCPARAMPROG, RPCPARAMVERS, "tcp");
if (rpcParam->cl == NULL) {
Param_strerror(my, clnt_spcreateerror(server));
char *arg;
arg = my->setup == NULL ? "" : my->setup;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
rpcParam->remParam = *con_1(&arg, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
}
}
RpcParam *rpcParam = my->specParam;
if (rpcParam->cl != NULL) {
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
des_1(&rpcParam->remParam, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
clnt_destroy(rpcParam->cl);
}
+#ifdef PTHREADS
+ pthread_mutex_destroy(rpcParam->rpcLock);
+ free(rpcParam->rpcLock);
+#endif /* PTHREADS */
free(rpcParam);
free(my->setup);
}
args.name = name;
args.idx = idx;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *getint_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
*row = res.rows;
*val = res.value;
args.name = name;
args.idx = idx;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *getstring_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
*row = res.rows;
strcpy(val, res.value);
args.idx = idx;
args.maxrows = maxrows;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *getintarray_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
*rows = res.value.value_len;
for (i = 0; i < res.value.value_len; i++) {
args.idx = idx;
args.maxrows = maxrows;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *getstringarray_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
*rows = res.value.value_len;
for (i = 0; i < res.value.value_len; i++) {
args.idx = idx;
args.value = value;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *storeint_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
return res;
}
args.idx = idx;
args.value = value;
+#ifdef PTHREADS
+ pthread_mutex_lock(rpcParam->rpcLock);
+#endif /* PTHREADS */
res = *storestring_1(&args, rpcParam->cl);
+#ifdef PTHREADS
+ pthread_mutex_unlock(rpcParam->rpcLock);
+#endif /* PTHREADS */
return res;
}