Update contrib.
1 // Copyright (c) 1997-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.
14 // Definition of the CEComServerSession class
23 #ifndef __ECOMSERVERSESSION_H__
24 #define __ECOMSERVERSESSION_H__
27 #include "EComServer.h"
29 #include "clientrequest.h"
31 // __________________________________________________________________________
36 Provides the server side session which
37 handles the messages from REComSession, unpacking the input
38 message parameters, calling the server and packaging the
39 the returned data as output message parameters.
40 Warning : The implementation of the ListImplementations
41 method for returning an arbitrary sized data set
42 uses a 2 phase collection method that
43 will not work IF the session is shared and two
44 client calls on this method are interleaved.
45 It leads to incorrect results for one of them,
46 with potentially fatal results. so...
47 DO NOT SHARE SERVER SIDE SESSIONS BETWEEN CLIENTS
50 class CEComServerSession : public CSession2
59 @fn void CompleteNotifications(TInt aCompletionCode)
60 Intended Usage : Completes all the outstanding notification requests with the
63 @param aCompletionCode The code with which to complete the notifications.
64 @pre REComServerSession is fully constructed.
65 @post The notifications contained on the iNotificationRequests array
66 have been completed with aCompletionCode, and the array has
70 void CompleteNotifications(TInt aCompletionCode);
74 inline CEComServer& Server();
77 ~CEComServerSession();
80 void ServiceL(const RMessage2& aMessage);
82 void ServiceL(const TClientRequest& aMessage);
85 inline TBool ReceivePending() const;
88 void DoListImplementationsL(const TClientRequest& aMessage);
91 TBool DoCollectListL(const TClientRequest& aMessage);
93 void DoListExtendedInterfacesL(const TClientRequest& aMessage);
95 void DoGetResolvedImplementationL(const TClientRequest& aMessage);
96 void UnpackMatchStrAndExtendedInterfacesFromClientL(const TClientRequest& aMessage,
97 RExtendedInterfacesArray& aExtendedInterfaces,
100 void DoSetGetParametersL(const TClientRequest& aMessage);
102 @fn CleanupInternalList()
103 Intended Usage : Releases the list of CImplementationInformation pointers
104 that are stored within the iList variable after a successful
105 call to the DoListImplementations service.
107 @pre REComServerSession is fully constructed.
108 @post The resources held by iList are released, and iList is NULL.
111 void CleanupInternalList();
115 The externalised data from a ListImplementations service call
116 held for return, pending the collection service call.
119 CBufFlat* iMemoryStore;
121 /** The last ListImplementations service request */
126 A successful ListImplementations service request
127 generates a list of CImplementationInformation pointers
128 that are stored within this list.
131 RImplInfoArray* iList;
133 /** The array of client notification requests outstanding */
135 struct SEComNotification
137 /** Notification status object */
138 TInt iRequestStatusHandle;
139 /** Client identity */
140 TClientRequest iMessage;
143 RArray<SEComNotification> iNotificationRequests;
145 /** A friend class for testing purposes */
146 friend class TEComServer_StateAccessor;
147 /** A friend class for testing purposes */
148 friend class TEComServerSession_StateAccessor;
152 @fn PanicClient(const RMessage& aMessage,TInt aPanicCode)
153 Intended Usage : A global function to complete aMessage with the supplied panic code.
155 @param aPanicCode The error code with which to complete the message.
157 @post aMessage has been completed.
160 extern void PanicClient(const TClientRequest& aMessage,TInt aPanicCode);
162 #include "EComServerSession.inl"
164 #endif // __ECOMSERVERSESSION_H__