|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright 1996 - 2003 Microsoft Corporation. All Rights Reserved.
//
// FILE: Debug.cpp
//
//
// PURPOSE: Debug functions.
//
//
// Functions:
//
//
//
// PLATFORMS: Windows 2000, Windows XP, Windows Server 2003
//
//
#include "precomp.h"
#include "oem.h"
#include "debug.h"
// StrSafe.h needs to be included last
// to disallow bad string functions.
#include <STRSAFE.H>
////////////////////////////////////////////////////////
// INTERNAL DEFINES
////////////////////////////////////////////////////////
#define DEBUG_BUFFER_SIZE 1024
#define PATH_SEPARATOR '\\'
#define MAX_LOOP 10
// Determine what level of debugging messages to eject.
#ifdef VERBOSE_MSG
#define DEBUG_LEVEL DBG_VERBOSE
#elif TERSE_MSG
#define DEBUG_LEVEL DBG_TERSE
#elif WARNING_MSG
#define DEBUG_LEVEL DBG_WARNING
#elif ERROR_MSG
#define DEBUG_LEVEL DBG_ERROR
#elif RIP_MSG
#define DEBUG_LEVEL DBG_RIP
#elif NO_DBG_MSG
#define DEBUG_LEVEL DBG_NONE
#else
#define DEBUG_LEVEL DBG_WARNING
#endif
////////////////////////////////////////////////////////
// EXTERNAL GLOBALS
////////////////////////////////////////////////////////
INT giDebugLevel = DEBUG_LEVEL;
////////////////////////////////////////////////////////
// INTERNAL PROTOTYPES
////////////////////////////////////////////////////////
static BOOL DebugMessageV(LPCSTR lpszMessage, va_list arglist); static BOOL DebugMessageV(DWORD dwSize, LPCWSTR lpszMessage, va_list arglist);
//////////////////////////////////////////////////////////////////////////
// Function: DebugMessageV
//
// Description: Outputs variable argument debug string.
//
//
// Parameters:
//
// dwSize Size of temp buffer to hold formated string.
//
// lpszMessage Format string.
//
// arglist Variable argument list..
//
//
// Returns:
//
//
// Comments:
//
//
// History:
// 12/18/96 APresley Created.
//
//////////////////////////////////////////////////////////////////////////
static BOOL DebugMessageV(LPCSTR lpszMessage, va_list arglist) { DWORD dwSize = DEBUG_BUFFER_SIZE; DWORD dwLoop = 0; LPSTR lpszMsgBuf = NULL; HRESULT hr;
// Parameter checking.
if( (NULL == lpszMessage) || (0 == dwSize) ) { return FALSE; }
do { // Allocate memory for message buffer.
if(NULL != lpszMsgBuf) { delete[] lpszMsgBuf; dwSize *= 2; } lpszMsgBuf = new CHAR[dwSize + 1]; if(NULL == lpszMsgBuf) { return FALSE; }
hr = StringCbVPrintfA(lpszMsgBuf, (dwSize + 1) * sizeof(CHAR), lpszMessage, arglist);
// Pass the variable parameters to wvsprintf to be formated.
} while (FAILED(hr) && (STRSAFE_E_INSUFFICIENT_BUFFER == hr) && (++dwLoop < MAX_LOOP) );
// Dump string to Debug output.
OutputDebugStringA(lpszMsgBuf);
// Cleanup.
delete[] lpszMsgBuf;
return SUCCEEDED(hr); }
//////////////////////////////////////////////////////////////////////////
// Function: DebugMessageV
//
// Description: Outputs variable argument debug string.
//
//
// Parameters:
//
// dwSize Size of temp buffer to hold formated string.
//
// lpszMessage Format string.
//
// arglist Variable argument list..
//
//
// Returns:
//
//
// Comments:
//
//
// History:
// 12/18/96 APresley Created.
//
//////////////////////////////////////////////////////////////////////////
static BOOL DebugMessageV(DWORD dwSize, LPCWSTR lpszMessage, va_list arglist) { LPWSTR lpszMsgBuf; HRESULT hResult;
// Parameter checking.
if( (NULL == lpszMessage) || (0 == dwSize) ) { return FALSE; }
// Allocate memory for message buffer.
lpszMsgBuf = new WCHAR[dwSize + 1]; if(NULL == lpszMsgBuf) return FALSE;
// Pass the variable parameters to wvsprintf to be formated.
hResult = StringCbVPrintfW(lpszMsgBuf, (dwSize + 1) * sizeof(WCHAR), lpszMessage, arglist);
// Dump string to debug output.
OutputDebugStringW(lpszMsgBuf);
// Clean up.
delete[] lpszMsgBuf;
return SUCCEEDED(hResult); }
//////////////////////////////////////////////////////////////////////////
// Function: DebugMessage
//
// Description: Outputs variable argument debug string.
//
//
// Parameters:
//
// lpszMessage Format string.
//
//
// Returns:
//
//
// Comments:
//
//
// History:
// 12/18/96 APresley Created.
//
//////////////////////////////////////////////////////////////////////////
BOOL DebugMessage(LPCSTR lpszMessage, ...) { BOOL bResult; va_list VAList;
// Pass the variable parameters to DebugMessageV for processing.
va_start(VAList, lpszMessage); bResult = DebugMessageV(lpszMessage, VAList); va_end(VAList);
return bResult; }
//////////////////////////////////////////////////////////////////////////
// Function: DebugMessage
//
// Description: Outputs variable argument debug string.
//
//
// Parameters:
//
// lpszMessage Format string.
//
//
// Returns:
//
//
// Comments:
//
//
// History:
// 12/18/96 APresley Created.
//
//////////////////////////////////////////////////////////////////////////
BOOL DebugMessage(LPCWSTR lpszMessage, ...) { BOOL bResult; va_list VAList;
// Pass the variable parameters to DebugMessageV to be processed.
va_start(VAList, lpszMessage); bResult = DebugMessageV(MAX_PATH, lpszMessage, VAList); va_end(VAList);
return bResult; }
void Dump(PPUBLISHERINFO pPublisherInfo) { VERBOSE(TEXT("pPublisherInfo:\r\n")); VERBOSE(TEXT("\tdwMode = %#x\r\n"), pPublisherInfo->dwMode); VERBOSE(TEXT("\twMinoutlinePPEM = %d\r\n"), pPublisherInfo->wMinoutlinePPEM); VERBOSE(TEXT("\twMaxbitmapPPEM = %d\r\n"), pPublisherInfo->wMaxbitmapPPEM); }
void Dump(POEMDMPARAM pOemDMParam) { VERBOSE(TEXT("pOemDMParam:\r\n")); VERBOSE(TEXT("\tcbSize = %d\r\n"), pOemDMParam->cbSize); VERBOSE(TEXT("\tpdriverobj = %#x\r\n"), pOemDMParam->pdriverobj); VERBOSE(TEXT("\thPrinter = %#x\r\n"), pOemDMParam->hPrinter); VERBOSE(TEXT("\thModule = %#x\r\n"), pOemDMParam->hModule); VERBOSE(TEXT("\tpPublicDMIn = %#x\r\n"), pOemDMParam->pPublicDMIn); VERBOSE(TEXT("\tpPublicDMOut = %#x\r\n"), pOemDMParam->pPublicDMOut); VERBOSE(TEXT("\tpOEMDMIn = %#x\r\n"), pOemDMParam->pOEMDMIn); VERBOSE(TEXT("\tpOEMDMOut = %#x\r\n"), pOemDMParam->pOEMDMOut); VERBOSE(TEXT("\tcbBufSize = %d\r\n"), pOemDMParam->cbBufSize); }
PCSTR StripDirPrefixA( IN PCSTR pstrFilename )
/*++
Routine Description:
Strip the directory prefix off a filename (ANSI version)
Arguments:
pstrFilename - Pointer to filename string
Return Value:
Pointer to the last component of a filename (without directory prefix)
--*/
{ PCSTR pstr;
if (pstr = strrchr(pstrFilename, PATH_SEPARATOR)) return pstr + 1;
return pstrFilename; }
|