sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// ULogger shared
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalTechnology
|
sl@0
|
21 |
@prototype
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef ULOGGERSHARED_H
|
sl@0
|
25 |
#define ULOGGERSHARED_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
namespace Ulogger
|
sl@0
|
30 |
{
|
sl@0
|
31 |
|
sl@0
|
32 |
//This is enumeration used for filtering the plugins
|
sl@0
|
33 |
enum TPluginFilter
|
sl@0
|
34 |
{
|
sl@0
|
35 |
EOutputPluginFilter = 0,
|
sl@0
|
36 |
EInputPluginFilter
|
sl@0
|
37 |
};
|
sl@0
|
38 |
|
sl@0
|
39 |
//const
|
sl@0
|
40 |
_LIT(KULoggerServerSemaphore, "ULoggerServerSemaphore");
|
sl@0
|
41 |
_LIT(KServerName,"uloggerserver");
|
sl@0
|
42 |
|
sl@0
|
43 |
//configuration file sections
|
sl@0
|
44 |
_LIT8(KServerSection, "SERVERS");
|
sl@0
|
45 |
_LIT8(KActiveSection, "ACTIVE_OUTPUT_PLUGIN");
|
sl@0
|
46 |
_LIT8(KActiveControlSection, "ACTIVE_INPUT_PLUGIN");
|
sl@0
|
47 |
_LIT8(KPrimaryFilterSection, "PRIMARY_FILTERS");
|
sl@0
|
48 |
_LIT8(KSecondaryFilterSection, "SECONDARY_FILTERS");
|
sl@0
|
49 |
_LIT(KSysConfigMutex, "SYSCONFIGMUTEX");
|
sl@0
|
50 |
_LIT8(KTrace, "TRACE");
|
sl@0
|
51 |
_LIT8(KBuffer, "buffer_size");
|
sl@0
|
52 |
_LIT8(KSecondaryGlobalFilter, "secondary_global_filter");
|
sl@0
|
53 |
_LIT8(KDataNotification, "data_notification_size");
|
sl@0
|
54 |
_LIT8(KBufferMode, "buffer_mode");
|
sl@0
|
55 |
_LIT8(KEnable, "enable");
|
sl@0
|
56 |
_LIT8(KDisable, "disable");
|
sl@0
|
57 |
_LIT8(KCircular, "circular");
|
sl@0
|
58 |
_LIT8(KStraight, "straight");
|
sl@0
|
59 |
_LIT(KVersion, "-version");
|
sl@0
|
60 |
|
sl@0
|
61 |
//Formattings
|
sl@0
|
62 |
_LIT8(KSeparator,";");
|
sl@0
|
63 |
_LIT(KFormatString,"%S;");//';' is a separator
|
sl@0
|
64 |
_LIT(KConfigFormat, "%S;%S;");
|
sl@0
|
65 |
|
sl@0
|
66 |
//ulogger limitations
|
sl@0
|
67 |
static const TInt KMaxPluginName = 256;
|
sl@0
|
68 |
static const TInt KMaxBufferSize = 1024;
|
sl@0
|
69 |
static const TInt KMaxDnsSize = KMaxBufferSize;
|
sl@0
|
70 |
static const TInt KMaxPrimaryFiltersLimit = 256;
|
sl@0
|
71 |
static const TInt KMaxSecondaryFiltersLimit = 4096;
|
sl@0
|
72 |
static const TInt KMinBufferMTPLE = 512;
|
sl@0
|
73 |
static const TInt KMaxNumberOfLettersInCommand = 2;
|
sl@0
|
74 |
|
sl@0
|
75 |
//server binary
|
sl@0
|
76 |
_LIT(KServerExe, "uloggerserver.exe");
|
sl@0
|
77 |
|
sl@0
|
78 |
//Paths where configuration file has to be searched
|
sl@0
|
79 |
_LIT(KConfigFilename, "uloggerconfig.ini"); //configuration file name
|
sl@0
|
80 |
_LIT(KPublicConfigFilePath, "\\ulogger\\"); //user path for the configuration file
|
sl@0
|
81 |
_LIT(KPrivateConfigFilePath, "\\private\\10273881\\"); //ulogger server private location
|
sl@0
|
82 |
_LIT(KDefaultConfigFilePath, "Z:\\private\\10273881\\uloggerconfig.ini"); //default configuration file
|
sl@0
|
83 |
|
sl@0
|
84 |
// server variables
|
sl@0
|
85 |
const TInt KULoggerSrvMajorVersionNumber=1;
|
sl@0
|
86 |
const TInt KULoggerSrvMinorVersionNumber=0;
|
sl@0
|
87 |
const TInt KULoggerSrvBuildVersionNumber=1; //changed: 07/09/2007
|
sl@0
|
88 |
|
sl@0
|
89 |
|
sl@0
|
90 |
} // namespace
|
sl@0
|
91 |
|
sl@0
|
92 |
#endif // ULOGGERSHARED_H
|