os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggersrvsession.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.
18 #include "uloggersession.h"
19 #include "uloggershared.h"
20 #include "uloggerclient.h"
21 #include "uloggershared.h"
22 #include "uloggertools.h"
27 CULoggerSession* CULoggerSession::NewL(RThread& aClient, CULoggerServer& aServer)
29 CULoggerSession* self = CULoggerSession::NewLC(aClient, aServer);
30 CleanupStack::Pop(); //self
37 CULoggerSession* CULoggerSession::NewLC(RThread& aClient, CULoggerServer& aServer)
39 CULoggerSession* self = new(ELeave) CULoggerSession( aClient, aServer );
40 CleanupStack::PushL( self );
48 void CULoggerSession::ConstructL()
50 iServer.IncrementSessions();
55 CULoggerSession::CULoggerSession(RThread& aClient, CULoggerServer& aServer)
65 CULoggerSession::~CULoggerSession()
67 iServer.DecrementSessions();
75 /** Process message from 'client' (actually another instance of ourselves)
77 void CULoggerSession::ServiceL(const RMessage2& aMessage)
79 TInt error = KErrNone;
80 switch(aMessage.Function())
84 iServer.RunAsService(ETrue);
89 case EDontRunAsService:
91 iServer.RunAsService(EFalse);
100 if(!iServer.ServerState())
101 error = iServer.RestartOutputting();
110 error = iServer.Stop();
111 //iServer.UnconfigureCurrentChannel();
117 error = iServer.RestartOutputting();
121 case ESetPrimaryFilter:
124 RArray<TUint32> filterArray;
125 CleanupClosePushL(filterArray);
127 TInt elementsCount = aMessage.Int1();
128 if(elementsCount > 0)
130 HBufC8* desData = HBufC8::NewLC(elementsCount);
131 TPtr8 readPtr(desData->Des());
132 aMessage.ReadL(0, readPtr);
134 CArrayFixFlat<TUint8> *array = new (ELeave) CArrayFixFlat<TUint8>(1);
135 CleanupStack::PushL(array);
138 InternalizeFromBufL(readPtr, *array, tmp);
140 for(TInt i(0); i < array->Count(); ++i)
142 filterArray.AppendL((TUint32)array->At(i));
145 error = iServer.SetActiveFilterL(filterArray, EPrimaryFilter);
147 CleanupStack::PopAndDestroy(3, &filterArray); // and array, desData
151 error = KErrArgument;
156 case ERemovePrimaryFilter:
158 //remove primaryfilters
159 TInt elementsCount = aMessage.Int1();
160 if(elementsCount > 0)
162 RArray<TUint32> filterArray;
163 CleanupClosePushL(filterArray);
164 HBufC8* desData = HBufC8::NewLC(elementsCount);
165 TPtr8 readPtr(desData->Des());
166 aMessage.ReadL(0, readPtr);
168 CArrayFixFlat<TUint8> *array = new (ELeave) CArrayFixFlat<TUint8>(1);
169 CleanupStack::PushL(array);
172 InternalizeFromBufL(readPtr, *array, tmp);
174 for(TInt i(0); i < array->Count(); ++i)
176 filterArray.AppendL((TUint32)array->At(i));
179 error = iServer.RemoveActiveFilter(filterArray,EPrimaryFilter);
181 CleanupStack::PopAndDestroy(3, &filterArray); // and array, desData
185 error = KErrArgument;
190 case EGetPrimaryFilters:
193 RArray<TUint32> listBuffer;
194 error = iServer.GetActiveFilters(listBuffer,EPrimaryFilter);
196 CArrayFixFlat<TUint8> *fixArray = new (ELeave)CArrayFixFlat<TUint8>(1);
197 CleanupStack::PushL(fixArray);
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
204 aMessage.Write(0,*desData);
211 case ESetSecondaryFilter:
214 TInt elementsCount = aMessage.Int1();
215 if(elementsCount > 0)
217 HBufC8* desData = HBufC8::NewLC(elementsCount*sizeof(TUint32));
218 TPtr8 readPtr(desData->Des());
219 aMessage.ReadL(0, readPtr);
221 RArray<TUint32> filterArray;
223 InternalizeFromBufL(readPtr, filterArray, tmp);
225 error = iServer.SetActiveFilterL(filterArray,ESecondaryFilter);
227 CleanupStack::PopAndDestroy(); //desData
231 error = KErrArgument;
235 case ERemoveSecondaryFilter:
237 //remove secondaryfilters
238 TInt elementsCount = aMessage.Int1();
239 if(elementsCount > 0)
241 HBufC8* desData = HBufC8::NewLC(elementsCount*sizeof(TUint32));
242 TPtr8 readPtr(desData->Des());
243 aMessage.ReadL(0, readPtr);
245 RArray<TUint32> filterArray;
248 InternalizeFromBufL(readPtr, filterArray, tmp);
250 error = iServer.RemoveActiveFilter(filterArray,ESecondaryFilter);
252 CleanupStack::PopAndDestroy(); //desData
256 error = KErrArgument;
260 case EGetSecondaryFilters:
262 //Get secondary filters
263 RArray<TUint32> listBuffer;
264 error=iServer.GetActiveFilters(listBuffer,ESecondaryFilter);
266 HBufC8* desData = ExternalizeToBufL(listBuffer, sizeof(TUint32));
267 TPtr8 readPtr2(desData->Des());
268 aMessage.Write(0,readPtr2);
276 case EEnableSecondaryFiltering:
278 error = iServer.SetSecondaryFiltering(KEnable);
282 case EDisableSecondaryFiltering:
284 error = iServer.SetSecondaryFiltering(KDisable);
288 case EGetSecondaryFiltering:
290 TBool enabled = EFalse;
291 iServer.GetSecondaryFiltering(enabled);
292 SendIntegerL(aMessage, (TInt)enabled);
296 case ESetActivePlugin:
298 //Set the active plugin
299 HBufC8* pluginName = NULL;
300 TInt dataSize1 = aMessage.GetDesLength(0);
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);
310 error = KErrArgument;
314 case ESetActiveInputPlugin:
316 //Set the active control plugin
317 HBufC8* pluginName = NULL;
318 TInt dataSize1 = aMessage.GetDesLength(0);
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
328 error = KErrArgument;
332 case ESetPluginSettings:
334 //Set the channel settings
335 HBufC8* pluginName = NULL;
336 HBufC8* setting = NULL;
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);
344 if(dataSize1>0 && dataSize2>0)
346 pluginName = HBufC8::NewLC( dataSize1 );
347 setting = HBufC8::NewLC( dataSize2 );
348 TPtr8 data1Ptr(pluginName->Des());
349 TPtr8 data2Ptr(setting->Des());
351 aMessage.ReadL(0,data1Ptr);
352 aMessage.ReadL(1,data2Ptr);
354 _LIT8(KSeparator,";");
357 while(pos != KErrNotFound)
359 pos = setting->Des().Find(KSeparator);
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);
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);
377 error = KErrArgument;
379 CleanupStack::PopAndDestroy(ptrArray);
383 case ERemovePluginSettings:
385 TInt dataSize = aMessage.GetDesLength(0);
386 TBuf8<KMaxPluginName> pluginName;
389 aMessage.ReadL(0, pluginName);
390 error = iServer.RemovePluginSettingsL(pluginName);
393 error = KErrArgument;
397 case EGetPluginSettings:
399 TInt dataSize1 = aMessage.GetDesLength(0);
400 TBuf8<128> mediaName;
404 aMessage.ReadL(0, mediaName);
405 RArray<TPtrC8> tmpArray;
406 error = iServer.GetOptionsSettingsL(mediaName,tmpArray);
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
414 for(i=0; i<tmpArray.Count(); ++i)
415 length+=tmpArray[i].Length()+1;
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>
422 aMessage.Write(1,*b);
423 CleanupStack::PopAndDestroy(); // b
426 error = KErrArgument;
430 case EGetInstalledPlugins:
432 //Get the installed plugins
433 RArray<TPtrC8> tmpArray;
434 iServer.GetInstalledOutputPlugins(tmpArray);
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
442 for(i=0; i<tmpArray.Count(); ++i)
443 length+=tmpArray[i].Length()+1;
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>
450 aMessage.Write(0,*b);
451 CleanupStack::PopAndDestroy(); // b
455 case EGetInputPlugins:
457 //Get the installed plugins
458 RArray<TPtrC8> tmpArray;
459 error = iServer.GetInstalledInputPluginsL(tmpArray);
462 //<rewrite array and add separator to each record>
463 _LIT8(KFormatString,"%S;");//';' is a separator
464 //count total_length + separators
467 for(i=0; i<tmpArray.Count(); ++i)
468 length+=tmpArray[i].Length()+1;
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>
475 aMessage.Write(0,*b);
476 CleanupStack::PopAndDestroy(); // b
481 case EGetActivePlugin:
483 //Reads the active plugin
484 RArray<TPtrC8> tmpArray;
485 error = iServer.GetActiveOutputPlugin(tmpArray);
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
494 for(i=0; i<tmpArray.Count(); ++i)
495 length+=tmpArray[i].Length()+1;
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>
502 aMessage.Write(0,*b);
503 CleanupStack::PopAndDestroy(); // b
508 case EGetActiveInputPlugin:
510 RArray<TPtrC8> tmpArray;
511 error = iServer.GetActiveInputPlugin(tmpArray);
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
522 for(i=0; i<tmpArray.Count(); ++i)
523 length+=tmpArray[i].Length()+1;
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>
530 aMessage.Write(0,*b);
531 CleanupStack::PopAndDestroy(); // b
536 case EDeactivateInputPlugin:
538 HBufC8* pluginName = NULL;
539 TInt dataSize1 = aMessage.GetDesLength(0);
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
550 case EResizeTraceBuffer:
553 TInt bufferSize = aMessage.Int0();
554 error = iServer.SetBufferSizeL(bufferSize);
558 case EGetTraceBufferSize:
562 error = iServer.GetBufandDataNotifyValuesL(KBuffer,bufferSize);
563 SendIntegerL(aMessage, bufferSize);
569 TInt bufferMode = aMessage.Int0();
570 if(bufferMode == ECircularBuffer)
571 error = iServer.SetBufferMode(KCircular);
572 else if(bufferMode == EStraightBuffer)
573 error = iServer.SetBufferMode(KStraight);
575 error = KErrArgument;
583 error = iServer.GetBufandDataNotifyValuesL(KBufferMode,bufferMode);
584 SendIntegerL(aMessage, bufferMode);
588 case ESetDataNotificationSize:
590 //Set data notification size
591 TInt dataNotification = aMessage.Int0();
592 error = iServer.SetDataNotificationSizeL(dataNotification);
596 case EGetDataNotificationSize:
598 //Get Data Notification size
599 TInt dataNotification = 0;
600 error = iServer.GetBufandDataNotifyValuesL(KDataNotification,dataNotification);
601 SendIntegerL(aMessage, dataNotification);
607 error = KErrArgument;
611 aMessage.Complete(error);
614 void CULoggerSession::SendIntegerL(const RMessage2& aMessage, TUint32 aInt)
616 HBufC8* size = HBufC8::NewLC(32);
617 size->Des().Num(aInt);
618 TPtr8 ptr(size->Des());
619 aMessage.Write(0,ptr);
620 CleanupStack::PopAndDestroy();