sl@0: // Copyright (c) 2001-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 API definitions required for the use of the ECOM framework by a client sl@0: // are contained / defined here. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __ECOM_H__ sl@0: #define __ECOM_H__ sl@0: sl@0: // ____________________________________________________________________________ sl@0: // INCLUDES sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: // ____________________________________________________________________________ sl@0: // CONSTANTS sl@0: sl@0: class CGlobalData; sl@0: sl@0: /** sl@0: The UID identifying the ROM-Only CResolver Interface Implementation. sl@0: This resolver only returns implementations present on R/O internal media sl@0: (built-in) or upgrades of such implementations on R/W media. It does not sl@0: return implementations that solely reside on R/W media. sl@0: */ sl@0: const TUid KRomOnlyResolverUid = {0x10009D92}; sl@0: sl@0: sl@0: // ____________________________________________________________________________ sl@0: // CLASSES sl@0: sl@0: /** sl@0: The REComSession singleton class provides an API to identify (resolution), sl@0: instantiate, and destroy interface class implementations requested by sl@0: ECOM clients. It manages the session connection to the ECOM Server itself so sl@0: that typically only one connection is made to the ECOM Server per thread. sl@0: It provides an un-initialise function where it releases memory and handles sl@0: of unused plug-ins, see the FinalClose() function. It also ensures that all sl@0: necessary clean-up is performed in the event of a Leave by any of the sl@0: ListImplementationsL() or CreateImplementationL() methods. sl@0: sl@0: Note: Although a public default constructor is provided in this class sl@0: it is strongly recommended this object is never created by users of this sl@0: API on the stack or heap by value. To access the non-static methods of this sl@0: API use the static OpenL() method to obtain a pointer or a sl@0: reference to the single reference counted session in use. Close() must be sl@0: called when finished with. sl@0: sl@0: Special care must be taken when using aInstanceKey. It is a 32-bit instance key sl@0: that is returned from a call to one of the CreateImplementationL() methods. sl@0: This instance key must only be used with DestroyedImplementation() to identify sl@0: the implementation instance for destruction, or GetImplementationUidL() to sl@0: retrieve the Implementation Uid of the instance it refers to. sl@0: No meaning must be attached to this instance key by ECOM clients sl@0: and it must not be used for any other purpose. sl@0: sl@0: sl@0: @see REComSession::FinalClose() sl@0: */ sl@0: class REComSession : public RSessionBase sl@0: { sl@0: friend class CGlobalData; sl@0: sl@0: public: // publishedAll APIs sl@0: // Available for use by all clients sl@0: sl@0: IMPORT_C REComSession(); sl@0: sl@0: IMPORT_C static REComSession& OpenL(); sl@0: IMPORT_C void Close(); sl@0: sl@0: // Get Implementation Uid from an Instance Key sl@0: IMPORT_C static TUid GetImplementationUidL( sl@0: TUid aInstanceKey); sl@0: sl@0: // Destroy Implementation API declaration sl@0: IMPORT_C static void DestroyedImplementation( sl@0: TUid aInstanceKey); sl@0: sl@0: // See developer documentation for use of FinalClose. sl@0: IMPORT_C static void FinalClose(); sl@0: sl@0: sl@0: // Notification API declarations sl@0: // sl@0: sl@0: IMPORT_C void NotifyOnChange(TRequestStatus& aStatus); sl@0: IMPORT_C void CancelNotifyOnChange(TRequestStatus& aStatus); sl@0: sl@0: sl@0: // List implementations API declarations sl@0: // sl@0: // Use LI1 to list all implementations, unfiltered. sl@0: // Use LI2 when default resolving required on the returned list. sl@0: // Use LI3 when custom resolving required on the returned list. sl@0: sl@0: // ListImplementationsL - LI1 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: // ListImplementationsL - LI2 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: // ListImplementationsL - LI3 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: // Use LI7 to list all implementations, unfiltered and with no capability chaeck. sl@0: // Use LI8 when default resolving required on the returned list and with no capability chaeck. sl@0: // Use LI9 when custom resolving required on the returned list and with no capability chaeck. sl@0: sl@0: // ListImplementationsL - LI7 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck); sl@0: sl@0: // ListImplementationsL - LI8 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck); sl@0: sl@0: // ListImplementationsL - LI9 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: RImplInfoPtrArray& aImplInfoArray,TBool aCapabilityCheck); sl@0: sl@0: sl@0: // Create implementations API declarations sl@0: // sl@0: // When Implementation UID is known: sl@0: // Use CI1, CI2. sl@0: // Use CI3, CI4 when you have construction parameters. sl@0: // sl@0: // When the Interface UID is known and default resolving is required: sl@0: // Use CI5, CI6. sl@0: // Use CI7, CI8 when you have construction parameters. sl@0: // sl@0: // When the Interface UID is known and custom resolving is required: sl@0: // Use CI9, CI10. sl@0: // Use CI11, CI12 when you have construction parameters. sl@0: sl@0: // CreateImplementationL - CI1 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aImplementationUid, sl@0: TUid& aInstanceKey); sl@0: sl@0: // CreateImplementationL - CI2 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aImplementationUid, sl@0: TInt32 aKeyOffset); sl@0: sl@0: // CreateImplementationL - CI3 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aImplementationUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aConstructionParameters); sl@0: sl@0: // CreateImplementationL - CI4 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aImplementationUid, sl@0: TInt32 aKeyOffset, sl@0: TAny* aConstructionParameters); sl@0: sl@0: // CreateImplementationL - CI5 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TUid& aInstanceKey, sl@0: const TEComResolverParams& aResolutionParameters); sl@0: sl@0: // CreateImplementationL - CI6 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TInt32 aKeyOffset, sl@0: const TEComResolverParams& aResolutionParameters); sl@0: sl@0: // CreateImplementationL - CI7 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aConstructionParameters, sl@0: const TEComResolverParams& aResolutionParameters); sl@0: sl@0: // CreateImplementationL - CI8 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TInt32 aKeyOffset, sl@0: TAny* aConstructionParameters, sl@0: const TEComResolverParams& aResolutionParameters); sl@0: sl@0: // CreateImplementationL - CI9 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TUid& aInstanceKey, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid); sl@0: sl@0: // CreateImplementationL - CI10 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TInt32 aKeyOffset, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid); sl@0: sl@0: // CreateImplementationL - CI11 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aConstructionParameters, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid); sl@0: sl@0: // CreateImplementationL - CI12 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: TInt32 aKeyOffset, sl@0: TAny* aConstructionParameters, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid); sl@0: sl@0: sl@0: public: // publishedPartner APIs sl@0: // Extended interfaces API declarations available for use by sl@0: // all system software i.e by phone manufacturers and internally (i.e. not supported for use by 3rd parties) sl@0: // See Symbian OS Developer Library and ECOM How To/FAQ documentation. sl@0: sl@0: sl@0: // List implementations API declarations sl@0: // sl@0: // Use L14 to list all implementations which satisfy interface, extended sl@0: // interfaces sl@0: // Use L15 to list all implementations which satisfy interface, extended sl@0: // interfaces when default resolving required on the list returned sl@0: // Use L16 to list all implementations which satisfy interface, extended sl@0: // interfaces when custom resolving required on the list returned sl@0: sl@0: // ListImplementationsL - LI4 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: RExtendedInterfacesArray& aExtendedInterfaces, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: // ListImplementationsL - LI5 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: // ListImplementationsL - LI6 sl@0: IMPORT_C static void ListImplementationsL( sl@0: TUid aInterfaceUid, sl@0: RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: RImplInfoPtrArray& aImplInfoArray); sl@0: sl@0: sl@0: // Create implementations API declarations sl@0: // sl@0: // When the interface UID and the extended interface UID's are known sl@0: // and default resolving is required. The construction parameters may sl@0: // optionally be provided. sl@0: // Use CI13: Instance key is returned sl@0: // Use CI14: An offset to aInstanceKey returned by the ECom framework sl@0: // to identify this instance to the framework sl@0: // When the interface UID and the extended interface UID's are known sl@0: // and custom resolving is required. The construction parameters may sl@0: // optionally be provided. sl@0: // Use CI15: Instance key is returned sl@0: // Use CI16: An offset to aInstanceKey returned by the ECom framework sl@0: // to identify this instance to the framework sl@0: sl@0: // CreateImplementationL - CI13 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TUid& aInstanceKey, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TAny* aConstructionParameters = NULL); sl@0: sl@0: // CreateImplementationL - CI14 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TInt32 aKeyOffset, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TAny* aConstructionParameters = NULL); sl@0: sl@0: // CreateImplementationL - CI15 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TUid& aInstanceKey, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: TAny* aConstructionParameters = NULL); sl@0: sl@0: // CreateImplementationL - CI16 sl@0: IMPORT_C static TAny* CreateImplementationL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: TInt32 aKeyOffset, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: TAny* aConstructionParameters = NULL); sl@0: sl@0: sl@0: // Extended Interface query and management API declarations sl@0: // sl@0: sl@0: IMPORT_C static TAny* GetExtendedInterfaceL( sl@0: const TUid& aInstanceKey, sl@0: const TUid& aExtendedInterfaceUid); sl@0: sl@0: IMPORT_C static void ListExtendedInterfacesL( sl@0: const TUid& aImplementationUid, sl@0: RExtendedInterfacesArray& aIfInfo); sl@0: sl@0: IMPORT_C static void ManuallyReleaseExtendedInterfaceL( sl@0: const TUid& aInstanceKey, sl@0: const TUid& aExtendedInterfaceUid); sl@0: sl@0: sl@0: private: // @internalComponent APIs sl@0: // This API is for internal testing purposes.Should not be used externally by clients. sl@0: sl@0: static REComSession& OpenLC(); sl@0: sl@0: void ConstructL(); sl@0: void ReallyClose(); sl@0: sl@0: void ListImplementationsL( sl@0: TInt aServiceId, sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: RImplInfoPtrArray& aImplInfoArray, sl@0: TBool aCapabilityCheck = ETrue); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TUid aImplementationUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TUid aInterfaceUid, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: TAny* ResolveAndCreateImplL( sl@0: TInt aServiceId, sl@0: TUid aInterfaceUid, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: const TEComResolverParams& aResolutionParameters, sl@0: TUid aResolverUid, sl@0: TUid& aInstanceKey, sl@0: TAny* aCreationParameters, sl@0: TBool aCreationParamsFlag); sl@0: sl@0: void ProcessListExtendedInterfacesL( sl@0: const TUid& aImplementationUid, sl@0: RExtendedInterfacesArray& aIfInfo); sl@0: sl@0: void PackMatchStrAndExtendedInterfacesL( sl@0: const TEComResolverParams& aResolutionParameters, sl@0: const RExtendedInterfacesArray& aExtendedInterfaces, sl@0: RBuf8& aMatchStrExtInfBuf); sl@0: sl@0: sl@0: public: // @internalComponent APIs sl@0: // Internal methods used inside ECOM, not for client use. sl@0: sl@0: // This API is for internal testing purposes. sl@0: IMPORT_C static void SetGetParametersL(const TIpcArgs &aArgs); sl@0: sl@0: sl@0: private: sl@0: /** Not used */ sl@0: TInt iReserved1; sl@0: sl@0: /** not used */ sl@0: TInt iReserved3; sl@0: /** not used */ sl@0: TInt iReserved2; sl@0: }; sl@0: sl@0: #endif // __ECOM_H__