os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServerSession.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServerSession.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,658 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Server session object implementation.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "EComServerStart.h"
    1.22 +#include "EComMessageIds.h"
    1.23 +#include <ecom/ecomerrorcodes.h>
    1.24 +#include <ecom/implementationinformation.h>
    1.25 +#include "EComServerSession.h"
    1.26 +#include "EComSessionAux.h"
    1.27 +#include "EComServer.h"
    1.28 +#include "TestUtilities.h"	// For __FILE__LINE__
    1.29 +#include "EComPerformance.h"
    1.30 +#include "EComDebug.h"
    1.31 +
    1.32 +//
    1.33 +// RMessage::Panic() completes the message. This is:
    1.34 +// (a) important for efficient cleanup within the kernel.
    1.35 +// (b) a problem if the message is completed a second time.
    1.36 +//
    1.37 +void PanicClient(const TClientRequest& aMessage, TInt aPanicCode)
    1.38 +	{
    1.39 +	aMessage.Panic(KEComServerPanicCategory, aPanicCode);
    1.40 +	}
    1.41 +
    1.42 +//
    1.43 +//	class CEComServerSession
    1.44 +//
    1.45 +CEComServerSession::CEComServerSession()
    1.46 +	: CSession2()
    1.47 +	{
    1.48 +	// Do nothing
    1.49 +	}
    1.50 +
    1.51 +//
    1.52 +// 2nd phase construct for sessions - called by the CServer framework
    1.53 +//
    1.54 +void CEComServerSession::CreateL()
    1.55 +	{
    1.56 +	Server().AddSession();
    1.57 +	}
    1.58 +
    1.59 +CEComServerSession::~CEComServerSession()
    1.60 +	{
    1.61 +	CleanupInternalList();
    1.62 +	CompleteNotifications(KErrCancel);
    1.63 +	delete iMemoryStore;
    1.64 +	Server().DropSession();
    1.65 +	}
    1.66 +
    1.67 +//
    1.68 +// Deliver the notification message to the client
    1.69 +//
    1.70 +void CEComServerSession::CompleteNotifications(TInt aCompletionCode)
    1.71 +	{
    1.72 +	const TInt count = iNotificationRequests.Count();
    1.73 +	for(TInt i = 0; i < count; ++i)
    1.74 +		{
    1.75 +		  iNotificationRequests[i].iMessage.Complete(aCompletionCode);
    1.76 +
    1.77 +		}
    1.78 +	iNotificationRequests.Reset();
    1.79 +	}
    1.80 +
    1.81 +//
    1.82 +// Handle a client request.
    1.83 +// Leaving is handled by CEComServer::RunError() which reports the error code
    1.84 +// to the client.
    1.85 +//
    1.86 +void CEComServerSession::ServiceL(const RMessage2& aMessage)
    1.87 +{
    1.88 +	const TClientRequest msg(aMessage);
    1.89 +	ServiceL(msg);
    1.90 +}
    1.91 +
    1.92 +void CEComServerSession::ServiceL(const TClientRequest& aMessage)
    1.93 +	{
    1.94 +	TInt completionCode = KErrNone;
    1.95 +	TBool asyncRequest = EFalse;
    1.96 +
    1.97 +	switch (aMessage.Function())
    1.98 +		{
    1.99 +	case ENotifyOnChange:
   1.100 +		{
   1.101 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComNotifyOnChangeRequestType, Server().GetCurrentStartupState());
   1.102 +		SEComNotification notif;
   1.103 +		notif.iMessage=aMessage;
   1.104 +		// the TRequestStatus as a TInt is stored for later comparisons
   1.105 +		notif.iRequestStatusHandle=aMessage.Int0();
   1.106 +		//Check that this TRequestStatus is not already being used.
   1.107 +		const TInt count = iNotificationRequests.Count();
   1.108 +		for(TInt i = 0; i < count; ++i)
   1.109 +		{
   1.110 +			if(iNotificationRequests[i].iRequestStatusHandle == notif.iRequestStatusHandle)
   1.111 +				User::Leave(KErrArgument);
   1.112 +
   1.113 +		}
   1.114 +		User::LeaveIfError(iNotificationRequests.Append(notif));
   1.115 +		asyncRequest = ETrue;
   1.116 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.117 +		break;
   1.118 +		}
   1.119 +
   1.120 +	case ECancelNotifyOnChange:
   1.121 +			{
   1.122 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComCancelNotifyOnChangeRequestType, Server().GetCurrentStartupState());
   1.123 +			TInt statusHandle = aMessage.Int0();
   1.124 +
   1.125 +			const TInt count = iNotificationRequests.Count();
   1.126 +			for(TInt i = 0; i < count; ++i)
   1.127 +				{
   1.128 +				if(iNotificationRequests[i].iRequestStatusHandle == statusHandle)
   1.129 +					{
   1.130 +						iNotificationRequests[i].iMessage.Complete(KErrCancel);
   1.131 +						iNotificationRequests.Remove(i);
   1.132 +						break;  // Terminate the loop
   1.133 +					}
   1.134 +				}
   1.135 +			}
   1.136 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.137 +		break;
   1.138 +
   1.139 +	case EListImplementations:
   1.140 +	case EListResolvedImplementations:
   1.141 +	case EListCustomResolvedImplementations:
   1.142 +		if(Server().RegistryIndexValid())
   1.143 +			{
   1.144 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComListRequestType, Server().GetCurrentStartupState());
   1.145 +			DoListImplementationsL(aMessage);
   1.146 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.147 +			}
   1.148 +		else
   1.149 +			{
   1.150 +			if(ReceivePending())
   1.151 +				User::Leave(KEComErrListInvalidAwaitNotification);
   1.152 +			else
   1.153 +				User::Leave(KEComErrListCurrentlyUnavailable);
   1.154 +			}
   1.155 +		break;
   1.156 +
   1.157 +	case ECollectImplementationsList:
   1.158 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComCollectImplementationsRequestType, Server().GetCurrentStartupState());
   1.159 +		if(!DoCollectListL(aMessage))
   1.160 +			completionCode = KErrNotReady;
   1.161 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.162 +		break;
   1.163 +
   1.164 +	case EGetImplementationCreationMethod:
   1.165 +	case EGetResolvedCreationMethod:
   1.166 +	case EGetCustomResolvedCreationMethod:
   1.167 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComCreateRequestType, Server().GetCurrentStartupState());
   1.168 +		DoGetResolvedImplementationL(aMessage);
   1.169 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.170 +		break;
   1.171 +
   1.172 +	case EListExtendedInterfaces:
   1.173 +RECORD_CLIENT_REQUEST_START_TIMER_RESULT(EEComListExtendedInterfacesRequestType, Server().GetCurrentStartupState());
   1.174 +		DoListExtendedInterfacesL(aMessage);
   1.175 +RECORD_CLIENT_REQUEST_END_TIMER_RESULT;
   1.176 +		break;
   1.177 +
   1.178 +	case EEnableImplementation:
   1.179 +	case EDisableImplementation:
   1.180 +		// Ommissions for 6.2
   1.181 +		completionCode = KErrNotSupported;
   1.182 +		break;
   1.183 +#if defined(__ECOM_SERVER_TESTABILITY__) || defined(__ECOM_SERVER_PERFORMANCE__)
   1.184 +	case ESetGetParameters:
   1.185 +		DoSetGetParametersL(aMessage);
   1.186 +		break;
   1.187 +#endif
   1.188 +	//EDestroyedImplementation obsolete due to implementation creation
   1.189 +	//relocation to client side from server
   1.190 +	case EDestroyedImplementation:
   1.191 +	default:
   1.192 +		// Something badly wrong if we get here.
   1.193 +		PanicClient(aMessage,KEComErrUnknownService);
   1.194 +		// RMessage::Panic() has completed the message
   1.195 +		// so treat this as an asynch request.
   1.196 +		asyncRequest = ETrue;
   1.197 +		}
   1.198 +	if (!asyncRequest)
   1.199 +		aMessage.Complete(completionCode);
   1.200 +	}
   1.201 +
   1.202 +
   1.203 +
   1.204 +	
   1.205 +TInt const KDefaultStoreSize = 256;	// Enough space for approx 1 implementation : will grow to fit if required
   1.206 +
   1.207 +/**
   1.208 +UnPack the match string and extended interface from the client supplied parameters.
   1.209 +@param			aMessage 
   1.210 +@param			aExtendedInterfaces Return value consisting of an array containing the extended interfaces.
   1.211 +@param			aMatchStr Return value consisting of the matching string.
   1.212 +*/
   1.213 +void CEComServerSession::UnpackMatchStrAndExtendedInterfacesFromClientL(const TClientRequest& aMessage,
   1.214 +													RExtendedInterfacesArray& aExtendedInterfaces,
   1.215 +													RBuf8& aMatchStr)
   1.216 +	{
   1.217 +	
   1.218 +	//now get the matchString and extendedInterfaces
   1.219 +	TInt sizeOfMatchStrExtInfBuf = aMessage.GetDesLength(KIPCParameterMatchStrExtInf);
   1.220 +	User::LeaveIfError(sizeOfMatchStrExtInfBuf);
   1.221 +	RBuf8 matchStrExtInfBuf;
   1.222 +	matchStrExtInfBuf.CreateMaxL(sizeOfMatchStrExtInfBuf);
   1.223 +	matchStrExtInfBuf.CleanupClosePushL();
   1.224 +	
   1.225 +	aMessage.ReadL(KIPCParameterMatchStrExtInf,matchStrExtInfBuf);
   1.226 +	RDesReadStream readStream;
   1.227 +	CleanupClosePushL(readStream);
   1.228 +	readStream.Open(matchStrExtInfBuf);
   1.229 +	TInt lenOfMatchStr = readStream.ReadInt32L();
   1.230 +	aMatchStr.CreateMaxL(lenOfMatchStr);
   1.231 +	aMatchStr.CleanupClosePushL();
   1.232 +	if (lenOfMatchStr>0)
   1.233 +		{
   1.234 +		readStream.ReadL(aMatchStr,lenOfMatchStr);		
   1.235 +		}
   1.236 +	TInt numOfExtendedInterfaces = readStream.ReadInt32L();
   1.237 +	CleanupClosePushL(aExtendedInterfaces);
   1.238 +	for(TInt i = 0; i < numOfExtendedInterfaces; i++)
   1.239 +		{
   1.240 +		aExtendedInterfaces.AppendL(TUid::Uid(readStream.ReadInt32L()));
   1.241 +		}
   1.242 +	
   1.243 +	CleanupStack::Pop(&aExtendedInterfaces);
   1.244 +	CleanupStack::Pop(&aMatchStr);
   1.245 +	CleanupStack::PopAndDestroy(&readStream);
   1.246 +	CleanupStack::PopAndDestroy(&matchStrExtInfBuf); 
   1.247 +	}
   1.248 +
   1.249 +
   1.250 +// Note that this method for returning the arbitrary sized data set 
   1.251 +// will not work IF the session is shared so...
   1.252 +// DO NOT SHARE SERVER SIDE SESSIONS BETWEEN CLIENTS
   1.253 +void CEComServerSession::DoListImplementationsL(const TClientRequest& aMessage)
   1.254 +	{
   1.255 +	// Unpack the client supplied parameters
   1.256 +	// Firstly get the uids
   1.257 +	TUidType uids;
   1.258 +	TPckg<TUidType> uidsPkg(uids);	
   1.259 +	aMessage.ReadL(KIPCParameterUids, uidsPkg);
   1.260 +	
   1.261 +	if(uids[KInterfaceUidIndex] == KNullUid)
   1.262 +		{
   1.263 +		User::Leave(KEComErrMissingParameter);
   1.264 +		}
   1.265 +
   1.266 +	//now get the TListImplParam parameters
   1.267 +  	TListImplParam listParam;
   1.268 +  	TPckg<TListImplParam> listParamPkg(listParam);
   1.269 +  	aMessage.ReadL(2,listParamPkg);
   1.270 +	
   1.271 +	// Now rebuild the TEComResolverParams
   1.272 +	TEComResolverParams resolverParameters;
   1.273 +	resolverParameters.SetGenericMatch(listParam.iMatchType);
   1.274 +	
   1.275 +	//now get the matchString and extendedInterfaces
   1.276 +	RBuf8 matchStr;
   1.277 +	RExtendedInterfacesArray extendedInterfaces;
   1.278 +	UnpackMatchStrAndExtendedInterfacesFromClientL(aMessage,extendedInterfaces,matchStr);
   1.279 +	matchStr.CleanupClosePushL();
   1.280 +	CleanupClosePushL(extendedInterfaces);
   1.281 +	
   1.282 +	if(matchStr.Length()>0)
   1.283 +		{	
   1.284 +		resolverParameters.SetDataType(matchStr);
   1.285 +		}
   1.286 +	// Else the client's resolver params are default constructed i.e. invalid
   1.287 +	// data type descriptor or its length is zero, so use empty RBuf8 above.
   1.288 +	
   1.289 +		
   1.290 +	// Pass to the server
   1.291 +	iListContext = aMessage.Function();
   1.292 +	switch(iListContext)
   1.293 +		{
   1.294 +		case EListImplementations:
   1.295 +			iList = Server().ListImplementationsL( uids[KInterfaceUidIndex], extendedInterfaces, aMessage );
   1.296 +			break;
   1.297 +		case EListResolvedImplementations:
   1.298 +			if(matchStr.Length() == 0)
   1.299 +				{
   1.300 +				User::Leave(KEComErrMissingParameter);
   1.301 +				}
   1.302 +			iList = Server().ListImplementationsL( uids[KInterfaceUidIndex], resolverParameters, extendedInterfaces, aMessage);
   1.303 +			break;
   1.304 +		case EListCustomResolvedImplementations:
   1.305 +			if(uids[KResolverUidIndex] == KNullUid)
   1.306 +				{
   1.307 +				User::Leave(KEComErrMissingParameter);
   1.308 +				}
   1.309 +			iList = Server().ListImplementationsL( uids[KInterfaceUidIndex], resolverParameters, uids[KResolverUidIndex], extendedInterfaces, aMessage);
   1.310 +			break;
   1.311 +		default:
   1.312 +			break;
   1.313 +		}
   1.314 +	//Now cleanup the extended interface
   1.315 +	CleanupStack::PopAndDestroy(&extendedInterfaces);
   1.316 +	CleanupStack::PopAndDestroy(&matchStr);
   1.317 +
   1.318 +	TInt bufferSizeRequired=0;
   1.319 +	// Package the array for return
   1.320 +	if(iList)
   1.321 +		{
   1.322 +		if(iList->Count()>0)
   1.323 +			{
   1.324 +			// Allocate a new store and replace the old one first
   1.325 +			CBufFlat* memoryStore = CBufFlat::NewL(KDefaultStoreSize);
   1.326 +			delete iMemoryStore;
   1.327 +			iMemoryStore = memoryStore;
   1.328 +
   1.329 +			// Note : There is no need to push
   1.330 +			// the write stream onto the cleanup stack
   1.331 +			// because it has no internal resources.
   1.332 +			RBufWriteStream writeStream;
   1.333 +			writeStream.Open(*iMemoryStore);
   1.334 +
   1.335 +			// Build the store data then calculate the end size;
   1.336 +			const TInt entryCount = iList->Count();		
   1.337 +			writeStream.WriteInt32L(entryCount);
   1.338 +			
   1.339 +			for(TInt i = 0; i < entryCount; ++i)
   1.340 +				(*iList)[i]->ExternalizeL(ETrue,writeStream);
   1.341 +	
   1.342 +			writeStream.CommitL();
   1.343 +
   1.344 +			// Set to actual size
   1.345 +			bufferSizeRequired=iMemoryStore->Size();
   1.346 +			__ECOM_TRACE1("ECOM ListImplementations request buffer size required=%d",bufferSizeRequired);
   1.347 +			}
   1.348 +			CleanupInternalList();	
   1.349 +		}
   1.350 +	
   1.351 +	//if nothing is returned we should still indicate this to the client side
   1.352 +	if (bufferSizeRequired==0)
   1.353 +		{
   1.354 +		//write back the bufferSize
   1.355 +		listParam.iBufferSize=0;
   1.356 +  		aMessage.WriteL(2,listParamPkg);
   1.357 +		return;
   1.358 +		}
   1.359 +		
   1.360 +	//if the preallocated size is big enough to hold our entry
   1.361 +	//copy it to the client
   1.362 +	if (listParam.iBufferSize >= bufferSizeRequired)
   1.363 +		{
   1.364 +		if (iMemoryStore)
   1.365 +			{
   1.366 +			//write back the bufferSize
   1.367 +			listParam.iBufferSize=bufferSizeRequired;
   1.368 +  			aMessage.WriteL(2,listParamPkg);
   1.369 +			TPtr8 data=iMemoryStore->Ptr(0);
   1.370 +			aMessage.WriteL(3,data);
   1.371 +			delete iMemoryStore;
   1.372 +			iMemoryStore=NULL;
   1.373 +			}
   1.374 +		}
   1.375 +	//if not rewrite back to the client the size that is required
   1.376 +	//and signal with KErrOverFlow to the client
   1.377 +	else
   1.378 +		{
   1.379 +		//write back the bufferSize
   1.380 +		listParam.iBufferSize=bufferSizeRequired;
   1.381 +  		aMessage.WriteL(2,listParamPkg);
   1.382 +		User::Leave(KErrOverflow);
   1.383 +		}
   1.384 +	}
   1.385 +
   1.386 +TBool CEComServerSession::DoCollectListL(const TClientRequest& aMessage)
   1.387 +	{
   1.388 +	TBool success = EFalse;
   1.389 +	if(iMemoryStore)
   1.390 +		{
   1.391 +		TPtr8 data=iMemoryStore->Ptr(0);
   1.392 +		aMessage.WriteL(0, data);
   1.393 +		delete iMemoryStore;
   1.394 +		iMemoryStore = NULL;
   1.395 +		success = ETrue;
   1.396 +		}
   1.397 +	return success;
   1.398 +	}
   1.399 +
   1.400 +void CEComServerSession::DoGetResolvedImplementationL(const TClientRequest& aMessage)
   1.401 +	{
   1.402 +	// Unpack the client supplied parameters
   1.403 +	// Firstly get the uids
   1.404 +	TUidType uids;
   1.405 +	TPckg<TUidType> uidsPkg(uids);
   1.406 +	aMessage.ReadL(KIPCParameterUids, uidsPkg);
   1.407 +
   1.408 +	// Now rebuild the TEComResolverParams
   1.409 +	TEComResolverParams resolverParameters;
   1.410 +	resolverParameters.SetGenericMatch(KIPCParameterResolverParamsTypePtr);	
   1.411 +	
   1.412 +	//now get the matchString and extendedInterfaces
   1.413 +	RBuf8 matchStr;
   1.414 +	matchStr.CleanupClosePushL();
   1.415 +	RExtendedInterfacesArray extendedInterfaces;
   1.416 +	CleanupClosePushL(extendedInterfaces);
   1.417 +	UnpackMatchStrAndExtendedInterfacesFromClientL(aMessage,extendedInterfaces,matchStr);
   1.418 +    if(matchStr.Length()>0)
   1.419 +		{	
   1.420 +		resolverParameters.SetDataType(matchStr);
   1.421 +		}
   1.422 +	// Else the client's resolver params are default constructed i.e. invalid
   1.423 +	// data type descriptor or its length is zero, so use empty HBufC8 above.
   1.424 +	// Set up for the return value
   1.425 +	TUid dtorIdKey(KNullUid);
   1.426 +	TEntry loadInfo;
   1.427 +	
   1.428 +	switch(aMessage.Function())
   1.429 +		{
   1.430 +		case EGetImplementationCreationMethod:
   1.431 +			Server().GetResolvedDllInfoL(uids[KInterfaceUidIndex], 
   1.432 +										 loadInfo, 
   1.433 +										 dtorIdKey,
   1.434 +										 aMessage);
   1.435 +			break;
   1.436 +		case EGetResolvedCreationMethod:
   1.437 +			Server().GetResolvedDllInfoL(uids[KInterfaceUidIndex], 
   1.438 +										 resolverParameters, 
   1.439 +										 extendedInterfaces,
   1.440 +										 loadInfo, 
   1.441 +										 dtorIdKey,
   1.442 +										 aMessage);
   1.443 +			break;
   1.444 +		case EGetCustomResolvedCreationMethod:
   1.445 +			Server().GetResolvedDllInfoL(uids[KInterfaceUidIndex], 
   1.446 +										 resolverParameters, 
   1.447 +										 uids[KResolverUidIndex], 
   1.448 +										 extendedInterfaces,
   1.449 +										 loadInfo, 
   1.450 +										 dtorIdKey,
   1.451 +										 aMessage);
   1.452 +			break;
   1.453 +		default:
   1.454 +			break;
   1.455 +		}
   1.456 +	CleanupStack::PopAndDestroy(&extendedInterfaces);
   1.457 +	CleanupStack::PopAndDestroy(&matchStr);
   1.458 +	
   1.459 +// ??? Compile time assert that sizeof(TProxyNewLPtr) == sizeof(TAny*)?
   1.460 +// Currently I'm not arranging for the client-side of the session to
   1.461 +// convert from TAny* to TProxyNewLPtr, and using this to avoid the
   1.462 +// full agony of following through with conversion...
   1.463 +
   1.464 +	// Then re-package the results for return
   1.465 +	// Firstly the Interface Implementation creation method pointer
   1.466 +	TPckg<TEntry> result(loadInfo);
   1.467 +	
   1.468 +	aMessage.WriteL(KIPCReturnParameterCreationMethodPtr, result);
   1.469 +	// Next the destruction identification uid
   1.470 +	TUidType type(KNullUid,dtorIdKey,KNullUid);
   1.471 +	TPckg<TUidType> dtorIdKeyPkg(type);
   1.472 +	
   1.473 +	aMessage.WriteL(KIPCReturnParameterUidsPtr, dtorIdKeyPkg);
   1.474 +	}
   1.475 +
   1.476 +// Return the list of interfaces to the client. If not enough space
   1.477 +// has been allocated by the client, KErrOverflow will be returned.
   1.478 +//
   1.479 +void CEComServerSession::DoListExtendedInterfacesL(const TClientRequest& aMessage)
   1.480 +	{
   1.481 +	// Unpack the client supplied parameters
   1.482 +	TInt bufferSize = 0;
   1.483 +	TUid implementationUid(KNullUid);
   1.484 +	TPckg<TUid> implementationUidDes(implementationUid);
   1.485 +	TPckg<TInt> bufferSizeDes(bufferSize);
   1.486 +	aMessage.ReadL(KIPCParameterImplementationUid,implementationUidDes);
   1.487 +	aMessage.ReadL(KIPCParameterBufferSize,bufferSizeDes);
   1.488 +		
   1.489 +	// Get the implementation information for this implementation UID.
   1.490 +	CImplementationInformation* implInfo = NULL;
   1.491 +	Server().GetImplementationInformationL(implementationUid,implInfo,aMessage);
   1.492 +	
   1.493 +	TInt numExtendedInterfaces = 0; // Number of extended interfaces to return to client.
   1.494 +
   1.495 +	if(implInfo)
   1.496 +		{
   1.497 +		TInt bufferSizeRequired = 0; // Buffer required to send extended interface data back to client
   1.498 +		
   1.499 +		// Fetch the list of extended interfaces
   1.500 +		RExtendedInterfacesArray* extendedInterfaceList = implInfo->GetExtendedInterfaceList();
   1.501 +		if (extendedInterfaceList != NULL)
   1.502 +			{
   1.503 +			numExtendedInterfaces = extendedInterfaceList->Count();
   1.504 +			}
   1.505 +		if (numExtendedInterfaces > 0)
   1.506 +			{
   1.507 +			bufferSizeRequired = numExtendedInterfaces * sizeof(TUid);
   1.508 +			__ECOM_TRACE1("ECOM ListInterfaces request buffer size required=%d",bufferSizeRequired);
   1.509 +			
   1.510 +			//if the preallocated size is big enough to hold our entry
   1.511 +			//copy it to the client
   1.512 +			if (bufferSize >= bufferSizeRequired)
   1.513 +				{
   1.514 +				RBuf8 buf;
   1.515 +				CleanupClosePushL(buf);
   1.516 +				buf.CreateL(bufferSizeRequired);   // Create the RBuf.
   1.517 +				
   1.518 +				// Note : There is no need to push the write stream onto the cleanup stack
   1.519 +				// because it has no internal resources.
   1.520 +				RDesWriteStream writeStream;
   1.521 +				writeStream.Open(buf);
   1.522 +
   1.523 +				// Build the data of extendedInterfaces;
   1.524 +				for(TInt i = 0; i < numExtendedInterfaces; ++i)
   1.525 +					{
   1.526 +					writeStream.WriteInt32L((*extendedInterfaceList)[i].iUid);
   1.527 +					}
   1.528 +
   1.529 +				writeStream.CommitL();
   1.530 +				
   1.531 +				// Copy the data to the client.
   1.532 +				bufferSize=bufferSizeRequired;
   1.533 +				aMessage.WriteL(KIPCParameterBufferSize,bufferSizeDes);
   1.534 +				aMessage.WriteL(KIPCParameterInterfaceData,buf);
   1.535 +				
   1.536 +				CleanupStack::PopAndDestroy(&buf);
   1.537 +				}
   1.538 +			//if not rewrite back to the client the size that is required
   1.539 +			//and signal with KErrOverFlow to the client
   1.540 +			else
   1.541 +				{
   1.542 +				bufferSize=bufferSizeRequired;
   1.543 +				aMessage.WriteL(KIPCParameterBufferSize,bufferSizeDes);
   1.544 +				User::Leave(KErrOverflow);
   1.545 +				}
   1.546 +			}
   1.547 +		}
   1.548 +		
   1.549 +	//if nothing is returned we should still indicate this to the client side
   1.550 +	if (numExtendedInterfaces == 0)
   1.551 +		{
   1.552 +		bufferSize=0;
   1.553 +		aMessage.WriteL(KIPCParameterBufferSize,bufferSizeDes);
   1.554 +		}
   1.555 +	}
   1.556 +
   1.557 +#if defined(__ECOM_SERVER_TESTABILITY__) || defined(__ECOM_SERVER_PERFORMANCE__)
   1.558 +/**
   1.559 +This method is provided for testability. It allows the user to 
   1.560 +send and receive any parameters. 
   1.561 +@param aMessage IPC message between server and client
   1.562 +*/
   1.563 +void CEComServerSession::DoSetGetParametersL(const TClientRequest& aMessage)
   1.564 +	{
   1.565 +	TInt parameterType = aMessage.Int0();
   1.566 +	
   1.567 +	switch(parameterType)
   1.568 +		{
   1.569 +#ifdef __ECOM_SERVER_TESTABILITY__
   1.570 +		case EChangeStartupState:
   1.571 +			Server().ChangeStartupStateL(aMessage.Int1());
   1.572 +			break;
   1.573 +		case EProcessStartupState:
   1.574 +			Server().ProcessCurrentStartupStateL();
   1.575 +			break;
   1.576 +		case EGetStartupState:
   1.577 +			{
   1.578 +			TInt state = Server().GetCurrentStartupState();
   1.579 +			TPckg<TInt> pckgState(state);
   1.580 +		    aMessage.Write(1, pckgState);
   1.581 +			break;
   1.582 +			}
   1.583 +#endif
   1.584 +#ifdef __ECOM_SERVER_PERFORMANCE__
   1.585 +		case EGetStartupStateTimerResult:
   1.586 +			{
   1.587 +			TStartupStateTimerEntry timerEntry;
   1.588 +			
   1.589 +			TInt ret = EComPerformance::GetStartupStateTimerResult(aMessage.Int1(), timerEntry.iTimerResult, timerEntry.iState);
   1.590 +			
   1.591 +			TPckg<TInt> pckgRetValue(ret);
   1.592 +			aMessage.Write(2, pckgRetValue);
   1.593 +			TPckg<TStartupStateTimerEntry> pckgTimerEntry(timerEntry);
   1.594 +			aMessage.Write(3, pckgTimerEntry);
   1.595 +			break;
   1.596 +			}
   1.597 +
   1.598 +		case EGetAccumulatedClientRequestsTimerResult:
   1.599 +			{
   1.600 +			TClientRequestTimerEntry timerEntry;
   1.601 +			TInt ret = EComPerformance::GetAccumulatedClientRequestTimerResult(aMessage.Int1(), timerEntry);
   1.602 +			TPckg<TInt> pckgRetValue(ret);
   1.603 +			aMessage.Write(2, pckgRetValue);
   1.604 +			TPckg<TClientRequestTimerEntry> pckgTimerEntry(timerEntry);
   1.605 +			aMessage.Write(3, pckgTimerEntry);
   1.606 +			break;
   1.607 +			}
   1.608 +		case EGetRegistryCounts:
   1.609 +			{
   1.610 +			RegistryCounts::TRegistryCounts counts;
   1.611 +			Server().GetRegistryCountsL(aMessage.Int1(), counts);
   1.612 +			TPckg<RegistryCounts::TRegistryCounts> pckgRegistryCounts(counts);
   1.613 +			aMessage.Write(2, pckgRegistryCounts);
   1.614 +			break;
   1.615 +			}
   1.616 +		case EResetStartupStateTimerCounts:
   1.617 +			{
   1.618 +			EComPerformance::ResetStartupStateTimerResult();
   1.619 +			break;
   1.620 +			}
   1.621 +		case EGetEComPerfTimeRecord:
   1.622 +			{
   1.623 +			TEComPerfTimeRecordEntry timerEntry;
   1.624 +			TInt ret = EComPerformance::GetEComPerfTimeRecord(aMessage.Int1(), timerEntry);
   1.625 +			TPckg<TInt> pckgRetValue(ret);
   1.626 +			aMessage.Write(2, pckgRetValue);
   1.627 +			TPckg<TEComPerfTimeRecordEntry> pckgTimerEntry(timerEntry);
   1.628 +			aMessage.Write(3, pckgTimerEntry);
   1.629 +			break;
   1.630 +			}
   1.631 +		case EResetEComPerfTimeRecords:
   1.632 +			{
   1.633 +			EComPerformance::ResetEComPerfTimeRecords();
   1.634 +			}
   1.635 +		case EGetEComServerHeapResult:
   1.636 +			{
   1.637 +			TEComPerfHeapUsage heapEntry;
   1.638 +			TInt ret= EComPerformance::GetEComHeapSize(aMessage.Int1(),heapEntry);
   1.639 +			TPckg<TInt> pckgRetValue(ret);
   1.640 +			aMessage.Write(2, pckgRetValue);
   1.641 +			TPckg<TEComPerfHeapUsage> pckgHeapEntry(heapEntry);
   1.642 +			aMessage.Write(3, pckgHeapEntry);
   1.643 +			break;			
   1.644 +			}
   1.645 +#endif
   1.646 +		default:
   1.647 +			break;
   1.648 +		}
   1.649 +	}
   1.650 +#endif
   1.651 +
   1.652 +void CEComServerSession::CleanupInternalList()
   1.653 +	{
   1.654 +	if (iList != NULL)
   1.655 +		{
   1.656 +		iList->Reset();
   1.657 +		delete iList;
   1.658 +		iList = NULL;
   1.659 +		}
   1.660 +	}
   1.661 +