2014-08-03 16:52:46 +00:00
|
|
|
/*
|
2017-02-12 16:37:14 +00:00
|
|
|
* SPRTF - Log output utility - part of the HTML Tidy project
|
2014-08-03 16:52:46 +00:00
|
|
|
*
|
|
|
|
* Author: Geoff R. McLane <reports _at_ geoffair _dot_ info>
|
2017-02-12 16:37:14 +00:00
|
|
|
* License: MIT (see tidy.h for the copyright notice)
|
2014-08-03 16:52:46 +00:00
|
|
|
*
|
2017-02-12 16:37:14 +00:00
|
|
|
* Revision 1.0.2 2017/02/12 17:06:02 geoff - correct license and coding style
|
2014-08-03 16:52:46 +00:00
|
|
|
* Revision 1.0.1 2012/11/06 13:01:25 geoff
|
|
|
|
* Revision 1.0.0 2012/10/17 00:00:00 geoff
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-06-02 18:44:00 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning( disable : 4995 )
|
|
|
|
#endif
|
2017-02-12 16:37:14 +00:00
|
|
|
/* Module: sprtf.c */
|
|
|
|
/* Debug log file output */
|
|
|
|
#include <stdio.h> /* fopen()... */
|
|
|
|
#include <string.h> /* strcpy */
|
|
|
|
#include <stdarg.h> /* va_start, va_end, ... */
|
2014-08-03 16:52:46 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <WinSock2.h>
|
|
|
|
#include <sys/timeb.h>
|
2015-06-02 18:44:00 +00:00
|
|
|
#if (defined(UNICODE) || defined(_UNICODE))
|
|
|
|
#include <Strsafe.h>
|
|
|
|
#endif
|
2014-08-03 16:52:46 +00:00
|
|
|
#else /* !_MSC_VER */
|
2017-02-12 16:37:14 +00:00
|
|
|
#include <sys/time.h> /* gettimeoday(), struct timeval,... */
|
2014-08-03 16:52:46 +00:00
|
|
|
#endif /* _MSC_VER y/n */
|
|
|
|
#include <time.h>
|
2017-02-12 16:37:14 +00:00
|
|
|
#include <stdlib.h> /* for exit() in unix */
|
2014-08-03 16:52:46 +00:00
|
|
|
#include "sprtf.h"
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#ifndef _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* #ifndef _CRT_SECURE_NO_DEPRECATE */
|
2014-08-03 16:52:46 +00:00
|
|
|
#pragma warning( disable:4996 )
|
|
|
|
#else
|
|
|
|
#define strcmpi strcasecmp
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MX_ONE_BUF
|
|
|
|
#define MX_ONE_BUF 1024
|
|
|
|
#endif
|
|
|
|
#ifndef MX_BUFFERS
|
|
|
|
#define MX_BUFFERS 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char _s_strbufs[MX_ONE_BUF * MX_BUFFERS];
|
|
|
|
static int iNextBuf = 0;
|
|
|
|
|
|
|
|
char *GetNxtBuf()
|
|
|
|
{
|
|
|
|
iNextBuf++;
|
|
|
|
if(iNextBuf >= MX_BUFFERS)
|
|
|
|
iNextBuf = 0;
|
|
|
|
return &_s_strbufs[MX_ONE_BUF * iNextBuf];
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MXIO 512
|
2017-02-12 16:37:14 +00:00
|
|
|
#ifdef _MSC_VER /* use local log */
|
2014-08-03 16:52:46 +00:00
|
|
|
static char def_log[] = "tempex.txt";
|
|
|
|
#else
|
|
|
|
static char def_log[] = "ex.log";
|
|
|
|
#endif
|
|
|
|
static char logfile[264] = "\0";
|
|
|
|
static FILE * outfile = NULL;
|
|
|
|
static int addsystime = 0;
|
|
|
|
static int addsysdate = 0;
|
|
|
|
static int addstdout = 1;
|
|
|
|
static int addflush = 1;
|
|
|
|
static int add2screen = 0;
|
|
|
|
static int add2listview = 0;
|
|
|
|
static int append_to_log = 0;
|
|
|
|
|
|
|
|
#ifndef VFP
|
|
|
|
#define VFP(a) ( a && ( a != (FILE *)-1 ) )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int add_list_out( int val )
|
|
|
|
{
|
|
|
|
int i = add2listview;
|
|
|
|
add2listview = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add_std_out( int val )
|
|
|
|
{
|
|
|
|
int i = addstdout;
|
|
|
|
addstdout = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add_screen_out( int val )
|
|
|
|
{
|
|
|
|
int i = add2screen;
|
|
|
|
add2screen = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int add_sys_time( int val )
|
|
|
|
{
|
|
|
|
int i = addsystime;
|
|
|
|
addsystime = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add_sys_date( int val )
|
|
|
|
{
|
|
|
|
int i = addsysdate;
|
|
|
|
addsysdate = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int add_append_log( int val )
|
|
|
|
{
|
|
|
|
int i = append_to_log;
|
|
|
|
append_to_log = val;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2017-02-12 16:37:14 +00:00
|
|
|
static const char *mode = "wb"; /* in window sprtf looks after the line endings */
|
2014-08-03 16:52:46 +00:00
|
|
|
#else
|
|
|
|
static const char *mode = "w";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int open_log_file( void )
|
|
|
|
{
|
|
|
|
if (logfile[0] == 0)
|
|
|
|
strcpy(logfile,def_log);
|
|
|
|
if (append_to_log) {
|
|
|
|
#ifdef _MSC_VER
|
2017-02-12 16:37:14 +00:00
|
|
|
mode = "ab"; /* in window sprtf looks after the line endings */
|
2014-08-03 16:52:46 +00:00
|
|
|
#else
|
|
|
|
mode = "a";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
outfile = fopen(logfile, mode);
|
|
|
|
if( outfile == 0 ) {
|
|
|
|
outfile = (FILE *)-1;
|
|
|
|
sprtf("ERROR: Failed to open log file [%s] ...\n", logfile);
|
2017-02-12 16:37:14 +00:00
|
|
|
/* exit(1); failed */
|
2014-08-03 16:52:46 +00:00
|
|
|
return 0; /* failed */
|
|
|
|
}
|
|
|
|
return 1; /* success */
|
|
|
|
}
|
|
|
|
|
|
|
|
void close_log_file( void )
|
|
|
|
{
|
|
|
|
if( VFP(outfile) ) {
|
|
|
|
fclose(outfile);
|
|
|
|
}
|
|
|
|
outfile = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char * get_log_file( void )
|
|
|
|
{
|
|
|
|
if (logfile[0] == 0)
|
|
|
|
strcpy(logfile,def_log);
|
2017-02-12 16:37:14 +00:00
|
|
|
if (outfile == (FILE *)-1) /* disable the log file */
|
2014-08-03 16:52:46 +00:00
|
|
|
return (char *)"none";
|
|
|
|
return logfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_log_file( char * nf, int open )
|
|
|
|
{
|
|
|
|
if (logfile[0] == 0)
|
|
|
|
strcpy(logfile,def_log);
|
|
|
|
if ( nf && *nf && strcmpi(nf,logfile) ) {
|
2017-02-12 16:37:14 +00:00
|
|
|
close_log_file(); /* remove any previous */
|
|
|
|
strcpy(logfile,nf); /* set new name */
|
|
|
|
if (strcmp(logfile,"none") == 0) { /* if equal 'none' */
|
|
|
|
outfile = (FILE *)-1; /* disable the log file */
|
2014-08-03 16:52:46 +00:00
|
|
|
} else if (open) {
|
2017-02-12 16:37:14 +00:00
|
|
|
open_log_file(); /* and open it ... anything previous written is 'lost' */
|
2014-08-03 16:52:46 +00:00
|
|
|
} else
|
2017-02-12 16:37:14 +00:00
|
|
|
outfile = 0; /* else set 0 to open on first write */
|
2014-08-03 16:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
int gettimeofday(struct timeval *tp, void *tzp)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
struct _timeb timebuffer;
|
|
|
|
_ftime(&timebuffer);
|
|
|
|
tp->tv_sec = (long)timebuffer.time;
|
|
|
|
tp->tv_usec = timebuffer.millitm * 1000;
|
|
|
|
#else
|
|
|
|
tp->tv_sec = time(NULL);
|
|
|
|
tp->tv_usec = 0;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* _MSC_VER */
|
2014-08-03 16:52:46 +00:00
|
|
|
|
|
|
|
void add_date_stg( char *ps, struct timeval *ptv )
|
|
|
|
{
|
|
|
|
time_t curtime;
|
|
|
|
struct tm * ptm;
|
|
|
|
curtime = (ptv->tv_sec & 0xffffffff);
|
|
|
|
ptm = localtime(&curtime);
|
|
|
|
if (ptm) {
|
|
|
|
strftime(EndBuf(ps),128,"%Y/%m/%d",ptm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_time_stg( char *ps, struct timeval *ptv )
|
|
|
|
{
|
|
|
|
time_t curtime;
|
|
|
|
struct tm * ptm;
|
|
|
|
curtime = (ptv->tv_sec & 0xffffffff);
|
|
|
|
ptm = localtime(&curtime);
|
|
|
|
if (ptm) {
|
|
|
|
strftime(EndBuf(ps),128,"%H:%M:%S",ptm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_date_stg()
|
|
|
|
{
|
|
|
|
char *ps;
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday( (struct timeval *)&tv, (struct timezone *)0 );
|
|
|
|
ps = GetNxtBuf();
|
|
|
|
*ps = 0;
|
|
|
|
add_date_stg( ps, &tv );
|
|
|
|
return ps;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_time_stg()
|
|
|
|
{
|
|
|
|
char *ps;
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday( (struct timeval *)&tv, (struct timezone *)0 );
|
|
|
|
ps = GetNxtBuf();
|
|
|
|
*ps = 0;
|
|
|
|
add_time_stg( ps, &tv );
|
|
|
|
return ps;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_date_time_stg()
|
|
|
|
{
|
|
|
|
char *ps;
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday( (struct timeval *)&tv, (struct timezone *)0 );
|
|
|
|
ps = GetNxtBuf();
|
|
|
|
*ps = 0;
|
|
|
|
add_date_stg( ps, &tv );
|
|
|
|
strcat(ps," ");
|
|
|
|
add_time_stg( ps, &tv );
|
|
|
|
return ps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void oi( char * psin )
|
|
|
|
{
|
|
|
|
int len, w;
|
|
|
|
char * ps = psin;
|
|
|
|
if (!ps)
|
|
|
|
return;
|
|
|
|
|
|
|
|
len = (int)strlen(ps);
|
|
|
|
if (len) {
|
|
|
|
|
|
|
|
if( outfile == 0 ) {
|
|
|
|
open_log_file();
|
|
|
|
}
|
|
|
|
if( VFP(outfile) ) {
|
|
|
|
char *tb;
|
|
|
|
if (addsysdate) {
|
|
|
|
tb = GetNxtBuf();
|
|
|
|
len = sprintf( tb, "%s - %s", get_date_time_stg(), ps );
|
|
|
|
ps = tb;
|
|
|
|
} else if( addsystime ) {
|
|
|
|
tb = GetNxtBuf();
|
|
|
|
len = sprintf( tb, "%s - %s", get_time_stg(), ps );
|
|
|
|
ps = tb;
|
|
|
|
}
|
|
|
|
|
|
|
|
w = (int)fwrite( ps, 1, len, outfile );
|
|
|
|
if( w != len ) {
|
|
|
|
fclose(outfile);
|
|
|
|
outfile = (FILE *)-1;
|
|
|
|
sprtf("WARNING: Failed write to log file [%s] ...\n", logfile);
|
|
|
|
exit(1);
|
|
|
|
} else if (addflush) {
|
|
|
|
fflush( outfile );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( addstdout ) {
|
|
|
|
fwrite( ps, 1, len, stdout );
|
|
|
|
}
|
|
|
|
#ifdef ADD_LISTVIEW
|
|
|
|
if (add2listview) {
|
|
|
|
LVInsertItem(ps);
|
|
|
|
}
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* ADD_LISTVIEW */
|
2014-08-03 16:52:46 +00:00
|
|
|
#ifdef ADD_SCREENOUT
|
|
|
|
if (add2screen) {
|
2017-02-12 16:37:14 +00:00
|
|
|
Add_String(ps); /* add string to screen list */
|
2014-08-03 16:52:46 +00:00
|
|
|
}
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* #ifdef ADD_SCREENOUT */
|
2014-08-03 16:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2017-02-12 16:37:14 +00:00
|
|
|
/* service to ensure line endings in windows only */
|
2016-01-29 03:11:53 +00:00
|
|
|
static void prt( char * ps )
|
2014-08-03 16:52:46 +00:00
|
|
|
{
|
|
|
|
static char _s_buf[1024];
|
2016-01-29 03:11:53 +00:00
|
|
|
char * pb = _s_buf;
|
|
|
|
size_t i, j, k;
|
|
|
|
char c, d;
|
2014-08-03 16:52:46 +00:00
|
|
|
i = strlen(ps);
|
2016-01-29 03:11:53 +00:00
|
|
|
k = 0;
|
|
|
|
d = 0;
|
|
|
|
if(i) {
|
|
|
|
k = 0;
|
|
|
|
d = 0;
|
|
|
|
for( j = 0; j < i; j++ ) {
|
|
|
|
c = ps[j];
|
|
|
|
if( c == 0x0d ) {
|
|
|
|
if( (j+1) < i ) {
|
|
|
|
if( ps[j+1] != 0x0a ) {
|
|
|
|
pb[k++] = c;
|
|
|
|
c = 0x0a;
|
|
|
|
}
|
2014-08-03 16:52:46 +00:00
|
|
|
} else {
|
2016-01-29 03:11:53 +00:00
|
|
|
pb[k++] = c;
|
|
|
|
c = 0x0a;
|
|
|
|
}
|
|
|
|
} else if( c == 0x0a ) {
|
|
|
|
if( d != 0x0d ) {
|
|
|
|
pb[k++] = 0x0d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pb[k++] = c;
|
|
|
|
d = c;
|
|
|
|
if( k >= MXIO ) {
|
|
|
|
pb[k] = 0;
|
|
|
|
oi(pb);
|
|
|
|
k = 0;
|
|
|
|
}
|
2017-02-12 16:37:14 +00:00
|
|
|
} /* for length of string */
|
2016-01-29 03:11:53 +00:00
|
|
|
if( k ) {
|
|
|
|
pb[k] = 0;
|
|
|
|
oi( pb );
|
|
|
|
}
|
|
|
|
}
|
2014-08-03 16:52:46 +00:00
|
|
|
}
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* #ifdef _MSC_VER */
|
2014-08-03 16:52:46 +00:00
|
|
|
|
|
|
|
int direct_out_it( char *cp )
|
|
|
|
{
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
prt(cp);
|
|
|
|
#else
|
|
|
|
oi(cp);
|
|
|
|
#endif
|
|
|
|
return (int)strlen(cp);
|
|
|
|
}
|
|
|
|
|
2017-02-12 16:37:14 +00:00
|
|
|
/* STDAPI StringCchVPrintf( OUT LPTSTR pszDest,
|
|
|
|
* IN size_t cchDest, IN LPCTSTR pszFormat, IN va_list argList ); */
|
2014-08-03 16:52:46 +00:00
|
|
|
int MCDECL sprtf( const char *pf, ... )
|
|
|
|
{
|
|
|
|
static char _s_sprtfbuf[M_MAX_SPRTF+4];
|
|
|
|
char * pb = _s_sprtfbuf;
|
|
|
|
int i;
|
|
|
|
va_list arglist;
|
|
|
|
va_start(arglist, pf);
|
2016-06-14 13:42:18 +00:00
|
|
|
i = vsnprintf( pb, M_MAX_SPRTF, pf, arglist );
|
2014-08-03 16:52:46 +00:00
|
|
|
va_end(arglist);
|
|
|
|
#ifdef _MSC_VER
|
2017-02-12 16:37:14 +00:00
|
|
|
prt(pb); /* ensure CR/LF */
|
2014-08-03 16:52:46 +00:00
|
|
|
#else
|
|
|
|
oi(pb);
|
|
|
|
#endif
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef UNICODE
|
2017-02-12 16:37:14 +00:00
|
|
|
/* WIDE VARIETY */
|
2014-08-03 16:52:46 +00:00
|
|
|
static void wprt( PTSTR ps )
|
|
|
|
{
|
|
|
|
static char _s_woibuf[1024];
|
|
|
|
char * cp = _s_woibuf;
|
|
|
|
int len = (int)lstrlen(ps);
|
|
|
|
if(len) {
|
2017-02-12 16:37:14 +00:00
|
|
|
int ret = WideCharToMultiByte( CP_ACP, /* UINT CodePage, // code page */
|
|
|
|
0, /* DWORD dwFlags, // performance and mapping flags */
|
|
|
|
ps, /* LPCWSTR lpWideCharStr, // wide-character string */
|
|
|
|
len, /* int cchWideChar, // number of chars in string. */
|
|
|
|
cp, /* LPSTR lpMultiByteStr, // buffer for new string */
|
|
|
|
1024, /* int cbMultiByte, // size of buffer */
|
|
|
|
NULL, /* LPCSTR lpDefaultChar, // default for unmappable chars */
|
|
|
|
NULL ); /* LPBOOL lpUsedDefaultChar // set when default char used */
|
|
|
|
/* oi(cp); */
|
2014-08-03 16:52:46 +00:00
|
|
|
prt(cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int MCDECL wsprtf( PTSTR pf, ... )
|
|
|
|
{
|
|
|
|
static WCHAR _s_sprtfwbuf[1024];
|
|
|
|
PWSTR pb = _s_sprtfwbuf;
|
|
|
|
int i = 1;
|
|
|
|
va_list arglist;
|
|
|
|
va_start(arglist, pf);
|
|
|
|
*pb = 0;
|
|
|
|
StringCchVPrintf(pb,1024,pf,arglist);
|
|
|
|
va_end(arglist);
|
|
|
|
wprt(pb);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2017-02-12 16:37:14 +00:00
|
|
|
#endif /* #ifdef UNICODE */
|
2014-08-03 16:52:46 +00:00
|
|
|
|
2017-02-12 16:37:14 +00:00
|
|
|
/* eof - sprtf.c */
|