sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The Definition of the CEComServer singleton class which sl@0: // instantiates an instance of the requested ECom Interface Implementation. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @internalComponent sl@0: @file sl@0: */ sl@0: sl@0: #ifndef __ECOMSERVER_H__ sl@0: #define __ECOMSERVER_H__ sl@0: sl@0: #include sl@0: #include "clientrequest.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "RegistrarObserver.h" sl@0: #include "EComPerformance.h" sl@0: #include sl@0: #include "callback.h" sl@0: sl@0: // Forward declarations sl@0: class CRegistryData; sl@0: class CRegistrar; sl@0: class CResolver; sl@0: class CDefaultResolver; sl@0: class CRomOnlyResolver; sl@0: class TEComResolverParams; sl@0: class CServerStartupMgr; sl@0: class CRegistryResolveTransaction; sl@0: class CCustomResolverCache; sl@0: sl@0: //#define _TRANSIENT_SERVER sl@0: sl@0: #ifdef _TRANSIENT_SERVER sl@0: /** sl@0: Specifies that the server should shut down after a specified time sl@0: If not defined then the server never shuts down sl@0: @internalComponent sl@0: */ sl@0: const TInt KEComShutdownDelay = 0x500000; // approx 0.5 seconds sl@0: #endif sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: @since 7.0 sl@0: A shutdown control object that activates the sl@0: destruction of the ECom server when its RunL sl@0: fires, by stopping the local scheduler. sl@0: */ sl@0: sl@0: class CShutdown : public CTimer sl@0: { sl@0: public: sl@0: /** sl@0: @internalComponent sl@0: Intended Usage : Default c'tor sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre None sl@0: @post CShutdown is fully constructed. sl@0: */ sl@0: sl@0: inline CShutdown(); sl@0: sl@0: /** sl@0: Intended Usage : Standardised 2nd, (Initialisation) phase of two sl@0: phase construction. sl@0: Error Condition : None sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @pre CShutdown is fully constructed. sl@0: @post CShutdown is fully initialised. sl@0: */ sl@0: sl@0: inline void ConstructL(); sl@0: sl@0: /** sl@0: Intended Usage : Activate the shutdown timeout. sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre CShutdown is fully constructed. sl@0: @post CShutdown is active pending timeout. sl@0: */ sl@0: sl@0: inline void Start(); sl@0: sl@0: private: sl@0: /** sl@0: Intended Usage : The timeout has expired, so begin server destruction. sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre CShutdown is fully constructed. sl@0: @post the local CActiveScheduler::Stop() has been called. sl@0: */ sl@0: sl@0: void RunL(); sl@0: }; sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: @since 7.0 sl@0: A concrete implementation which supplies instantiation & sl@0: destruction of a class via the ECom framework. sl@0: */ sl@0: sl@0: class CEComServer : private CServer2, private MRegistrarObserver sl@0: { sl@0: public: sl@0: /** sl@0: Intended Usage : Standardised safe construction which sl@0: leaves the returned object on the cleanup stack. sl@0: Error Condition : Cannot fully construct because of sl@0: memory limitations. sl@0: @leave KErrNoMemory sl@0: @leave @see RFs, CRegistryData, CRegistrar, CDefaultResolver sl@0: @leave @see CShutdownTimer & CServer::StartL sl@0: @since 7.0 sl@0: @return CEComServer* a pointer to the new class sl@0: @pre None sl@0: @post CEComServer is fully constructed, initialised, sl@0: and remains upon the cleanup stack. sl@0: */ sl@0: sl@0: static CEComServer* NewLC(); sl@0: sl@0: /** sl@0: Intended Usage : d'tor sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer is destroyed. sl@0: */ sl@0: ~CEComServer(); sl@0: sl@0: /** sl@0: Intended Usage : Reads the EComSrvr.ini file to determine if sl@0: ECOM should be SSA or not. sl@0: @param aFs A reference to a connected file server session. sl@0: @pre CEComServer must have been fully constructed. sl@0: */ sl@0: TBool IsSSA(RFs& aFs); sl@0: sl@0: /** sl@0: Intended Usage : Retrieve a list of all the implementations which sl@0: satisfy the specified interface. sl@0: Error Condition : Lack of memory. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aAdditionalParameters A descriptor specifying any additional sl@0: implementation characteristics to be fulfilled. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aMessage Client's request sl@0: @return RImplInfoArray* A pointer to the array of CImplementationInformation pointers. sl@0: Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RImplInfoArray* contains the list sl@0: of CImplementationInformations regigistered for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: const TEComResolverParams& aAdditionalParameters, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TClientRequest& aMessage); sl@0: sl@0: /** sl@0: Intended Usage : Retrieve a list of all the implementations which sl@0: satisfy the specified interface. sl@0: Error Condition : Lack of memory. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aMessage Client's request sl@0: @return RImplInfoArray* A pointer to the array of CImplementationInformation pointers. sl@0: Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RImplInfoArray* contains the list sl@0: of CImplementationInformations regigistered for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TClientRequest& aMessage); sl@0: sl@0: /** sl@0: Intended Usage : Retrieve a list of all the implementations which sl@0: satisfy the specified interface. sl@0: Error Condition : Lack of memory. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aAdditionalParameters A descriptor specifying any additional sl@0: implementation characteristics to be fulfilled. sl@0: @param aResolverUid The CResolver implementation to use. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aMessage Client's request sl@0: @return RImplInfoArray* A pointer to the array of CImplementationInformation pointers. sl@0: Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RImplInfoArray* contains the list sl@0: of CImplementationInformations regigistered for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: const TEComResolverParams& aAdditionalParameters, sl@0: TUid aResolverUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TClientRequest& aMessage); sl@0: /** sl@0: Intended Usage : Retrieve a list of all the implementations which sl@0: satisfy the specified interface. sl@0: Error Condition : Lack of memory. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aResolverUid The CResolver implementation to use. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aMessage Client's request sl@0: @return RPointerArray* A pointer to the array of class identification sl@0: data. sl@0: Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RPointerArray* contains the list sl@0: of Implementations for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: TUid aResolverUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TClientRequest& aMessage); sl@0: sl@0: /** sl@0: Intended Usage :Instantiate an interface implementation to satisfy the sl@0: specified interface. sl@0: Error Condition : Lack of memory, or not connected. sl@0: @leave KErrNoMemory sl@0: @leave KErrNotConnected sl@0: @since 7.0 sl@0: @param aImplementationUid A UID specifying the required interface implementation. sl@0: @param aDllInfo containing the Dll info to be loaded on the client side sl@0: @param aInstanceKey A 32 bit identifer returned by ECom to sl@0: identify this instance to the framework. sl@0: @param aClientRequest client's request sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The requested interface implementation is identified, sl@0: and the instantiation method pointer is returned. sl@0: */ sl@0: sl@0: void GetResolvedDllInfoL( const TUid aImplementationUid, sl@0: TEntry& aDllInfo, sl@0: TUid& aInstanceKey, sl@0: const TClientRequest& aClientRequest); sl@0: sl@0: sl@0: /** sl@0: Intended Usage :Instantiate an interface implementation to satisfy the sl@0: specified interface. sl@0: Error Condition : Lack of memory sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aAdditionalParameters A descriptor specifying any additional sl@0: implementation characteristics to be fulfilled. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aDllInfo containing the Dll info to be loaded on the client side sl@0: @param aInstanceKey A 32 bit identifer returned by ECom to sl@0: identify this instance to the framework. sl@0: @param aClientRequest client's request sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The requested interface implementation is identified, sl@0: and the instantiation method pointer is returned. sl@0: */ sl@0: sl@0: void GetResolvedDllInfoL( const TUid aInterfaceUid, sl@0: const TEComResolverParams& aAdditionalParameters, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TEntry& aDllInfo, sl@0: TUid& aInstanceKey, sl@0: const TClientRequest& aClientRequest); sl@0: sl@0: /** sl@0: Intended Usage :Instantiate an interface implementation to satisfy the sl@0: specified interface. sl@0: Overload with a client provided CResolver. sl@0: Error Condition : Lack of memory sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aAdditionalParameters A descriptor specifying any additional sl@0: implementation characteristics to be fulfilled. sl@0: @param aResolver A UID specifying the implementation of the CResolver interface sl@0: with client defined behaviour to use for resolution. sl@0: @param aExtendedInterfaces Identifies a set of zero or more extended interfaces to match. sl@0: Must match all extended interfaces for a match to occur. sl@0: @param aDllInfo containing the Dll info to be loaded on the client side sl@0: @param aInstanceKey A 32 bit identifer returned by ECom to sl@0: identify this instance to the framework. sl@0: @param aClientRequest client's request sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The requested interface implementation is identified, sl@0: and the instantiation method pointer is returned. sl@0: */ sl@0: sl@0: void GetResolvedDllInfoL( const TUid aInterfaceUid, sl@0: const TEComResolverParams& aAdditionalParameters, sl@0: const TUid aResolverUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TEntry& aDllInfo, sl@0: TUid& aInstanceKey, sl@0: const TClientRequest& aClientRequest); sl@0: sl@0: /** sl@0: Get implementation info for one implementation, and return to client sl@0: @param aImplementationUid A UID specifying the required implementation. sl@0: @param aImplInfo Return value, implementation info for client. If the call succeeds, sl@0: it will point to the found implementation information in registrydata. The function sl@0: does not return ownership of the pointer, so the caller must not destroy it. sl@0: @param aClientRequest client's request sl@0: */ sl@0: void GetImplementationInformationL(const TUid& aImplementationUid, sl@0: CImplementationInformation*& aImplInfo, sl@0: const TClientRequest& aClientRequest); sl@0: sl@0: #ifdef __ECOM_SERVER_TESTABILITY__ sl@0: /** sl@0: This method is provided for testability. It allows the user to sl@0: simulate the domain manager behaviour. If the testing compile sl@0: time flag __ECOM_SERVER_TESTABILITY__ is not defined the method sl@0: is not accessible. If the flag is defined then it is responsible sl@0: for setting the startup state. After the state is changed sl@0: the ProcessCurrentStartupStateL() method should be called for sl@0: correct simulation of domain manager behaviour. sl@0: @param aState the state to change to sl@0: */ sl@0: void ChangeStartupStateL(TInt aState) const; sl@0: sl@0: /** sl@0: This method is provided for testability. It allows the user to sl@0: simulate the domain manager behaviour. If the testing compile sl@0: time flag __ECOM_SERVER_TESTABILITY__ is not defined the method sl@0: is not accessible. If the flag is defined then it is responsible sl@0: for processing the startup state. ChangeStartupState() method sl@0: should be called prior to calling this method. sl@0: @leave System-wide error codes, including KErrNoMemory. sl@0: */ sl@0: void ProcessCurrentStartupStateL() const; sl@0: sl@0: /** sl@0: This method is provided for testability. It allows the user to sl@0: simulate the domain manager behaviour. If the testing compile sl@0: time flag __ECOM_SERVER_TESTABILITY__ is not defined the method sl@0: is not accessible. It is an accessor sl@0: to test the current state of the ServerStartupManager. sl@0: @return The current startup state of the CServerStartupManager. sl@0: */ sl@0: TInt GetCurrentStartupState() const; sl@0: #endif //__ECOM_SERVER_TESTABILITY__ sl@0: sl@0: #ifdef __ECOM_SERVER_PERFORMANCE__ sl@0: /** sl@0: This method is provided for performance testability. If the testing sl@0: compile time flag __ECOM_SERVER_PERFORMANCE__ is not defined the method sl@0: is not accessible. It is an accessor to get the plugins counts discovered sl@0: during the startup of EComServer. sl@0: @param aType the type of counts to read sl@0: @param aCounts the count readings sl@0: */ sl@0: void GetRegistryCountsL(TInt aType, RegistryCounts::TRegistryCounts& aCounts) const; sl@0: sl@0: #endif //__ECOM_SERVER_PERFORMANCE__ sl@0: sl@0: /** sl@0: Intended Usage : (Server Session management) Add a new session connection for a client. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The new CEComServerSession to handle service provision for a new sl@0: ECom client has been recorded. sl@0: If the server was preparing to shutdown, that shutdown is cancelled sl@0: */ sl@0: sl@0: void AddSession(); sl@0: sl@0: /** sl@0: Intended Usage : (Server Session management) Destroy a session connection with a client. sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The appropriate CEComServerSession has been destroyed and sl@0: the ECom client has been disconnected from this server. sl@0: */ sl@0: sl@0: void DropSession(); sl@0: sl@0: /** sl@0: Intended Usage : The overloaded method from the MRegistrarObserver class sl@0: Used for firing notifications to the client sessions that sl@0: the underlying registry data has changed. sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre CEComServer must have been fully constructed. sl@0: @post The CEComServer has notified all its client sessions sl@0: registered for notifications that the data changed. sl@0: */ sl@0: sl@0: void Notification(TInt aNotificationCode); sl@0: sl@0: /** sl@0: Intended Usage : Indicates whether the registry index is currently valid. The sl@0: index will not be valid if discoveries are currently taking place. sl@0: If the index is not currently valid then calls to sl@0: ListImplementationsL() cannot be serviced. sl@0: Error Condition : None. sl@0: @return ETrue if the index is currently valid, EFalse otherwise. sl@0: @since 7.0 sl@0: @pre CEComServer is fully constructed sl@0: */ sl@0: sl@0: TBool RegistryIndexValid() const; sl@0: sl@0: // Callback function to be invoked by CDiscoverer and CRegistryData sl@0: static TInt NotifyEvents(TAny* aObj, TInt aEvent, TAny* aData); sl@0: sl@0: private: sl@0: /** sl@0: @internalComponent sl@0: Intended Usage : Default c'tor sl@0: Error Condition : None sl@0: @since 7.0 sl@0: @pre None sl@0: @post CEComServer is fully constructed sl@0: */ sl@0: sl@0: CEComServer(); sl@0: sl@0: /** sl@0: Intended Usage : Standardised 2nd, (Initialisation) phase of two sl@0: phase construction. sl@0: Error Condition : None sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @return void sl@0: @pre CEComServer is fully constructed. sl@0: @post CEComServer is fully initialised. sl@0: */ sl@0: sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: Intended Usage : Helper method to retrieve a list of all the sl@0: implementations which satisfy the specified interface. sl@0: Overload with a provided CResolver*. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aAdditionalParameters A descriptor specifying any additional sl@0: implementation characteristics to be fulfilled. sl@0: @param aResolver A CResolver with client defined behaviour. sl@0: @return RPointerArray* A pointer to the array of class identification sl@0: data. Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RPointerArray* contains the list sl@0: of Implementations for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: const TEComResolverParams& aAdditionalParameters, sl@0: CResolver* aResolver) const; sl@0: /** sl@0: Intended Usage : Helper method to retrieve a list of all the sl@0: implementations which satisfy the specified interface. sl@0: Overload with a provided CResolver*. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aInterfaceUid A UID specifying the required interface. sl@0: @param aResolver A CResolver with client defined behaviour. sl@0: @return A pointer to the array of class identification data. sl@0: Ownership of the created array is returned to the caller, sl@0: who must take the responsibility of destroying it. However, the caller must sl@0: not destroy the list's contents as it is not owned by the list. sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has not changed, and RPointerArray* contains the list sl@0: of Implementations for the interface. sl@0: */ sl@0: sl@0: RImplInfoArray* ListImplementationsL(TUid aInterfaceUid, sl@0: CResolver* aResolver) const; sl@0: sl@0: /** sl@0: Intended Usage : Creates a new CEComServerSession to handle client sl@0: service requests. sl@0: @leave KErrNoMemory sl@0: @leave @see CSharableSession sl@0: @pre CEComServer must have been fully constructed. sl@0: @post CEComServer has created a new CEComServerSession. sl@0: */ sl@0: sl@0: CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const; sl@0: sl@0: /** sl@0: Intended Usage : Intercept the panic caused by a RunL leave, sl@0: to restore the CEComServer object to a sensible state. sl@0: (called by the Active Scheduler immediately before the Panic). sl@0: Error Condition : None. sl@0: @since 7.0 sl@0: @return TInt KErrNone if cleanup successful, otherwise return aError sl@0: @pre CEComServer is fully constructed. sl@0: @post CEComServer has been restored to a sensible state. sl@0: */ sl@0: sl@0: TInt RunError(TInt aError); sl@0: sl@0: /** sl@0: Intended Usage: Creates custom resolver object with aResolverUid UID. sl@0: The method leaves custom resolver onto the cleanup stack. sl@0: @param aResolverUid Custom resolver UID. sl@0: @param aRegistryResolveTransaction A pointer to Registry resolve transaction object sl@0: @return A pointer to the created CResolver object. sl@0: @leave System-wide error codes, including KErrNoMemory. sl@0: */ sl@0: CResolver* CreateCustomResolverLC(TUid aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction); sl@0: sl@0: /** sl@0: Intended Usage: Creates resolver object with aResolverUid UID. sl@0: The method leaves resolver onto the cleanup stack. sl@0: @param aResolverUid Resolver UID. sl@0: @param aRegistryResolveTransaction A pointer to Registry resolve transaction object sl@0: @return A pointer to the created CResolver object. sl@0: @leave System-wide error codes, including KErrNoMemory. sl@0: */ sl@0: CResolver* CreateResolverLC(const TUid& aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction); sl@0: sl@0: void NotifyUpgrade(const TUid aImplementationUid); sl@0: void NotifySWIEvent(TAny* aData); sl@0: void NotifyBUREvent(TAny* aData); sl@0: void UpdateSpecialEvents(TUint32 aBit, TCallBackState aState); sl@0: TBool IsCachable(TBool aEntryIsOnRWDrive); sl@0: sl@0: // Attributes sl@0: private: sl@0: /** Singleton connection to the file server */ sl@0: RFs iFs; sl@0: /** Singleton registry information handler */ sl@0: sl@0: CRegistryData* iRegistryData; sl@0: sl@0: /** Registry resolve transaction object */ sl@0: CRegistryResolveTransaction* iRegistryResolveTransaction; sl@0: sl@0: /** Singleton Registrar to handle the interface registration */ sl@0: sl@0: CRegistrar* iRegistrar; sl@0: sl@0: /** The count of the number of sessions open upon this server */ sl@0: sl@0: TInt iSessionCount; sl@0: /** The timer controlling the server shutdown process */ sl@0: sl@0: CShutdown iShutdown; sl@0: sl@0: /** CServerStartupMgr object which interacts with Domain Manager*/ sl@0: CServerStartupMgr* iServerStartupMgr; sl@0: sl@0: /** Library which is used to load a non-default resolver when required */ sl@0: RLibrary iResolverLibrary; sl@0: sl@0: /** cache of recently used custom resolvers. */ sl@0: CCustomResolverCache* iResolverCache; sl@0: sl@0: /** Keep track of special system events such as BUR / SWI in progress */ sl@0: TBitFlags32 iSpecialEvents; sl@0: sl@0: // And the Test bed state accessor sl@0: friend class TEComServer_StateAccessor; sl@0: }; sl@0: sl@0: // Inline implementations for CShutdown sl@0: // Set the priority for shutdown as marginally less than normal sl@0: // operation. sl@0: const TInt KEComShutdownPriority = CActive::EPriorityStandard - 1; sl@0: inline CShutdown::CShutdown() sl@0: :CTimer(KEComShutdownPriority) sl@0: { sl@0: CActiveScheduler::Add(this); sl@0: } sl@0: sl@0: inline void CShutdown::ConstructL() sl@0: { sl@0: CTimer::ConstructL(); sl@0: } sl@0: sl@0: inline void CShutdown::Start() sl@0: { sl@0: // Kick off the shutdown timer if this is a debug run sl@0: // Otherwise NEVER close. sl@0: #ifdef _TRANSIENT_SERVER sl@0: After(KEComShutdownDelay); sl@0: #endif sl@0: } sl@0: sl@0: #endif // __ECOMSERVER_H__ sl@0: