#include <libgen.h>
#include <allParam.h>
+#include <limits.h>
+
#include "grmblfx.h"
#include "worker.h"
#include "evt.h"
static int openFile(TheArgs *theArgs, TheStats *theStats)
{
- char fileName[_POSIX_PATH_MAX];
+ char fileName[_POSIX_PATH_MAX]; /* preliminary file name*/
+ char fileNameFull[_POSIX_PATH_MAX]; /* final file name with full suffix etc.*/
static char outPath[_POSIX_PATH_MAX];
static char outLustrePath[_POSIX_PATH_MAX];
static char sec_path[_POSIX_PATH_MAX];
* can be in the usual format without EB identificator.
*/
if (theArgs->epicsCtrl && theArgs->ebnum > 0)
- sprintf(fileName, "%s%02d.hld", fileName, theArgs->ebnum);
+ sprintf(fileNameFull, "%s%02d.hld", fileName, theArgs->ebnum);
else
- sprintf(fileName, "%s.hld", fileName);
+ sprintf(fileNameFull, "%s.hld", fileName);
if (open_count) {
- sprintf(fileName, "%s-%02d", fileName, open_count); /* add cycle number to file */
- sprintf(msglog, "<W> openFile: Using filename %s", fileName);
+ sprintf(fileName, "%s-%02d", fileNameFull, open_count); /* add cycle number to file */
+ strncpy(fileNameFull, fileName,_POSIX_PATH_MAX);
+ sprintf(msglog, "<W> openFile: Using filename %s", fileNameFull);
storeLogInfo(theArgs, msglog);
}
/* #endif */
/* strcmp(theArgs->lustrePath, "") != 0 ){ */
- strcpy(theArgs->fileName, fileName);
+ strcpy(theArgs->fileName, fileNameFull);
/* } */
outFile = stdout;
} else if (strcmp(theArgs->outDev, "file") == 0) {
if (strcmp(theArgs->outPath, "") == 0) {
- strcpy(theArgs->outPath, fileName);
+ strcpy(theArgs->outPath, fileNameFull);
} else {
struct stat bufS, *buf = &bufS;
stat(theArgs->outPath, buf);
if (S_ISDIR(buf->st_mode)) {
strcat(theArgs->outPath, "/");
- strcat(theArgs->outPath, fileName);
+ strcat(theArgs->outPath, fileNameFull);
}
}
}
} else if (strcmp(theArgs->outDev, "tape") == 0) {
if (strcmp(theArgs->outPath, "") == 0) {
- strcpy(theArgs->outPath, fileName);
+ strcpy(theArgs->outPath, fileNameFull);
}
if (NULL == (outTape = openAnsiTape(theArgs->outPath, "/dev/tape"))) {
syslog(LOG_ERR, "opening tape %s: %s", theArgs->outPath, strerror(errno));
dirSize = get_directory_size(sec_path);
}
if (strcmp(theArgs->sec_path, "") == 0) {
- strcpy(theArgs->sec_path, fileName);
+ strcpy(theArgs->sec_path, fileNameFull);
} else {
struct stat bufS, *buf = &bufS;
stat(theArgs->sec_path, buf);
if (S_ISDIR(buf->st_mode)) {
strcat(theArgs->sec_path, "/");
- strcat(theArgs->sec_path, fileName);
+ strcat(theArgs->sec_path, fileNameFull);
}
}
if (NULL == (outSecondFile = fopen(theArgs->sec_path, "wb"))) {
/* If lustrePath is a dir name, add fileName to the lustrePath */
if (S_ISDIR(buf->st_mode)) {
strcat(theArgs->lustrePath, "/");
- strcat(theArgs->lustrePath, fileName);
+ strcat(theArgs->lustrePath, fileNameFull);
}
if (NULL == (outLustreFile = fopen(theArgs->lustrePath, "wb"))) {
char rfioPath[_POSIX_PATH_MAX];
strcpy(rfioPath, theArgs->rfioRemotePath);
strcat(rfioPath, "/");
- strcat(rfioPath, fileName);
+ strcat(rfioPath, fileNameFull);
fprintf(stderr, "<D> evtbuild.c, rfio_fnewfile(): trying to open remote file %s\n", rfioPath);
rev = rfio_fnewfile(fRemote, rfioPath);