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