git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1012 0109f412-320b-0410-ab79-c3e0c5ffbbe6
113 lines
3.1 KiB
C++
113 lines
3.1 KiB
C++
//------------------------------------------------------------------------------
|
|
// Desc: Contains routines for logging messages from within FLAIM.
|
|
// Tabs: 3
|
|
//
|
|
// Copyright (c) 2001-2007 Novell, Inc. All Rights Reserved.
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; version 2.1
|
|
// of the License.
|
|
//
|
|
// This library 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
|
|
// Library Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, contact Novell, Inc.
|
|
//
|
|
// To contact Novell about this file by physical or electronic mail,
|
|
// you may find current contact information at www.novell.com.
|
|
//
|
|
// $Id$
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include "flaimsys.h"
|
|
|
|
/****************************************************************************
|
|
Desc: Returns an IF_LogMessageClient object if logging is enabled for the
|
|
specified message type
|
|
****************************************************************************/
|
|
IF_LogMessageClient * flmBeginLogMessage(
|
|
eLogMessageType eMsgType)
|
|
{
|
|
IF_LogMessageClient * pNewMsg = NULL;
|
|
|
|
f_mutexLock( gv_SFlmSysData.hLoggerMutex);
|
|
|
|
if( !gv_SFlmSysData.pLogger)
|
|
{
|
|
goto Exit;
|
|
}
|
|
|
|
if( (pNewMsg = gv_SFlmSysData.pLogger->beginMessage( eMsgType)) != NULL)
|
|
{
|
|
gv_SFlmSysData.uiPendingLogMessages++;
|
|
}
|
|
|
|
Exit:
|
|
|
|
f_mutexUnlock( gv_SFlmSysData.hLoggerMutex);
|
|
return( pNewMsg);
|
|
}
|
|
|
|
/****************************************************************************
|
|
Desc: Logs information about an error
|
|
****************************************************************************/
|
|
void flmLogError(
|
|
RCODE rc,
|
|
const char * pszDoing,
|
|
const char * pszFileName,
|
|
FLMINT iLineNumber)
|
|
{
|
|
FLMBYTE * pszMsgBuf = NULL;
|
|
IF_LogMessageClient * pLogMsg = NULL;
|
|
|
|
if( (pLogMsg = flmBeginLogMessage( SFLM_GENERAL_MESSAGE)) != NULL)
|
|
{
|
|
if( RC_OK( f_alloc( 512, &pszMsgBuf)))
|
|
{
|
|
if( pszFileName)
|
|
{
|
|
f_sprintf( (char *)pszMsgBuf,
|
|
"Error %s: %e, File=%s, Line=%d.",
|
|
pszDoing, rc, pszFileName, (int)iLineNumber);
|
|
}
|
|
else
|
|
{
|
|
f_sprintf( (char *)pszMsgBuf, "Error %s: %e.", pszDoing, rc);
|
|
}
|
|
|
|
pLogMsg->changeColor( FLM_YELLOW, FLM_BLACK);
|
|
pLogMsg->appendString( (char *)pszMsgBuf);
|
|
}
|
|
flmEndLogMessage( &pLogMsg);
|
|
}
|
|
|
|
if( pszMsgBuf)
|
|
{
|
|
f_free( &pszMsgBuf);
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
Desc: Ends a logging message
|
|
****************************************************************************/
|
|
void flmEndLogMessage(
|
|
IF_LogMessageClient ** ppLogMessage)
|
|
{
|
|
if( *ppLogMessage)
|
|
{
|
|
f_mutexLock( gv_SFlmSysData.hLoggerMutex);
|
|
flmAssert( gv_SFlmSysData.uiPendingLogMessages);
|
|
|
|
(*ppLogMessage)->endMessage();
|
|
(*ppLogMessage)->Release();
|
|
*ppLogMessage = NULL;
|
|
|
|
gv_SFlmSysData.uiPendingLogMessages--;
|
|
f_mutexUnlock( gv_SFlmSysData.hLoggerMutex);
|
|
}
|
|
}
|