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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The Definition of the CEComServer singleton class which
15 // instantiates an instance of the requested ECom Interface Implementation.
24 #ifndef __ECOMSERVER_H__
25 #define __ECOMSERVER_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>
39 // Forward declarations
43 class CDefaultResolver;
44 class CRomOnlyResolver;
45 class TEComResolverParams;
46 class CServerStartupMgr;
47 class CRegistryResolveTransaction;
48 class CCustomResolverCache;
50 //#define _TRANSIENT_SERVER
52 #ifdef _TRANSIENT_SERVER
54 Specifies that the server should shut down after a specified time
55 If not defined then the server never shuts down
58 const TInt KEComShutdownDelay = 0x500000; // approx 0.5 seconds
65 A shutdown control object that activates the
66 destruction of the ECom server when its RunL
67 fires, by stopping the local scheduler.
70 class CShutdown : public CTimer
75 Intended Usage : Default c'tor
76 Error Condition : None
79 @post CShutdown is fully constructed.
85 Intended Usage : Standardised 2nd, (Initialisation) phase of two
87 Error Condition : None
90 @pre CShutdown is fully constructed.
91 @post CShutdown is fully initialised.
94 inline void ConstructL();
97 Intended Usage : Activate the shutdown timeout.
98 Error Condition : None
100 @pre CShutdown is fully constructed.
101 @post CShutdown is active pending timeout.
108 Intended Usage : The timeout has expired, so begin server destruction.
109 Error Condition : None
111 @pre CShutdown is fully constructed.
112 @post the local CActiveScheduler::Stop() has been called.
122 A concrete implementation which supplies instantiation &
123 destruction of a class via the ECom framework.
126 class CEComServer : private CServer2, private MRegistrarObserver
130 Intended Usage : Standardised safe construction which
131 leaves the returned object on the cleanup stack.
132 Error Condition : Cannot fully construct because of
135 @leave @see RFs, CRegistryData, CRegistrar, CDefaultResolver
136 @leave @see CShutdownTimer & CServer::StartL
138 @return CEComServer* a pointer to the new class
140 @post CEComServer is fully constructed, initialised,
141 and remains upon the cleanup stack.
144 static CEComServer* NewLC();
147 Intended Usage : d'tor
148 Error Condition : None
150 @pre CEComServer must have been fully constructed.
151 @post CEComServer is destroyed.
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.
161 TBool IsSSA(RFs& aFs);
164 Intended Usage : Retrieve a list of all the implementations which
165 satisfy the specified interface.
166 Error Condition : Lack of memory.
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.
184 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
185 const TEComResolverParams& aAdditionalParameters,
186 const RExtendedInterfacesArray& aExtendedInterfaces,
187 const TClientRequest& aMessage);
190 Intended Usage : Retrieve a list of all the implementations which
191 satisfy the specified interface.
192 Error Condition : Lack of memory.
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.
208 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
209 const RExtendedInterfacesArray& aExtendedInterfaces,
210 const TClientRequest& aMessage);
213 Intended Usage : Retrieve a list of all the implementations which
214 satisfy the specified interface.
215 Error Condition : Lack of memory.
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.
234 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
235 const TEComResolverParams& aAdditionalParameters,
237 const RExtendedInterfacesArray& aExtendedInterfaces,
238 const TClientRequest& aMessage);
240 Intended Usage : Retrieve a list of all the implementations which
241 satisfy the specified interface.
242 Error Condition : Lack of memory.
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
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.
260 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
262 const RExtendedInterfacesArray& aExtendedInterfaces,
263 const TClientRequest& aMessage);
266 Intended Usage :Instantiate an interface implementation to satisfy the
268 Error Condition : Lack of memory, or not connected.
270 @leave KErrNotConnected
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.
282 void GetResolvedDllInfoL( const TUid aImplementationUid,
285 const TClientRequest& aClientRequest);
289 Intended Usage :Instantiate an interface implementation to satisfy the
291 Error Condition : Lack of memory
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.
308 void GetResolvedDllInfoL( const TUid aInterfaceUid,
309 const TEComResolverParams& aAdditionalParameters,
310 const RExtendedInterfacesArray& aExtendedInterfaces,
313 const TClientRequest& aClientRequest);
316 Intended Usage :Instantiate an interface implementation to satisfy the
318 Overload with a client provided CResolver.
319 Error Condition : Lack of memory
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.
338 void GetResolvedDllInfoL( const TUid aInterfaceUid,
339 const TEComResolverParams& aAdditionalParameters,
340 const TUid aResolverUid,
341 const RExtendedInterfacesArray& aExtendedInterfaces,
344 const TClientRequest& aClientRequest);
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
354 void GetImplementationInformationL(const TUid& aImplementationUid,
355 CImplementationInformation*& aImplInfo,
356 const TClientRequest& aClientRequest);
358 #ifdef __ECOM_SERVER_TESTABILITY__
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
369 void ChangeStartupStateL(TInt aState) const;
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.
380 void ProcessCurrentStartupStateL() const;
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.
390 TInt GetCurrentStartupState() const;
391 #endif //__ECOM_SERVER_TESTABILITY__
393 #ifdef __ECOM_SERVER_PERFORMANCE__
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
402 void GetRegistryCountsL(TInt aType, RegistryCounts::TRegistryCounts& aCounts) const;
404 #endif //__ECOM_SERVER_PERFORMANCE__
407 Intended Usage : (Server Session management) Add a new session connection for a client.
408 Error Condition : None.
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
419 Intended Usage : (Server Session management) Destroy a session connection with a client.
420 Error Condition : None.
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.
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
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.
440 void Notification(TInt aNotificationCode);
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.
450 @pre CEComServer is fully constructed
453 TBool RegistryIndexValid() const;
455 // Callback function to be invoked by CDiscoverer and CRegistryData
456 static TInt NotifyEvents(TAny* aObj, TInt aEvent, TAny* aData);
461 Intended Usage : Default c'tor
462 Error Condition : None
465 @post CEComServer is fully constructed
471 Intended Usage : Standardised 2nd, (Initialisation) phase of two
473 Error Condition : None
477 @pre CEComServer is fully constructed.
478 @post CEComServer is fully initialised.
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*.
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.
502 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
503 const TEComResolverParams& aAdditionalParameters,
504 CResolver* aResolver) const;
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*.
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.
522 RImplInfoArray* ListImplementationsL(TUid aInterfaceUid,
523 CResolver* aResolver) const;
526 Intended Usage : Creates a new CEComServerSession to handle client
529 @leave @see CSharableSession
530 @pre CEComServer must have been fully constructed.
531 @post CEComServer has created a new CEComServerSession.
534 CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
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.
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.
547 TInt RunError(TInt aError);
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.
557 CResolver* CreateCustomResolverLC(TUid aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction);
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.
567 CResolver* CreateResolverLC(const TUid& aResolverUid,CRegistryResolveTransaction* aRegistryResolveTransaction);
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);
577 /** Singleton connection to the file server */
579 /** Singleton registry information handler */
581 CRegistryData* iRegistryData;
583 /** Registry resolve transaction object */
584 CRegistryResolveTransaction* iRegistryResolveTransaction;
586 /** Singleton Registrar to handle the interface registration */
588 CRegistrar* iRegistrar;
590 /** The count of the number of sessions open upon this server */
593 /** The timer controlling the server shutdown process */
597 /** CServerStartupMgr object which interacts with Domain Manager*/
598 CServerStartupMgr* iServerStartupMgr;
600 /** Library which is used to load a non-default resolver when required */
601 RLibrary iResolverLibrary;
603 /** cache of recently used custom resolvers. */
604 CCustomResolverCache* iResolverCache;
606 /** Keep track of special system events such as BUR / SWI in progress */
607 TBitFlags32 iSpecialEvents;
609 // And the Test bed state accessor
610 friend class TEComServer_StateAccessor;
613 // Inline implementations for CShutdown
614 // Set the priority for shutdown as marginally less than normal
616 const TInt KEComShutdownPriority = CActive::EPriorityStandard - 1;
617 inline CShutdown::CShutdown()
618 :CTimer(KEComShutdownPriority)
620 CActiveScheduler::Add(this);
623 inline void CShutdown::ConstructL()
625 CTimer::ConstructL();
628 inline void CShutdown::Start()
630 // Kick off the shutdown timer if this is a debug run
631 // Otherwise NEVER close.
632 #ifdef _TRANSIENT_SERVER
633 After(KEComShutdownDelay);
637 #endif // __ECOMSERVER_H__