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.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Definition of the CEComServerSession class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @internalComponent
sl@0
    20
 @file
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __ECOMSERVERSESSION_H__
sl@0
    24
#define __ECOMSERVERSESSION_H__
sl@0
    25
sl@0
    26
#include <s32mem.h>
sl@0
    27
#include "EComServer.h"
sl@0
    28
sl@0
    29
#include "clientrequest.h"
sl@0
    30
sl@0
    31
// __________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	@internalComponent
sl@0
    35
	@since 7.0
sl@0
    36
	Provides the server side session which
sl@0
    37
	handles the messages from REComSession, unpacking the input
sl@0
    38
	message parameters, calling the server and packaging the 
sl@0
    39
	the returned data as output message parameters.
sl@0
    40
	Warning : The implementation of the ListImplementations
sl@0
    41
	method for returning an arbitrary sized data set
sl@0
    42
	uses a 2 phase collection method that
sl@0
    43
	will not work IF the session is shared and two 
sl@0
    44
	client calls on this method are interleaved.
sl@0
    45
	It leads to incorrect results for one of them,
sl@0
    46
	with potentially fatal results. so...
sl@0
    47
	DO NOT SHARE SERVER SIDE SESSIONS BETWEEN CLIENTS
sl@0
    48
 */
sl@0
    49
sl@0
    50
class CEComServerSession : public CSession2
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	
sl@0
    54
	CEComServerSession();
sl@0
    55
sl@0
    56
	
sl@0
    57
	void CreateL();
sl@0
    58
/**
sl@0
    59
	@fn				void CompleteNotifications(TInt aCompletionCode)
sl@0
    60
	Intended Usage	: Completes all the outstanding notification requests with the
sl@0
    61
					supplied error code.
sl@0
    62
	@since			7.0
sl@0
    63
	@param			aCompletionCode The code with which to complete the notifications.
sl@0
    64
	@pre 			REComServerSession is fully constructed.
sl@0
    65
	@post			The notifications contained on the iNotificationRequests array
sl@0
    66
					have been completed with aCompletionCode, and the array has 
sl@0
    67
					been cleared.
sl@0
    68
 */
sl@0
    69
	
sl@0
    70
	void CompleteNotifications(TInt aCompletionCode);
sl@0
    71
sl@0
    72
private:
sl@0
    73
	
sl@0
    74
	inline CEComServer& Server();
sl@0
    75
sl@0
    76
	
sl@0
    77
	~CEComServerSession();
sl@0
    78
sl@0
    79
	
sl@0
    80
	void ServiceL(const RMessage2& aMessage);
sl@0
    81
sl@0
    82
	void ServiceL(const TClientRequest& aMessage);
sl@0
    83
sl@0
    84
	
sl@0
    85
	inline TBool ReceivePending() const;
sl@0
    86
sl@0
    87
	
sl@0
    88
	void DoListImplementationsL(const TClientRequest& aMessage);
sl@0
    89
sl@0
    90
	
sl@0
    91
	TBool DoCollectListL(const TClientRequest& aMessage);
sl@0
    92
	
sl@0
    93
	void DoListExtendedInterfacesL(const TClientRequest& aMessage);
sl@0
    94
	
sl@0
    95
	void DoGetResolvedImplementationL(const TClientRequest& aMessage);
sl@0
    96
	void UnpackMatchStrAndExtendedInterfacesFromClientL(const TClientRequest& aMessage,
sl@0
    97
														RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
    98
														RBuf8& aMatchStr);
sl@0
    99
	
sl@0
   100
	void DoSetGetParametersL(const TClientRequest& aMessage);
sl@0
   101
/**
sl@0
   102
	@fn				CleanupInternalList()
sl@0
   103
	Intended Usage	: Releases the list of CImplementationInformation pointers
sl@0
   104
					 that are stored within the iList variable after a successful 
sl@0
   105
					 call to the DoListImplementations service.
sl@0
   106
	@since			7.0
sl@0
   107
	@pre 			REComServerSession is fully constructed.
sl@0
   108
	@post			The resources held by iList are released, and iList is NULL.
sl@0
   109
 */
sl@0
   110
	
sl@0
   111
	void CleanupInternalList();
sl@0
   112
sl@0
   113
private:
sl@0
   114
	/** 
sl@0
   115
		The externalised data from a ListImplementations service call
sl@0
   116
		held for return, pending the collection service call.
sl@0
   117
	 */
sl@0
   118
	
sl@0
   119
	CBufFlat* iMemoryStore;
sl@0
   120
	
sl@0
   121
	/** The last ListImplementations service request */
sl@0
   122
	
sl@0
   123
	TInt iListContext;
sl@0
   124
sl@0
   125
	/** 
sl@0
   126
		A successful ListImplementations service request 
sl@0
   127
		generates a list of CImplementationInformation pointers
sl@0
   128
		that are stored within this list.
sl@0
   129
	 */
sl@0
   130
	
sl@0
   131
	RImplInfoArray* iList;
sl@0
   132
sl@0
   133
	/** The array of client notification requests outstanding */
sl@0
   134
	
sl@0
   135
	struct SEComNotification    
sl@0
   136
		{
sl@0
   137
			/** Notification status object */
sl@0
   138
			TInt iRequestStatusHandle; 
sl@0
   139
			/** Client identity */
sl@0
   140
			TClientRequest iMessage;     
sl@0
   141
		};
sl@0
   142
sl@0
   143
	RArray<SEComNotification> iNotificationRequests;
sl@0
   144
sl@0
   145
	/** A friend class for testing purposes */
sl@0
   146
	friend class TEComServer_StateAccessor;
sl@0
   147
	/** A friend class for testing purposes */
sl@0
   148
	friend class TEComServerSession_StateAccessor;
sl@0
   149
	};
sl@0
   150
sl@0
   151
/**
sl@0
   152
@fn				PanicClient(const RMessage& aMessage,TInt aPanicCode)
sl@0
   153
Intended Usage	: A global function to complete aMessage with the supplied panic code.
sl@0
   154
@since			7.0
sl@0
   155
@param			aPanicCode The error code with which to complete the message.
sl@0
   156
@pre 			None.
sl@0
   157
@post			aMessage has been completed.
sl@0
   158
@internalComponent
sl@0
   159
*/
sl@0
   160
extern void PanicClient(const TClientRequest& aMessage,TInt aPanicCode);
sl@0
   161
sl@0
   162
#include "EComServerSession.inl"
sl@0
   163
sl@0
   164
#endif	// __ECOMSERVERSESSION_H__
sl@0
   165
sl@0
   166