sl@0: // Copyright (c) 2007-2010 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 Server header file sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef ULOGGERSERVER_H sl@0: #define ULOGGERSERVER_H sl@0: sl@0: #include "outputframework.h" // COutputFramework sl@0: #include "uloggerconfigmanager.h" // CConfig, CConfigSettingsIter, MConfigObserver sl@0: #include "uloggershared.h" sl@0: #include "uloggerwatcher.h" sl@0: #include "pluginallocator.h" sl@0: #include "inputframework.h" sl@0: #include // RBTrace sl@0: sl@0: namespace Ulogger { sl@0: sl@0: sl@0: enum TFilter sl@0: { sl@0: EPrimaryFilter = 1, sl@0: ESecondaryFilter sl@0: }; sl@0: sl@0: sl@0: enum TULoggerSrvPanics sl@0: { sl@0: EUnknownPanic = 1 sl@0: }; sl@0: sl@0: sl@0: /** CULoggerServer server class. sl@0: This class is responsible for maintaining the server state. sl@0: */ sl@0: class CULoggerServer : public CServer2, sl@0: public MDataWatcherObserver, sl@0: public MInputFrameworkObserver sl@0: { sl@0: public: sl@0: sl@0: static CULoggerServer* NewLC(TInt aPriority); sl@0: ~CULoggerServer(); sl@0: sl@0: //own methods sl@0: static TInt StartServer(); sl@0: void IncrementSessions(); sl@0: void DecrementSessions(); sl@0: sl@0: //from CActive sl@0: TInt RunError(TInt aError); sl@0: sl@0: //from MInputFrameworkObserver sl@0: ControlData* ProcessCommandL(TCommand aOpCode, RArray& aArguments); sl@0: void DoPostProcessing(TCommand aCmd); sl@0: sl@0: //From MDataWatcher sl@0: void DataNotification(); sl@0: sl@0: //server stuff sl@0: TBool ServerState(); sl@0: sl@0: //actions sl@0: void RunAsService(TBool aRunAsService); // Not implemented yet sl@0: TInt Start(); //this is actually only called from inside the server, or by the test framework. sl@0: TInt Stop(); sl@0: TInt RestartOutputting(); sl@0: void ReadBufferL(); //this is actually only called from inside the server, or by the test framework. sl@0: sl@0: sl@0: //filters sl@0: TInt GetActiveFilters(RArray& aListBuffer,TInt aFilterType); sl@0: TInt SetActiveFilterL(RArray aCategory, TInt aFilterType); sl@0: TInt RemoveActiveFilter(RArray& aValue, const TInt aFilterType); sl@0: TInt SetSecondaryFiltering(const TDesC8& aEnabled); sl@0: TInt GetSecondaryFiltering(TBool& aEnabled); sl@0: sl@0: //plugins sl@0: TInt SetPluginSettings(const TDesC8& aPluginname, RArray& aListBuffer); sl@0: TInt RemovePluginSettingsL(const TDesC8& aPluginName); sl@0: TInt GetActiveOutputPlugin(RArray& aListBuffer); sl@0: TInt SetActiveOutputPlugin(const TDesC8& aPluginname); sl@0: TInt GetInstalledOutputPlugins(RArray& aListBuffer); sl@0: TInt DeActivateInputPlugin(const TDesC8& aPluginname); sl@0: TInt GetActiveInputPlugin(RArray& aListBuffer); sl@0: TInt SetActiveInputPlugin(const TDesC8& aPluginname); sl@0: TInt GetInstalledInputPluginsL(RArray& aListBuffer); sl@0: sl@0: //buffers sl@0: TInt GetOptionsSettingsL(const TDesC8& aMedianame, RArray& aListBuffer); sl@0: TInt GetBufandDataNotifyValuesL(const TDesC8& aSetting,TInt& value); sl@0: TInt SetBufferMode(const TDesC8& aValue); sl@0: TInt SetBufferSizeL(TInt aSize); sl@0: TInt SetDataNotificationSizeL(TInt aSize); sl@0: sl@0: private: sl@0: //server related stuff sl@0: CULoggerServer(TInt aPriority); sl@0: void ConstructL(); sl@0: static TInt StartServerL(); sl@0: static void PanicServer(TULoggerSrvPanics aPanic); sl@0: static void PanicClient(const RMessage2& aMessage, TULoggerSrvPanics aPanic); sl@0: void ShutDownServer(); sl@0: void RequestCancel(); sl@0: //from CServer2 sl@0: CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const; sl@0: sl@0: //on boot things sl@0: TInt TraceSettingsOnBootL(); sl@0: TInt ResetBtracePrimaryFilters(RBTrace& aBTrace); sl@0: sl@0: //action related things sl@0: sl@0: //other configs sl@0: void GetOptionsSettingsL(RArray& aListBuffer,const TDesC8& aSetting); sl@0: TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting); sl@0: sl@0: //framework stuff sl@0: void InitializeFrameworksL(); sl@0: void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray& aArray); sl@0: void PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray& aArray); sl@0: sl@0: //config file stuff sl@0: // CConfig* CreateConfig(TFileName aFilePath); sl@0: // void InitializeConfigFileL(); sl@0: // TInt CheckConfigFile(const TDesC& aFileName,const TDesC& aDirPath,TFileName& aFilePath); sl@0: // void CopyFileToSystemDrive(TFileName& aFilePath); sl@0: sl@0: //plugin stuff sl@0: TInt DeActivateOutputPlugin(const TDesC8& aPluginname); sl@0: void FilterPlugins(TPluginFilter aFilter, RArray& aPluginList); sl@0: TBool CheckPluginExists(TPtrC8& aPluginName, TPluginFilter aPluginFilter); sl@0: void GetPluginAndSettingsL(TDes8& aPluginName, RPointerArray* aSettings, TPluginFilter aPluginFilter); sl@0: void AsynchDataRequest(); sl@0: sl@0: //filter related stuff sl@0: ControlData* SetPrimaryFilters(RArray &aArguments); sl@0: TInt GetValuesL(const TDesC8& aSectionName, RArray& aListBuffer); sl@0: sl@0: // cleanup methods sl@0: static void CleanupTPluginConfigArray(TAny* aPtr); sl@0: sl@0: private: sl@0: //data sl@0: TInt iRunAsService; sl@0: TInt iSessionCounter; sl@0: sl@0: /** config API */ sl@0: //CConfig* iConfig; sl@0: CConfigFileManager* iConfigManager; sl@0: /** Output Framework */ sl@0: COutputFramework* iOutputFramework; sl@0: /** Input Framework main object. */ sl@0: CInputFramework* iInputFramework; sl@0: /** Data Watcher */ sl@0: CULoggerWatcher* iDataWatcher; sl@0: /** Plugin Allocator */ sl@0: CPluginAllocator* iPluginAllocator; sl@0: sl@0: RImplInfoPtrArray iPluginArray; sl@0: sl@0: //BTrace sl@0: RBTrace iTrace; sl@0: TInt iBufferSize; sl@0: TBool iBtraceOpen; sl@0: TInt iDataNotification; sl@0: TFileName iUserFilePath; sl@0: TFileName iConfigFilePath; sl@0: TBool iUserFile; sl@0: TBool iConfigFile; sl@0: TBool iIsBooting; sl@0: }; sl@0: sl@0: }//namespace sl@0: sl@0: #endif // ULOGGERSERVER_H