os/persistentdata/traceservices/tracefw/ulogger/inc/uloggershared.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/inc/uloggershared.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,92 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// ULogger shared
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @internalTechnology
    1.24 + @prototype
    1.25 +*/
    1.26 +
    1.27 +#ifndef ULOGGERSHARED_H
    1.28 +#define ULOGGERSHARED_H
    1.29 +
    1.30 +#include <e32base.h> 
    1.31 +
    1.32 +namespace Ulogger
    1.33 +{
    1.34 +
    1.35 +//This is enumeration used for filtering the plugins
    1.36 +enum TPluginFilter
    1.37 +	{
    1.38 +	EOutputPluginFilter = 0,
    1.39 +	EInputPluginFilter
    1.40 +	};
    1.41 +
    1.42 +//const
    1.43 +_LIT(KULoggerServerSemaphore, "ULoggerServerSemaphore");
    1.44 +_LIT(KServerName,"uloggerserver");
    1.45 +
    1.46 +//configuration file sections
    1.47 +_LIT8(KServerSection,          "SERVERS");
    1.48 +_LIT8(KActiveSection,          "ACTIVE_OUTPUT_PLUGIN");
    1.49 +_LIT8(KActiveControlSection,   "ACTIVE_INPUT_PLUGIN");
    1.50 +_LIT8(KPrimaryFilterSection,   "PRIMARY_FILTERS");
    1.51 +_LIT8(KSecondaryFilterSection, "SECONDARY_FILTERS");
    1.52 +_LIT(KSysConfigMutex,          "SYSCONFIGMUTEX");
    1.53 +_LIT8(KTrace,                 "TRACE");
    1.54 +_LIT8(KBuffer,                "buffer_size");
    1.55 +_LIT8(KSecondaryGlobalFilter, "secondary_global_filter");
    1.56 +_LIT8(KDataNotification,      "data_notification_size");
    1.57 +_LIT8(KBufferMode,            "buffer_mode");
    1.58 +_LIT8(KEnable,                "enable");
    1.59 +_LIT8(KDisable,               "disable");
    1.60 +_LIT8(KCircular, 			  "circular");
    1.61 +_LIT8(KStraight, 			  "straight");
    1.62 +_LIT(KVersion, 				  "-version");
    1.63 +
    1.64 +//Formattings
    1.65 +_LIT8(KSeparator,";");
    1.66 +_LIT(KFormatString,"%S;");//';' is a separator
    1.67 +_LIT(KConfigFormat, "%S;%S;");
    1.68 +
    1.69 +//ulogger limitations
    1.70 +static const TInt KMaxPluginName = 256;
    1.71 +static const TInt KMaxBufferSize = 1024;
    1.72 +static const TInt KMaxDnsSize = KMaxBufferSize;
    1.73 +static const TInt KMaxPrimaryFiltersLimit = 256;
    1.74 +static const TInt KMaxSecondaryFiltersLimit = 4096;
    1.75 +static const TInt KMinBufferMTPLE = 512;
    1.76 +static const TInt KMaxNumberOfLettersInCommand = 2;
    1.77 +
    1.78 +//server binary
    1.79 +_LIT(KServerExe, "uloggerserver.exe");
    1.80 +
    1.81 +//Paths where configuration file has to be searched
    1.82 +_LIT(KConfigFilename, "uloggerconfig.ini"); //configuration file name
    1.83 +_LIT(KPublicConfigFilePath, "\\ulogger\\"); //user path for the configuration file
    1.84 +_LIT(KPrivateConfigFilePath, "\\private\\10273881\\"); //ulogger server private location
    1.85 +_LIT(KDefaultConfigFilePath, "Z:\\private\\10273881\\uloggerconfig.ini"); //default configuration file
    1.86 +
    1.87 +// server variables
    1.88 +const TInt KULoggerSrvMajorVersionNumber=1;
    1.89 +const TInt KULoggerSrvMinorVersionNumber=0;
    1.90 +const TInt KULoggerSrvBuildVersionNumber=1; //changed: 07/09/2007
    1.91 +
    1.92 +
    1.93 +} // namespace
    1.94 +
    1.95 +#endif // ULOGGERSHARED_H