sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // ULogger shared sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef ULOGGERSHARED_H sl@0: #define ULOGGERSHARED_H sl@0: sl@0: #include sl@0: sl@0: namespace Ulogger sl@0: { sl@0: sl@0: //This is enumeration used for filtering the plugins sl@0: enum TPluginFilter sl@0: { sl@0: EOutputPluginFilter = 0, sl@0: EInputPluginFilter sl@0: }; sl@0: sl@0: //const sl@0: _LIT(KULoggerServerSemaphore, "ULoggerServerSemaphore"); sl@0: _LIT(KServerName,"uloggerserver"); sl@0: sl@0: //configuration file sections sl@0: _LIT8(KServerSection, "SERVERS"); sl@0: _LIT8(KActiveSection, "ACTIVE_OUTPUT_PLUGIN"); sl@0: _LIT8(KActiveControlSection, "ACTIVE_INPUT_PLUGIN"); sl@0: _LIT8(KPrimaryFilterSection, "PRIMARY_FILTERS"); sl@0: _LIT8(KSecondaryFilterSection, "SECONDARY_FILTERS"); sl@0: _LIT(KSysConfigMutex, "SYSCONFIGMUTEX"); sl@0: _LIT8(KTrace, "TRACE"); sl@0: _LIT8(KBuffer, "buffer_size"); sl@0: _LIT8(KSecondaryGlobalFilter, "secondary_global_filter"); sl@0: _LIT8(KDataNotification, "data_notification_size"); sl@0: _LIT8(KBufferMode, "buffer_mode"); sl@0: _LIT8(KEnable, "enable"); sl@0: _LIT8(KDisable, "disable"); sl@0: _LIT8(KCircular, "circular"); sl@0: _LIT8(KStraight, "straight"); sl@0: _LIT(KVersion, "-version"); sl@0: sl@0: //Formattings sl@0: _LIT8(KSeparator,";"); sl@0: _LIT(KFormatString,"%S;");//';' is a separator sl@0: _LIT(KConfigFormat, "%S;%S;"); sl@0: sl@0: //ulogger limitations sl@0: static const TInt KMaxPluginName = 256; sl@0: static const TInt KMaxBufferSize = 1024; sl@0: static const TInt KMaxDnsSize = KMaxBufferSize; sl@0: static const TInt KMaxPrimaryFiltersLimit = 256; sl@0: static const TInt KMaxSecondaryFiltersLimit = 4096; sl@0: static const TInt KMinBufferMTPLE = 512; sl@0: static const TInt KMaxNumberOfLettersInCommand = 2; sl@0: sl@0: //server binary sl@0: _LIT(KServerExe, "uloggerserver.exe"); sl@0: sl@0: //Paths where configuration file has to be searched sl@0: _LIT(KConfigFilename, "uloggerconfig.ini"); //configuration file name sl@0: _LIT(KPublicConfigFilePath, "\\ulogger\\"); //user path for the configuration file sl@0: _LIT(KPrivateConfigFilePath, "\\private\\10273881\\"); //ulogger server private location sl@0: _LIT(KDefaultConfigFilePath, "Z:\\private\\10273881\\uloggerconfig.ini"); //default configuration file sl@0: sl@0: // server variables sl@0: const TInt KULoggerSrvMajorVersionNumber=1; sl@0: const TInt KULoggerSrvMinorVersionNumber=0; sl@0: const TInt KULoggerSrvBuildVersionNumber=1; //changed: 07/09/2007 sl@0: sl@0: sl@0: } // namespace sl@0: sl@0: #endif // ULOGGERSHARED_H