Update contrib.
1 // Copyright (c) 2004-2009 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.
20 #include "srvsubsess.h"
23 CServerSession::~CServerSession()
25 // Delete the subsession index.
28 //Delete the subsession container via the CObjectConIx's remove function
29 ((CSessionManager*)Server())->RemoveContainer(iContainer);
32 //Called by client/server framework after session has been successfully created.
33 //In effect, a second-phase constructor.
34 //Creates the object index and the object container for this session.
35 void CServerSession::CreateL()
37 // Create new object index
38 iSubSessionIx = CObjectIx::NewL();
40 // Initialize the object container
41 // using the object container index in the server.
42 iContainer = ((CSessionManager*)Server())->NewContainerL();
45 //helper method to resolve and verify subsession using RMessage and subsession handle
46 CServerSubSession* CServerSession::SubSessionFromHandle(const RMessage2& aMessage, TInt aHandle)
48 CServerSubSession* subSession = (CServerSubSession*)iSubSessionIx->At(aHandle);
49 if (subSession == NULL)
51 PanicClient(EBadSubsessionHandle, aMessage);
57 // if ServiceL Leaves, execution resumes in this method.
58 // this allows us to panic clients using bad descriptors, to deal with OOM conditions
59 // and to fail transactions with the correct reason: OOM etc.
60 void CServerSession::ServiceError(const RMessage2 &aMessage, TInt aError)
62 TServerRequest fn = static_cast<TServerRequest>(aMessage.Function());
64 // If we have failed during initialisation the subsession is no longer available.
65 // Perform additional cleanup by removing the subsession's handle from the server's
67 if (fn == EInitialise)
70 TPckgBuf<TInt> handlePckg;
71 TRAPD(res,aMessage.ReadL(3,handlePckg));
75 TInt subSessionHandle = handlePckg();
76 iSubSessionIx->Remove(subSessionHandle);
81 RDebug::Print(_L("CServerSession::ServiceError - Can't remove subsession handle; aError = %d; res = %d"), aError, res);
86 //under following conditions the subsession handles the error
87 if(fn > EInitialise && fn < ELastInTable)
89 CServerSubSession* subSession = SubSessionFromHandle(aMessage, aMessage.Int3());
92 subSession->ServiceError(aError);
97 RDebug::Print(_L("CServerSession::ServiceError - bad subsession handle. aError = %d"), aError);
101 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
102 //for multi ROFS instead of leaving we panic the client instead
105 case KErrMultiRofsOldCreUsed:
106 PanicClient(EMultiRofsPanicOldCre,aMessage);
108 case KErrMultiRofsGlobalOverride:
109 PanicClient(EMultiRofsPanicGlobalOverride,aMessage);
111 case KErrMultiRofsTypeOverride:
112 PanicClient(EMultiRofsPanicTypeOveride,aMessage);
114 case KErrMultiRofsIllegalRofs:
115 PanicClient(EMultiRofsPanicIllegalRofs,aMessage);
120 CSession2::ServiceError(aMessage, aError);
123 void CServerSession::ServiceL(const RMessage2& aMessage)
125 TServerRequest fn = static_cast<TServerRequest>(aMessage.Function());
127 #if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
128 if (fn == EGetSetParameters)
130 TInt r = GetSetParameters(aMessage);
131 aMessage.Complete(r);
136 if(fn > ELastInTable)
138 PanicClient(EBadMessageNumber, aMessage);
141 CServerSubSession* subSession = NULL;
143 #if defined (SYMBIAN_CENTREP_SUPPORT_MULTIROFS) && defined(CENTREP_TRACE)
146 startTick=User::FastCounter();
148 PERF_TEST_EVENT_START(subSession, aMessage);
150 if(fn == EInitialise)
153 subSession = NewSubSessionL(aMessage);
154 #if defined (SYMBIAN_CENTREP_SUPPORT_MULTIROFS) && defined(CENTREP_TRACE)
155 repUid=TUid::Uid(aMessage.Int0());
156 subSession->iRepositoryUid=repUid;
161 subSession = SubSessionFromHandle(aMessage, aMessage.Int3());
162 #if defined (SYMBIAN_CENTREP_SUPPORT_MULTIROFS) && defined(CENTREP_TRACE)
163 repUid=subSession->iRepositoryUid;
175 DeleteSubSession(aMessage.Int3());
179 //ask subsession to handle the message
180 r = subSession->ServiceL(aMessage);
183 PERF_TEST_EVENT_END(subSession, aMessage);
185 #if defined (SYMBIAN_CENTREP_SUPPORT_MULTIROFS) && defined(CENTREP_TRACE)
186 TUint32 endTick=User::FastCounter();
187 RDebug::Print(_L("[CENTREP],TimeStamp=,%d,Repository=,%x,Function=,%d,TickCount=,%d"),startTick,repUid.iUid,fn,endTick-startTick);
189 if (r != CServerSubSession::KDontCompleteMessage)
191 aMessage.Complete(r);
194 //If (subsession == NULL) we don't need to complete the message, as the message is completed already when the client panicked
198 RDebug::Print(_L("CServerSession::ServiceL - bad subsession handle. TServerRequest = %d"), fn);
203 //Creates a new subsession object, and writes its handle to the message.
204 //A subsession object is the server side "partner" to the client side subsession.
205 //On return last parameter of aMessage is filled with the handle of the subsession
206 //and handle is also returned
207 CServerSubSession* CServerSession::NewSubSessionL(const RMessage2& aMessage)
209 //create a new subsession
210 CServerSubSession* subSession = new (ELeave) CServerSubSession(this);
211 CleanupStack::PushL(subSession);
213 //add the subsession object to this session's object container to generate a unique ID
214 iContainer->AddL(subSession);
215 CleanupStack::Pop(subSession);
217 //add the object to the subsessions index, this returns a unique handle so that we can
218 //refer to the object later
219 TInt handle = iSubSessionIx->AddL(subSession);
221 //write the handle to the client's message
222 TPckgBuf<TInt> handlePckg(handle);
223 TRAPD(res,aMessage.WriteL(3,handlePckg));
226 iSubSessionIx->Remove(handle);
227 PanicClient(EBadSubsessionHandle, aMessage);
234 //Deletes a subsession object through its handle.
235 void CServerSession::DeleteSubSession(TInt aHandle)
237 iSubSessionIx->Remove(aHandle);
240 inline CSessionManager* CServerSession::Server()
242 return static_cast<CSessionManager*>(const_cast<CServer2*>(CSession2::Server()));
245 #if defined(__CENTREP_SERVER_PERFTEST__) || defined (__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
247 // The function code EGetSetParameters is a generic msg reserved
248 // for testing purpose. Int0 specifies the function to perform.
249 TInt CServerSession::GetSetParameters(const TClientRequest& aMessage)
251 TServerGetSetParametersSubCmd cmd = static_cast<TServerGetSetParametersSubCmd>(aMessage.Int0());
253 #ifdef __CENTREP_SERVER_PERFTEST__
254 if (cmd == EGetPerfResults)
256 TInt desSize = aMessage.GetDesMaxLength(1);
257 TInt numVals = desSize / sizeof(TUint32);
258 if (numVals < KCentRepPerfTestArraySize)
262 TPtrC8 p(reinterpret_cast<const TUint8*>(TServerResources::iPerfTestMgr.Entries()),
263 KCentRepPerfTestArraySize * sizeof(TUint32));
264 TInt ret = aMessage.Write(1, p);
267 TUint lastCompleteAccess = TServerResources::iPerfTestMgr.LastCompleteAccess();
268 TPckg<TUint> p2(lastCompleteAccess);
269 ret = aMessage.Write(2, p2);
273 else if (cmd == ERestartPerfTests)
275 TServerResources::iPerfTestMgr.Reset();
278 else if (cmd == EStopPerfTests)
280 TServerResources::iPerfTestMgr.Stop();
283 #endif // __CENTREP_SERVER_PERFTEST__
285 #ifdef __CENTREP_SERVER_MEMTEST__
286 if(cmd == ERestartMemTests)
288 TServerResources::StartRecordTimerResult();
291 else if(cmd == ESingleMemTest)
293 RECORD_HEAP_SIZE(EMemLcnOnDemand, aMessage.Int1());
296 else if(cmd == EGetMemResults)
298 TInt count = TServerResources::iMemTestDataCount;
299 TPckg<TInt> pCount(count);
301 TInt err = aMessage.Write(1, pCount);
302 if(err == KErrNone && count > 0)
304 TPtrC8 pBuf(reinterpret_cast<TUint8*>(TServerResources::iMemTestData), (TServerResources::iMemTestDataCount)*sizeof(TInt32));
305 err = aMessage.Write(2, pBuf);
307 // Stop recording results
308 TServerResources::StopRecordTimerResult();
311 #endif // __CENTREP_SERVER_MEMTEST__
313 #ifdef __CENTREP_SERVER_CACHETEST__
314 if (cmd == EEnableCache)
316 // First parameter is Timer Interval, second is cache size
317 TServerResources::iCacheManager->EnableCache(aMessage.Int1(), aMessage.Int2());
320 else if (cmd == EDisableCache)
322 TServerResources::iCacheManager->DisableCache(ETrue);
325 #endif // __CENTREP_SERVER_CACHETEST__
327 return KErrNotSupported;
329 #endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__