static char *rcsId =
- "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.78 2007-04-24 15:28:42 hadaq Exp $";
+ "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.79 2007-10-05 09:17:26 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
#include "ansiTape.h"
#include "genid32.h"
+#define MAXINPATH 32
#define NEVTIDS 64UL /* must be 2^n */
#define NEVTIDS_IN_FILE 0UL /* must be 2^n */
unsigned int ressizelimit;
double secsizelimit;
double resdown_offset;
+
+ /* the following arguments are for the variable queue size. S.Y. */
+ long varQSize[MAXINPATH];
+ int varQSizeCnt;
} TheArgs;
typedef struct TheStatsS
my->secsizelimit = 0.;
my->ressizelimit = 0;
strcpy (my->respath, "");
+
+ for (i = 0; i < MAXINPATH; i++) {
+ my->varQSize[i] = 1 * 1024 * 1024;
+ }
}
static int
Param_getString (param, name, "verb", ¶mWasFound, my->verbosity);
Param_getInt (param, name, "evtid", ¶mWasFound, &my->evtId);
Param_getInt (param, name, "maxfilesz", ¶mWasFound, &my->maxFileSz);
+
+ Param_getIntArray(param, name, "varqsize", MAXINPATH, &my->varQSizeCnt, my->varQSize);
desParam (param);
}
char buf[_POSIX_PATH_MAX];
sprintf (buf, "netqueue%d", i);
- shmTrans[i] = ShmTrans_create (buf, 2 * theArgs->queueSize);
+
+ if( theArgs->queueSize > 0 ) {
+ /* The queueSize is given in CL. */
+ shmTrans[i] = ShmTrans_create (buf, 2 * theArgs->queueSize);
+ }
+ else{
+ shmTrans[i] = ShmTrans_create (buf, 2 * (long)theArgs->varQSize[i]);
+ }
+
hadTuQueue[i] = NULL;
}
}
-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/netmem.c,v 6.28 2004-08-13 10:30:00 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/netmem.c,v 6.29 2007-10-05 09:17:26 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
unsigned long isStandalone;
unsigned long priority;
unsigned long queueSize;
+ long varQSize[MAXINPATH];
+ int varQSizeCnt;
char verbosity[PARAM_MAX_VALUE_LEN];
} TheArgs;
my->isStandalone = 1;
my->queueSize = 1 * 1024 * 1024;
strcpy(my->verbosity, "info");
+
+ for (i = 0; i < MAXINPATH; i++) {
+ my->varQSize[i] = 1 * 1024 * 1024;
+ }
}
static int argsFromCL(TheArgs *my, int argc, char *argv[])
Param_getInt(param, name, "prio", ¶mWasFound, &my->priority);
Param_getInt(param, name, "qsize", ¶mWasFound, &my->queueSize);
Param_getString(param, name, "verb", ¶mWasFound, my->verbosity);
+
+ /* this is an argument for a variable queue size. S.Y.*/
+ Param_getIntArray(param, name, "varqsize", MAXINPATH, &my->varQSizeCnt, my->varQSize);
desParam(param);
}
exit(EXIT_FAILURE);
}
sprintf(buf, "netqueue%d", i);
- shmTrans[i] = ShmTrans_open(buf, 2 * theArgs->queueSize);
+
+ if( theArgs->queueSize > 0 ){
+ /* if the queueSize is given in CL */
+ shmTrans[i] = ShmTrans_open(buf, 2 * theArgs->queueSize);
+ }
+ else{
+ /* otherwise use variable queue size */
+ shmTrans[i] = ShmTrans_open(buf, 2 * (long)theArgs->varQSize[i]);
+ }
+
if (shmTrans[i] == NULL) {
syslog(LOG_ERR, "%s, %d: %s", __FILE__, __LINE__, strerror(errno));
exit(EXIT_FAILURE);
}
hadTu[i] = NULL;
- hadTuSize[i] = theArgs->queueSize - HadTu_hdrSize();
+
+ if( theArgs->queueSize > 0) {
+ /* if the queueSize is given in CL */
+ hadTuSize[i] = theArgs->queueSize - HadTu_hdrSize();
+ }
+ else{
+ /* otherwise use variable queue size */
+ hadTuSize[i] = theArgs->varQSize[i] - HadTu_hdrSize();
+ }
}
storeInfoStart(argv[0], time(NULL), theArgs);
Worker_initEnd(worker);