os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServer.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// The Definition of the CEComServer singleton class which
sl@0
    15
// instantiates an instance of the requested ECom Interface Implementation.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @internalComponent
sl@0
    21
 @file
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __ECOMSERVER_H__
sl@0
    25
#define __ECOMSERVER_H__
sl@0
    26
sl@0
    27
#include <f32file.h>
sl@0
    28
#include "clientrequest.h"
sl@0
    29
#include <ecom/ecom.h>
sl@0
    30
#include <ecom/ecomerrorcodes.h>
sl@0
    31
#include <ecom/ecomresolverparams.h>
sl@0
    32
#include <ecom/implementationinformation.h>
sl@0
    33
#include <ecom/implementationproxy.h>
sl@0
    34
#include "RegistrarObserver.h"
sl@0
    35
#include "EComPerformance.h"
sl@0
    36
#include <babitflags.h>
sl@0
    37
#include "callback.h"
sl@0
    38
sl@0
    39
// Forward declarations
sl@0
    40
class CRegistryData;
sl@0
    41
class CRegistrar;
sl@0
    42
class CResolver;
sl@0
    43
class CDefaultResolver;
sl@0
    44
class CRomOnlyResolver;
sl@0
    45
class TEComResolverParams;
sl@0
    46
class CServerStartupMgr;
sl@0
    47
class CRegistryResolveTransaction;
sl@0
    48
class CCustomResolverCache;
sl@0
    49
sl@0
    50
//#define _TRANSIENT_SERVER
sl@0
    51
sl@0
    52
#ifdef _TRANSIENT_SERVER
sl@0
    53
/**
sl@0
    54
Specifies that the server should shut down after a specified time
sl@0
    55
If not defined then the server never shuts down
sl@0
    56
@internalComponent
sl@0
    57
*/
sl@0
    58
const TInt KEComShutdownDelay = 0x500000;	// approx 0.5 seconds
sl@0
    59
#endif
sl@0
    60
sl@0
    61
sl@0
    62
/**
sl@0
    63
	@internalComponent
sl@0
    64
	@since 7.0
sl@0
    65
	A shutdown control object that activates the 
sl@0
    66
	destruction of the ECom server when its RunL
sl@0
    67
	fires, by stopping the local scheduler.
sl@0
    68
 */
sl@0
    69
sl@0
    70
class CShutdown : public CTimer
sl@0
    71
	{
sl@0
    72
public:
sl@0
    73
/**
sl@0
    74
	@internalComponent
sl@0
    75
	Intended Usage	: Default c'tor	
sl@0
    76
	Error Condition	: None	
sl@0
    77
	@since			7.0
sl@0
    78
	@pre 			None
sl@0
    79
	@post			CShutdown is fully constructed.
sl@0
    80
 */
sl@0
    81
	
sl@0
    82
	inline CShutdown();
sl@0
    83
sl@0
    84
/**
sl@0
    85
	Intended Usage	: Standardised 2nd, (Initialisation) phase of two 
sl@0
    86
					phase construction.
sl@0
    87
	Error Condition	: None	
sl@0
    88
	@leave			KErrNoMemory
sl@0
    89
	@since			7.0
sl@0
    90
	@pre 			CShutdown is fully constructed.
sl@0
    91
	@post			CShutdown is fully initialised.
sl@0
    92
 */
sl@0
    93
	
sl@0
    94
	inline void ConstructL();
sl@0
    95
sl@0
    96
/**
sl@0
    97
	Intended Usage	: Activate the shutdown timeout.
sl@0
    98
	Error Condition	: None	
sl@0
    99
	@since			7.0
sl@0
   100
	@pre 			CShutdown is fully constructed.
sl@0
   101
	@post			CShutdown is active pending timeout.
sl@0
   102
 */
sl@0
   103
	
sl@0
   104
	inline void Start();
sl@0
   105
sl@0
   106
private:
sl@0
   107
/**
sl@0
   108
	Intended Usage	: The timeout has expired, so begin server destruction.
sl@0
   109
	Error Condition	: None	
sl@0
   110
	@since			7.0
sl@0
   111
	@pre 			CShutdown is fully constructed.
sl@0
   112
	@post			the local CActiveScheduler::Stop() has been called.
sl@0
   113
 */
sl@0
   114
	
sl@0
   115
	void RunL();
sl@0
   116
	};
sl@0
   117
sl@0
   118
sl@0
   119
/**
sl@0
   120
	@internalComponent
sl@0
   121
	@since 7.0
sl@0
   122
	A concrete implementation which supplies instantiation & 
sl@0
   123
	destruction of a class via the ECom framework.
sl@0
   124
 */
sl@0
   125
sl@0
   126
class CEComServer : private CServer2, private MRegistrarObserver
sl@0
   127
	{
sl@0
   128
	public:
sl@0
   129
/**
sl@0
   130
	Intended Usage	: Standardised safe construction which 
sl@0
   131
					leaves the returned object on the cleanup stack.
sl@0
   132
	Error Condition	: Cannot fully construct because of 
sl@0
   133
					memory limitations.	
sl@0
   134
	@leave  		KErrNoMemory
sl@0
   135
	@leave  		@see RFs, CRegistryData, CRegistrar, CDefaultResolver
sl@0
   136
	@leave  		@see CShutdownTimer & CServer::StartL
sl@0
   137
	@since			7.0
sl@0
   138
	@return			CEComServer* a pointer to the new class
sl@0
   139
	@pre 			None
sl@0
   140
	@post			CEComServer is fully constructed, initialised,
sl@0
   141
					and remains upon the cleanup stack.
sl@0
   142
*/
sl@0
   143
	
sl@0
   144
	static CEComServer* NewLC();
sl@0
   145
sl@0
   146
/**
sl@0
   147
	Intended Usage	: d'tor
sl@0
   148
	Error Condition	: None	
sl@0
   149
	@since			7.0
sl@0
   150
	@pre 			CEComServer must have been fully constructed.
sl@0
   151
	@post			CEComServer is destroyed.
sl@0
   152
 */
sl@0
   153
	~CEComServer();
sl@0
   154
sl@0
   155
/**
sl@0
   156
	Intended Usage	: Reads the EComSrvr.ini file to determine if
sl@0
   157
					  ECOM should be SSA or not.
sl@0
   158
	@param			aFs A reference to a connected file server session.
sl@0
   159
	@pre 			CEComServer must have been fully constructed.
sl@0
   160
	*/
sl@0
   161
	TBool IsSSA(RFs& aFs);
sl@0
   162
sl@0
   163
/**
sl@0
   164
	Intended Usage	: Retrieve a list of all the implementations which 
sl@0
   165
					satisfy the specified interface.
sl@0
   166
	Error Condition	: Lack of memory.	
sl@0
   167
	@leave  		KErrNoMemory
sl@0
   168
	@since			7.0
sl@0
   169
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   170
	@param			aAdditionalParameters A descriptor specifying any additional
sl@0
   171
					implementation characteristics to be fulfilled.
sl@0
   172
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. 
sl@0
   173
					Must match all extended interfaces for a match to occur.
sl@0
   174
	@param			aMessage Client's request					
sl@0
   175
	@return			RImplInfoArray* A pointer to the array of CImplementationInformation pointers. 
sl@0
   176
		            Ownership of the created array is returned to the caller,
sl@0
   177
					who must take the responsibility of destroying it. However, the caller must
sl@0
   178
					not destroy the list's contents as it is not owned by the list.
sl@0
   179
	@pre 			CEComServer must have been fully constructed.
sl@0
   180
	@post			CEComServer has not changed, and RImplInfoArray* contains the list
sl@0
   181
					of CImplementationInformations regigistered for the interface.		
sl@0
   182
 */
sl@0
   183
	
sl@0
   184
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   185
										 const TEComResolverParams& aAdditionalParameters,
sl@0
   186
										 const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   187
										 const TClientRequest& aMessage);
sl@0
   188
sl@0
   189
/**
sl@0
   190
	Intended Usage	: Retrieve a list of all the implementations which 
sl@0
   191
					satisfy the specified interface.
sl@0
   192
	Error Condition	: Lack of memory.	
sl@0
   193
	@leave  		KErrNoMemory
sl@0
   194
	@since			7.0
sl@0
   195
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   196
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. 
sl@0
   197
					Must match all extended interfaces for a match to occur.
sl@0
   198
	@param			aMessage Client's request					
sl@0
   199
	@return			RImplInfoArray* A pointer to the array of CImplementationInformation pointers. 
sl@0
   200
	                Ownership of the created array is returned to the caller,
sl@0
   201
					who must take the responsibility of destroying it. However, the caller must
sl@0
   202
					not destroy the list's contents as it is not owned by the list.
sl@0
   203
	@pre 			CEComServer must have been fully constructed.
sl@0
   204
	@post			CEComServer has not changed, and RImplInfoArray* contains the list
sl@0
   205
					of CImplementationInformations regigistered for the interface.			
sl@0
   206
 */
sl@0
   207
	
sl@0
   208
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   209
										 const RExtendedInterfacesArray& aExtendedInterfaces, 
sl@0
   210
										 const TClientRequest& aMessage);
sl@0
   211
sl@0
   212
/**
sl@0
   213
	Intended Usage	: Retrieve a list of all the implementations which 
sl@0
   214
					satisfy the specified interface.
sl@0
   215
	Error Condition	: Lack of memory.	
sl@0
   216
	@leave  		KErrNoMemory
sl@0
   217
	@since			7.0
sl@0
   218
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   219
	@param			aAdditionalParameters A descriptor specifying any additional
sl@0
   220
					implementation characteristics to be fulfilled.
sl@0
   221
	@param			aResolverUid The CResolver implementation to use.
sl@0
   222
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. 
sl@0
   223
					Must match all extended interfaces for a match to occur.
sl@0
   224
	@param			aMessage Client's request										
sl@0
   225
	@return			RImplInfoArray* A pointer to the array of CImplementationInformation pointers.
sl@0
   226
					Ownership of the created array is returned to the caller,
sl@0
   227
					who must take the responsibility of destroying it. However, the caller must
sl@0
   228
					not destroy the list's contents as it is not owned by the list.
sl@0
   229
	@pre 			CEComServer must have been fully constructed.
sl@0
   230
	@post			CEComServer has not changed, and RImplInfoArray* contains the list
sl@0
   231
					of CImplementationInformations regigistered for the interface.
sl@0
   232
 */
sl@0
   233
	
sl@0
   234
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   235
										 const TEComResolverParams& aAdditionalParameters, 
sl@0
   236
										 TUid aResolverUid,
sl@0
   237
										 const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   238
										 const TClientRequest& aMessage);
sl@0
   239
/**
sl@0
   240
	Intended Usage	: Retrieve a list of all the implementations which 
sl@0
   241
					satisfy the specified interface.
sl@0
   242
	Error Condition	: Lack of memory.	
sl@0
   243
	@leave			KErrNoMemory
sl@0
   244
	@since			7.0
sl@0
   245
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   246
	@param			aResolverUid The CResolver implementation to use.
sl@0
   247
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. 
sl@0
   248
					Must match all extended interfaces for a match to occur.
sl@0
   249
	@param			aMessage Client's request					
sl@0
   250
	@return			RPointerArray<TUid>* A pointer to the array of class identification
sl@0
   251
					data.
sl@0
   252
					Ownership of the created array is returned to the caller,
sl@0
   253
					who must take the responsibility of destroying it. However, the caller must
sl@0
   254
					not destroy the list's contents as it is not owned by the list.	
sl@0
   255
	@pre 			CEComServer must have been fully constructed.
sl@0
   256
	@post			CEComServer has not changed, and RPointerArray<TUid>* contains the list
sl@0
   257
					of Implementations for the interface.		
sl@0
   258
 */
sl@0
   259
	
sl@0
   260
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   261
										 TUid aResolverUid,
sl@0
   262
										 const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   263
										 const TClientRequest& aMessage);
sl@0
   264
sl@0
   265
/**
sl@0
   266
	Intended Usage	:Instantiate an interface implementation to satisfy the 
sl@0
   267
					specified interface. 
sl@0
   268
	Error Condition	: Lack of memory, or not connected.	
sl@0
   269
	@leave			KErrNoMemory
sl@0
   270
	@leave			KErrNotConnected
sl@0
   271
	@since			7.0
sl@0
   272
	@param			aImplementationUid A UID specifying the required interface implementation.
sl@0
   273
	@param			aDllInfo containing the Dll info to be loaded on the client side
sl@0
   274
	@param			aInstanceKey A 32 bit identifer returned by ECom to
sl@0
   275
					identify this instance to the framework.
sl@0
   276
	@param			aClientRequest client's request
sl@0
   277
	@pre 			CEComServer must have been fully constructed.
sl@0
   278
	@post			The requested interface implementation is identified,
sl@0
   279
					and the instantiation method pointer is returned.
sl@0
   280
 */
sl@0
   281
	
sl@0
   282
	void GetResolvedDllInfoL(	const TUid aImplementationUid,
sl@0
   283
								TEntry& aDllInfo,
sl@0
   284
								TUid& aInstanceKey,
sl@0
   285
								const TClientRequest& aClientRequest);
sl@0
   286
sl@0
   287
sl@0
   288
/**
sl@0
   289
	Intended Usage	:Instantiate an interface implementation to satisfy the 
sl@0
   290
					specified interface. 
sl@0
   291
	Error Condition	: Lack of memory	
sl@0
   292
	@leave  		KErrNoMemory
sl@0
   293
	@since			7.0
sl@0
   294
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   295
	@param			aAdditionalParameters A descriptor specifying any additional
sl@0
   296
					implementation characteristics to be fulfilled.
sl@0
   297
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match.
sl@0
   298
					Must match all extended interfaces for a match to occur.					
sl@0
   299
	@param			aDllInfo containing the Dll info to be loaded on the client side
sl@0
   300
	@param			aInstanceKey A 32 bit identifer returned by ECom to
sl@0
   301
					identify this instance to the framework.
sl@0
   302
	@param			aClientRequest client's request
sl@0
   303
	@pre 			CEComServer must have been fully constructed.
sl@0
   304
	@post			The requested interface implementation is identified,
sl@0
   305
					and the instantiation method pointer is returned.
sl@0
   306
 */
sl@0
   307
	
sl@0
   308
	void GetResolvedDllInfoL(	const TUid aInterfaceUid,
sl@0
   309
								const TEComResolverParams& aAdditionalParameters,
sl@0
   310
								const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   311
								TEntry& aDllInfo,
sl@0
   312
								TUid& aInstanceKey,
sl@0
   313
								const TClientRequest& aClientRequest);
sl@0
   314
sl@0
   315
/**
sl@0
   316
	Intended Usage	:Instantiate an interface implementation to satisfy the 
sl@0
   317
					specified interface. 
sl@0
   318
					Overload with a client provided CResolver.
sl@0
   319
	Error Condition	: Lack of memory	
sl@0
   320
	@leave  		KErrNoMemory
sl@0
   321
	@since			7.0
sl@0
   322
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   323
	@param			aAdditionalParameters A descriptor specifying any additional
sl@0
   324
					implementation characteristics to be fulfilled.
sl@0
   325
	@param			aResolver A UID specifying the implementation of the CResolver interface
sl@0
   326
					with client defined behaviour to use for resolution.
sl@0
   327
	@param			aExtendedInterfaces Identifies a set of zero or more extended interfaces to match.
sl@0
   328
					Must match all extended interfaces for a match to occur.					
sl@0
   329
	@param			aDllInfo containing the Dll info to be loaded on the client side
sl@0
   330
	@param			aInstanceKey A 32 bit identifer returned by ECom to
sl@0
   331
					identify this instance to the framework.
sl@0
   332
	@param			aClientRequest client's request
sl@0
   333
	@pre 			CEComServer must have been fully constructed.
sl@0
   334
	@post			The requested interface implementation is identified,
sl@0
   335
					and the instantiation method pointer is returned.
sl@0
   336
 */
sl@0
   337
	
sl@0
   338
	void GetResolvedDllInfoL(   const TUid aInterfaceUid, 
sl@0
   339
								const TEComResolverParams& aAdditionalParameters,
sl@0
   340
								const TUid aResolverUid,
sl@0
   341
								const RExtendedInterfacesArray& aExtendedInterfaces,
sl@0
   342
								TEntry& aDllInfo,
sl@0
   343
								TUid& aInstanceKey,
sl@0
   344
								const TClientRequest& aClientRequest);
sl@0
   345
	
sl@0
   346
/**
sl@0
   347
	Get implementation info for one implementation, and return to client
sl@0
   348
	@param			aImplementationUid A UID specifying the required implementation.
sl@0
   349
	@param			aImplInfo Return value, implementation info for client. If the call succeeds,
sl@0
   350
					it will point to the found implementation information in registrydata. The function 
sl@0
   351
					does not return ownership of the pointer, so the caller must not destroy it.
sl@0
   352
	@param			aClientRequest client's request
sl@0
   353
 */							
sl@0
   354
	void GetImplementationInformationL(const TUid& aImplementationUid,
sl@0
   355
									   CImplementationInformation*& aImplInfo,
sl@0
   356
									   const TClientRequest& aClientRequest);
sl@0
   357
sl@0
   358
#ifdef __ECOM_SERVER_TESTABILITY__
sl@0
   359
/**
sl@0
   360
	This method is provided for testability. It allows the user to 
sl@0
   361
	simulate the domain manager behaviour. If the testing compile
sl@0
   362
	time flag __ECOM_SERVER_TESTABILITY__ is not defined the method
sl@0
   363
	is not accessible. If the flag is defined then it is responsible
sl@0
   364
	for setting the startup state. After the state is changed
sl@0
   365
	the ProcessCurrentStartupStateL() method should be called for 
sl@0
   366
	correct simulation of domain manager behaviour.
sl@0
   367
	@param aState the state to change to
sl@0
   368
*/
sl@0
   369
	void ChangeStartupStateL(TInt aState) const;
sl@0
   370
		
sl@0
   371
/**
sl@0
   372
	This method is provided for testability. It allows the user to 
sl@0
   373
	simulate the domain manager behaviour. If the testing compile
sl@0
   374
	time flag __ECOM_SERVER_TESTABILITY__ is not defined the method
sl@0
   375
	is not accessible. If the flag is defined then it is responsible
sl@0
   376
	for processing the startup state. ChangeStartupState() method 
sl@0
   377
	should be called prior to calling this method.
sl@0
   378
	@leave System-wide error codes, including KErrNoMemory.
sl@0
   379
*/
sl@0
   380
	void ProcessCurrentStartupStateL() const;
sl@0
   381
	
sl@0
   382
/**
sl@0
   383
	This method is provided for testability. It allows the user to 
sl@0
   384
	simulate the domain manager behaviour. If the testing compile
sl@0
   385
	time flag __ECOM_SERVER_TESTABILITY__ is not defined the method
sl@0
   386
	is not accessible. It is an accessor
sl@0
   387
	to test the current state of the ServerStartupManager.
sl@0
   388
	@return The current startup state of the CServerStartupManager.
sl@0
   389
*/
sl@0
   390
	TInt GetCurrentStartupState() const;
sl@0
   391
#endif //__ECOM_SERVER_TESTABILITY__
sl@0
   392
sl@0
   393
#ifdef __ECOM_SERVER_PERFORMANCE__
sl@0
   394
/**
sl@0
   395
	This method is provided for performance testability. If the testing 
sl@0
   396
	compile	time flag __ECOM_SERVER_PERFORMANCE__ is not defined the method
sl@0
   397
	is not accessible. It is an accessor to get the plugins counts discovered
sl@0
   398
	during the startup of EComServer.
sl@0
   399
	@param aType the type of counts to read
sl@0
   400
	@param aCounts the count readings
sl@0
   401
*/
sl@0
   402
	void GetRegistryCountsL(TInt aType, RegistryCounts::TRegistryCounts& aCounts) const;
sl@0
   403
	
sl@0
   404
#endif //__ECOM_SERVER_PERFORMANCE__
sl@0
   405
sl@0
   406
/**
sl@0
   407
	Intended Usage	: (Server Session management) Add a new session connection for a client.	
sl@0
   408
	Error Condition	: None.
sl@0
   409
	@since			7.0
sl@0
   410
	@pre 			CEComServer must have been fully constructed.
sl@0
   411
	@post			The new CEComServerSession to handle service provision for a new 
sl@0
   412
					ECom client has been recorded.
sl@0
   413
					If the server was preparing to shutdown, that shutdown is cancelled
sl@0
   414
 */
sl@0
   415
	
sl@0
   416
	void AddSession();
sl@0
   417
sl@0
   418
/**
sl@0
   419
	Intended Usage	: (Server Session management) Destroy a session connection with a client.	
sl@0
   420
	Error Condition	: None.
sl@0
   421
	@since			7.0
sl@0
   422
	@pre 			CEComServer must have been fully constructed.
sl@0
   423
	@post			The appropriate CEComServerSession has been destroyed and 
sl@0
   424
					the ECom client has been disconnected from this server.
sl@0
   425
 */
sl@0
   426
	
sl@0
   427
	void DropSession();
sl@0
   428
sl@0
   429
/**
sl@0
   430
	Intended Usage	: The overloaded method from the MRegistrarObserver class
sl@0
   431
					  Used for firing notifications to the client sessions that
sl@0
   432
					  the underlying registry data has changed.
sl@0
   433
	Error Condition	: None	
sl@0
   434
	@since			7.0
sl@0
   435
	@pre 			CEComServer must have been fully constructed.
sl@0
   436
	@post			The CEComServer has notified all its client sessions
sl@0
   437
					registered for notifications that the data changed. 
sl@0
   438
 */
sl@0
   439
	
sl@0
   440
	void Notification(TInt aNotificationCode);
sl@0
   441
sl@0
   442
/**
sl@0
   443
	Intended Usage	: Indicates whether the registry index is currently valid.  The 
sl@0
   444
					index will not be valid if discoveries are currently taking place.
sl@0
   445
					If the index is not currently valid then calls to 
sl@0
   446
					ListImplementationsL() cannot be serviced.
sl@0
   447
	Error Condition	: None.
sl@0
   448
	@return			ETrue if the index is currently valid, EFalse otherwise.
sl@0
   449
	@since			7.0
sl@0
   450
	@pre 			CEComServer is fully constructed
sl@0
   451
 */
sl@0
   452
	
sl@0
   453
	TBool RegistryIndexValid() const;
sl@0
   454
sl@0
   455
	// Callback function to be invoked by CDiscoverer and CRegistryData
sl@0
   456
	static TInt NotifyEvents(TAny* aObj, TInt aEvent, TAny* aData);
sl@0
   457
sl@0
   458
private:
sl@0
   459
/**
sl@0
   460
	@internalComponent
sl@0
   461
	Intended Usage	: Default c'tor	
sl@0
   462
	Error Condition	: None	
sl@0
   463
	@since			7.0
sl@0
   464
	@pre 			None
sl@0
   465
	@post			CEComServer is fully constructed
sl@0
   466
 */
sl@0
   467
	
sl@0
   468
	CEComServer();
sl@0
   469
sl@0
   470
/**
sl@0
   471
	Intended Usage	: Standardised 2nd, (Initialisation) phase of two 
sl@0
   472
					phase construction.
sl@0
   473
	Error Condition	: None	
sl@0
   474
	@leave  		KErrNoMemory
sl@0
   475
	@since			7.0
sl@0
   476
	@return			void 
sl@0
   477
	@pre 			CEComServer is fully constructed.
sl@0
   478
	@post			CEComServer is fully initialised.
sl@0
   479
 */
sl@0
   480
	
sl@0
   481
	void ConstructL();
sl@0
   482
sl@0
   483
/**
sl@0
   484
	Intended Usage	: Helper method to retrieve a list of all the 
sl@0
   485
					implementations which satisfy the specified interface. 
sl@0
   486
					Overload with a provided CResolver*.
sl@0
   487
	@leave  		KErrNoMemory
sl@0
   488
	@since			7.0
sl@0
   489
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   490
	@param			aAdditionalParameters A descriptor specifying any additional
sl@0
   491
					implementation characteristics to be fulfilled.
sl@0
   492
	@param			aResolver A CResolver with client defined behaviour.
sl@0
   493
	@return			RPointerArray<TUid>* A pointer to the array of class identification
sl@0
   494
					data. Ownership of the created array is returned to the caller,
sl@0
   495
					who must take the responsibility of destroying it. However, the caller must
sl@0
   496
					not destroy the list's contents as it is not owned by the list.
sl@0
   497
	@pre 			CEComServer must have been fully constructed.
sl@0
   498
	@post			CEComServer has not changed, and RPointerArray<TUid>* contains the list
sl@0
   499
					of Implementations for the interface.			
sl@0
   500
 */
sl@0
   501
	
sl@0
   502
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   503
										 const TEComResolverParams& aAdditionalParameters, 
sl@0
   504
										 CResolver* aResolver) const;
sl@0
   505
/**
sl@0
   506
	Intended Usage	: Helper method to retrieve a list of all the 
sl@0
   507
					implementations which satisfy the specified interface. 
sl@0
   508
					Overload with a provided CResolver*.
sl@0
   509
	@leave  		KErrNoMemory
sl@0
   510
	@since			7.0
sl@0
   511
	@param			aInterfaceUid A UID specifying the required interface.
sl@0
   512
	@param			aResolver A CResolver with client defined behaviour.
sl@0
   513
	@return			A pointer to the array of class identification data. 
sl@0
   514
                 	Ownership of the created array is returned to the caller,
sl@0
   515
					who must take the responsibility of destroying it. However, the caller must
sl@0
   516
					not destroy the list's contents as it is not owned by the list.
sl@0
   517
	@pre 			CEComServer must have been fully constructed.
sl@0
   518
	@post			CEComServer has not changed, and RPointerArray<TUid>* contains the list
sl@0
   519
					of Implementations for the interface.		
sl@0
   520
 */
sl@0
   521
	
sl@0
   522
	RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, 
sl@0
   523
										 CResolver* aResolver) const;
sl@0
   524
sl@0
   525
/**
sl@0
   526
	Intended Usage	: Creates a new CEComServerSession to handle client
sl@0
   527
					service requests.
sl@0
   528
	@leave			KErrNoMemory
sl@0
   529
	@leave			@see CSharableSession
sl@0
   530
	@pre 			CEComServer must have been fully constructed.
sl@0
   531
	@post			CEComServer has created a new CEComServerSession.
sl@0
   532
 */
sl@0
   533
	
sl@0
   534
	CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
sl@0
   535
sl@0
   536
/**
sl@0
   537
	Intended Usage	: Intercept the panic caused by a RunL leave,
sl@0
   538
					to restore the CEComServer object to a sensible state.
sl@0
   539
					(called by the Active Scheduler immediately before the Panic).
sl@0
   540
	Error Condition	: None.
sl@0
   541
	@since			7.0
sl@0
   542
	@return			TInt KErrNone if cleanup successful, otherwise return aError
sl@0
   543
	@pre 			CEComServer is fully constructed.
sl@0
   544
	@post			CEComServer has been restored to a sensible state.
sl@0
   545
 */
sl@0
   546
	
sl@0
   547
	TInt RunError(TInt aError);
sl@0
   548
sl@0
   549
/**
sl@0
   550
	Intended Usage: Creates custom resolver object with aResolverUid UID.
sl@0
   551
	The method leaves custom resolver onto the cleanup stack.
sl@0
   552
	@param aResolverUid Custom resolver UID.
sl@0
   553
	@param			aRegistryResolveTransaction A pointer to Registry resolve transaction object
sl@0
   554
	@return A pointer to the created CResolver object.
sl@0
   555
	@leave System-wide error codes, including KErrNoMemory.
sl@0
   556
*/
sl@0
   557
	CResolver* CreateCustomResolverLC(TUid aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction);
sl@0
   558
sl@0
   559
/**
sl@0
   560
	Intended Usage: Creates resolver object with aResolverUid UID.
sl@0
   561
	The method leaves resolver onto the cleanup stack.
sl@0
   562
	@param aResolverUid Resolver UID.
sl@0
   563
	@param			aRegistryResolveTransaction A pointer to Registry resolve transaction object
sl@0
   564
	@return A pointer to the created CResolver object.
sl@0
   565
	@leave System-wide error codes, including KErrNoMemory.
sl@0
   566
*/
sl@0
   567
	CResolver* CreateResolverLC(const TUid& aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction);
sl@0
   568
sl@0
   569
	void NotifyUpgrade(const TUid aImplementationUid);
sl@0
   570
	void NotifySWIEvent(TAny* aData);
sl@0
   571
	void NotifyBUREvent(TAny* aData);
sl@0
   572
	void UpdateSpecialEvents(TUint32 aBit, TCallBackState aState);
sl@0
   573
	TBool IsCachable(TBool aEntryIsOnRWDrive);
sl@0
   574
sl@0
   575
// Attributes
sl@0
   576
private:
sl@0
   577
	/** Singleton connection to the file server */
sl@0
   578
	RFs iFs;
sl@0
   579
	/** Singleton registry information handler */
sl@0
   580
	
sl@0
   581
	CRegistryData*	iRegistryData;
sl@0
   582
	
sl@0
   583
	/** Registry resolve transaction object */	
sl@0
   584
	CRegistryResolveTransaction* iRegistryResolveTransaction;
sl@0
   585
	
sl@0
   586
	/** Singleton Registrar to handle the interface registration */
sl@0
   587
	
sl@0
   588
	CRegistrar* iRegistrar;
sl@0
   589
sl@0
   590
	/** The count of the number of sessions open upon this server */
sl@0
   591
	
sl@0
   592
	TInt iSessionCount;
sl@0
   593
	/** The timer controlling the server shutdown process */
sl@0
   594
	
sl@0
   595
	CShutdown iShutdown;
sl@0
   596
	
sl@0
   597
	/** CServerStartupMgr object which interacts with Domain Manager*/
sl@0
   598
	CServerStartupMgr* iServerStartupMgr;
sl@0
   599
	
sl@0
   600
	/** Library which is used to load a non-default resolver when required */
sl@0
   601
	RLibrary iResolverLibrary;
sl@0
   602
	
sl@0
   603
	/** cache of recently used custom resolvers. */
sl@0
   604
	CCustomResolverCache* iResolverCache;
sl@0
   605
sl@0
   606
	/** Keep track of special system events such as BUR / SWI in progress */
sl@0
   607
	TBitFlags32 iSpecialEvents;
sl@0
   608
sl@0
   609
	// And the Test bed state accessor
sl@0
   610
	friend class TEComServer_StateAccessor;
sl@0
   611
	};
sl@0
   612
sl@0
   613
// Inline implementations for CShutdown
sl@0
   614
// Set the priority for shutdown as marginally less than normal
sl@0
   615
// operation.
sl@0
   616
const TInt KEComShutdownPriority = CActive::EPriorityStandard - 1;
sl@0
   617
inline CShutdown::CShutdown()
sl@0
   618
:CTimer(KEComShutdownPriority)
sl@0
   619
	{ 
sl@0
   620
	CActiveScheduler::Add(this); 
sl@0
   621
	}
sl@0
   622
sl@0
   623
inline void CShutdown::ConstructL()
sl@0
   624
	{ 
sl@0
   625
	CTimer::ConstructL();
sl@0
   626
	}
sl@0
   627
sl@0
   628
inline void CShutdown::Start()
sl@0
   629
	{
sl@0
   630
// Kick off the shutdown timer if this is a debug run
sl@0
   631
// Otherwise NEVER close.
sl@0
   632
#ifdef _TRANSIENT_SERVER
sl@0
   633
	After(KEComShutdownDelay);
sl@0
   634
#endif
sl@0
   635
	}
sl@0
   636
sl@0
   637
#endif // __ECOMSERVER_H__
sl@0
   638