diff -r 000000000000 -r ba25891c3a9e ncdengine/debuglogger/inc/catalogsdebugdefs.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ncdengine/debuglogger/inc/catalogsdebugdefs.h Thu Dec 17 08:51:10 2009 +0200 @@ -0,0 +1,57 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Debug logging utility definitions +* +*/ + + +#ifndef CATALOGSDEBUGDEFS_H +#define CATALOGSDEBUGDEFS_H + +#include +#include "catalogslogger.hrh" + +_LIT( KCatalogsDebugMsgQueueName, "CatalogsLoggerMsgQueue" ); +_LIT( KCatalogsDebugChunk1Name, "CatalogsLoggerChunk1" ); +_LIT( KCatalogsDebugChunk2Name, "CatalogsLoggerChunk2" ); +_LIT( KCatalogsDebugChunkWriteSemaphoreName, "CatalogsLoggerChunkSemaphore" ); +_LIT( KCatalogsDebugMutexName, "CatalogsLoggerMutex" ); +const TInt KCatalogsDebugChunkSize = 128*1024; +_LIT8( KCatalogsDebugLineSeparator, "\n" ); + +enum TCatalogsDebugFlags + { + ECatalogsDebugFlagEnableError = 1 << ECatalogsLoggerSettingError, // DLERROR + ECatalogsDebugFlagEnableWarning = 1 << ECatalogsLoggerSettingWarning, // DLWARNING + ECatalogsDebugFlagEnableTrace = 1 << ECatalogsLoggerSettingTrace, // DLTRACEIN, DLTRACEOUT, DLTRACE + ECatalogsDebugFlagEnableInfo = 1 << ECatalogsLoggerSettingInfo, // DLINFO + ECatalogsDebugFlagFlushChunk = 1 << ENrOfCatalogsLoggerSettings // Chunk flushed + }; + +struct TCatalogsDebugChunkHeader + { + TUint32 iFlags; // Bit field of TCatalogsDebugFlags + TUint32 iOffset; // Offset to free space in chunk (relative to after header) + }; + +/* +enum TCatalogsLoggerPropertyKeys + { + ECatalogsLoggerSettingsProperty + }; + +const TUid KCatalogsDebugPropertyCat = { 0x0B5C26D8 }; // Same as logger application UID +*/ + +#endif //CATALOGSDEBUGDEFS_H