os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggersrvsession.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 
    17 #include <s32mem.h>
    18 #include "uloggersession.h"
    19 #include "uloggershared.h"
    20 #include "uloggerclient.h"
    21 #include "uloggershared.h"
    22 #include "uloggertools.h"
    23 
    24 namespace Ulogger {
    25 
    26 
    27 CULoggerSession* CULoggerSession::NewL(RThread& aClient, CULoggerServer& aServer)
    28 	{
    29 	CULoggerSession* self = CULoggerSession::NewLC(aClient, aServer);
    30 	CleanupStack::Pop(); //self
    31 	return self;
    32 	}//</NewL>
    33 
    34 
    35 
    36 
    37 CULoggerSession* CULoggerSession::NewLC(RThread& aClient, CULoggerServer& aServer)
    38 	{
    39 	CULoggerSession* self = new(ELeave) CULoggerSession( aClient, aServer );
    40 	CleanupStack::PushL( self );
    41 	self->ConstructL();
    42 	return self;
    43 	}//</NewLC>
    44 
    45 
    46 
    47 
    48 void CULoggerSession::ConstructL()
    49 	{
    50 	iServer.IncrementSessions();
    51 	}//</ConstructL>
    52 
    53 
    54 
    55 CULoggerSession::CULoggerSession(RThread& aClient, CULoggerServer& aServer)
    56 : CSession2(),
    57 iServer( aServer ),
    58 iClient( aClient )
    59 	{
    60 
    61 	}//</constructor>
    62 
    63 
    64 
    65 CULoggerSession::~CULoggerSession()
    66 {
    67 	iServer.DecrementSessions();
    68 }//</destructor>
    69 
    70 
    71 
    72 
    73 
    74 
    75 /** Process message from 'client' (actually another instance of ourselves)
    76 */
    77 void CULoggerSession::ServiceL(const RMessage2& aMessage)
    78 	{
    79 	TInt error = KErrNone;
    80 	switch(aMessage.Function())
    81 		{
    82 		case ERunAsService:
    83 			{
    84 			iServer.RunAsService(ETrue);
    85 			error = KErrNone;
    86 			}
    87 		break;
    88 
    89 		case EDontRunAsService:
    90 			{
    91 			iServer.RunAsService(EFalse);
    92 			error = KErrNone;
    93 			}
    94 		break;
    95 
    96 		case EStart:
    97 			{
    98 			//Starts the BTrace
    99 			//r= iServer.Start();
   100 			if(!iServer.ServerState())
   101 				error = iServer.RestartOutputting();
   102 			else
   103 				error = KErrInUse;
   104 			}
   105 		break;
   106 		
   107 		case EStop:
   108 			{		
   109 			//Stops the BTrace
   110 			error = iServer.Stop();
   111 			//iServer.UnconfigureCurrentChannel();
   112 			}
   113 		break;
   114 		
   115 		case ERestart:
   116 			{
   117 			error = iServer.RestartOutputting();
   118 			}
   119 		break;
   120 		
   121 		case ESetPrimaryFilter:
   122 			{
   123 			//Set filter 1
   124 			RArray<TUint32> filterArray;
   125 			CleanupClosePushL(filterArray);
   126 
   127 			TInt elementsCount = aMessage.Int1();
   128 			if(elementsCount > 0)
   129 				{
   130 				HBufC8* desData = HBufC8::NewLC(elementsCount);
   131 				TPtr8 readPtr(desData->Des());
   132 				aMessage.ReadL(0, readPtr);
   133 		
   134 				CArrayFixFlat<TUint8> *array = new (ELeave) CArrayFixFlat<TUint8>(1);
   135 				CleanupStack::PushL(array);
   136 		
   137 				TUint8 tmp(1);
   138 				InternalizeFromBufL(readPtr, *array, tmp);
   139 		
   140 				for(TInt i(0); i < array->Count(); ++i)
   141 					{
   142 					filterArray.AppendL((TUint32)array->At(i));
   143 					}
   144 			
   145 				error = iServer.SetActiveFilterL(filterArray, EPrimaryFilter);
   146 
   147 				CleanupStack::PopAndDestroy(3, &filterArray); // and array, desData
   148 				}
   149 			else
   150 				{
   151 				error = KErrArgument;
   152 				}
   153 			}
   154 			break;
   155 
   156 		case ERemovePrimaryFilter:
   157 			{
   158 			//remove primaryfilters
   159 			TInt elementsCount = aMessage.Int1();
   160 			if(elementsCount > 0)
   161 				{
   162 				RArray<TUint32> filterArray;
   163 				CleanupClosePushL(filterArray);
   164 				HBufC8* desData = HBufC8::NewLC(elementsCount);
   165 				TPtr8 readPtr(desData->Des());
   166 				aMessage.ReadL(0, readPtr);
   167 
   168 				CArrayFixFlat<TUint8> *array = new (ELeave) CArrayFixFlat<TUint8>(1);
   169 				CleanupStack::PushL(array);
   170 
   171 				TUint8 tmp(1);
   172 				InternalizeFromBufL(readPtr, *array, tmp);
   173 
   174 				for(TInt i(0); i < array->Count(); ++i)
   175 					{
   176 					filterArray.AppendL((TUint32)array->At(i));
   177 					}
   178 
   179 				error = iServer.RemoveActiveFilter(filterArray,EPrimaryFilter);
   180 
   181 				CleanupStack::PopAndDestroy(3, &filterArray); // and array, desData
   182 				}
   183 			else
   184 				{
   185 				error = KErrArgument;
   186 				}
   187 			}
   188 			break;
   189 		
   190 		case EGetPrimaryFilters:
   191 			{
   192 			//Get primaryfilters
   193 			RArray<TUint32> listBuffer;
   194 			error = iServer.GetActiveFilters(listBuffer,EPrimaryFilter);
   195 
   196 			CArrayFixFlat<TUint8> *fixArray = new (ELeave)CArrayFixFlat<TUint8>(1);
   197 			CleanupStack::PushL(fixArray);
   198 
   199 			for(TInt i=0; i<listBuffer.Count(); ++i)
   200 				fixArray->AppendL((TUint8)listBuffer[i]);
   201 			HBufC8* desData = ExternalizeToBufL((const CArrayFix<TUint8>&) *fixArray, sizeof(TUint8));
   202 			CleanupStack::PopAndDestroy(); //fixArray
   203 
   204 			aMessage.Write(0,*desData);
   205 
   206 			delete desData;
   207 			desData = NULL;
   208 			listBuffer.Close();
   209 			}
   210 			break;
   211 		case ESetSecondaryFilter:
   212 			{
   213 			//Set filter 2
   214 			TInt elementsCount = aMessage.Int1();
   215 			if(elementsCount > 0)
   216 				{
   217 				HBufC8* desData = HBufC8::NewLC(elementsCount*sizeof(TUint32));
   218 				TPtr8 readPtr(desData->Des());
   219 				aMessage.ReadL(0, readPtr);
   220 			
   221 				RArray<TUint32> filterArray;
   222 				TUint32 tmp=1;
   223 				InternalizeFromBufL(readPtr, filterArray, tmp);
   224 					
   225 				error = iServer.SetActiveFilterL(filterArray,ESecondaryFilter);
   226 
   227 				CleanupStack::PopAndDestroy(); //desData
   228 				filterArray.Close();
   229 				}
   230 			else
   231 				error = KErrArgument;
   232 			}
   233 			break;
   234 		
   235 		case ERemoveSecondaryFilter:
   236 			{
   237 			//remove secondaryfilters
   238 			TInt elementsCount = aMessage.Int1();
   239 			if(elementsCount > 0)
   240 				{
   241 				HBufC8* desData = HBufC8::NewLC(elementsCount*sizeof(TUint32));
   242 				TPtr8 readPtr(desData->Des());
   243 				aMessage.ReadL(0, readPtr);
   244 
   245 				RArray<TUint32> filterArray;
   246 
   247 				TUint32 tmp=1;
   248 				InternalizeFromBufL(readPtr, filterArray, tmp);
   249 
   250 				error = iServer.RemoveActiveFilter(filterArray,ESecondaryFilter);
   251 
   252 				CleanupStack::PopAndDestroy(); //desData
   253 				filterArray.Close();
   254 				}
   255 			else
   256 				error = KErrArgument;
   257 			}
   258 			break;
   259 
   260 		case EGetSecondaryFilters:
   261 			{		
   262 			//Get secondary filters
   263 			RArray<TUint32> listBuffer;
   264 			error=iServer.GetActiveFilters(listBuffer,ESecondaryFilter);
   265 
   266 			HBufC8* desData = ExternalizeToBufL(listBuffer, sizeof(TUint32));
   267 			TPtr8 readPtr2(desData->Des());
   268 			aMessage.Write(0,readPtr2);
   269 
   270 			delete desData;
   271 			desData = NULL;
   272 			listBuffer.Close();
   273 			}
   274 		break;
   275 
   276 		case EEnableSecondaryFiltering:
   277 			{
   278 			error = iServer.SetSecondaryFiltering(KEnable);
   279 			}
   280 			break;
   281 
   282 		case EDisableSecondaryFiltering:
   283 			{
   284 			error = iServer.SetSecondaryFiltering(KDisable);
   285 			}
   286 			break;
   287 
   288 		case EGetSecondaryFiltering:
   289 			{
   290 			TBool enabled = EFalse;
   291 			iServer.GetSecondaryFiltering(enabled);
   292 			SendIntegerL(aMessage, (TInt)enabled);
   293 			}
   294 			break;
   295 
   296 		case ESetActivePlugin:
   297 			{
   298 			//Set the active plugin
   299 			HBufC8* pluginName = NULL;
   300 			TInt dataSize1 = aMessage.GetDesLength(0);
   301 			if(dataSize1 > 0)
   302 				{
   303 				pluginName = HBufC8::NewLC( dataSize1 );
   304 				TPtr8 namePtr(pluginName->Des());
   305 				aMessage.ReadL(0,namePtr);
   306 				error = iServer.SetActiveOutputPlugin(pluginName->Des());
   307 				CleanupStack::PopAndDestroy(1);
   308 				}
   309 			else
   310 				error = KErrArgument;
   311 			}
   312 			break;
   313 
   314 		case ESetActiveInputPlugin:
   315 			{
   316 			//Set the active control plugin
   317 			HBufC8* pluginName = NULL;
   318 			TInt dataSize1 = aMessage.GetDesLength(0);
   319 			if(dataSize1 > 0)
   320 				{
   321 				pluginName = HBufC8::NewLC( dataSize1 );
   322 				TPtr8 namePtr(pluginName->Des());
   323 				aMessage.ReadL(0,namePtr);
   324 				error = iServer.SetActiveInputPlugin(pluginName->Des());
   325 				CleanupStack::PopAndDestroy(1); //pluginName
   326 				}
   327 			else
   328 				error = KErrArgument;
   329 			}
   330 		break;
   331 
   332 		case ESetPluginSettings:
   333 			{
   334 			//Set the channel settings
   335 			HBufC8* pluginName = NULL;
   336 			HBufC8* setting = NULL;
   337 			
   338 			RArray<TPtrC8> value;
   339 			TInt dataSize1 = aMessage.GetDesLength(0);
   340 			TInt dataSize2 = aMessage.GetDesLength(1);
   341 			CArrayPtrFlat<HBufC8> *ptrArray = new (ELeave) CArrayPtrFlat<HBufC8>(1);
   342 			CleanupStack::PushL(ptrArray);
   343 			
   344 			if(dataSize1>0 && dataSize2>0)
   345 				{
   346 				pluginName = HBufC8::NewLC( dataSize1 );
   347 				setting = HBufC8::NewLC( dataSize2 );
   348 				TPtr8 data1Ptr(pluginName->Des());		
   349 				TPtr8 data2Ptr(setting->Des());	
   350 				
   351 				aMessage.ReadL(0,data1Ptr);	
   352 				aMessage.ReadL(1,data2Ptr);	
   353 				
   354 				_LIT8(KSeparator,";");
   355 				TInt pos = KErrNone;
   356 				
   357 				while(pos != KErrNotFound)
   358 					{
   359 					pos = setting->Des().Find(KSeparator);
   360 					if(pos > 0)	
   361 						{
   362 						TPtrC8 ptrVal(setting->Des().Left(pos));
   363 						HBufC8 *bufDes = HBufC8::NewLC(ptrVal.Length()+8);
   364 						bufDes->Des().Copy(ptrVal);
   365 						CleanupStack::Pop(bufDes);
   366 						ptrArray->AppendL(bufDes);
   367 						setting->Des().Delete(0,pos+1);
   368 						}
   369 					}
   370 				
   371 				for(TInt i=0; i<ptrArray->Count(); ++i)
   372 					value.AppendL(*(ptrArray->At(i)));
   373 				error = iServer.SetPluginSettings(pluginName->Des(), value);
   374 				CleanupStack::PopAndDestroy(2);
   375 				}
   376 			else
   377 				error = KErrArgument;
   378 
   379 			CleanupStack::PopAndDestroy(ptrArray);
   380 			}
   381 			break;
   382 
   383 		case ERemovePluginSettings:
   384 			{
   385 			TInt dataSize = aMessage.GetDesLength(0);
   386 			TBuf8<KMaxPluginName> pluginName;
   387 			if (dataSize > 0)
   388 				{
   389 				aMessage.ReadL(0, pluginName);
   390 				error = iServer.RemovePluginSettingsL(pluginName);
   391 				}
   392 			else
   393 				error = KErrArgument;
   394 			}
   395 		break;
   396 
   397 		case EGetPluginSettings:
   398 			{
   399 			TInt dataSize1 = aMessage.GetDesLength(0);
   400 			TBuf8<128> mediaName;			
   401 
   402 			if(dataSize1 > 0)
   403 				{
   404 				aMessage.ReadL(0, mediaName);
   405 				RArray<TPtrC8> tmpArray;
   406 				error = iServer.GetOptionsSettingsL(mediaName,tmpArray);
   407 
   408 				//<rewrite array and add separator to each record>
   409 				_LIT8(KFormatString,"%S;");//';' is a separator
   410 				RArray<TPtrC8> tmpArray2;
   411 				//count total_length + separators
   412 				TInt length = 1;
   413 				TInt i=0;
   414 				for(i=0; i<tmpArray.Count(); ++i)
   415 					length+=tmpArray[i].Length()+1;
   416 
   417 				HBufC8* b = HBufC8::NewLC(length);
   418 				for(i=0; i<tmpArray.Count(); ++i)
   419 					b->Des().AppendFormat(KFormatString, &tmpArray[i]);
   420 				//</rewrite array and add separator to each record>
   421 
   422 				aMessage.Write(1,*b);
   423 				CleanupStack::PopAndDestroy(); // b
   424 				}
   425 			else
   426 				error = KErrArgument;
   427 			}
   428 			break;
   429 
   430 		case EGetInstalledPlugins:
   431 			{
   432 			//Get the installed plugins	
   433 				RArray<TPtrC8> tmpArray;
   434 				iServer.GetInstalledOutputPlugins(tmpArray);	
   435 
   436 				//<rewrite array and add separator to each record>
   437 				_LIT8(KFormatString,"%S;");//';' is a separator
   438 				RArray<TPtrC8> tmpArray2;
   439 				//count total_length + separators
   440 				TInt length = 1;
   441 				TInt i=0;
   442 				for(i=0; i<tmpArray.Count(); ++i)
   443 					length+=tmpArray[i].Length()+1;
   444 
   445 				HBufC8* b = HBufC8::NewLC(length);
   446 				for(i=0; i<tmpArray.Count(); ++i)
   447 					b->Des().AppendFormat(KFormatString, &tmpArray[i]);
   448 				//</rewrite array and add separator to each record>
   449 
   450 				aMessage.Write(0,*b);
   451 				CleanupStack::PopAndDestroy(); // b	
   452 			}
   453 		break;
   454 
   455 		case EGetInputPlugins:
   456 			{
   457 			//Get the installed plugins	
   458 			RArray<TPtrC8> tmpArray;
   459 			error = iServer.GetInstalledInputPluginsL(tmpArray);
   460 			if(!error)
   461 				{
   462 			//<rewrite array and add separator to each record>
   463 			_LIT8(KFormatString,"%S;");//';' is a separator
   464 			//count total_length + separators
   465 			TInt length = 1;
   466 			TInt i=0;
   467 			for(i=0; i<tmpArray.Count(); ++i)
   468 				length+=tmpArray[i].Length()+1;
   469 
   470 			HBufC8* b = HBufC8::NewLC(length);
   471 			for(i=0; i<tmpArray.Count(); ++i)
   472 				b->Des().AppendFormat(KFormatString, &tmpArray[i]);
   473 			//</rewrite array and add separator to each record>
   474 
   475 			aMessage.Write(0,*b);
   476 			CleanupStack::PopAndDestroy(); // b	
   477 				}
   478 			}
   479 			break;
   480 
   481 		case EGetActivePlugin:
   482 			{
   483 			//Reads the active plugin
   484 			RArray<TPtrC8> tmpArray;
   485 			error = iServer.GetActiveOutputPlugin(tmpArray);
   486 			if(!error)
   487 				{
   488 				//<rewrite array and add separator to each record>
   489 				_LIT8(KFormatString,"%S;");//';' is a separator
   490 				RArray<TPtrC8> tmpArray2;
   491 				//count total_length + separators
   492 				TInt length = 1;
   493 				TInt i=0;
   494 				for(i=0; i<tmpArray.Count(); ++i)
   495 					length+=tmpArray[i].Length()+1;
   496 	
   497 				HBufC8* b = HBufC8::NewLC(length);
   498 				for(i=0; i<tmpArray.Count(); ++i)
   499 					b->Des().AppendFormat(KFormatString, &tmpArray[i]);
   500 				//</rewrite array and add separator to each record>
   501 	
   502 				aMessage.Write(0,*b);
   503 				CleanupStack::PopAndDestroy(); // b
   504 				}
   505 			}
   506 			break;
   507 
   508 		case EGetActiveInputPlugin:
   509 			{
   510 			RArray<TPtrC8> tmpArray;
   511 			error = iServer.GetActiveInputPlugin(tmpArray);
   512 			if(!error)
   513 				{
   514 				if(tmpArray.Count() == 0)
   515 					error = KErrNotFound;
   516 				//<rewrite array and add separator to each record>
   517 				_LIT8(KFormatString,"%S;");//';' is a separator
   518 				RArray<TPtrC8> tmpArray2;
   519 				//count total_length + separators
   520 				TInt length = 1;
   521 				TInt i=0;
   522 				for(i=0; i<tmpArray.Count(); ++i)
   523 					length+=tmpArray[i].Length()+1;
   524 
   525 				HBufC8* b = HBufC8::NewLC(length);
   526 				for(i=0; i<tmpArray.Count(); ++i)
   527 					b->Des().AppendFormat(KFormatString, &tmpArray[i]);
   528 				//</rewrite array and add separator to each record>
   529 
   530 				aMessage.Write(0,*b);
   531 				CleanupStack::PopAndDestroy(); // b
   532 				}
   533 			}
   534 		break;
   535 
   536 		case EDeactivateInputPlugin:
   537 			{
   538 			HBufC8* pluginName = NULL;
   539 			TInt dataSize1 = aMessage.GetDesLength(0);
   540 			if(dataSize1 > 0)
   541 				{
   542 				pluginName = HBufC8::NewLC( dataSize1 );
   543 				TPtr8 namePtr(pluginName->Des());
   544 				aMessage.ReadL(0,namePtr);
   545 				error = iServer.DeActivateInputPlugin(pluginName->Des());
   546 				CleanupStack::PopAndDestroy(); //pluginName
   547 				}
   548 			}
   549 			break;
   550 		case EResizeTraceBuffer:
   551 			{
   552 			//Resize buffer size
   553 			TInt bufferSize = aMessage.Int0();
   554 			error = iServer.SetBufferSizeL(bufferSize);
   555 			}
   556 			break;
   557 
   558 		case EGetTraceBufferSize:
   559 			{
   560 			//Get buffer size
   561 			TInt bufferSize = 0;
   562 			error = iServer.GetBufandDataNotifyValuesL(KBuffer,bufferSize);
   563 			SendIntegerL(aMessage, bufferSize);
   564 			}
   565 			break;
   566 
   567 		case ESetBufferMode:
   568 			{
   569 			TInt bufferMode = aMessage.Int0();
   570 			if(bufferMode == ECircularBuffer)
   571 				error  = iServer.SetBufferMode(KCircular);
   572 			else if(bufferMode == EStraightBuffer)
   573 				error  = iServer.SetBufferMode(KStraight);
   574 			else
   575 				error = KErrArgument;
   576 			}
   577 			break;
   578 
   579 		case EGetBufferMode:
   580 			{
   581 			//Get buffer size
   582 			TInt bufferMode = 3;
   583 			error = iServer.GetBufandDataNotifyValuesL(KBufferMode,bufferMode);
   584 			SendIntegerL(aMessage, bufferMode);
   585 			}
   586 			break;
   587 
   588 		case ESetDataNotificationSize:
   589 			{
   590 			//Set data notification size
   591 			TInt dataNotification = aMessage.Int0();
   592 			error = iServer.SetDataNotificationSizeL(dataNotification);
   593 			}
   594 			break;
   595 
   596 		case EGetDataNotificationSize:
   597 			{
   598 			//Get Data Notification size
   599 			TInt dataNotification = 0;
   600 			error = iServer.GetBufandDataNotifyValuesL(KDataNotification,dataNotification);
   601 			SendIntegerL(aMessage, dataNotification);
   602 			}
   603 			break;
   604 
   605 		default:
   606 			{
   607 		    error = KErrArgument;
   608 			}
   609 			break;
   610 		}
   611     aMessage.Complete(error);
   612 	}
   613 
   614 void CULoggerSession::SendIntegerL(const RMessage2& aMessage, TUint32 aInt)
   615 	{
   616 	HBufC8* size = HBufC8::NewLC(32);
   617 	size->Des().Num(aInt);
   618 	TPtr8 ptr(size->Des());
   619 	aMessage.Write(0,ptr);
   620 	CleanupStack::PopAndDestroy();
   621 	}
   622 }//namespace