2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2012-03-24 14:06:46 -04:00
|
|
|
* Copyright 2001, 2012 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "gtm_time.h"
|
|
|
|
#include "gtm_string.h"
|
|
|
|
#include "gtm_stdio.h"
|
2012-03-24 14:06:46 -04:00
|
|
|
#include "gtmio.h"
|
|
|
|
#include "have_crit.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
#include "repl_log.h"
|
|
|
|
#include "iosp.h"
|
|
|
|
|
|
|
|
GBLREF int gtmsource_log_fd;
|
|
|
|
GBLREF int gtmrecv_log_fd;
|
|
|
|
GBLREF int updproc_log_fd;
|
|
|
|
|
|
|
|
GBLREF FILE *gtmsource_log_fp;
|
|
|
|
GBLREF FILE *gtmrecv_log_fp;
|
|
|
|
GBLREF FILE *updproc_log_fp;
|
|
|
|
|
|
|
|
int repl_log(FILE *fp, boolean_t stamptime, boolean_t flush, char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list printargs;
|
|
|
|
now_t now; /* for GET_CUR_TIME macro */
|
|
|
|
char *time_ptr, time_str[CTIME_BEFORE_NL + 2]; /* for GET_CUR_TIME macro */
|
|
|
|
char fmt_str[BUFSIZ];
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert(NULL != fp);
|
|
|
|
if (stamptime)
|
|
|
|
{
|
|
|
|
GET_CUR_TIME;
|
|
|
|
strcpy(fmt_str, time_ptr);
|
|
|
|
fmt_str[CTIME_BEFORE_NL] = ' '; /* Overwrite \n */
|
|
|
|
fmt_str[CTIME_BEFORE_NL + 1] = ':';
|
|
|
|
fmt_str[CTIME_BEFORE_NL + 2] = ' ';
|
|
|
|
strcpy(fmt_str + CTIME_BEFORE_NL + 3, fmt);
|
|
|
|
fmt = &fmt_str[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(printargs, fmt);
|
|
|
|
VFPRINTF(fp, fmt, printargs, rc);
|
|
|
|
assert(0 <= rc);
|
|
|
|
va_end(printargs);
|
|
|
|
|
|
|
|
if (flush)
|
2012-03-24 14:06:46 -04:00
|
|
|
FFLUSH(fp);
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
return(SS_NORMAL);
|
|
|
|
}
|