sl@0
|
1 |
// Copyright (c) 2007-2010 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 Server header file
|
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 ULOGGERSERVER_H
|
sl@0
|
25 |
#define ULOGGERSERVER_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "outputframework.h" // COutputFramework
|
sl@0
|
28 |
#include "uloggerconfigmanager.h" // CConfig, CConfigSettingsIter, MConfigObserver
|
sl@0
|
29 |
#include "uloggershared.h"
|
sl@0
|
30 |
#include "uloggerwatcher.h"
|
sl@0
|
31 |
#include "pluginallocator.h"
|
sl@0
|
32 |
#include "inputframework.h"
|
sl@0
|
33 |
#include <d32btrace.h> // RBTrace
|
sl@0
|
34 |
|
sl@0
|
35 |
namespace Ulogger {
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
enum TFilter
|
sl@0
|
39 |
{
|
sl@0
|
40 |
EPrimaryFilter = 1,
|
sl@0
|
41 |
ESecondaryFilter
|
sl@0
|
42 |
};
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
enum TULoggerSrvPanics
|
sl@0
|
46 |
{
|
sl@0
|
47 |
EUnknownPanic = 1
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
/** CULoggerServer server class.
|
sl@0
|
52 |
This class is responsible for maintaining the server state.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
class CULoggerServer : public CServer2,
|
sl@0
|
55 |
public MDataWatcherObserver,
|
sl@0
|
56 |
public MInputFrameworkObserver
|
sl@0
|
57 |
{
|
sl@0
|
58 |
public:
|
sl@0
|
59 |
|
sl@0
|
60 |
static CULoggerServer* NewLC(TInt aPriority);
|
sl@0
|
61 |
~CULoggerServer();
|
sl@0
|
62 |
|
sl@0
|
63 |
//own methods
|
sl@0
|
64 |
static TInt StartServer();
|
sl@0
|
65 |
void IncrementSessions();
|
sl@0
|
66 |
void DecrementSessions();
|
sl@0
|
67 |
|
sl@0
|
68 |
//from CActive
|
sl@0
|
69 |
TInt RunError(TInt aError);
|
sl@0
|
70 |
|
sl@0
|
71 |
//from MInputFrameworkObserver
|
sl@0
|
72 |
ControlData* ProcessCommandL(TCommand aOpCode, RArray<TPtrC8>& aArguments);
|
sl@0
|
73 |
void DoPostProcessing(TCommand aCmd);
|
sl@0
|
74 |
|
sl@0
|
75 |
//From MDataWatcher
|
sl@0
|
76 |
void DataNotification();
|
sl@0
|
77 |
|
sl@0
|
78 |
//server stuff
|
sl@0
|
79 |
TBool ServerState();
|
sl@0
|
80 |
|
sl@0
|
81 |
//actions
|
sl@0
|
82 |
void RunAsService(TBool aRunAsService); // Not implemented yet
|
sl@0
|
83 |
TInt Start(); //this is actually only called from inside the server, or by the test framework.
|
sl@0
|
84 |
TInt Stop();
|
sl@0
|
85 |
TInt RestartOutputting();
|
sl@0
|
86 |
void ReadBufferL(); //this is actually only called from inside the server, or by the test framework.
|
sl@0
|
87 |
|
sl@0
|
88 |
|
sl@0
|
89 |
//filters
|
sl@0
|
90 |
TInt GetActiveFilters(RArray<TUint32>& aListBuffer,TInt aFilterType);
|
sl@0
|
91 |
TInt SetActiveFilterL(RArray<TUint32> aCategory, TInt aFilterType);
|
sl@0
|
92 |
TInt RemoveActiveFilter(RArray<TUint32>& aValue, const TInt aFilterType);
|
sl@0
|
93 |
TInt SetSecondaryFiltering(const TDesC8& aEnabled);
|
sl@0
|
94 |
TInt GetSecondaryFiltering(TBool& aEnabled);
|
sl@0
|
95 |
|
sl@0
|
96 |
//plugins
|
sl@0
|
97 |
TInt SetPluginSettings(const TDesC8& aPluginname, RArray<TPtrC8>& aListBuffer);
|
sl@0
|
98 |
TInt RemovePluginSettingsL(const TDesC8& aPluginName);
|
sl@0
|
99 |
TInt GetActiveOutputPlugin(RArray<TPtrC8>& aListBuffer);
|
sl@0
|
100 |
TInt SetActiveOutputPlugin(const TDesC8& aPluginname);
|
sl@0
|
101 |
TInt GetInstalledOutputPlugins(RArray<TPtrC8>& aListBuffer);
|
sl@0
|
102 |
TInt DeActivateInputPlugin(const TDesC8& aPluginname);
|
sl@0
|
103 |
TInt GetActiveInputPlugin(RArray<TPtrC8>& aListBuffer);
|
sl@0
|
104 |
TInt SetActiveInputPlugin(const TDesC8& aPluginname);
|
sl@0
|
105 |
TInt GetInstalledInputPluginsL(RArray<TPtrC8>& aListBuffer);
|
sl@0
|
106 |
|
sl@0
|
107 |
//buffers
|
sl@0
|
108 |
TInt GetOptionsSettingsL(const TDesC8& aMedianame, RArray<TPtrC8>& aListBuffer);
|
sl@0
|
109 |
TInt GetBufandDataNotifyValuesL(const TDesC8& aSetting,TInt& value);
|
sl@0
|
110 |
TInt SetBufferMode(const TDesC8& aValue);
|
sl@0
|
111 |
TInt SetBufferSizeL(TInt aSize);
|
sl@0
|
112 |
TInt SetDataNotificationSizeL(TInt aSize);
|
sl@0
|
113 |
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
//server related stuff
|
sl@0
|
116 |
CULoggerServer(TInt aPriority);
|
sl@0
|
117 |
void ConstructL();
|
sl@0
|
118 |
static TInt StartServerL();
|
sl@0
|
119 |
static void PanicServer(TULoggerSrvPanics aPanic);
|
sl@0
|
120 |
static void PanicClient(const RMessage2& aMessage, TULoggerSrvPanics aPanic);
|
sl@0
|
121 |
void ShutDownServer();
|
sl@0
|
122 |
void RequestCancel();
|
sl@0
|
123 |
//from CServer2
|
sl@0
|
124 |
CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
|
sl@0
|
125 |
|
sl@0
|
126 |
//on boot things
|
sl@0
|
127 |
TInt TraceSettingsOnBootL();
|
sl@0
|
128 |
TInt ResetBtracePrimaryFilters(RBTrace& aBTrace);
|
sl@0
|
129 |
|
sl@0
|
130 |
//action related things
|
sl@0
|
131 |
|
sl@0
|
132 |
//other configs
|
sl@0
|
133 |
void GetOptionsSettingsL(RArray<TPtrC8>& aListBuffer,const TDesC8& aSetting);
|
sl@0
|
134 |
TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting);
|
sl@0
|
135 |
|
sl@0
|
136 |
//framework stuff
|
sl@0
|
137 |
void InitializeFrameworksL();
|
sl@0
|
138 |
void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TPtrC8>& aArray);
|
sl@0
|
139 |
void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TUint32>& aArray);
|
sl@0
|
140 |
|
sl@0
|
141 |
//config file stuff
|
sl@0
|
142 |
// CConfig* CreateConfig(TFileName aFilePath);
|
sl@0
|
143 |
// void InitializeConfigFileL();
|
sl@0
|
144 |
// TInt CheckConfigFile(const TDesC& aFileName,const TDesC& aDirPath,TFileName& aFilePath);
|
sl@0
|
145 |
// void CopyFileToSystemDrive(TFileName& aFilePath);
|
sl@0
|
146 |
|
sl@0
|
147 |
//plugin stuff
|
sl@0
|
148 |
TInt DeActivateOutputPlugin(const TDesC8& aPluginname);
|
sl@0
|
149 |
void FilterPlugins(TPluginFilter aFilter, RArray<TPtrC8>& aPluginList);
|
sl@0
|
150 |
TBool CheckPluginExists(TPtrC8& aPluginName, TPluginFilter aPluginFilter);
|
sl@0
|
151 |
void GetPluginAndSettingsL(TDes8& aPluginName, RPointerArray<TPluginConfiguration>* aSettings, TPluginFilter aPluginFilter);
|
sl@0
|
152 |
void AsynchDataRequest();
|
sl@0
|
153 |
|
sl@0
|
154 |
//filter related stuff
|
sl@0
|
155 |
ControlData* SetPrimaryFilters(RArray<TPtrC8> &aArguments);
|
sl@0
|
156 |
TInt GetValuesL(const TDesC8& aSectionName, RArray<TPtrC8>& aListBuffer);
|
sl@0
|
157 |
|
sl@0
|
158 |
// cleanup methods
|
sl@0
|
159 |
static void CleanupTPluginConfigArray(TAny* aPtr);
|
sl@0
|
160 |
|
sl@0
|
161 |
private:
|
sl@0
|
162 |
//data
|
sl@0
|
163 |
TInt iRunAsService;
|
sl@0
|
164 |
TInt iSessionCounter;
|
sl@0
|
165 |
|
sl@0
|
166 |
/** config API */
|
sl@0
|
167 |
//CConfig* iConfig;
|
sl@0
|
168 |
CConfigFileManager* iConfigManager;
|
sl@0
|
169 |
/** Output Framework */
|
sl@0
|
170 |
COutputFramework* iOutputFramework;
|
sl@0
|
171 |
/** Input Framework main object. */
|
sl@0
|
172 |
CInputFramework* iInputFramework;
|
sl@0
|
173 |
/** Data Watcher */
|
sl@0
|
174 |
CULoggerWatcher* iDataWatcher;
|
sl@0
|
175 |
/** Plugin Allocator */
|
sl@0
|
176 |
CPluginAllocator* iPluginAllocator;
|
sl@0
|
177 |
|
sl@0
|
178 |
RImplInfoPtrArray iPluginArray;
|
sl@0
|
179 |
|
sl@0
|
180 |
//BTrace
|
sl@0
|
181 |
RBTrace iTrace;
|
sl@0
|
182 |
TInt iBufferSize;
|
sl@0
|
183 |
TBool iBtraceOpen;
|
sl@0
|
184 |
TInt iDataNotification;
|
sl@0
|
185 |
TFileName iUserFilePath;
|
sl@0
|
186 |
TFileName iConfigFilePath;
|
sl@0
|
187 |
TBool iUserFile;
|
sl@0
|
188 |
TBool iConfigFile;
|
sl@0
|
189 |
TBool iIsBooting;
|
sl@0
|
190 |
};
|
sl@0
|
191 |
|
sl@0
|
192 |
}//namespace
|
sl@0
|
193 |
|
sl@0
|
194 |
#endif // ULOGGERSERVER_H
|