os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerserver.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerserver.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,194 @@
1.4 +// Copyright (c) 2007-2010 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 Server header file
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @internalTechnology
1.24 + @prototype
1.25 +*/
1.26 +
1.27 +#ifndef ULOGGERSERVER_H
1.28 +#define ULOGGERSERVER_H
1.29 +
1.30 +#include "outputframework.h" // COutputFramework
1.31 +#include "uloggerconfigmanager.h" // CConfig, CConfigSettingsIter, MConfigObserver
1.32 +#include "uloggershared.h"
1.33 +#include "uloggerwatcher.h"
1.34 +#include "pluginallocator.h"
1.35 +#include "inputframework.h"
1.36 +#include <d32btrace.h> // RBTrace
1.37 +
1.38 +namespace Ulogger {
1.39 +
1.40 +
1.41 +enum TFilter
1.42 +{
1.43 + EPrimaryFilter = 1,
1.44 + ESecondaryFilter
1.45 +};
1.46 +
1.47 +
1.48 +enum TULoggerSrvPanics
1.49 +{
1.50 + EUnknownPanic = 1
1.51 +};
1.52 +
1.53 +
1.54 +/** CULoggerServer server class.
1.55 +This class is responsible for maintaining the server state.
1.56 +*/
1.57 +class CULoggerServer : public CServer2,
1.58 + public MDataWatcherObserver,
1.59 + public MInputFrameworkObserver
1.60 + {
1.61 + public:
1.62 +
1.63 + static CULoggerServer* NewLC(TInt aPriority);
1.64 + ~CULoggerServer();
1.65 +
1.66 + //own methods
1.67 + static TInt StartServer();
1.68 + void IncrementSessions();
1.69 + void DecrementSessions();
1.70 +
1.71 + //from CActive
1.72 + TInt RunError(TInt aError);
1.73 +
1.74 + //from MInputFrameworkObserver
1.75 + ControlData* ProcessCommandL(TCommand aOpCode, RArray<TPtrC8>& aArguments);
1.76 + void DoPostProcessing(TCommand aCmd);
1.77 +
1.78 + //From MDataWatcher
1.79 + void DataNotification();
1.80 +
1.81 + //server stuff
1.82 + TBool ServerState();
1.83 +
1.84 + //actions
1.85 + void RunAsService(TBool aRunAsService); // Not implemented yet
1.86 + TInt Start(); //this is actually only called from inside the server, or by the test framework.
1.87 + TInt Stop();
1.88 + TInt RestartOutputting();
1.89 + void ReadBufferL(); //this is actually only called from inside the server, or by the test framework.
1.90 +
1.91 +
1.92 + //filters
1.93 + TInt GetActiveFilters(RArray<TUint32>& aListBuffer,TInt aFilterType);
1.94 + TInt SetActiveFilterL(RArray<TUint32> aCategory, TInt aFilterType);
1.95 + TInt RemoveActiveFilter(RArray<TUint32>& aValue, const TInt aFilterType);
1.96 + TInt SetSecondaryFiltering(const TDesC8& aEnabled);
1.97 + TInt GetSecondaryFiltering(TBool& aEnabled);
1.98 +
1.99 + //plugins
1.100 + TInt SetPluginSettings(const TDesC8& aPluginname, RArray<TPtrC8>& aListBuffer);
1.101 + TInt RemovePluginSettingsL(const TDesC8& aPluginName);
1.102 + TInt GetActiveOutputPlugin(RArray<TPtrC8>& aListBuffer);
1.103 + TInt SetActiveOutputPlugin(const TDesC8& aPluginname);
1.104 + TInt GetInstalledOutputPlugins(RArray<TPtrC8>& aListBuffer);
1.105 + TInt DeActivateInputPlugin(const TDesC8& aPluginname);
1.106 + TInt GetActiveInputPlugin(RArray<TPtrC8>& aListBuffer);
1.107 + TInt SetActiveInputPlugin(const TDesC8& aPluginname);
1.108 + TInt GetInstalledInputPluginsL(RArray<TPtrC8>& aListBuffer);
1.109 +
1.110 + //buffers
1.111 + TInt GetOptionsSettingsL(const TDesC8& aMedianame, RArray<TPtrC8>& aListBuffer);
1.112 + TInt GetBufandDataNotifyValuesL(const TDesC8& aSetting,TInt& value);
1.113 + TInt SetBufferMode(const TDesC8& aValue);
1.114 + TInt SetBufferSizeL(TInt aSize);
1.115 + TInt SetDataNotificationSizeL(TInt aSize);
1.116 +
1.117 +private:
1.118 + //server related stuff
1.119 + CULoggerServer(TInt aPriority);
1.120 + void ConstructL();
1.121 + static TInt StartServerL();
1.122 + static void PanicServer(TULoggerSrvPanics aPanic);
1.123 + static void PanicClient(const RMessage2& aMessage, TULoggerSrvPanics aPanic);
1.124 + void ShutDownServer();
1.125 + void RequestCancel();
1.126 + //from CServer2
1.127 + CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
1.128 +
1.129 + //on boot things
1.130 + TInt TraceSettingsOnBootL();
1.131 + TInt ResetBtracePrimaryFilters(RBTrace& aBTrace);
1.132 +
1.133 + //action related things
1.134 +
1.135 + //other configs
1.136 + void GetOptionsSettingsL(RArray<TPtrC8>& aListBuffer,const TDesC8& aSetting);
1.137 + TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting);
1.138 +
1.139 + //framework stuff
1.140 + void InitializeFrameworksL();
1.141 + void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TPtrC8>& aArray);
1.142 + void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TUint32>& aArray);
1.143 +
1.144 + //config file stuff
1.145 +// CConfig* CreateConfig(TFileName aFilePath);
1.146 +// void InitializeConfigFileL();
1.147 +// TInt CheckConfigFile(const TDesC& aFileName,const TDesC& aDirPath,TFileName& aFilePath);
1.148 +// void CopyFileToSystemDrive(TFileName& aFilePath);
1.149 +
1.150 + //plugin stuff
1.151 + TInt DeActivateOutputPlugin(const TDesC8& aPluginname);
1.152 + void FilterPlugins(TPluginFilter aFilter, RArray<TPtrC8>& aPluginList);
1.153 + TBool CheckPluginExists(TPtrC8& aPluginName, TPluginFilter aPluginFilter);
1.154 + void GetPluginAndSettingsL(TDes8& aPluginName, RPointerArray<TPluginConfiguration>* aSettings, TPluginFilter aPluginFilter);
1.155 + void AsynchDataRequest();
1.156 +
1.157 + //filter related stuff
1.158 + ControlData* SetPrimaryFilters(RArray<TPtrC8> &aArguments);
1.159 + TInt GetValuesL(const TDesC8& aSectionName, RArray<TPtrC8>& aListBuffer);
1.160 +
1.161 + // cleanup methods
1.162 + static void CleanupTPluginConfigArray(TAny* aPtr);
1.163 +
1.164 +private:
1.165 + //data
1.166 + TInt iRunAsService;
1.167 + TInt iSessionCounter;
1.168 +
1.169 + /** config API */
1.170 + //CConfig* iConfig;
1.171 + CConfigFileManager* iConfigManager;
1.172 + /** Output Framework */
1.173 + COutputFramework* iOutputFramework;
1.174 + /** Input Framework main object. */
1.175 + CInputFramework* iInputFramework;
1.176 + /** Data Watcher */
1.177 + CULoggerWatcher* iDataWatcher;
1.178 + /** Plugin Allocator */
1.179 + CPluginAllocator* iPluginAllocator;
1.180 +
1.181 + RImplInfoPtrArray iPluginArray;
1.182 +
1.183 + //BTrace
1.184 + RBTrace iTrace;
1.185 + TInt iBufferSize;
1.186 + TBool iBtraceOpen;
1.187 + TInt iDataNotification;
1.188 + TFileName iUserFilePath;
1.189 + TFileName iConfigFilePath;
1.190 + TBool iUserFile;
1.191 + TBool iConfigFile;
1.192 + TBool iIsBooting;
1.193 + };
1.194 +
1.195 +}//namespace
1.196 +
1.197 +#endif // ULOGGERSERVER_H