os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32const.h>
    17 #include <e32btrace.h>
    18 #include <f32file.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"
    27 
    28 #if defined(__LIGHTLOGGER_ENABLED)
    29 #include "lightlogger.h" 
    30 #endif
    31 
    32 
    33 namespace Ulogger {
    34 
    35 
    36 /*Default constructor*/
    37 CULoggerServer::CULoggerServer(TInt aPriority)
    38 : CServer2( aPriority )
    39 
    40 {
    41 	iIsBooting = ETrue;
    42 	iConfigManager = NULL;
    43 	iDataWatcher = NULL;
    44 	iOutputFramework = NULL;
    45 	iInputFramework = NULL;
    46 	iPluginAllocator = NULL;
    47 }
    48 
    49 
    50 /** Destructor will be called before re-starting
    51 */
    52 CULoggerServer::~CULoggerServer()
    53 {
    54 	delete iConfigManager;
    55 	delete iOutputFramework;
    56 	delete iInputFramework;
    57 	delete iPluginAllocator;
    58 	iPluginArray.ResetAndDestroy();
    59 	iPluginArray.Close();
    60     if(iDataWatcher)
    61     	{
    62     	iDataWatcher->Cancel();
    63     	delete iDataWatcher; 
    64     	}
    65 }
    66 
    67 /** Static Factory Construction 
    68 @return a pointer to the created object
    69 @leave KErrNoMemory if not enough memory available
    70 */
    71 CULoggerServer* CULoggerServer::NewLC(TInt aPriority)
    72 {
    73 	CULoggerServer* self = new (ELeave) CULoggerServer( aPriority );
    74 	CleanupStack::PushL( self );
    75 	self->ConstructL();
    76 
    77 	return self;
    78 }
    79 
    80 /**
    81 Create and install new Framework & Active Scheduler
    82 */
    83 void CULoggerServer::ConstructL()
    84 {
    85 	iRunAsService = EFalse; // Not used yet, to be used for run-as-service functionality
    86 	iBufferSize = KMaxBufferSize;
    87 	iBtraceOpen = EFalse;
    88 	iDataNotification = 0;
    89 
    90 	StartL( KServerName );	
    91 	iConfigManager = CConfigFileManager::NewL();
    92 
    93 }
    94 
    95 
    96 /**
    97 Create a new server session. 
    98 @note Called by kernel after client's thread use any of the macros for the first time.
    99 */
   100 CSession2* CULoggerServer::NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const
   101 {
   102  	TVersion v(KULoggerSrvMajorVersionNumber,KULoggerSrvMinorVersionNumber,KULoggerSrvBuildVersionNumber);
   103     if (!User::QueryVersionSupported(v,aVersion))
   104          User::Leave(KErrNotSupported);
   105 
   106 	RThread client;
   107 	aMessage.Client(client);
   108 	return CULoggerSession::NewL( client, *const_cast<CULoggerServer*>(this) );
   109 }
   110 
   111 
   112 /*Increment session counter*/
   113 void CULoggerServer::IncrementSessions()
   114 {	
   115 	++iSessionCounter;
   116 }
   117 
   118 /*Decrement session counter*/
   119 void CULoggerServer::DecrementSessions()
   120 	{
   121 	if(--iSessionCounter <= 0)
   122 		{
   123 		if (!iBtraceOpen)
   124 			ShutDownServer();
   125 
   126 //
   127 // // Replace above if-statement with following to implement run-as-service functionality
   128 //
   129 //		if((!iBtraceOpen) && (!iRunAsService))
   130 //			ShutDownServer();
   131 //
   132 
   133 		}
   134 	}
   135 
   136 /*!
   137 Shuts down the server
   138 */
   139 void CULoggerServer::ShutDownServer()
   140 {
   141 	CActiveScheduler::Stop();
   142 }//</ShutDownServer>
   143 
   144 
   145 
   146 
   147 /*!
   148 Return the error value
   149 */
   150 TInt CULoggerServer::RunError(TInt aError)
   151 {
   152 	Message().Complete(aError);
   153 	ReStart();
   154 
   155 	return KErrNone;
   156 }
   157 
   158 
   159 
   160 
   161 void CULoggerServer::PanicServer(TULoggerSrvPanics aPanic)
   162 {
   163 	User::Panic(KServerName, aPanic);
   164 }//</PanicServer>
   165 
   166 
   167 
   168 /*!
   169 */
   170 void CULoggerServer::PanicClient(const RMessage2& aMessage, TULoggerSrvPanics aPanic)
   171 {
   172 	aMessage.Panic( KServerName, aPanic );
   173 }//</PanicClient>
   174 
   175 
   176 
   177 
   178 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
   179 /**
   180 ServerL
   181 @Installs the active scheduler
   182 @Opens the semaphore
   183 */
   184 TInt CULoggerServer::StartServerL()
   185 {
   186 	#if defined(__LIGHTLOGGER_ENABLED)
   187 	__CREATE_LOG(EFalse)
   188 	__HIRES_RESOLUTION
   189 	#endif	
   190 	
   191     CActiveScheduler* activeScheduler = new (ELeave) CActiveScheduler();
   192     CleanupStack::PushL(activeScheduler) ;
   193     CActiveScheduler::Install(activeScheduler);
   194     CULoggerServer* server = NULL;
   195 	TInt servererr = KErrNone;
   196 	TRAP(servererr,
   197 		{
   198 		server = CULoggerServer::NewLC((TProcessPriority)EPriorityHigh);
   199 		CleanupStack::Pop();
   200 		});
   201 	
   202 	if(servererr==KErrNone||servererr==KErrNotFound )
   203 		{
   204 		RProcess::Rendezvous(KErrNone);
   205 		servererr=KErrNone;
   206 		CActiveScheduler::Start();
   207 		}
   208 	else
   209 		{
   210 		RProcess::Rendezvous(servererr);		
   211 		}
   212 	delete server;
   213    	CleanupStack::PopAndDestroy();
   214 	return servererr;
   215 	
   216 }//</StartingFunctionL>
   217 
   218 
   219 /**
   220 Function to to start the server 
   221 This should leave with KErrNone 
   222 */
   223 TInt CULoggerServer::StartServer()
   224 {
   225 	CTrapCleanup* cleanupStack = CTrapCleanup::New();
   226 	if (!cleanupStack)
   227 	{
   228         	return KErrNoMemory;
   229 	}
   230 	TInt err;
   231     TRAP(err, StartServerL());
   232    
   233     delete cleanupStack;
   234     cleanupStack = NULL;
   235 
   236     return err;
   237 }//</StartingFunction>
   238 
   239 
   240 /**
   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
   244 */
   245 
   246 TInt CULoggerServer::SetActiveOutputPlugin(const TDesC8 &aPluginname)
   247 {
   248 	RArray<TPtrC8> activePluginsArray;
   249 	TInt error= KErrNone;
   250 
   251 	error = GetInstalledOutputPlugins(activePluginsArray);
   252 	if(error==KErrNone)
   253 		{
   254 		for(TInt i=0;i<activePluginsArray.Count();i++)
   255 			{
   256 			if(aPluginname.Compare(activePluginsArray[i])==0)
   257 				{
   258 				error = iConfigManager->SetActiveOutputPlugin(aPluginname);
   259 				break;
   260 				}	
   261 			else 
   262 				error = KErrNotFound;
   263 			}
   264 		}
   265 	if(error == KErrAlreadyExists)
   266 		{
   267 		error=KErrNone;
   268 		}
   269 	return error;
   270 }
   271 
   272 
   273 TInt CULoggerServer::SetActiveInputPlugin(const TDesC8 &aPluginname)
   274 	{
   275 	RArray<TPtrC8> activePluginsArray;
   276 	TInt ret= KErrNone;
   277 	//check configuration file in user path (\\ulogger\\uloggerconfig.ini)	
   278 
   279 	ret = GetInstalledInputPluginsL(activePluginsArray);
   280 	if(ret==KErrNone)
   281 		{
   282 		ret = KErrNotFound;
   283 		for(TInt i=0;i<activePluginsArray.Count();i++)
   284 			{
   285 			if(aPluginname.Compare(activePluginsArray[i])==0)
   286 				{
   287 				ret = iConfigManager->SetActiveInputPlugin(aPluginname);
   288 				break;	
   289 				}
   290 			}
   291 		}
   292 	return ret;
   293 	}
   294 
   295 
   296 /**
   297 Function to set the plugin settings
   298 This should leave with KErrNotFound if cannot file doesn't exist
   299 */
   300 TInt CULoggerServer::SetPluginSettings(const TDesC8 &aPluginname, RArray<TPtrC8>& aListBuffer)
   301 {	
   302 	TInt i = 0;
   303 	TInt ret=KErrNone;
   304 
   305 	//if plug-in doesn't exists
   306 	TPtrC8 pluginName(aPluginname);
   307 	if(!CheckPluginExists(pluginName, EOutputPluginFilter) && !CheckPluginExists(pluginName, EInputPluginFilter))
   308 		return KErrNotFound;
   309 	
   310 	while(i<aListBuffer.Count())
   311 		{
   312 		TPtrC8 key(aListBuffer[i]);
   313 		TPtrC8 val(aListBuffer[++i]);
   314 		ret = iConfigManager->SetPluginSetting(aPluginname, key, val);
   315 		if(ret!=KErrNone)
   316 			break;
   317 		i++;		
   318 		}					
   319 	return ret;
   320 }
   321 
   322 
   323 
   324 
   325 /**
   326 Function to get the plugin settings
   327 This should leave with KErrNotFound if cannot find one
   328 */
   329 TInt CULoggerServer::GetOptionsSettingsL(const TDesC8 &aMediaName, RArray<TPtrC8>& aListBuffer)
   330 {
   331 	//if plug-in doesn't exists
   332 	TPtrC8 pluginName(aMediaName);
   333 	if(!CheckPluginExists(pluginName, EOutputPluginFilter) && !CheckPluginExists(pluginName, EInputPluginFilter))
   334 		return KErrNotFound;
   335 	else
   336 		{
   337 		TInt ret = GetValuesL(aMediaName,aListBuffer);
   338 		if(ret == KErrNotFound) //this error indicate that there is no section in config file, plug-in exists
   339 			ret = KErrNone;
   340 		return ret;
   341 		}
   342 }
   343 
   344 
   345 
   346 /**
   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
   349 */
   350 TInt CULoggerServer::GetValuesL(const TDesC8 &aSectionName, RArray<TPtrC8>& aListBuffer)
   351 {	
   352 	TPtrC8 key;
   353 	TPtrC8 val;
   354 	TInt err = KErrNotFound;	
   355 
   356 	Ulogger::CConfigSettingsIter* iter = Ulogger::CConfigSettingsIter::NewL();
   357 	CleanupStack::PushL(iter);
   358 	
   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);
   363 	if(err == KErrNone)
   364 		{
   365 		TBool found =EFalse;
   366 		while(iter->Next(key,val))
   367 			{
   368 			aListBuffer.AppendL(key);
   369 			aListBuffer.AppendL(val);
   370 			found = ETrue;
   371 			}
   372 		if(!found)
   373 			err = KErrNotFound;
   374 		}
   375 	CleanupStack::PopAndDestroy(); // list
   376 	return err;
   377 	
   378 }
   379 
   380 
   381 /**
   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
   387         error codes.
   388 */
   389 TInt CULoggerServer::SetActiveFilterL(RArray<TUint32> aCategory, TInt aFilterType)
   390 {
   391 	TInt error = KErrNone;
   392 	if(aFilterType == 1)
   393 		{
   394 		if(aCategory.Count()==0 || aCategory.Count()>KMaxPrimaryFiltersLimit)
   395 			error = KErrArgument;
   396 		else
   397 			{
   398 			error = iConfigManager->SetActiveFilter(aCategory,KPrimaryFilterSection);
   399 			if(error == KErrAlreadyExists)
   400 				error = KErrNone;
   401 			}
   402 		}
   403 	if(aFilterType == 2)
   404 		{
   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)
   410 			{
   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;
   415 				
   416 			}
   417 		CleanupStack::PopAndDestroy(); //tmpArray
   418 		if(!error)
   419 			error = iConfigManager->SetActiveFilter(aCategory,KSecondaryFilterSection);
   420 		}
   421 	return error;
   422 }
   423 	
   424 
   425 /**
   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
   430 */
   431 TInt CULoggerServer::RemoveActiveFilter(RArray<TUint32>& aValue, const TInt aFilter)
   432 {
   433 	TInt ret = KErrNone;
   434 	//remove filter (primary or secondary) from BTrace current configuration
   435 	if(aFilter == EPrimaryFilter && (aValue.Count()==0 || aValue.Count()>KMaxPrimaryFiltersLimit))
   436 		return KErrArgument;
   437 	else if(aFilter == ESecondaryFilter && (aValue.Count()==0 || aValue.Count()>KMaxSecondaryFiltersLimit))
   438 		return KErrArgument;
   439 		
   440 	ret = iConfigManager->RemoveActiveFilter(aValue,aFilter);
   441 	if(ret == KErrNotFound) //remove operation should succeed in this situation
   442 		ret = KErrNone;
   443 		
   444 	return ret;
   445 }
   446 
   447 
   448 /**
   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
   453 */
   454 TInt CULoggerServer::SetTraceSettings(const TDesC8&  aValue, const TDesC8& aSetting)
   455 	{
   456 	TInt r = iConfigManager->SetTraceSettings(aValue, aSetting);
   457 	return r;
   458 
   459 	}
   460 
   461 /**
   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 
   466 */
   467 
   468 TInt CULoggerServer::RemovePluginSettingsL(const TDesC8 &aPluginName)
   469 	{
   470 	if(aPluginName.Length() == 0)
   471 		return KErrArgument;
   472 	
   473 	TInt ret = KErrNone;
   474 	RArray<TPtrC8> settings;
   475 	ret = GetOptionsSettingsL(aPluginName, settings);
   476 	if(ret != KErrNone || settings.Count()==0)
   477 		ret = KErrNotFound;
   478 	settings.Close();
   479 		
   480 	if(ret == KErrNone)
   481 		return iConfigManager->RemovePluginSettings(aPluginName);
   482 	else
   483 		return ret;
   484 	}
   485 
   486 /**
   487 Resize the BTrace buffer size
   488 
   489 @aSize The size to be set for the BTrace buffer.
   490 @return KErrNone, if successful, otherwise one of the other system-wide
   491         error codes.
   492 */
   493 TInt CULoggerServer::SetBufferSizeL(TInt aSize)
   494 	{
   495 	if(aSize > KMaxBufferSize || aSize < 1)
   496 		return KErrArgument;
   497 
   498 	
   499 	//get dns to check
   500 	GetBufandDataNotifyValuesL(KDataNotification,iDataNotification);
   501 	if(aSize < iDataNotification)
   502 		return KErrGeneral;
   503 	
   504 	iBufferSize = aSize;
   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);
   510 	return r;
   511 	}
   512 
   513 
   514 /**
   515 Change the mode of the BTrace Buffer
   516 
   517 @aValue The mode to be set for the BTrace buffer.
   518 @return KErrNone, if successful, otherwise one of the other system-wide
   519         error codes.
   520 */
   521 TInt CULoggerServer::SetBufferMode(const TDesC8& aValue)
   522 	{
   523 	
   524 	TInt r = SetTraceSettings(aValue, KBufferMode);
   525 	return r;
   526 	}
   527 
   528 /**
   529 Resize the Data Notification size
   530 
   531 @aSize The size to be set for the Data Notification size.
   532 @return KErrNone, if successful, otherwise one of the other system-wide
   533         error codes.
   534 */
   535 TInt CULoggerServer::SetDataNotificationSizeL(TInt aSize)
   536 	{
   537 	if(aSize > KMaxDnsSize || aSize < 0)
   538 		return KErrArgument;
   539 	TInt size, r;
   540 	TRAP_IGNORE((r=GetBufandDataNotifyValuesL(KBuffer,size)));
   541 	if(aSize > size)
   542 		return KErrGeneral;
   543 	
   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();
   550 	return r;
   551 	}
   552 	
   553 /**
   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
   557 */
   558 void CULoggerServer::GetOptionsSettingsL(RArray<TPtrC8>& aListBuffer,const TDesC8& aSetting)
   559 {
   560 	TPtrC8 key;
   561 	TPtrC8 val;	
   562 	TInt err=0;
   563 	
   564 	Ulogger::CConfigSettingsIter* iter = Ulogger::CConfigSettingsIter::NewL();
   565 	CleanupStack::PushL(iter);
   566 	err=iConfigManager->GetPluginSettings(*iter);
   567 	
   568 	if(err==KErrNone)
   569 		{
   570 		while(iter->Next(key,val))
   571 			{
   572 			if(key.Compare(aSetting)==0)
   573 				{
   574 				aListBuffer.AppendL(key);
   575 				aListBuffer.AppendL(val);					
   576 				}
   577 			}
   578 		}
   579 	CleanupStack::PopAndDestroy(); // list
   580 }
   581 
   582 /**
   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
   586 */
   587 TInt CULoggerServer::GetBufandDataNotifyValuesL(const TDesC8& aSetting,TInt& value)
   588 	{
   589 	TInt err = KErrNotFound;
   590 	RArray<TPtrC8> traceValues;
   591 	TFileName filepath;
   592 	
   593 	GetOptionsSettingsL(traceValues,aSetting);
   594 		
   595 	value =-1;
   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)	
   600 			{
   601 			err=KErrNone;
   602 			if(traceValues[1].Compare(KCircular) == 0)
   603 				value = ECircularBuffer;
   604 			else if(traceValues[1].Compare(KStraight) == 0)
   605 				value = EStraightBuffer;
   606 			else
   607 				err=KErrNotFound;
   608 			}
   609 		else
   610 			{// get values for data notification and buffer size
   611 			TLex8 lex_val(traceValues[1]);	
   612 			err = lex_val.Val(value);
   613 			}
   614 		}
   615 	return err;
   616 	}
   617 	
   618 
   619 
   620 /**
   621 Set the enable/disable secondary filters
   622 
   623 @aSize The size to be set for the BTrace buffer.
   624 @return KErrNone, if successful, otherwise one of the other system-wide
   625         error codes.
   626 */
   627 TInt CULoggerServer::SetSecondaryFiltering(const TDesC8& aEnabled)
   628 	{
   629 	TInt error = iConfigManager->SetTraceSettings(aEnabled, KSecondaryGlobalFilter);
   630 	if(error == KErrAlreadyExists)
   631 		error = KErrNone;
   632 	return error;
   633 
   634 	}	
   635 
   636 
   637 /**
   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
   640 */
   641 TInt CULoggerServer::GetActiveFilters(RArray<TUint32>& aListBuffer,TInt aFilterType)
   642 	{
   643 	TInt ret = KErrNotFound;
   644 	RArray<TPtrC8> aValues;
   645 	if(aFilterType == 1)
   646 		{
   647 		TRAPD(err, ret = GetValuesL(KPrimaryFilterSection,aValues));
   648 		if (err != KErrNone)
   649 			{
   650 			return err;
   651 			}
   652 		
   653 		if(ret==KErrNone)	
   654 			{
   655 			TInt i =0;
   656 			TPtrC8 val;	
   657 			TUint8 int_val;
   658 			while(i<aValues.Count())
   659 				{
   660 				TLex8 lex_val(aValues[++i]);	
   661 				ret = lex_val.Val(int_val,EDecimal);	
   662 				if(ret == KErrNone)
   663 					{
   664 					ret = aListBuffer.Append(int_val);
   665 					if (ret != KErrNone)
   666 						{
   667 						return ret;
   668 						}
   669 					}
   670 				else
   671 					{
   672 					return KErrCorrupt;
   673 					}
   674 				i++;		
   675 				}					
   676 			}
   677 		}
   678 	else if(aFilterType == 2)
   679 		{
   680 		TRAPD(err, ret = GetValuesL(KSecondaryFilterSection,aValues));
   681 		if (err != KErrNone)
   682 			{
   683 			return err;
   684 			}
   685 		if(ret==KErrNone)	
   686 			{
   687 			TInt i =0;
   688 			TPtrC8 val;	
   689 			TUint int_val;
   690 			while(i<aValues.Count())
   691 				{
   692 				TLex8 lex_val(aValues[++i]);	
   693 				ret = lex_val.Val(int_val,EDecimal);	
   694 				if(ret == KErrNone)
   695 					{
   696 					ret = aListBuffer.Append(int_val);
   697 					if (ret != KErrNone)
   698 						{
   699 						return ret;
   700 						}
   701 					}
   702 				else
   703 					{
   704 					return KErrCorrupt;
   705 					}
   706 				i++;		
   707 				}					
   708 			}
   709 		else
   710 			{
   711 			if(ret==KErrNotFound)//i.e. if there are no values in the array --> change to if(filters.Count = 0)?
   712 				{
   713 				ret=KErrNone;
   714 				}
   715 			}
   716 		}
   717 	return ret;
   718 	}
   719 
   720 /**
   721 Function to retrieve the active secondary global filter
   722 This should leave with KErrNotFound if cannot find one
   723 */
   724 
   725 TInt CULoggerServer::GetSecondaryFiltering(TBool& aEnabled)
   726 {
   727 	RArray<TPtrC8> configSettings;			
   728 	TRAPD(error, GetOptionsSettingsL(configSettings,KSecondaryGlobalFilter));
   729 	if(configSettings[1]==KEnable) //First element contains KSecondaryGlobalFilter, second the value
   730 		aEnabled = ETrue;
   731 	if(configSettings[1]==KDisable)
   732 		aEnabled = EFalse;
   733 	return error; 
   734 }
   735 
   736 /**
   737 Function to retrieve the plugin names from the ECOM framework
   738 This should leave with KErrNotFound if cannot find one
   739 */
   740 TInt CULoggerServer::GetInstalledOutputPlugins(RArray<TPtrC8>& aListBuffer)
   741 	{
   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)
   746 	{
   747      iPluginArray.ResetAndDestroy();
   748      iPluginArray.Close();
   749 	}
   750 	
   751 	TRAPD(error,CPluginAllocator::ListAllImplementationsL(iPluginArray));
   752 
   753 	if(iPluginArray.Count()>0)
   754 	{
   755 		for (TInt i=0; i< iPluginArray.Count(); i++)
   756 			{
   757 			TRAP(error,aListBuffer.AppendL(iPluginArray[i]->DataType()));
   758 			}
   759 	
   760 		//filter plugins and to use only output plugins
   761 		FilterPlugins(EOutputPluginFilter, aListBuffer);
   762 	}
   763 	
   764 	return error;
   765 	}
   766 	
   767 
   768 
   769 TInt CULoggerServer::GetInstalledInputPluginsL(RArray<TPtrC8>& aListBuffer)
   770 	{
   771 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
   772 	__MARK_METHOD("CULoggerServer::GetInstalledControlPlugins")
   773 	#endif
   774 	
   775 	if(iPluginArray.Count()>0)
   776 		{
   777 	     iPluginArray.ResetAndDestroy();
   778 	     iPluginArray.Close();
   779 		}
   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);
   784 		
   785 	if(iPluginArray.Count() > 0)
   786 		{	
   787 		for (TInt i=0; i< iPluginArray.Count(); i++)
   788 			aListBuffer.AppendL(iPluginArray[i]->DataType());
   789 		
   790 		//filter plugins and to use only output plugins
   791 		FilterPlugins(EInputPluginFilter, aListBuffer);
   792 		}
   793 	return KErrNone;
   794 	}
   795 
   796 
   797 /**
   798 Function to retrieve the Active plugin name 
   799 This should leave with KErrNotFound if cannot find one or any system wide error codes
   800 */
   801 TInt CULoggerServer::GetActiveOutputPlugin(RArray<TPtrC8>& aListBuffer)
   802 	{
   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)
   807 		{
   808 		TInt v;
   809 		TLex8 lex(aListBuffer[i]);
   810 		if(lex.Val(v) == KErrNone)
   811 			{
   812 			aListBuffer.Remove(i);
   813 			i=-1; //start from begin, i will be incremented in loop
   814 			}
   815 		}
   816 	return errCode;
   817 	}
   818 
   819 
   820 /**
   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
   823 */
   824 
   825 TInt CULoggerServer::DeActivateOutputPlugin(const TDesC8 &aPluginname)
   826 {	
   827 	if(iBtraceOpen != EFalse)
   828 		{
   829 		Stop();
   830 		iBtraceOpen = EFalse;
   831 		}
   832 	
   833 	TInt ret = iConfigManager->DeActivateOutputPlugin(aPluginname);
   834 	return ret;
   835 }
   836 
   837 /**
   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
   840 */
   841 TInt CULoggerServer::GetActiveInputPlugin(RArray<TPtrC8>& aListBuffer)
   842 	{
   843 	return GetValuesL(KActiveControlSection,aListBuffer);
   844 	}
   845 
   846 /**
   847 Function to Deactivate active control plugin 
   848 This should leave with KErrNotFound if cannot find one or any system wide error codes
   849 */
   850 TInt CULoggerServer::DeActivateInputPlugin(const TDesC8& aPluginname)
   851 	{
   852 	return iConfigManager->DeActivateInputPlugin(aPluginname);
   853 	}
   854 
   855 /**
   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).
   859 
   860 @param aRunAsService ETrue to start, EFalse to stop running as service
   861 */
   862 void CULoggerServer::RunAsService(TBool /*aRunAsService*/)
   863 	{
   864 //
   865 // // Uncomment following to implement run-as-service functionality
   866 //
   867 //	iRunAsService = aRunAsService;
   868 //
   869 //	if (!aRunAsService)
   870 //		{
   871 //		//make sure server is stopped if there are no sessions
   872 //		IncrementSessions();
   873 //		DecrementSessions();
   874 //		}
   875 	}
   876 
   877 /**
   878 Function to cd.. ulogger server
   879 This should leave with KErrNotFound if cannot find one or any system wide error codes
   880 */
   881 TInt CULoggerServer::Start()
   882 	{
   883 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
   884 	__MARK_METHOD("CULoggerServer::Start")
   885 	#endif
   886 
   887 	TRAPD(error, InitializeFrameworksL());
   888 	
   889 	//check errors
   890 	if(error != KErrNone)
   891 		return error;
   892 	if(!iOutputFramework)
   893 		return KErrNotReady;
   894 	if(iBtraceOpen)
   895 		return KErrInUse;
   896 
   897 	TPtrC8 key;
   898 	TPtrC8 val;
   899 	TInt buffermode=0;
   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)
   905 		return error;
   906 	if(settings.Count()==0)
   907 		{
   908 		return KErrNotFound; //active output plug-in not found
   909 		}
   910 
   911 	if(iBtraceOpen == EFalse)
   912 		{
   913 		if(iIsBooting)
   914 			error = TraceSettingsOnBootL();
   915 		else
   916 			error = iTrace.Open();
   917 
   918 		if(error == KErrNone)
   919 			{
   920 			//----Reset the notification size
   921 			TRAP_IGNORE(error=GetBufandDataNotifyValuesL(KDataNotification,iDataNotification));
   922 			if(error!=KErrNone)
   923 				return error;
   924 			TRAP_IGNORE(error=GetBufandDataNotifyValuesL(KBuffer,iBufferSize));
   925 			if(error!=KErrNone)
   926 				return error;
   927 
   928 			//----Reset BTrace filters
   929 			ResetBtracePrimaryFilters(iTrace);
   930 
   931 			//----Resize the trace buffer
   932 			error = iTrace.ResizeBuffer(iBufferSize*1024);
   933 			if(error == KErrNoMemory)
   934 			{
   935 				error = iTrace.ResizeBuffer(KMinBufferMTPLE*1024);
   936 			}
   937 			if(error != KErrNone)
   938 				return error;
   939 			//----Reset the buffer mode
   940 			TRAP_IGNORE(GetBufandDataNotifyValuesL(KBufferMode,buffermode));
   941 			if(buffermode==ECircularBuffer)
   942 			{
   943 				iTrace.SetMode(RBTrace::EFreeRunning|RBTrace::EEnable);	
   944 			}
   945 			else
   946 			{
   947 				iTrace.SetMode(RBTrace::EEnable);
   948 			}
   949 		
   950 			//----Enable/disable primary filter
   951 			error = GetActiveFilters(activefilters,EPrimaryFilter);
   952 			if(error != KErrNone)
   953 				return error;
   954 			for(TInt i=0; i<activefilters.Count(); ++i)
   955 				{
   956 				TUint filter;
   957 				filter= (TUint8)activefilters[i];
   958 				iTrace.SetFilter(filter,ETrue);
   959 				}
   960 
   961 			//----Enable/disable secondary filter
   962 			settings.Reset();
   963 			TBool enabled = EFalse;
   964 			error = GetSecondaryFiltering(enabled);
   965 			if(!error)
   966 				{
   967 				if (enabled)//enable secondary filter, only traces with certain value will pass
   968 					{
   969 					iTrace.SetFilter2(0);
   970 
   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);
   976 					else
   977 						{
   978 						if(error == KErrNotFound)
   979 							{
   980 							error = KErrNone;
   981 							}
   982 						else
   983 							return error;
   984 						}
   985 					}
   986 				else//disable secondary filter, all traces will pass
   987 					{
   988 					iTrace.SetFilter2(1);
   989 					}				
   990 				}
   991 			
   992 			//set flag to idicate that btrace is open
   993 			iBtraceOpen = ETrue;
   994 
   995 			//start input and output frameworks
   996 			iInputFramework->StartReading(); //start waiting for remote commands
   997 			AsynchDataRequest();
   998 			}
   999 		}
  1000 	else
  1001 		error = KErrInUse;
  1002 
  1003 	return error;
  1004 	}
  1005 
  1006 /**
  1007 Close the BTrace handle to the buffer
  1008 @return none
  1009 */
  1010 TInt CULoggerServer::Stop()
  1011 {
  1012 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1013 	__MARK_METHOD("CULoggerServer::Stop")
  1014 	#endif
  1015 	
  1016 	if(iBtraceOpen)
  1017 	{	
  1018 		TInt errCode = KErrNone;
  1019 		TRAP(errCode, ReadBufferL());	//flush the BTrace buffer
  1020 		
  1021 		ResetBtracePrimaryFilters(iTrace);//reset BTrace filters
  1022 		
  1023 		iTrace.CancelRequestData();	
  1024 		iTrace.Empty();
  1025 		iTrace.Close();
  1026 		iBtraceOpen = EFalse;
  1027 		iDataWatcher->Cancel();
  1028 		
  1029 		//stop waiting/reading for remote commands
  1030 		iInputFramework->StopReading();
  1031 		iOutputFramework->ReleaseOutputResources();
  1032 		return KErrNone;
  1033 		}
  1034 	else
  1035 		{
  1036 		return KErrNotReady;	
  1037 		}
  1038 		
  1039 }
  1040 
  1041 /**
  1042 Gets the Trace settings on boot
  1043 @return none
  1044 */
  1045 TInt CULoggerServer::TraceSettingsOnBootL()
  1046 {
  1047 	TInt trace = FALSE;
  1048 	
  1049 	RArray<TUint32> category;
  1050 	TInt error = iTrace.Open();
  1051 	if(error != KErrNone)
  1052 		return error;
  1053 	
  1054 	TInt bufferSize = iTrace.BufferSize(); //To get the buffer size set at boot	
  1055 	if(bufferSize <= 0 && bufferSize > KMaxBufferSize)
  1056 		SetBufferSizeL(KMaxBufferSize); //Update config
  1057 	else
  1058 		SetBufferSizeL(bufferSize); //Update config
  1059 	for(TUint i=0; i<KMaxPrimaryFiltersLimit; i++)
  1060 	{
  1061 		trace = iTrace.Filter(i);
  1062 		if(trace == 1)         
  1063 			category.AppendL((TUint32)i);				
  1064 	}
  1065 	error = iConfigManager->SetActiveFilter(category,KPrimaryFilterSection);
  1066 	category.Close();
  1067 	iIsBooting=0;
  1068 	return error;
  1069 }
  1070 
  1071 
  1072 
  1073 /**
  1074 Reads the BTrace buffer and transfers the collected logs to
  1075 the ACTIVE channel
  1076 */
  1077 void CULoggerServer::ReadBufferL()
  1078     {
  1079     if(iBtraceOpen)
  1080     	{   	
  1081     	TUint8* data;
  1082 		TInt dataSize;
  1083 		//TUint oldMode = iTrace.Mode();
  1084 		//iTrace.SetMode(0); // turn off trace capture while we dump
  1085 		dataSize = iTrace.GetData(data);
  1086 		if(dataSize > 0)
  1087 			{
  1088 
  1089 	 		TPtrC8 dataPtr(data, dataSize);
  1090 			
  1091 	 		#if defined(__LIGHTLOGGER_ENABLED) && defined(__PERFORMANCE_TEST)
  1092  			__LOGTIMESTAMP_HIRES("Passing data to output framework - t2") //performance test
  1093 			#endif
  1094  			
  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
  1099  			else
  1100  				User::Leave(error);
  1101 	 		
  1102 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__PERFORMANCE_TEST)
  1103 	 		__LOGTIMESTAMP_HIRES("Data logged - t3")	//performance test
  1104 			#endif
  1105 			}
  1106 		//iTrace.SetMode(oldMode);
  1107 			
  1108 		AsynchDataRequest();
  1109 	    } 
  1110     }
  1111 
  1112 
  1113 void CULoggerServer::AsynchDataRequest()
  1114 	{
  1115 	if(!iDataWatcher->IsActive())
  1116 		{
  1117 		iTrace.RequestData(iDataWatcher->GetStatus(), iDataNotification*1024); 
  1118 		iDataWatcher->StartWatching(this);
  1119 		}
  1120 	}
  1121 
  1122 
  1123 void CULoggerServer::DataNotification()
  1124 {
  1125 	TRAPD(e, ReadBufferL());
  1126 	if(e != KErrNone)
  1127 		AsynchDataRequest();
  1128 }
  1129 
  1130 
  1131 void CULoggerServer::GetPluginAndSettingsL(TDes8& aPluginName, RPointerArray<TPluginConfiguration>* aSettings, TPluginFilter aPluginFilter)
  1132 	{	
  1133 	TPtrC8 key;
  1134 	TPtrC8 val;
  1135 	RArray<TPtrC8> activePluginsArray;
  1136 	RArray<TPtrC8> pluginsArray;
  1137 	RArray<TPtrC8> pluginSettings;
  1138 	TInt i,j;
  1139 	
  1140 	if(aPluginFilter == EOutputPluginFilter)
  1141 		GetActiveOutputPlugin(activePluginsArray); //get output plugin
  1142 	else
  1143 		GetActiveInputPlugin(activePluginsArray); //get control plugin
  1144 	
  1145 	for(i=0; i<activePluginsArray.Count(); ++i)
  1146 		{
  1147 		TBuf8<256> activeplugin;
  1148 		activeplugin.Copy(activePluginsArray[i]);
  1149 		activeplugin.LowerCase();
  1150 		
  1151 		GetInstalledOutputPlugins(pluginsArray);
  1152 		for(j=0;j<pluginsArray.Count();j++)
  1153 			{
  1154 			TBuf8<256> plugin;
  1155 			plugin.Copy(pluginsArray[j]);
  1156 			plugin.LowerCase();
  1157 			
  1158 			if(activeplugin.Compare(plugin)==0)
  1159 				{
  1160 				break;
  1161 				}
  1162 			}
  1163 		aPluginName.Copy(activePluginsArray[i]);
  1164 		GetOptionsSettingsL(aPluginName,pluginSettings);
  1165 		j=0;
  1166 		while(j < pluginSettings.Count())
  1167 			{
  1168 			TPluginConfiguration* keyAndVal = new TPluginConfiguration();
  1169 			keyAndVal->SetKey(pluginSettings[j]);
  1170 			keyAndVal->SetValue(pluginSettings[j+1]);
  1171 			aSettings->AppendL(keyAndVal);
  1172 			j=j+2;
  1173 			}
  1174 		}
  1175 	}
  1176 
  1177 
  1178 /*
  1179  * Cleanup RPointerArray<TPluginConfiguration>* object by calling ResetAndDestroy to delete memory
  1180  * allocated as TPluginConfigurations whose ownership has been passed to the RPointerArray.
  1181  *
  1182  */
  1183 void CULoggerServer::CleanupTPluginConfigArray(TAny* aPtr)
  1184 	{
  1185 	RPointerArray<TPluginConfiguration>* ptrArray = reinterpret_cast<RPointerArray<TPluginConfiguration>*>(aPtr);
  1186 	ptrArray->ResetAndDestroy();
  1187 	ptrArray->Close();
  1188 	}
  1189 
  1190 
  1191 void CULoggerServer::InitializeFrameworksL()
  1192 	{
  1193 	//<create plugin allocator (plugins)>
  1194 	//output settings
  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);
  1201 
  1202 	//control settings
  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);
  1209 
  1210 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1211 	__LOG("before creating CPluginAllocator")
  1212 	#endif
  1213 	
  1214 	//create plugin allocator (plugins)
  1215 	if(!iPluginAllocator)
  1216 		{
  1217 		iPluginAllocator = CPluginAllocator::NewL(outPluginName, inputPluginName);
  1218 		}
  1219 
  1220 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1221 	__LOG("before creating COutputFramework")
  1222 	#endif
  1223 	//Initialize output framework
  1224 	if(!iOutputFramework)
  1225 		{
  1226 		iOutputFramework = COutputFramework::NewL(*(iPluginAllocator->GetOutputPlugin()), outputPluginSettings);
  1227 		}
  1228 
  1229 	//Initialize Control Framework
  1230 	if(!iInputFramework)
  1231 		{
  1232 		iInputFramework = CInputFramework::NewL(iPluginAllocator->GetInputPlugin(), inputPluginSettings, this);
  1233 		}
  1234 
  1235 	//cleanup
  1236 	CleanupStack::PopAndDestroy(4, &outPluginName); // and outputPluginSettings, inputPluginName and inputPluginSettings
  1237 
  1238 	iDataWatcher = CULoggerWatcher::NewL();	
  1239 	}
  1240 
  1241 
  1242 void CULoggerServer::PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TPtrC8>& aArray)
  1243 	{
  1244 	aPayloadBuf.CreateL(aArray.Count()*32);
  1245 	for(TInt i=0; i<aArray.Count(); i++)
  1246 		{
  1247 		if(aPayloadBuf.MaxSize() < aPayloadBuf.Length()+aArray[i].Length())
  1248 			{
  1249 			aPayloadBuf.ReAllocL(aPayloadBuf.Length()+(aArray[i].Length()*10));
  1250 			}
  1251 		aPayloadBuf.Append(aArray[i]);
  1252 		if(i < aArray.Count()-1) //skip last sparator as it will be added automatically
  1253 			{
  1254 			aPayloadBuf.Append(DATA_SEPARATOR);
  1255 			}
  1256 		}
  1257 	}
  1258 
  1259 
  1260 void CULoggerServer::PrepareControlDataPayloadL(RBuf8& aPayloadBuf, const RArray<TUint32>& aArray)
  1261 	{
  1262 	aPayloadBuf.CreateL(aArray.Count()*4);
  1263 	for(TInt i=0; i<aArray.Count(); i++)
  1264 		{
  1265 		TBuf8<64> b;
  1266 		b.Num(aArray[i]);
  1267 		if(aPayloadBuf.MaxSize() < aPayloadBuf.Length()+b.Length())
  1268 			{
  1269 			aPayloadBuf.ReAllocL(aPayloadBuf.Length()+(b.Length()*10));
  1270 			}
  1271 		aPayloadBuf.Append(b);
  1272 		if(i < aArray.Count()-1) //skip last sparator as it will be added automatically
  1273 			{
  1274 			aPayloadBuf.Append(DATA_SEPARATOR);
  1275 			}
  1276 		}
  1277 	}
  1278 
  1279 
  1280 TInt CULoggerServer::RestartOutputting()
  1281 	{
  1282 	TInt err=KErrNone;
  1283 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1284 	__MARK_METHOD("CULoggerServer::ForceRefreshSettingsL")
  1285 	#endif
  1286 	if(iBtraceOpen != EFalse)
  1287 		{
  1288 		err = Stop();
  1289 		iBtraceOpen = EFalse;
  1290 		}
  1291 
  1292 	 if(iDataWatcher)
  1293 		 {
  1294 		 iDataWatcher->Cancel();
  1295 		 delete iDataWatcher;
  1296 		 iDataWatcher = NULL;
  1297 		 }
  1298 	 if(iOutputFramework)
  1299 		 {
  1300 		 delete iOutputFramework;
  1301 		 iOutputFramework = NULL;
  1302 		 }
  1303 	 if(iInputFramework)
  1304 		 {
  1305 		 delete iInputFramework;
  1306 		 iInputFramework = NULL;
  1307 		 }
  1308 	 if(iPluginAllocator)
  1309 		 {
  1310 		 delete iPluginAllocator;
  1311 		 iPluginAllocator = NULL;
  1312 		 }
  1313 	if(iConfigManager)
  1314 		{
  1315 		iConfigManager->RefreshConfigFiles();
  1316 		}
  1317 
  1318 	err = Start(); //always start
  1319 	return err;
  1320 	}
  1321 
  1322 
  1323 TInt CULoggerServer::ResetBtracePrimaryFilters(RBTrace	&aBTrace)
  1324 	{
  1325 	for(TUint i=0; i<256; i++)
  1326 		aBTrace.SetFilter(i, EFalse);
  1327 	aBTrace.SetFilter2(0); 
  1328 	return KErrNone;
  1329 	}
  1330 
  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)
  1333 	{
  1334 	#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1335 	__MARK_METHOD("CULoggerServer::ProcessCommand")
  1336 	#endif	
  1337 	
  1338 	TInt errCode = KErrNone;
  1339 	TInt minSize = 8;
  1340 	CInputData *inputData = new (ELeave) CInputData(minSize);
  1341 	ControlData* data = NULL;
  1342 	RBuf8 payloadBuf;
  1343 	TBuf8<32> result;
  1344 
  1345 	switch(aOpCode)
  1346 		{
  1347 		case EStart:
  1348 			{
  1349 			if(!ServerState())
  1350 				errCode = this->Start();
  1351 			else
  1352 				errCode = KErrInUse;
  1353 			result.Num(errCode);
  1354 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1355 			}
  1356 		break;
  1357 
  1358 		case EStop:
  1359 			{
  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());
  1364 			}
  1365 		break;
  1366 			
  1367 		case ESetPrimaryFilter:
  1368 			{
  1369 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1370 			__LOG("ESetPrimaryFilter")
  1371 			#endif
  1372 			
  1373 			RArray<TUint32> filterArray;
  1374 			
  1375 			errCode = KErrNone;
  1376 			//process parameters
  1377 			TInt i;
  1378 			for(i=0; i<aArguments.Count(); i++)
  1379 				{
  1380 				TUint8 val;
  1381 				TLex8 lex(aArguments[i]);
  1382 				if((errCode=lex.Val(val, EDecimal)) != KErrNone)
  1383 					{
  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());
  1389 					/*
  1390 					payloadBuf.Create(128);
  1391 					payloadBuf.Copy(aArguments[i]);
  1392 					inputData->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1393 					*/
  1394 					filterArray.Close();
  1395 					break;
  1396 					}
  1397 				filterArray.AppendL(val);
  1398 				}
  1399 			
  1400 			if(errCode == KErrNone)
  1401 				{
  1402 				errCode = SetActiveFilterL(filterArray, EPrimaryFilter);
  1403 				result.Num(errCode);
  1404 			
  1405 				//create acknowledment
  1406 				result.Num(errCode);
  1407 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1408 			
  1409 				//create string as a payload
  1410 				/*
  1411 				payloadBuf.CreateL(dupfilterArray.Count()*4);
  1412 				for(i=0; i<dupfilterArray.Count(); i++)
  1413 					{
  1414 					TBuf8<32> b;
  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);
  1421 					}
  1422 				if(payloadBuf.Length() > 0)
  1423 					inputData->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1424 				*/
  1425 				filterArray.Close();
  1426 				}
  1427 			}
  1428 		break; //ESetPrimaryFilter
  1429 		
  1430 		case ESetSecondaryFilter:
  1431 			{
  1432 			RArray<TUint32> filterArray;
  1433 			//process parameters
  1434 			TInt i;
  1435 			for(i=0; i<aArguments.Count(); i++)
  1436 				{
  1437 				TUint32 val;
  1438 				TLex8 lex(aArguments[i]);
  1439 				if((errCode=lex.Val(val,EDecimal)) != KErrNone)
  1440 					{
  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());
  1446 					/*
  1447 					payloadBuf.CreateL(128);
  1448 					payloadBuf.Copy(aArguments[i]);
  1449 					man->AppendNewData(ack, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1450 					*/
  1451 					filterArray.Close();
  1452 					break;
  1453 					}
  1454 				filterArray.AppendL(val);
  1455 				}
  1456 			if(errCode != KErrNone)
  1457 				break;
  1458 			
  1459 			//create ack
  1460 			errCode = SetActiveFilterL(filterArray, ESecondaryFilter);
  1461 			result.Num(errCode);
  1462 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1463 		
  1464 			filterArray.Close();
  1465 			}
  1466 		break; //ESetSecondaryFilter
  1467 
  1468 		case EEnableSecondaryFiltering:
  1469 			{
  1470 			errCode = SetSecondaryFiltering(KEnable);
  1471 			result.Num(errCode);
  1472 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1473 			}
  1474 		break;
  1475 
  1476 		case EDisableSecondaryFiltering:
  1477 			{
  1478 			errCode = SetSecondaryFiltering(KDisable);
  1479 			result.Num(errCode);
  1480 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1481 			}
  1482 		break;
  1483 
  1484 		case EResizeTraceBuffer:
  1485 			{
  1486 			if(aArguments.Count() > 0)
  1487 				{
  1488 				TInt bufSize;
  1489 				TLex8 lex(aArguments[0]);
  1490 				if((errCode = lex.Val(bufSize)) == KErrNone)
  1491 					errCode = SetBufferSizeL(bufSize);
  1492 				}
  1493 			else
  1494 				errCode = KErrArgument;
  1495 
  1496 			result.Num(errCode);
  1497 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1498 			}
  1499 		break;
  1500 
  1501 		case ESetBufferMode:
  1502 			{
  1503 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1504 			__LOG("ESetBufferMode")
  1505 			#endif
  1506 
  1507 			if(aArguments.Count() > 0)
  1508 				{
  1509 				if(aArguments[0].Compare(KCircular)==0)
  1510 					errCode  = SetBufferMode(KCircular);
  1511 					else if(aArguments[0].Compare(KStraight)==0)
  1512 						errCode  = SetBufferMode(KStraight);
  1513 						else
  1514 							errCode = KErrArgument;
  1515 				}
  1516 			else
  1517 				errCode = KErrArgument;
  1518 
  1519 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1520 			__LOG("errCode")
  1521 			__LOGNUM(errCode)
  1522 			#endif
  1523 
  1524 			result.Num(errCode);
  1525 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1526 			}
  1527 		break;
  1528 
  1529 		case ESetDataNotificationSize:
  1530 			{
  1531 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1532 			__LOG("ESetDataNotificationSize")
  1533 			#endif
  1534 
  1535 			if(aArguments.Count() > 0)
  1536 				{
  1537 				TInt dns;
  1538 				TLex8 lex(aArguments[0]);
  1539 				if((errCode = lex.Val(dns)) == KErrNone)
  1540 					errCode = SetDataNotificationSizeL(dns);
  1541 					else
  1542 						errCode = KErrArgument;
  1543 				}
  1544 			else
  1545 				errCode = KErrArgument;
  1546 
  1547 			result.Num(errCode);
  1548 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1549 			}
  1550 		break;
  1551 
  1552 		case ERemovePluginSettings:
  1553 			{
  1554 			if(aArguments.Count() > 0)
  1555 				errCode = RemovePluginSettingsL(aArguments[0]);
  1556 			else
  1557 				errCode = KErrArgument;
  1558 			result.Num(errCode);
  1559 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1560 			}
  1561 		break;
  1562 
  1563 		case EGetInstalledPlugins:
  1564 			{
  1565 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1566 			__LOG("EGetInstalledOutputPlugins")
  1567 			#endif
  1568 
  1569 			RArray<TPtrC8> tmpArray;
  1570 			errCode = GetInstalledOutputPlugins(tmpArray);
  1571 			result.Num(errCode);
  1572 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1573 
  1574 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1575 			for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
  1576 			#endif
  1577 
  1578 			//create payload
  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());
  1583 			}
  1584 		break; //EGetInstalledOutputPlugins
  1585 
  1586 		case EGetActivePlugin: //output
  1587 			{
  1588 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1589 			__LOG("EGetActivePlugin")
  1590 			#endif
  1591 
  1592 			RArray<TPtrC8> tmpArray;
  1593 			errCode = GetActiveOutputPlugin(tmpArray);
  1594 			result.Num(errCode);
  1595 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1596 
  1597 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1598 			for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
  1599 			#endif
  1600 
  1601 			//create payload
  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());
  1606 			}
  1607 		break; //EGetActivePlugin
  1608 
  1609 		case EGetPluginSettings:
  1610 			{
  1611 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1612 			__LOG("EGetPluginSettings")
  1613 			#endif
  1614 			RArray<TPtrC8> tmpArray;
  1615 			if(aArguments.Count() > 0)
  1616 				{	
  1617 				errCode = GetOptionsSettingsL(aArguments[0],tmpArray);
  1618 
  1619 				#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1620 				for(TInt p=0; p<tmpArray.Count(); p++) __LOGBUF(tmpArray[p])
  1621 				#endif
  1622 				}
  1623 			else
  1624 				errCode = KErrArgument;
  1625 
  1626 			result.Num(errCode);
  1627 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1628 			//create payload
  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());
  1633 			}
  1634 		break; //EGetPluginSettings
  1635 
  1636 		case EGetPrimaryFilters:
  1637 			{
  1638 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1639 			__LOG("EGetPluginSettings")
  1640 			#endif
  1641 
  1642 			RArray<TUint32> tmpArray;
  1643 			errCode = GetActiveFilters(tmpArray,EPrimaryFilter);
  1644 
  1645 			result.Num(errCode);
  1646 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1647 
  1648 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1649 			for(TInt p=0; p<tmpArray.Count(); p++) __LOGNUM(tmpArray[p])
  1650 			#endif
  1651 
  1652 			//create payload
  1653 			PrepareControlDataPayloadL(payloadBuf, tmpArray);
  1654 
  1655 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1656 			__LOG("EGetPluginSettings - test 1")
  1657 			#endif
  1658 
  1659 			
  1660 			if(payloadBuf.Length() > 0)
  1661 				inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1662 			tmpArray.Close();
  1663 			
  1664 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1665 			__LOG("EGetPluginSettings - test 2")
  1666 			#endif
  1667 			}
  1668 		break; //EGetPrimaryFilters
  1669 		
  1670 		case EGetSecondaryFilters:
  1671 			{
  1672 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1673 			__LOG("EGetSecondaryFilters")
  1674 			#endif
  1675 			
  1676 			TBool skipReadingFilters = EFalse;
  1677 			RArray<TPtrC8> tmpArrayTxt;
  1678 			TBool enabled = EFalse;
  1679 			errCode = errCode = this->GetSecondaryFiltering(enabled);
  1680 			if(errCode == KErrNone)
  1681 				{
  1682 				if(EFalse == enabled)
  1683 						{
  1684 						result.Num(errCode);
  1685 					data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1686 						skipReadingFilters = ETrue;
  1687 						//create payload
  1688 					PrepareControlDataPayloadL(payloadBuf, tmpArrayTxt);
  1689 						if(payloadBuf.Length() > 0)
  1690 						inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1691 						}
  1692 				}
  1693 
  1694 			RArray<TUint32> tmpArray;
  1695 			if(!skipReadingFilters)
  1696 				{
  1697 				errCode = this->GetActiveFilters(tmpArray,ESecondaryFilter);
  1698 				result.Num(errCode);
  1699 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1700 				//create payload
  1701 				PrepareControlDataPayloadL(payloadBuf, tmpArray);
  1702 				if(payloadBuf.Length() > 0)
  1703 					inputData->AppendNewData(data, (const void*)payloadBuf.Ptr(), payloadBuf.Length());
  1704 				}
  1705 			
  1706 			tmpArrayTxt.Close();
  1707 			tmpArray.Close();
  1708 			}
  1709 		break; //EGetSecondaryFilters
  1710 		
  1711 		case EGetSecondaryFiltering:
  1712 			{
  1713 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1714 			__LOG("EGetSecondaryFiltering")
  1715 			#endif
  1716 			
  1717 			TBool enabled = EFalse;
  1718 			errCode = GetSecondaryFiltering(enabled);
  1719 			if(errCode == KErrNone)
  1720 				{
  1721 			result.Num(errCode);
  1722 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1723 				
  1724 				//create payload
  1725 				TBuf8<32> b;
  1726 				b.Num(enabled);
  1727 				inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
  1728 				}
  1729 			else
  1730 				{
  1731 				result.Num(errCode);
  1732 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1733 				}
  1734 			}
  1735 		break; //EGetSecondaryFiltering
  1736 		
  1737 		//this functionality is removed now
  1738 		/*
  1739 		case ESetSecondaryFilterCurrent:
  1740 			{
  1741 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1742 			__LOG("ESetSecondaryFilterCurrent")
  1743 			#endif
  1744 			
  1745 			errCode = this->SetSecondaryFiltering(KCurrent);
  1746 			result.Num(errCode);
  1747 			ack = man->CreatePackage((void*)result.Ptr(), result.Length());
  1748 			}
  1749 		break; //ESetSecondaryFilterCurrent
  1750 		*/
  1751 		case EGetTraceBufferSize:
  1752 			{
  1753 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1754 			__LOG("EGetTraceBufferSize")
  1755 			#endif
  1756 			
  1757 			TInt bufferSize = 0;	
  1758 			errCode = GetBufandDataNotifyValuesL(KBuffer,bufferSize);
  1759 			if(errCode == KErrNone)
  1760 				{
  1761 				result.Num(errCode);
  1762 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1763 				TBuf8<32> b;
  1764 				b.Num(bufferSize);
  1765 				inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
  1766 				}
  1767 			else
  1768 				{
  1769 				result.Num(errCode);
  1770 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1771 				}
  1772 			}
  1773 		break; //EGetTraceBufferSize
  1774 		
  1775 		case EGetBufferMode:
  1776 			{
  1777 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1778 			__LOG("EGetBufferMode")
  1779 			#endif
  1780 			
  1781 			TInt bufferMode = 3;	
  1782 			errCode = GetBufandDataNotifyValuesL(KBufferMode,bufferMode);
  1783 			if(errCode == KErrNone)
  1784 				{
  1785 				result.Num(errCode);
  1786 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1787 
  1788 				result.Zero();
  1789 				if(bufferMode == 0)
  1790 					result.Append(KCircular);
  1791 				else if(bufferMode == 1)
  1792 					result.Append(KStraight);
  1793 					else
  1794 						result.Append(_L8("Invalid mode"));
  1795 
  1796 				inputData->AppendNewData(data, (const void*)result.Ptr(), result.Length());
  1797 				}
  1798 			else
  1799 				{
  1800 				result.Num(errCode);
  1801 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1802 				}
  1803 			}
  1804 		break; //EGetBufferMode
  1805 		
  1806 		case EGetDataNotificationSize:
  1807 			{
  1808 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1809 			__LOG("EGetDataNotificationSize")
  1810 			#endif
  1811 			
  1812 			TInt dataNotification = 0;	
  1813 			errCode = GetBufandDataNotifyValuesL(KDataNotification,dataNotification);
  1814 			if(errCode == KErrNone)
  1815 				{
  1816 				result.Num(errCode);
  1817 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1818 				TBuf8<32> b;
  1819 				b.Num(dataNotification);
  1820 				inputData->AppendNewData(data, (const void*)b.Ptr(), b.Length());
  1821 				}
  1822 			else
  1823 				{
  1824 				result.Num(errCode);
  1825 				data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1826 				}
  1827 			}
  1828 		break; //EGetDataNotificationSize
  1829 		
  1830 		case ERemovePrimaryFilter:
  1831 			{
  1832 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1833 			__LOG("ERemovePrimaryFilter")
  1834 			for(TInt k=0; k<aArguments.Count(); k++)
  1835 				{
  1836 				__LOGBUF(aArguments[k])
  1837 				}
  1838 			#endif
  1839 			
  1840 			if(aArguments.Count() > 0)
  1841 				{
  1842 				RArray<TUint32> filterArray;
  1843 				for(TInt i=0; i<aArguments.Count(); i++)
  1844 					{
  1845 					TUint32 val;
  1846 					TLex8 lex(aArguments[i]);
  1847 					if(lex.Val(val, EDecimal) == KErrNone)
  1848 						filterArray.AppendL(val);
  1849 					}
  1850 				errCode = RemoveActiveFilter(filterArray,EPrimaryFilter);
  1851 				filterArray.Close();
  1852 				}
  1853 			else
  1854 				errCode = KErrArgument;
  1855 			
  1856 			result.Num(errCode);
  1857 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1858 			}
  1859 		break; //ERemovePrimaryFilter
  1860 		
  1861 		case ERemoveSecondaryFilter:
  1862 			{
  1863 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1864 			__LOG("EDisableMultipleModuleUids")
  1865 			for(TInt k=0; k<aArguments.Count(); k++)
  1866 				{
  1867 				__LOGBUF(aArguments[k])
  1868 				}
  1869 			#endif
  1870 			
  1871 			if(aArguments.Count() > 0)
  1872 				{
  1873 				RArray<TUint32> filterArray;
  1874 				for(TInt i=0; i<aArguments.Count(); i++)
  1875 					{
  1876 					TUint32 val;
  1877 					TLex8 lex(aArguments[i]);
  1878 					if(lex.Val(val, EDecimal) == KErrNone)
  1879 						filterArray.AppendL(val);
  1880 					}
  1881 				errCode = RemoveActiveFilter(filterArray,ESecondaryFilter);
  1882 				filterArray.Close();
  1883 				}
  1884 			else
  1885 				errCode = KErrArgument;
  1886 			
  1887 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1888 			__LOG("errCode:")
  1889 			__LOGNUM(errCode)
  1890 			#endif
  1891 			
  1892 			result.Num(errCode);
  1893 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1894 			}
  1895 		break; //ERemoveSecondaryFilter
  1896 		
  1897 		case ESetPluginSettings:
  1898 			{
  1899 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1900 			__LOG("ESetPluginSettings")
  1901 			#endif
  1902 				
  1903 			if(aArguments.Count() > 2)
  1904 				{
  1905 				TBuf8<128> plugin;
  1906 				plugin.Copy(aArguments[0]);
  1907 				aArguments.Remove(0);
  1908 				errCode = SetPluginSettings(plugin, aArguments);
  1909 				}
  1910 			else
  1911 				errCode = KErrArgument;
  1912 						
  1913 			result.Num(errCode);
  1914 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1915 			}
  1916 		break; //ESetChannelSettings
  1917 		
  1918 		case ESetActivePlugin:
  1919 			{
  1920 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1921 			__LOG("ESetActiveOutputPlugin")
  1922 			#endif
  1923 
  1924 			if(aArguments.Count() > 0)
  1925 				errCode = SetActiveOutputPlugin(aArguments[0]);
  1926 			else
  1927 				errCode = KErrArgument;
  1928 
  1929 			result.Num(errCode);
  1930 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1931 			}
  1932 		break; //ESetActiveOutputPlugin
  1933 
  1934 		case ESetActiveInputPlugin:
  1935 			{
  1936 			if(aArguments.Count() > 0)
  1937 				errCode = SetActiveInputPlugin(aArguments[0]);
  1938 			else
  1939 				errCode = KErrArgument;
  1940 
  1941 			result.Num(errCode);
  1942 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1943 			}
  1944 		break;
  1945 		
  1946 		case EDeactivateInputPlugin:
  1947 			{
  1948 			if(aArguments.Count() > 0)
  1949 				errCode = DeActivateInputPlugin(aArguments[0]);
  1950 			else
  1951 				errCode = KErrArgument;
  1952 
  1953 			result.Num(errCode);
  1954 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1955 			}
  1956 		break;
  1957 
  1958 		case EGetActiveInputPlugin:
  1959 			{
  1960 			RArray<TPtrC8> tmpArray;
  1961 			errCode = GetActiveInputPlugin(tmpArray);
  1962 			result.Num(errCode);
  1963 
  1964 			//remove ini specific data (number)
  1965 			//example (1 uloggerusbplugin) must look like (uloggerusbplugin)
  1966 			TInt i=0;
  1967 			while(i<tmpArray.Count())
  1968 				{
  1969 				TInt v = 0;
  1970 				TLex8 l(tmpArray[i]);
  1971 				if(l.Val(v) == KErrNone)
  1972 					tmpArray.Remove(i);
  1973 				else
  1974 					++i;
  1975 				}
  1976 
  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());
  1981 			tmpArray.Close();
  1982 			}
  1983 		break;
  1984 		
  1985 		case EGetInputPlugins:
  1986 			{
  1987 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  1988 			__LOG("EGetControlPlugins")
  1989 			#endif
  1990 			
  1991 			RArray<TPtrC8> tmpArray;
  1992 			errCode = GetInstalledInputPluginsL(tmpArray);
  1993 
  1994 			result.Num(errCode);
  1995 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  1996 
  1997 			//create payload
  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());
  2002 			tmpArray.Close();
  2003 			}
  2004 		break;
  2005 
  2006 		case ERestart:
  2007 			{
  2008 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  2009 			__LOG("ERestartOutputting")
  2010 			#endif
  2011 
  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());
  2016 			}
  2017 		break;
  2018 		
  2019 		default:
  2020 			#if defined(__LIGHTLOGGER_ENABLED) && defined(__VERBOSE_MODE)
  2021 			__LOG("input command not supported")
  2022 			#endif
  2023 		
  2024 			result.Num(KErrNotSupported);
  2025 			data = inputData->CreatePackage((void*)result.Ptr(), result.Length());
  2026 		break;
  2027 	}//end of switch
  2028 
  2029 	
  2030 	//cleanup
  2031 	if(inputData)
  2032 		{
  2033 		delete inputData;
  2034 		inputData = NULL;
  2035 		}
  2036 	payloadBuf.Close();
  2037 
  2038 	return data;
  2039 	}
  2040 
  2041 
  2042 
  2043 void CULoggerServer::DoPostProcessing(TCommand aCmd)
  2044 	{
  2045 	switch(aCmd)
  2046 		{
  2047 		case EStop:
  2048 			Stop();
  2049 			break;
  2050 		case ERestart:
  2051 			RestartOutputting();
  2052 			break;
  2053 		default:
  2054 			break;
  2055 		}
  2056 	}
  2057 
  2058 /**
  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.
  2064  */
  2065 void CULoggerServer::FilterPlugins(TPluginFilter aFilter, RArray<TPtrC8>& aPluginList)
  2066 	{
  2067 	TInt errCode = 0;
  2068 	CPlugin::TPluginInterface interfaceId;
  2069 	//assign filter value
  2070 	interfaceId = (aFilter == EOutputPluginFilter ? MOutputPlugin::iInterfaceId : MInputPlugin::iInterfaceId);
  2071 	
  2072 	//filter plugins
  2073 	TInt i=0;
  2074 	while(i<aPluginList.Count())
  2075 		{
  2076 		CPlugin *plugin = NULL;
  2077 		TRAP(errCode, plugin=CPlugin::NewL(aPluginList[i]));
  2078 		if(plugin && errCode==KErrNone)
  2079 			{
  2080 			TAny *ptr = NULL;
  2081 			TRAP(errCode, ptr=plugin->GetInterfaceL(interfaceId));
  2082 			if(!ptr || errCode!=KErrNone)
  2083 				{
  2084 				aPluginList.Remove(i--);
  2085 				}
  2086 			//cleanup
  2087 			if(plugin)
  2088 				{	
  2089 				delete plugin;
  2090 				plugin = NULL;
  2091 				}
  2092 			}
  2093 		++i;
  2094 		}
  2095 	}
  2096 
  2097 
  2098 
  2099 TBool CULoggerServer::ServerState()
  2100 	{
  2101 	return iBtraceOpen;
  2102 	}
  2103 
  2104 
  2105 TBool CULoggerServer::CheckPluginExists(TPtrC8& aPluginName, TPluginFilter aPluginFilter)
  2106 	{
  2107 	RArray<TPtrC8> pluginsArray;
  2108 	if(aPluginFilter == EOutputPluginFilter)
  2109 		GetInstalledOutputPlugins(pluginsArray);
  2110 	else if(aPluginFilter == EInputPluginFilter)
  2111 		GetInstalledInputPluginsL(pluginsArray);
  2112 
  2113 	for(TInt i=0; i<pluginsArray.Count(); ++i)
  2114 		if(aPluginName.Compare(pluginsArray[i])==0)
  2115 			{
  2116 			pluginsArray.Close();
  2117 			return ETrue;
  2118 			}
  2119 		
  2120 	pluginsArray.Close();
  2121 	return EFalse;
  2122 	}
  2123 
  2124 
  2125 }//end of namespace
  2126 
  2127 #ifndef __ULOGGER_SERVER_UNIT_TEST
  2128 //Main Entry
  2129 TInt E32Main()
  2130 {
  2131 	return Ulogger::CULoggerServer::StartServer();
  2132 }
  2133 #endif //__ULOGGER_SERVER_UNIT_TEST