| vbAccelerator - Contents of code file: CDRip_AspiDebug.cppThis file is part of the download CDRip DLL Source, which is described in the article CD Ripping in VB Part 1. /*
** Copyright (C) 1999 Albert L. Faber
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "StdAfx.h"
#include <Stdio.h>
#include <Stdlib.h>
#include <TIME.h>
#include "vector"
#include "AspiDebug.h"
using namespace std ;
#include "AspiDebug.h"
static INT gs_nDebug = 1;
void SetDebugLevel( int nValue )
{
gs_nDebug= nValue;
}
void DebugPrintf(const char* pzFormat, ...)
{
if (gs_nDebug)
{
BOOL bLogFile=TRUE;
char szBuffer[8192];
va_list ap;
// Clear buffer
memset(szBuffer,0x00,sizeof(szBuffer));
// This will make the vsprint code only to run uf gs.bLogfile is set if
we are a release build
#if !defined _DEBUG && !defined SPECIALDEBUG
if (bLogFile) {
#endif
va_start(ap, pzFormat);
_vsnprintf(szBuffer, sizeof(szBuffer), pzFormat, ap);
#if !defined _DEBUG && !defined SPECIALDEBUG
}
#endif
if (bLogFile)
{
FILE* fp;
time_t t;
struct tm* psTM;
time(&t);
psTM = localtime(&t);
fp = fopen(".\\CDRipDllLog.txt", "a");
if (fp) {
fprintf(fp, "%04X-%02d%02d%02d (%d): %s\n", GetCurrentProcessId(),
psTM->tm_hour, psTM->tm_min, psTM->tm_sec,GetTickCount(),szBuffer);
fclose(fp);
}
}
#if defined _DEBUG || defined SPECIALDEBUG
strcat(szBuffer, "\n\r");
// OutputDebugString("CDex: ");
OutputDebugString(szBuffer);
#endif
// This will make the va_end code only to run uf gs.bLogfile is set if we
are a release build
#if !defined _DEBUG && !defined SPECIALDEBUG
if (bLogFile)
#endif
va_end(ap);
}
}
void ErrorCallBackFunc(char* lpszFile,int nLine,char* lpszError)
{
/*
CTime myTime=CTime::GetCurrentTime();
FILE* fpError=NULL;
// Open error log file
fpError=fopen( "c:\\CDexErrorLog.txt","a");
if (fpError==NULL)
{
AfxMessageBox("Can't open CDexErrorLog.txt file");
return;
}
CString strFileName=lpszFile;
int nPos=strFileName.ReverseFind('\\');
if (nPos)
strFileName=strFileName.Right(strFileName.GetLength()-nPos-1);
CString strLog,strTmp;
// strTmp.Format("Error occured in CDex version
%s",g_config.GetVersion());strLog=strTmp;
strTmp.Format("date %04d:%02d:%02d
",myTime.GetYear(),myTime.GetMonth(),myTime.GetDay());strLog+=strTmp;
strTmp.Format("time %02d:%02d:%02d
",myTime.GetHour(),myTime.GetMinute(),myTime.GetSecond());strLog+=strTmp;
strTmp.Format("Error:%s (file:%s line
%05d)",lpszError,strFileName,nLine);strLog+=strTmp;
// AfxMessageBox(strTmp);
fprintf(fpError,"%s\n",strLog);
fclose(fpError);
*/
}
| |||
|
|
||||