os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerserver.cpp
Update contrib.
1 // Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <e32btrace.h>
19 #include "uloggerserver.h"
20 #include "uloggersession.h"
21 #include "uloggerclient.h"
22 #include "uloggerplugin.h"
23 #include "uloggershared.h"
24 #include "uloggerdatatypes.h"
25 #include "inputdata.h"
26 #include "uloggercommands.h"
28 #if defined(__LIGHTLOGGER_ENABLED)
29 #include "lightlogger.h"
36 /*Default constructor*/
37 CULoggerServer::CULoggerServer(TInt aPriority)
38 : CServer2( aPriority )
42 iConfigManager = NULL;
44 iOutputFramework = NULL;
45 iInputFramework = NULL;
46 iPluginAllocator = NULL;
50 /** Destructor will be called before re-starting
52 CULoggerServer::~CULoggerServer()
54 delete iConfigManager;
55 delete iOutputFramework;
56 delete iInputFramework;
57 delete iPluginAllocator;
58 iPluginArray.ResetAndDestroy();
62 iDataWatcher->Cancel();
67 /** Static Factory Construction
68 @return a pointer to the created object
69 @leave KErrNoMemory if not enough memory available
71 CULoggerServer* CULoggerServer::NewLC(TInt aPriority)
73 CULoggerServer* self = new (ELeave) CULoggerServer( aPriority );
74 CleanupStack::PushL( self );
81 Create and install new Framework & Active Scheduler
83 void CULoggerServer::ConstructL()
85 iRunAsService = EFalse; // Not used yet, to be used for run-as-service functionality
86 iBufferSize = KMaxBufferSize;
88 iDataNotification = 0;
90 StartL( KServerName );
91 iConfigManager = CConfigFileManager::NewL();
97 Create a new server session.
98 @note Called by kernel after client's thread use any of the macros for the first time.
100 CSession2* CULoggerServer::NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const
102 TVersion v(KULoggerSrvMajorVersionNumber,KULoggerSrvMinorVersionNumber,KULoggerSrvBuildVersionNumber);
103 if (!User::QueryVersionSupported(v,aVersion))
104 User::Leave(KErrNotSupported);
107 aMessage.Client(client);
108 return CULoggerSession::NewL( client, *const_cast<CULoggerServer*>(this) );
112 /*Increment session counter*/
113 void CULoggerServer::IncrementSessions()
118 /*Decrement session counter*/
119 void CULoggerServer::DecrementSessions()
121 if(--iSessionCounter <= 0)
127 // // Replace above if-statement with following to implement run-as-service functionality
129 // if((!iBtraceOpen) && (!iRunAsService))
137 Shuts down the server
139 void CULoggerServer::ShutDownServer()
141 CActiveScheduler::Stop();
148 Return the error value
150 TInt CULoggerServer::RunError(TInt aError)
152 Message().Complete(aError);
161 void CULoggerServer::PanicServer(TULoggerSrvPanics aPanic)
163 User::Panic(KServerName, aPanic);
170 void CULoggerServer::PanicClient(const RMessage2& aMessage, TULoggerSrvPanics aPanic)
172 aMessage.Panic( KServerName, aPanic );
178 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
181 @Installs the active scheduler
184 TInt CULoggerServer::StartServerL()
186 #if defined(__LIGHTLOGGER_ENABLED)
191 CActiveScheduler* activeScheduler = new (ELeave) CActiveScheduler();
192 CleanupStack::PushL(activeScheduler) ;
193 CActiveScheduler::Install(activeScheduler);
194 CULoggerServer* server = NULL;
195 TInt servererr = KErrNone;
198 server = CULoggerServer::NewLC((TProcessPriority)EPriorityHigh);
202 if(servererr==KErrNone||servererr==KErrNotFound )
204 RProcess::Rendezvous(KErrNone);
206 CActiveScheduler::Start();
210 RProcess::Rendezvous(servererr);
213 CleanupStack::PopAndDestroy();
216 }//</StartingFunctionL>
220 Function to to start the server
221 This should leave with KErrNone
223 TInt CULoggerServer::StartServer()
225 CTrapCleanup* cleanupStack = CTrapCleanup::New();
231 TRAP(err, StartServerL());
237 }//</StartingFunction>
241 Function to set the active output media
242 This should leave with KErrNotFound if given plugin is not the correct one
243 or the file doesn't exists in the user and public path
246 TInt CULoggerServer::SetActiveOutputPlugin(const TDesC8 &aPluginname)
248 RArray<TPtrC8> activePluginsArray;
249 TInt error= KErrNone;
251 error = GetInstalledOutputPlugins(activePluginsArray);
254 for(TInt i=0;i<activePluginsArray.Count();i++)
256 if(aPluginname.Compare(activePluginsArray[i])==0)
258 error = iConfigManager->SetActiveOutputPlugin(aPluginname);
262 error = KErrNotFound;
265 if(error == KErrAlreadyExists)
273 TInt CULoggerServer::SetActiveInputPlugin(const TDesC8 &aPluginname)
275 RArray<TPtrC8> activePluginsArray;
277 //check configuration file in user path (\\ulogger\\uloggerconfig.ini)
279 ret = GetInstalledInputPluginsL(activePluginsArray);
283 for(TInt i=0;i<activePluginsArray.Count();i++)
285 if(aPluginname.Compare(activePluginsArray[i])==0)
287 ret = iConfigManager->SetActiveInputPlugin(aPluginname);
297 Function to set the plugin settings
298 This should leave with KErrNotFound if cannot file doesn't exist
300 TInt CULoggerServer::SetPluginSettings(const TDesC8 &aPluginname, RArray<TPtrC8>& aListBuffer)
305 //if plug-in doesn't exists
306 TPtrC8 pluginName(aPluginname);
307 if(!CheckPluginExists(pluginName, EOutputPluginFilter) && !CheckPluginExists(pluginName, EInputPluginFilter))
310 while(i<aListBuffer.Count())
312 TPtrC8 key(aListBuffer[i]);
313 TPtrC8 val(aListBuffer[++i]);
314 ret = iConfigManager->SetPluginSetting(aPluginname, key, val);
326 Function to get the plugin settings
327 This should leave with KErrNotFound if cannot find one
329 TInt CULoggerServer::GetOptionsSettingsL(const TDesC8 &aMediaName, RArray<TPtrC8>& aListBuffer)
331 //if plug-in doesn't exists
332 TPtrC8 pluginName(aMediaName);
333 if(!CheckPluginExists(pluginName, EOutputPluginFilter) && !CheckPluginExists(pluginName, EInputPluginFilter))
337 TInt ret = GetValuesL(aMediaName,aListBuffer);
338 if(ret == KErrNotFound) //this error indicate that there is no section in config file, plug-in exists
347 Function to get values from the configuration file (i.e. for filters,plugin settings)
348 This should leave with KErrNotFound if it cannot find the configuration file
350 TInt CULoggerServer::GetValuesL(const TDesC8 &aSectionName, RArray<TPtrC8>& aListBuffer)
354 TInt err = KErrNotFound;
356 Ulogger::CConfigSettingsIter* iter = Ulogger::CConfigSettingsIter::NewL();
357 CleanupStack::PushL(iter);
359 //check User configuration file if exists
360 //check values for given section in the configuration file
361 //if value exists copy it to array
362 err = iConfigManager->GetSectionValues(aSectionName,*iter);
366 while(iter->Next(key,val))
368 aListBuffer.AppendL(key);
369 aListBuffer.AppendL(val);
375 CleanupStack::PopAndDestroy(); // list
382 Sets the Active Filter in the configuration file (primary and secondary filters)
383 @aCategory filters to be set
384 @aDupCategory duplicate filters which are not set
385 @aFilter value that describes primary or secondary filter
386 @return KErrNone, if successful, otherwise one of the other system-wide
389 TInt CULoggerServer::SetActiveFilterL(RArray<TUint32> aCategory, TInt aFilterType)
391 TInt error = KErrNone;
394 if(aCategory.Count()==0 || aCategory.Count()>KMaxPrimaryFiltersLimit)
395 error = KErrArgument;
398 error = iConfigManager->SetActiveFilter(aCategory,KPrimaryFilterSection);
399 if(error == KErrAlreadyExists)
405 //we don't want to set more secondary filters than KMaxSecondaryFiltersLimit
406 RArray<TUint32> tmpArray;
407 CleanupClosePushL(tmpArray);
408 error = GetActiveFilters(tmpArray, ESecondaryFilter);
409 if(!error || error == KErrNotFound)
411 error = KErrNone; //in case it was KErrNotFound as it doesn't matter we didn't have any set already
412 if(aCategory.Count()==0 ||tmpArray.Count() > KMaxSecondaryFiltersLimit ||
413 (tmpArray.Count()+ aCategory.Count()) > KMaxSecondaryFiltersLimit)
414 error = KErrArgument;
417 CleanupStack::PopAndDestroy(); //tmpArray
419 error = iConfigManager->SetActiveFilter(aCategory,KSecondaryFilterSection);
426 Function to remove the Filter from config file
427 @aFilter Filter to be removed
428 @aValue primary or secondary filter to be removed
429 This should leave with KErrNotFound if cannot find one or any system wide error codes
431 TInt CULoggerServer::RemoveActiveFilter(RArray<TUint32>& aValue, const TInt aFilter)
434 //remove filter (primary or secondary) from BTrace current configuration
435 if(aFilter == EPrimaryFilter && (aValue.Count()==0 || aValue.Count()>KMaxPrimaryFiltersLimit))
437 else if(aFilter == ESecondaryFilter && (aValue.Count()==0 || aValue.Count()>KMaxSecondaryFiltersLimit))
440 ret = iConfigManager->RemoveActiveFilter(aValue,aFilter);
441 if(ret == KErrNotFound) //remove operation should succeed in this situation
449 Function to set Trace settings to the configuration file
450 @aValue value to be set
451 @aSetting setting to which value to be set
452 This should leave with KErrNotFound if cannot find one or any system wide error codes
454 TInt CULoggerServer::SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting)
456 TInt r = iConfigManager->SetTraceSettings(aValue, aSetting);
462 Function to remove plugin settings from the configuration file
463 @aPluginName Plugin name whose settings has to be removed
464 @return will return KErrNone or else leave with KErrNotFound
465 or any system wide error codes
468 TInt CULoggerServer::RemovePluginSettingsL(const TDesC8 &aPluginName)
470 if(aPluginName.Length() == 0)
474 RArray<TPtrC8> settings;
475 ret = GetOptionsSettingsL(aPluginName, settings);
476 if(ret != KErrNone || settings.Count()==0)
481 return iConfigManager->RemovePluginSettings(aPluginName);
487 Resize the BTrace buffer size
489 @aSize The size to be set for the BTrace buffer.
490 @return KErrNone, if successful, otherwise one of the other system-wide
493 TInt CULoggerServer::SetBufferSizeL(TInt aSize)
495 if(aSize > KMaxBufferSize || aSize < 1)
500 GetBufandDataNotifyValuesL(KDataNotification,iDataNotification);
501 if(aSize < iDataNotification)
505 HBufC8* Size = HBufC8::NewLC(32);
506 Size->Des().Num(iBufferSize);
507 CleanupStack::Pop(1);
508 TPtr8 ptr(Size->Des());
509 TInt r = iConfigManager->SetTraceSettings((const TDesC8&)ptr, KBuffer);
515 Change the mode of the BTrace Buffer
517 @aValue The mode to be set for the BTrace buffer.
518 @return KErrNone, if successful, otherwise one of the other system-wide
521 TInt CULoggerServer::SetBufferMode(const TDesC8& aValue)
524 TInt r = SetTraceSettings(aValue, KBufferMode);
529 Resize the Data Notification size
531 @aSize The size to be set for the Data Notification size.
532 @return KErrNone, if successful, otherwise one of the other system-wide
535 TInt CULoggerServer::SetDataNotificationSizeL(TInt aSize)
537 if(aSize > KMaxDnsSize || aSize < 0)
540 TRAP_IGNORE((r=GetBufandDataNotifyValuesL(KBuffer,size)));
544 iDataNotification = aSize;
545 HBufC8* Size = HBufC8::NewLC(32);
546 Size->Des().Num(aSize);
547 TPtr8 ptr(Size->Des());
548 r = SetTraceSettings((const TDesC8&)ptr, KDataNotification);
549 CleanupStack::PopAndDestroy();
554 Function to retrieve the Trace Section Values
555 This should leave with KErrNotFound if cannot find one
556 as this should be treated as a corrupt config file
558 void CULoggerServer::GetOptionsSettingsL(RArray<TPtrC8>& aListBuffer,const TDesC8& aSetting)
564 Ulogger::CConfigSettingsIter* iter = Ulogger::CConfigSettingsIter::NewL();
565 CleanupStack::PushL(iter);
566 err=iConfigManager->GetPluginSettings(*iter);
570 while(iter->Next(key,val))
572 if(key.Compare(aSetting)==0)
574 aListBuffer.AppendL(key);
575 aListBuffer.AppendL(val);
579 CleanupStack::PopAndDestroy(); // list
583 Function to retrieve the active primary filters
584 This should leave with KErrNotFound if cannot find one
585 as this should be treated as a corrupt config file
587 TInt CULoggerServer::GetBufandDataNotifyValuesL(const TDesC8& aSetting,TInt& value)
589 TInt err = KErrNotFound;
590 RArray<TPtrC8> traceValues;
593 GetOptionsSettingsL(traceValues,aSetting);
596 //if values exists for the given trace settings
597 if(traceValues.Count()>1)
598 {// get values for buffer mode
599 if(aSetting.Compare(KBufferMode)==0)
602 if(traceValues[1].Compare(KCircular) == 0)
603 value = ECircularBuffer;
604 else if(traceValues[1].Compare(KStraight) == 0)
605 value = EStraightBuffer;
610 {// get values for data notification and buffer size
611 TLex8 lex_val(traceValues[1]);
612 err = lex_val.Val(value);
621 Set the enable/disable secondary filters
623 @aSize The size to be set for the BTrace buffer.
624 @return KErrNone, if successful, otherwise one of the other system-wide
627 TInt CULoggerServer::SetSecondaryFiltering(const TDesC8& aEnabled)
629 TInt error = iConfigManager->SetTraceSettings(aEnabled, KSecondaryGlobalFilter);
630 if(error == KErrAlreadyExists)
638 Function to retrieve the active primary and secondary filters
639 This should return KErrNotFound if cannot find one or return any of the system wide error codes
641 TInt CULoggerServer::GetActiveFilters(RArray<TUint32>& aListBuffer,TInt aFilterType)
643 TInt ret = KErrNotFound;
644 RArray<TPtrC8> aValues;
647 TRAPD(err, ret = GetValuesL(KPrimaryFilterSection,aValues));
658 while(i<aValues.Count())
660 TLex8 lex_val(aValues[++i]);
661 ret = lex_val.Val(int_val,EDecimal);
664 ret = aListBuffer.Append(int_val);
678 else if(aFilterType == 2)
680 TRAPD(err, ret = GetValuesL(KSecondaryFilterSection,aValues));
690 while(i<aValues.Count())
692 TLex8 lex_val(aValues[++i]);
693 ret = lex_val.Val(int_val,EDecimal);
696 ret = aListBuffer.Append(int_val);
711 if(ret==KErrNotFound)//i.e. if there are no values in the array --> change to if(filters.Count = 0)?
721 Function to retrieve the active secondary global filter
722 This should leave with KErrNotFound if cannot find one
725 TInt CULoggerServer::GetSecondaryFiltering(TBool& aEnabled)
727 RArray<TPtrC8> configSettings;
728 TRAPD(error, GetOptionsSettingsL(configSettings,KSecondaryGlobalFilter));
729 if(configSettings[1]==KEnable) //First element contains KSecondaryGlobalFilter, second the value
731 if(configSettings[1]==KDisable)
737 Function to retrieve the plugin names from the ECOM framework
738 This should leave with KErrNotFound if cannot find one
740 TInt CULoggerServer::GetInstalledOutputPlugins(RArray<TPtrC8>& aListBuffer)
742 // Read info about all implementations into infoArray
743 // Note that a special cleanup function is required to reset and destroy
744 // all items in the array, and then close it.
745 if(iPluginArray.Count()>0)
747 iPluginArray.ResetAndDestroy();
748 iPluginArray.Close();
751 TRAPD(error,CPluginAllocator::ListAllImplementationsL(iPluginArray));
753 if(iPluginArray.Count()>0)
755 for (TInt i=0; i< iPluginArray.Count(); i++)
757 TRAP(error,aListBuffer.AppendL(iPluginArray[i]->DataType()));
760 //filter plugins and to use only output plugins
761 FilterPlugins(EOutputPluginFilter, aListBuffer);
769 TInt CULoggerServer::GetInstalledInputPluginsL(RArray<TPtrC8>& aListBuffer)
771 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
772 __MARK_METHOD("CULoggerServer::GetInstalledControlPlugins")
775 if(iPluginArray.Count()>0)
777 iPluginArray.ResetAndDestroy();
778 iPluginArray.Close();
780 // Read info about all implementations into infoArray
781 // Note that a special cleanup function is required to reset and destroy
782 // all items in the array, and then close it.
783 CPluginAllocator::ListAllImplementationsL(iPluginArray);
785 if(iPluginArray.Count() > 0)
787 for (TInt i=0; i< iPluginArray.Count(); i++)
788 aListBuffer.AppendL(iPluginArray[i]->DataType());
790 //filter plugins and to use only output plugins
791 FilterPlugins(EInputPluginFilter, aListBuffer);
798 Function to retrieve the Active plugin name
799 This should leave with KErrNotFound if cannot find one or any system wide error codes
801 TInt CULoggerServer::GetActiveOutputPlugin(RArray<TPtrC8>& aListBuffer)
803 TInt errCode = GetValuesL(KActiveSection,aListBuffer);
804 //plugins are received as, e.g. '1 uloggerfileplugin' (.ini file syntax)
805 //we have to remove number from array
806 for(TInt i=0; i<aListBuffer.Count(); ++i)
809 TLex8 lex(aListBuffer[i]);
810 if(lex.Val(v) == KErrNone)
812 aListBuffer.Remove(i);
813 i=-1; //start from begin, i will be incremented in loop
821 Function to Deactivate or remove active output plugin
822 This should leave with KErrNotFound if cannot find one or any system wide error codes
825 TInt CULoggerServer::DeActivateOutputPlugin(const TDesC8 &aPluginname)
827 if(iBtraceOpen != EFalse)
830 iBtraceOpen = EFalse;
833 TInt ret = iConfigManager->DeActivateOutputPlugin(aPluginname);
838 Function to retrieve the Active control plugin name
839 This should leave with KErrNotFound if cannot find one or any system wide error codes
841 TInt CULoggerServer::GetActiveInputPlugin(RArray<TPtrC8>& aListBuffer)
843 return GetValuesL(KActiveControlSection,aListBuffer);
847 Function to Deactivate active control plugin
848 This should leave with KErrNotFound if cannot find one or any system wide error codes
850 TInt CULoggerServer::DeActivateInputPlugin(const TDesC8& aPluginname)
852 return iConfigManager->DeActivateInputPlugin(aPluginname);
856 Function to run ULogger server as service, i.e. to keep it constantly running
857 (but not necessarily logging) in the background, or to stop it being run as a
858 service (if EFalse is passed).
860 @param aRunAsService ETrue to start, EFalse to stop running as service
862 void CULoggerServer::RunAsService(TBool /*aRunAsService*/)
865 // // Uncomment following to implement run-as-service functionality
867 // iRunAsService = aRunAsService;
869 // if (!aRunAsService)
871 // //make sure server is stopped if there are no sessions
872 // IncrementSessions();
873 // DecrementSessions();
878 Function to cd.. ulogger server
879 This should leave with KErrNotFound if cannot find one or any system wide error codes
881 TInt CULoggerServer::Start()
883 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
884 __MARK_METHOD("CULoggerServer::Start")
887 TRAPD(error, InitializeFrameworksL());
890 if(error != KErrNone)
892 if(!iOutputFramework)
900 RArray<TPtrC8> settings;
901 RArray<TUint32> activefilters;
902 //checking if there is at least one active channel
903 error = GetActiveOutputPlugin(settings);
904 if(error != KErrNone)
906 if(settings.Count()==0)
908 return KErrNotFound; //active output plug-in not found
911 if(iBtraceOpen == EFalse)
914 error = TraceSettingsOnBootL();
916 error = iTrace.Open();
918 if(error == KErrNone)
920 //----Reset the notification size
921 TRAP_IGNORE(error=GetBufandDataNotifyValuesL(KDataNotification,iDataNotification));
924 TRAP_IGNORE(error=GetBufandDataNotifyValuesL(KBuffer,iBufferSize));
928 //----Reset BTrace filters
929 ResetBtracePrimaryFilters(iTrace);
931 //----Resize the trace buffer
932 error = iTrace.ResizeBuffer(iBufferSize*1024);
933 if(error == KErrNoMemory)
935 error = iTrace.ResizeBuffer(KMinBufferMTPLE*1024);
937 if(error != KErrNone)
939 //----Reset the buffer mode
940 TRAP_IGNORE(GetBufandDataNotifyValuesL(KBufferMode,buffermode));
941 if(buffermode==ECircularBuffer)
943 iTrace.SetMode(RBTrace::EFreeRunning|RBTrace::EEnable);
947 iTrace.SetMode(RBTrace::EEnable);
950 //----Enable/disable primary filter
951 error = GetActiveFilters(activefilters,EPrimaryFilter);
952 if(error != KErrNone)
954 for(TInt i=0; i<activefilters.Count(); ++i)
957 filter= (TUint8)activefilters[i];
958 iTrace.SetFilter(filter,ETrue);
961 //----Enable/disable secondary filter
963 TBool enabled = EFalse;
964 error = GetSecondaryFiltering(enabled);
967 if (enabled)//enable secondary filter, only traces with certain value will pass
969 iTrace.SetFilter2(0);
971 //enable secondary filters chosen by user
972 activefilters.Reset();
973 if((error = GetActiveFilters(activefilters,ESecondaryFilter)) == KErrNone)
974 for(TInt i=0; i<activefilters.Count(); ++i)
975 iTrace.SetFilter2(activefilters[i], ETrue);
978 if(error == KErrNotFound)
986 else//disable secondary filter, all traces will pass
988 iTrace.SetFilter2(1);
992 //set flag to idicate that btrace is open
995 //start input and output frameworks
996 iInputFramework->StartReading(); //start waiting for remote commands
1007 Close the BTrace handle to the buffer
1010 TInt CULoggerServer::Stop()
1012 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1013 __MARK_METHOD("CULoggerServer::Stop")
1018 TInt errCode = KErrNone;
1019 TRAP(errCode, ReadBufferL()); //flush the BTrace buffer
1021 ResetBtracePrimaryFilters(iTrace);//reset BTrace filters
1023 iTrace.CancelRequestData();
1026 iBtraceOpen = EFalse;
1027 iDataWatcher->Cancel();
1029 //stop waiting/reading for remote commands
1030 iInputFramework->StopReading();
1031 iOutputFramework->ReleaseOutputResources();
1036 return KErrNotReady;
1042 Gets the Trace settings on boot
1045 TInt CULoggerServer::TraceSettingsOnBootL()
1049 RArray<TUint32> category;
1050 TInt error = iTrace.Open();
1051 if(error != KErrNone)
1054 TInt bufferSize = iTrace.BufferSize(); //To get the buffer size set at boot
1055 if(bufferSize <= 0 && bufferSize > KMaxBufferSize)
1056 SetBufferSizeL(KMaxBufferSize); //Update config
1058 SetBufferSizeL(bufferSize); //Update config
1059 for(TUint i=0; i<KMaxPrimaryFiltersLimit; i++)
1061 trace = iTrace.Filter(i);
1063 category.AppendL((TUint32)i);
1065 error = iConfigManager->SetActiveFilter(category,KPrimaryFilterSection);
1074 Reads the BTrace buffer and transfers the collected logs to
1077 void CULoggerServer::ReadBufferL()
1083 //TUint oldMode = iTrace.Mode();
1084 //iTrace.SetMode(0); // turn off trace capture while we dump
1085 dataSize = iTrace.GetData(data);
1089 TPtrC8 dataPtr(data, dataSize);
1091 #if defined(__LIGHTLOGGER_ENABLED) && defined(__PERFORMANCE_TEST)
1092 __LOGTIMESTAMP_HIRES("Passing data to output framework - t2") //performance test
1095 //send data through output channel
1096 TInt error = KErrNone;
1097 if((error = iOutputFramework->SendData(dataPtr)) == KErrNone)
1098 iTrace.DataUsed(); //only if data was really sent via output plugin
1102 #if defined(__LIGHTLOGGER_ENABLED) && defined(__PERFORMANCE_TEST)
1103 __LOGTIMESTAMP_HIRES("Data logged - t3") //performance test
1106 //iTrace.SetMode(oldMode);
1108 AsynchDataRequest();
1113 void CULoggerServer::AsynchDataRequest()
1115 if(!iDataWatcher->IsActive())
1117 iTrace.RequestData(iDataWatcher->GetStatus(), iDataNotification*1024);
1118 iDataWatcher->StartWatching(this);
1123 void CULoggerServer::DataNotification()
1125 TRAPD(e, ReadBufferL());
1127 AsynchDataRequest();
1131 void CULoggerServer::GetPluginAndSettingsL(TDes8& aPluginName, RPointerArray<TPluginConfiguration>* aSettings, TPluginFilter aPluginFilter)
1135 RArray<TPtrC8> activePluginsArray;
1136 RArray<TPtrC8> pluginsArray;
1137 RArray<TPtrC8> pluginSettings;
1140 if(aPluginFilter == EOutputPluginFilter)
1141 GetActiveOutputPlugin(activePluginsArray); //get output plugin
1143 GetActiveInputPlugin(activePluginsArray); //get control plugin
1145 for(i=0; i<activePluginsArray.Count(); ++i)
1147 TBuf8<256> activeplugin;
1148 activeplugin.Copy(activePluginsArray[i]);
1149 activeplugin.LowerCase();
1151 GetInstalledOutputPlugins(pluginsArray);
1152 for(j=0;j<pluginsArray.Count();j++)
1155 plugin.Copy(pluginsArray[j]);
1158 if(activeplugin.Compare(plugin)==0)
1163 aPluginName.Copy(activePluginsArray[i]);
1164 GetOptionsSettingsL(aPluginName,pluginSettings);
1166 while(j < pluginSettings.Count())
1168 TPluginConfiguration* keyAndVal = new TPluginConfiguration();
1169 keyAndVal->SetKey(pluginSettings[j]);
1170 keyAndVal->SetValue(pluginSettings[j+1]);
1171 aSettings->AppendL(keyAndVal);
1179 * Cleanup RPointerArray<TPluginConfiguration>* object by calling ResetAndDestroy to delete memory
1180 * allocated as TPluginConfigurations whose ownership has been passed to the RPointerArray.
1183 void CULoggerServer::CleanupTPluginConfigArray(TAny* aPtr)
1185 RPointerArray<TPluginConfiguration>* ptrArray = reinterpret_cast<RPointerArray<TPluginConfiguration>*>(aPtr);
1186 ptrArray->ResetAndDestroy();
1191 void CULoggerServer::InitializeFrameworksL()
1193 //<create plugin allocator (plugins)>
1195 RBuf8 outPluginName;
1196 outPluginName.CreateL(KMaxPluginName);
1197 CleanupClosePushL(outPluginName);
1198 RPointerArray<TPluginConfiguration> outputPluginSettings;
1199 CleanupStack::PushL(TCleanupItem(CleanupTPluginConfigArray, &outputPluginSettings));
1200 GetPluginAndSettingsL(outPluginName, &outputPluginSettings, EOutputPluginFilter);
1203 RBuf8 inputPluginName;
1204 inputPluginName.CreateL(KMaxPluginName);
1205 CleanupClosePushL(inputPluginName);
1206 RPointerArray<TPluginConfiguration> inputPluginSettings;
1207 CleanupStack::PushL(TCleanupItem(CleanupTPluginConfigArray, &inputPluginSettings));
1208 GetPluginAndSettingsL(inputPluginName, &inputPluginSettings, EInputPluginFilter);
1210 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1211 __LOG("before creating CPluginAllocator")
1214 //create plugin allocator (plugins)
1215 if(!iPluginAllocator)
1217 iPluginAllocator = CPluginAllocator::NewL(outPluginName, inputPluginName);
1220 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1221 __LOG("before creating COutputFramework")
1223 //Initialize output framework
1224 if(!iOutputFramework)
1226 iOutputFramework = COutputFramework::NewL(*(iPluginAllocator->GetOutputPlugin()), outputPluginSettings);
1229 //Initialize Control Framework
1230 if(!iInputFramework)
1232 iInputFramework = CInputFramework::NewL(iPluginAllocator->GetInputPlugin(), inputPluginSettings, this);
1236 CleanupStack::PopAndDestroy(4, &outPluginName); // and outputPluginSettings, inputPluginName and inputPluginSettings
1238 iDataWatcher = CULoggerWatcher::NewL();
1242 void CULoggerServer::PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TPtrC8>& aArray)
1244 aPayloadBuf.CreateL(aArray.Count()*32);
1245 for(TInt i=0; i<aArray.Count(); i++)
1247 if(aPayloadBuf.MaxSize() < aPayloadBuf.Length()+aArray[i].Length())
1249 aPayloadBuf.ReAllocL(aPayloadBuf.Length()+(aArray[i].Length()*10));
1251 aPayloadBuf.Append(aArray[i]);
1252 if(i < aArray.Count()-1) //skip last sparator as it will be added automatically
1254 aPayloadBuf.Append(DATA_SEPARATOR);
1260 void CULoggerServer::PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TUint32>& aArray)
1262 aPayloadBuf.CreateL(aArray.Count()*4);
1263 for(TInt i=0; i<aArray.Count(); i++)
1267 if(aPayloadBuf.MaxSize() < aPayloadBuf.Length()+b.Length())
1269 aPayloadBuf.ReAllocL(aPayloadBuf.Length()+(b.Length()*10));
1271 aPayloadBuf.Append(b);
1272 if(i < aArray.Count()-1) //skip last sparator as it will be added automatically
1274 aPayloadBuf.Append(DATA_SEPARATOR);
1280 TInt CULoggerServer::RestartOutputting()
1283 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1284 __MARK_METHOD("CULoggerServer::ForceRefreshSettingsL")
1286 if(iBtraceOpen != EFalse)
1289 iBtraceOpen = EFalse;
1294 iDataWatcher->Cancel();
1295 delete iDataWatcher;
1296 iDataWatcher = NULL;
1298 if(iOutputFramework)
1300 delete iOutputFramework;
1301 iOutputFramework = NULL;
1305 delete iInputFramework;
1306 iInputFramework = NULL;
1308 if(iPluginAllocator)
1310 delete iPluginAllocator;
1311 iPluginAllocator = NULL;
1315 iConfigManager->RefreshConfigFiles();
1318 err = Start(); //always start
1323 TInt CULoggerServer::ResetBtracePrimaryFilters(RBTrace &aBTrace)
1325 for(TUint i=0; i<256; i++)
1326 aBTrace.SetFilter(i, EFalse);
1327 aBTrace.SetFilter2(0);
1331 //This bit should be part of the input framework, or it should reuse the other methods better
1332 ControlData* CULoggerServer::ProcessCommandL(TCommand aOpCode, RArray<TPtrC8> &aArguments)
1334 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1335 __MARK_METHOD("CULoggerServer::ProcessCommand")
1338 TInt errCode = KErrNone;
1340 CInputData *inputData = new (ELeave) CInputData(minSize);
1341 ControlData* data = NULL;
1350 errCode = this->Start();
1352 errCode = KErrInUse;
1353 result.Num(errCode);
1354 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1360 //ulogger shouldn't be restarted here as we must send acknowledgment back to PC
1361 //Stop will be done in DoPostProcessing method after sending ack.
1362 result.Num(errCode);
1363 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1367 case ESetPrimaryFilter:
1369 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1370 __LOG("ESetPrimaryFilter")
1373 RArray<TUint32> filterArray;
1376 //process parameters
1378 for(i=0; i<aArguments.Count(); i++)
1381 TLex8 lex(aArguments[i]);
1382 if((errCode=lex.Val(val, EDecimal)) != KErrNone)
1384 //report bad values, don't set anything
1385 if(errCode == KErrGeneral)
1386 errCode = KErrArgument;
1387 result.Num(errCode);
1388 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1390 payloadBuf.Create(128);
1391 payloadBuf.Copy(aArguments[i]);
1392 inputData->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1394 filterArray.Close();
1397 filterArray.AppendL(val);
1400 if(errCode == KErrNone)
1402 errCode = SetActiveFilterL(filterArray, EPrimaryFilter);
1403 result.Num(errCode);
1405 //create acknowledment
1406 result.Num(errCode);
1407 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1409 //create string as a payload
1411 payloadBuf.CreateL(dupfilterArray.Count()*4);
1412 for(i=0; i<dupfilterArray.Count(); i++)
1415 b.Num(dupfilterArray[i]);
1416 if(payloadBuf.MaxSize() < payloadBuf.Length()+b.Length())
1417 payloadBuf.ReAllocL(payloadBuf.Length()+(b.Length()*10));
1418 payloadBuf.Append(b);
1419 if(i < dupfilterArray.Count()-1) //skip last sparator as it will be added automatically
1420 payloadBuf.Append(DATA_SEPARATOR);
1422 if(payloadBuf.Length() > 0)
1423 inputData->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1425 filterArray.Close();
1428 break; //ESetPrimaryFilter
1430 case ESetSecondaryFilter:
1432 RArray<TUint32> filterArray;
1433 //process parameters
1435 for(i=0; i<aArguments.Count(); i++)
1438 TLex8 lex(aArguments[i]);
1439 if((errCode=lex.Val(val,EDecimal)) != KErrNone)
1441 //report bad values, don't set anything
1442 if(errCode == KErrGeneral)
1443 errCode = KErrArgument;
1444 result.Num(errCode);
1445 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1447 payloadBuf.CreateL(128);
1448 payloadBuf.Copy(aArguments[i]);
1449 man->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1451 filterArray.Close();
1454 filterArray.AppendL(val);
1456 if(errCode != KErrNone)
1460 errCode = SetActiveFilterL(filterArray, ESecondaryFilter);
1461 result.Num(errCode);
1462 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1464 filterArray.Close();
1466 break; //ESetSecondaryFilter
1468 case EEnableSecondaryFiltering:
1470 errCode = SetSecondaryFiltering(KEnable);
1471 result.Num(errCode);
1472 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1476 case EDisableSecondaryFiltering:
1478 errCode = SetSecondaryFiltering(KDisable);
1479 result.Num(errCode);
1480 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1484 case EResizeTraceBuffer:
1486 if(aArguments.Count() > 0)
1489 TLex8 lex(aArguments[0]);
1490 if((errCode = lex.Val(bufSize)) == KErrNone)
1491 errCode = SetBufferSizeL(bufSize);
1494 errCode = KErrArgument;
1496 result.Num(errCode);
1497 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1501 case ESetBufferMode:
1503 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1504 __LOG("ESetBufferMode")
1507 if(aArguments.Count() > 0)
1509 if(aArguments[0].Compare(KCircular)==0)
1510 errCode = SetBufferMode(KCircular);
1511 else if(aArguments[0].Compare(KStraight)==0)
1512 errCode = SetBufferMode(KStraight);
1514 errCode = KErrArgument;
1517 errCode = KErrArgument;
1519 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1524 result.Num(errCode);
1525 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1529 case ESetDataNotificationSize:
1531 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1532 __LOG("ESetDataNotificationSize")
1535 if(aArguments.Count() > 0)
1538 TLex8 lex(aArguments[0]);
1539 if((errCode = lex.Val(dns)) == KErrNone)
1540 errCode = SetDataNotificationSizeL(dns);
1542 errCode = KErrArgument;
1545 errCode = KErrArgument;
1547 result.Num(errCode);
1548 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1552 case ERemovePluginSettings:
1554 if(aArguments.Count() > 0)
1555 errCode = RemovePluginSettingsL(aArguments[0]);
1557 errCode = KErrArgument;
1558 result.Num(errCode);
1559 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1563 case EGetInstalledPlugins:
1565 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1566 __LOG("EGetInstalledOutputPlugins")
1569 RArray<TPtrC8> tmpArray;
1570 errCode = GetInstalledOutputPlugins(tmpArray);
1571 result.Num(errCode);
1572 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1574 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1575 for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
1579 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1580 //add playload in control data chunk
1581 if(payloadBuf.Length() > 0)
1582 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1584 break; //EGetInstalledOutputPlugins
1586 case EGetActivePlugin: //output
1588 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1589 __LOG("EGetActivePlugin")
1592 RArray<TPtrC8> tmpArray;
1593 errCode = GetActiveOutputPlugin(tmpArray);
1594 result.Num(errCode);
1595 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1597 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1598 for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
1602 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1603 //add playload in control data chunk
1604 if(payloadBuf.Length() > 0)
1605 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1607 break; //EGetActivePlugin
1609 case EGetPluginSettings:
1611 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1612 __LOG("EGetPluginSettings")
1614 RArray<TPtrC8> tmpArray;
1615 if(aArguments.Count() > 0)
1617 errCode = GetOptionsSettingsL(aArguments[0],tmpArray);
1619 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1620 for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
1624 errCode = KErrArgument;
1626 result.Num(errCode);
1627 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1629 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1630 //add playload in control data chunk
1631 if(payloadBuf.Length() > 0)
1632 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1634 break; //EGetPluginSettings
1636 case EGetPrimaryFilters:
1638 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1639 __LOG("EGetPluginSettings")
1642 RArray<TUint32> tmpArray;
1643 errCode = GetActiveFilters(tmpArray,EPrimaryFilter);
1645 result.Num(errCode);
1646 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1648 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1649 for(TInt p=0; p<tmpArray.Count(); p++) __LOGNUM(tmpArray[p])
1653 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1655 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1656 __LOG("EGetPluginSettings - test 1")
1660 if(payloadBuf.Length() > 0)
1661 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1664 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1665 __LOG("EGetPluginSettings - test 2")
1668 break; //EGetPrimaryFilters
1670 case EGetSecondaryFilters:
1672 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1673 __LOG("EGetSecondaryFilters")
1676 TBool skipReadingFilters = EFalse;
1677 RArray<TPtrC8> tmpArrayTxt;
1678 TBool enabled = EFalse;
1679 errCode = errCode = this->GetSecondaryFiltering(enabled);
1680 if(errCode == KErrNone)
1682 if(EFalse == enabled)
1684 result.Num(errCode);
1685 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1686 skipReadingFilters = ETrue;
1688 PrepareControlDataPayloadL(payloadBuf, tmpArrayTxt);
1689 if(payloadBuf.Length() > 0)
1690 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1694 RArray<TUint32> tmpArray;
1695 if(!skipReadingFilters)
1697 errCode = this->GetActiveFilters(tmpArray,ESecondaryFilter);
1698 result.Num(errCode);
1699 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1701 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1702 if(payloadBuf.Length() > 0)
1703 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1706 tmpArrayTxt.Close();
1709 break; //EGetSecondaryFilters
1711 case EGetSecondaryFiltering:
1713 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1714 __LOG("EGetSecondaryFiltering")
1717 TBool enabled = EFalse;
1718 errCode = GetSecondaryFiltering(enabled);
1719 if(errCode == KErrNone)
1721 result.Num(errCode);
1722 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1727 inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
1731 result.Num(errCode);
1732 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1735 break; //EGetSecondaryFiltering
1737 //this functionality is removed now
1739 case ESetSecondaryFilterCurrent:
1741 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1742 __LOG("ESetSecondaryFilterCurrent")
1745 errCode = this->SetSecondaryFiltering(KCurrent);
1746 result.Num(errCode);
1747 ack = man->CreatePackage((void*)result.Ptr(), result.Length());
1749 break; //ESetSecondaryFilterCurrent
1751 case EGetTraceBufferSize:
1753 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1754 __LOG("EGetTraceBufferSize")
1757 TInt bufferSize = 0;
1758 errCode = GetBufandDataNotifyValuesL(KBuffer,bufferSize);
1759 if(errCode == KErrNone)
1761 result.Num(errCode);
1762 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1765 inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
1769 result.Num(errCode);
1770 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1773 break; //EGetTraceBufferSize
1775 case EGetBufferMode:
1777 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1778 __LOG("EGetBufferMode")
1781 TInt bufferMode = 3;
1782 errCode = GetBufandDataNotifyValuesL(KBufferMode,bufferMode);
1783 if(errCode == KErrNone)
1785 result.Num(errCode);
1786 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1790 result.Append(KCircular);
1791 else if(bufferMode == 1)
1792 result.Append(KStraight);
1794 result.Append(_L8("Invalid mode"));
1796 inputData->AppendNewData(data, (const void*)result.Ptr(), result.Length());
1800 result.Num(errCode);
1801 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1804 break; //EGetBufferMode
1806 case EGetDataNotificationSize:
1808 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1809 __LOG("EGetDataNotificationSize")
1812 TInt dataNotification = 0;
1813 errCode = GetBufandDataNotifyValuesL(KDataNotification,dataNotification);
1814 if(errCode == KErrNone)
1816 result.Num(errCode);
1817 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1819 b.Num(dataNotification);
1820 inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
1824 result.Num(errCode);
1825 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1828 break; //EGetDataNotificationSize
1830 case ERemovePrimaryFilter:
1832 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1833 __LOG("ERemovePrimaryFilter")
1834 for(TInt k=0; k<aArguments.Count(); k++)
1836 __LOGBUF(aArguments[k])
1840 if(aArguments.Count() > 0)
1842 RArray<TUint32> filterArray;
1843 for(TInt i=0; i<aArguments.Count(); i++)
1846 TLex8 lex(aArguments[i]);
1847 if(lex.Val(val, EDecimal) == KErrNone)
1848 filterArray.AppendL(val);
1850 errCode = RemoveActiveFilter(filterArray,EPrimaryFilter);
1851 filterArray.Close();
1854 errCode = KErrArgument;
1856 result.Num(errCode);
1857 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1859 break; //ERemovePrimaryFilter
1861 case ERemoveSecondaryFilter:
1863 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1864 __LOG("EDisableMultipleModuleUids")
1865 for(TInt k=0; k<aArguments.Count(); k++)
1867 __LOGBUF(aArguments[k])
1871 if(aArguments.Count() > 0)
1873 RArray<TUint32> filterArray;
1874 for(TInt i=0; i<aArguments.Count(); i++)
1877 TLex8 lex(aArguments[i]);
1878 if(lex.Val(val, EDecimal) == KErrNone)
1879 filterArray.AppendL(val);
1881 errCode = RemoveActiveFilter(filterArray,ESecondaryFilter);
1882 filterArray.Close();
1885 errCode = KErrArgument;
1887 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1892 result.Num(errCode);
1893 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1895 break; //ERemoveSecondaryFilter
1897 case ESetPluginSettings:
1899 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1900 __LOG("ESetPluginSettings")
1903 if(aArguments.Count() > 2)
1906 plugin.Copy(aArguments[0]);
1907 aArguments.Remove(0);
1908 errCode = SetPluginSettings(plugin, aArguments);
1911 errCode = KErrArgument;
1913 result.Num(errCode);
1914 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1916 break; //ESetChannelSettings
1918 case ESetActivePlugin:
1920 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1921 __LOG("ESetActiveOutputPlugin")
1924 if(aArguments.Count() > 0)
1925 errCode = SetActiveOutputPlugin(aArguments[0]);
1927 errCode = KErrArgument;
1929 result.Num(errCode);
1930 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1932 break; //ESetActiveOutputPlugin
1934 case ESetActiveInputPlugin:
1936 if(aArguments.Count() > 0)
1937 errCode = SetActiveInputPlugin(aArguments[0]);
1939 errCode = KErrArgument;
1941 result.Num(errCode);
1942 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1946 case EDeactivateInputPlugin:
1948 if(aArguments.Count() > 0)
1949 errCode = DeActivateInputPlugin(aArguments[0]);
1951 errCode = KErrArgument;
1953 result.Num(errCode);
1954 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1958 case EGetActiveInputPlugin:
1960 RArray<TPtrC8> tmpArray;
1961 errCode = GetActiveInputPlugin(tmpArray);
1962 result.Num(errCode);
1964 //remove ini specific data (number)
1965 //example (1 uloggerusbplugin) must look like (uloggerusbplugin)
1967 while(i<tmpArray.Count())
1970 TLex8 l(tmpArray[i]);
1971 if(l.Val(v) == KErrNone)
1977 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1978 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1979 if(payloadBuf.Length() > 0)
1980 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
1985 case EGetInputPlugins:
1987 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
1988 __LOG("EGetControlPlugins")
1991 RArray<TPtrC8> tmpArray;
1992 errCode = GetInstalledInputPluginsL(tmpArray);
1994 result.Num(errCode);
1995 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
1998 PrepareControlDataPayloadL(payloadBuf, tmpArray);
1999 //add playload to control data chunk
2000 if(payloadBuf.Length() > 0)
2001 inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
2008 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
2009 __LOG("ERestartOutputting")
2012 //ulogger shouldn't be restarted here as we must send acknowledgment back to PC
2013 //restart will be done in DoPostProcessing method after sending ack.
2014 result.Num(errCode);
2015 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
2020 #if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
2021 __LOG("input command not supported")
2024 result.Num(KErrNotSupported);
2025 data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
2043 void CULoggerServer::DoPostProcessing(TCommand aCmd)
2051 RestartOutputting();
2059 This function checks if array of given names contains any of real plugin names (either output of input).
2060 After call aPluginList will be filtered to contain only proper plugin names (strings that really could be used
2061 to refer to a real plugin.
2062 @param aFilter Either EOutputPluginFilter or EInputPluginFilter.
2063 @param aPluginList Reference to an array which contain list of names that function has to check.
2065 void CULoggerServer::FilterPlugins(TPluginFilter aFilter, RArray<TPtrC8>& aPluginList)
2068 CPlugin::TPluginInterface interfaceId;
2069 //assign filter value
2070 interfaceId = (aFilter == EOutputPluginFilter ? MOutputPlugin::iInterfaceId : MInputPlugin::iInterfaceId);
2074 while(i<aPluginList.Count())
2076 CPlugin *plugin = NULL;
2077 TRAP(errCode, plugin=CPlugin::NewL(aPluginList[i]));
2078 if(plugin && errCode==KErrNone)
2081 TRAP(errCode, ptr=plugin->GetInterfaceL(interfaceId));
2082 if(!ptr || errCode!=KErrNone)
2084 aPluginList.Remove(i--);
2099 TBool CULoggerServer::ServerState()
2105 TBool CULoggerServer::CheckPluginExists(TPtrC8& aPluginName, TPluginFilter aPluginFilter)
2107 RArray<TPtrC8> pluginsArray;
2108 if(aPluginFilter == EOutputPluginFilter)
2109 GetInstalledOutputPlugins(pluginsArray);
2110 else if(aPluginFilter == EInputPluginFilter)
2111 GetInstalledInputPluginsL(pluginsArray);
2113 for(TInt i=0; i<pluginsArray.Count(); ++i)
2114 if(aPluginName.Compare(pluginsArray[i])==0)
2116 pluginsArray.Close();
2120 pluginsArray.Close();
2127 #ifndef __ULOGGER_SERVER_UNIT_TEST
2131 return Ulogger::CULoggerServer::StartServer();
2133 #endif //__ULOGGER_SERVER_UNIT_TEST