os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServerSession.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Definition of the CEComServerSession class
    15 // 
    16 //
    17 
    18 /**
    19  @internalComponent
    20  @file
    21 */
    22 
    23 #ifndef __ECOMSERVERSESSION_H__
    24 #define __ECOMSERVERSESSION_H__
    25 
    26 #include <s32mem.h>
    27 #include "EComServer.h"
    28 
    29 #include "clientrequest.h"
    30 
    31 // __________________________________________________________________________
    32 //
    33 /**
    34 	@internalComponent
    35 	@since 7.0
    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
    48  */
    49 
    50 class CEComServerSession : public CSession2
    51 	{
    52 public:
    53 	
    54 	CEComServerSession();
    55 
    56 	
    57 	void CreateL();
    58 /**
    59 	@fn				void CompleteNotifications(TInt aCompletionCode)
    60 	Intended Usage	: Completes all the outstanding notification requests with the
    61 					supplied error code.
    62 	@since			7.0
    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 
    67 					been cleared.
    68  */
    69 	
    70 	void CompleteNotifications(TInt aCompletionCode);
    71 
    72 private:
    73 	
    74 	inline CEComServer& Server();
    75 
    76 	
    77 	~CEComServerSession();
    78 
    79 	
    80 	void ServiceL(const RMessage2& aMessage);
    81 
    82 	void ServiceL(const TClientRequest& aMessage);
    83 
    84 	
    85 	inline TBool ReceivePending() const;
    86 
    87 	
    88 	void DoListImplementationsL(const TClientRequest& aMessage);
    89 
    90 	
    91 	TBool DoCollectListL(const TClientRequest& aMessage);
    92 	
    93 	void DoListExtendedInterfacesL(const TClientRequest& aMessage);
    94 	
    95 	void DoGetResolvedImplementationL(const TClientRequest& aMessage);
    96 	void UnpackMatchStrAndExtendedInterfacesFromClientL(const TClientRequest& aMessage,
    97 														RExtendedInterfacesArray& aExtendedInterfaces,
    98 														RBuf8& aMatchStr);
    99 	
   100 	void DoSetGetParametersL(const TClientRequest& aMessage);
   101 /**
   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.
   106 	@since			7.0
   107 	@pre 			REComServerSession is fully constructed.
   108 	@post			The resources held by iList are released, and iList is NULL.
   109  */
   110 	
   111 	void CleanupInternalList();
   112 
   113 private:
   114 	/** 
   115 		The externalised data from a ListImplementations service call
   116 		held for return, pending the collection service call.
   117 	 */
   118 	
   119 	CBufFlat* iMemoryStore;
   120 	
   121 	/** The last ListImplementations service request */
   122 	
   123 	TInt iListContext;
   124 
   125 	/** 
   126 		A successful ListImplementations service request 
   127 		generates a list of CImplementationInformation pointers
   128 		that are stored within this list.
   129 	 */
   130 	
   131 	RImplInfoArray* iList;
   132 
   133 	/** The array of client notification requests outstanding */
   134 	
   135 	struct SEComNotification    
   136 		{
   137 			/** Notification status object */
   138 			TInt iRequestStatusHandle; 
   139 			/** Client identity */
   140 			TClientRequest iMessage;     
   141 		};
   142 
   143 	RArray<SEComNotification> iNotificationRequests;
   144 
   145 	/** A friend class for testing purposes */
   146 	friend class TEComServer_StateAccessor;
   147 	/** A friend class for testing purposes */
   148 	friend class TEComServerSession_StateAccessor;
   149 	};
   150 
   151 /**
   152 @fn				PanicClient(const RMessage& aMessage,TInt aPanicCode)
   153 Intended Usage	: A global function to complete aMessage with the supplied panic code.
   154 @since			7.0
   155 @param			aPanicCode The error code with which to complete the message.
   156 @pre 			None.
   157 @post			aMessage has been completed.
   158 @internalComponent
   159 */
   160 extern void PanicClient(const TClientRequest& aMessage,TInt aPanicCode);
   161 
   162 #include "EComServerSession.inl"
   163 
   164 #endif	// __ECOMSERVERSESSION_H__
   165 
   166