os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/LoadManager.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 #ifndef __LOADMANAGER_H__
    18 #define __LOADMANAGER_H__
    19 
    20 #include <e32base.h>
    21 #include <ecom/extendedinterfaceimplementationproxy.h>
    22 //Forward declarations
    23 class CUnloadPolicy;
    24 
    25 /**
    26 @internalComponent
    27 Represents an instance of an implementation
    28 */
    29 NONSHARABLE_CLASS(CInstanceInfo): public CBase
    30 	{
    31 public:
    32 	virtual ~CInstanceInfo();
    33 	CUnloadPolicy* UnloadPolicy() {return iUnloadPolicy;};
    34 public:
    35 	virtual TUid ImplementationUid() = 0;
    36     virtual TProxyExtendedInterfaceGetPtrL ProxyExtendedIntGetPtr() = 0;
    37     virtual TProxyExtendedInterfaceReleasePtr ProxyExtendedIntReleasePtr() = 0;
    38     virtual TAny* CreateExtObjectL(const TUid& aExtendedInterfaceUID) = 0;
    39     virtual void DestroyExtObject(const TUid& aExtendedInterfaceUID) = 0;
    40     virtual TAny* ImplementationObject() = 0;
    41 protected:
    42     CInstanceInfo(CUnloadPolicy* aUnloadPolicy);
    43 private:
    44    	// The Unload Policy for the dll which contains this implementation
    45 	CUnloadPolicy*	iUnloadPolicy;
    46 	};
    47 
    48 /**
    49 @internalComponent
    50 Represents an instance of a PLUGIN3 type implementation
    51 */
    52 NONSHARABLE_CLASS(CInstanceInfoExtended): public CInstanceInfo
    53 {
    54 public:
    55 	static CInstanceInfoExtended* NewL(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy3* aRow);
    56 	void SetObject(TAny* aImplementationObject);
    57 	~CInstanceInfoExtended(); // Release all extended objects (if not already released)
    58 public:
    59     TUid ImplementationUid() {return iImplementationProxyRow->iImplementationUid;};
    60     TProxyExtendedInterfaceGetPtrL ProxyExtendedIntGetPtr() {return iImplementationProxyRow->iFuncPtrInterfaceGetL;};
    61     TProxyExtendedInterfaceReleasePtr ProxyExtendedIntReleasePtr() {return iImplementationProxyRow->iFuncPtrInterfaceRelease;};
    62     TAny* CreateExtObjectL(const TUid& aExtendedInterfaceUID);
    63     void DestroyExtObject(const TUid& aExtendedInterfaceUID);
    64     TAny* ImplementationObject() {return iImplementationObject;};
    65 private:
    66 	CInstanceInfoExtended(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy3* aImplementationProxyRow);
    67 private:
    68    // Pointer to proxy implementation table row entry that this instance corresponds to.
    69    // This is where the implementation UID, get and release extended interface function
    70    // pointers reside.
    71    const TImplementationProxy3* iImplementationProxyRow;
    72    // The instantiation interface object for the dll which contains this implementation
    73    TAny*	iImplementationObject;
    74    // The created extended object information structure.
    75    struct TExtendedObjectInfo
    76 	   {
    77 	   // The extended interface UID
    78        TUid    iExtendedInterfaceUID;
    79 	   // The extended interface object for the this implementation
    80 	   TAny*   iExtendedInterfaceObject;
    81 	   };
    82 
    83     // List of all of the created extended objects for this implementation
    84 	RArray<TExtendedObjectInfo> iExtendedObjectInfo;
    85 
    86 	// Friend classes
    87 	friend class TLoadManager_StateAccessor;
    88 };
    89 
    90 /**
    91 @internalComponent
    92 Represents an instance of a PLUGIN1 type implementation
    93 */
    94 NONSHARABLE_CLASS(CInstanceInfoSimple): public CInstanceInfo
    95 {
    96 public:
    97 	static CInstanceInfoSimple* NewL(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy* aImplementationProxyRow);
    98 public:
    99     TUid ImplementationUid() {return iImplementationProxyRow->iImplementationUid;};
   100 	// The following functions are not required for CInstanceInfoSimple.
   101 	// PLUGIN1 type is not meant to extend interfaces.  	
   102   	TProxyExtendedInterfaceGetPtrL ProxyExtendedIntGetPtr(){return NULL;};
   103  	TProxyExtendedInterfaceReleasePtr ProxyExtendedIntReleasePtr(){return NULL;};
   104  	TAny* CreateExtObjectL(const TUid& /*aExtendedInterfaceUID*/) {return NULL;};
   105  	void DestroyExtObject(const TUid& /* aExtendedInterfaceUID*/) {};
   106 	TAny* ImplementationObject() {return NULL;}; 
   107 
   108 private:
   109 	CInstanceInfoSimple(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy* aImplementationProxyRow);
   110 
   111 private:
   112    // Pointer to proxy implementation table row entry that this instance corresponds to.
   113    // This is where the implementation UID resides.
   114    const TImplementationProxy* iImplementationProxyRow;
   115 
   116 };
   117 
   118 /**
   119 @internalComponent
   120 Manages the loading and unloading of interface implementation groupings.
   121 */
   122 NONSHARABLE_CLASS(CLoadManager) : public CBase
   123 {
   124 public:
   125 	static CLoadManager* NewL();
   126 	~CLoadManager();
   127 	TBool DestroyedThis(TUid aInstanceKey);
   128 
   129 	TBool PolicyArraysEmpty() const ;
   130 	
   131 	TAny* ImplementationObjectL(const TUid& aUniqueImplementationUid,
   132 							   const TEntry& aEntry,
   133 							   TAny* aCreationParameters,
   134 							   TBool aCreationParamsFlag,
   135 							   TUid& aInstanceKey);
   136 
   137 	TAny* GetExtendedInterfaceL(const TUid& aInstanceKey, const TUid& aExtendedInterfaceUid);
   138 	void ManuallyReleaseExtendedInterfaceL(const TUid& aInstanceKey, const TUid& aExtendedInterfaceUid);
   139 	void ClearGarbage();
   140 
   141 	TUid GetImplementationUidL(TUid aInstanceKey);
   142 
   143 private:
   144 	CLoadManager();
   145 
   146 	void GetUnloadPolicy(TUid aUniqueImplementationUid,
   147 						 const TEntry& aEntry,
   148 						 CUnloadPolicy*& aPolicy);
   149 
   150 	template<typename TImpProxy,typename T> TAny* GetNewLPointerAndProxyTableRowL(TUid aUniqueImplementationUid,
   151 										 TImpProxy*& aImplementationTableEntry,
   152 										 const T aProxy);
   153 
   154 	TAny* ImplementationObject1L(const TUid& aUniqueImplementationUid,
   155 						   	     TAny* aCreationParameters,
   156 								 TBool aCreationParamsFlag,
   157 								 TUid& aInstanceKey,
   158 								 CUnloadPolicy* aPolicy,
   159 								 TLibraryFunction& aLibFunctionProxy);
   160 
   161 	TAny* ImplementationObject3L(const TUid& aUniqueImplementationUid,
   162 						   	     TAny* aCreationParameters,
   163 								 TBool aCreationParamsFlag,
   164 								 TUid& aInstanceKey,
   165 								 CUnloadPolicy* aPolicy,
   166 								 TLibraryFunction& aLibFunctionProxy);
   167 
   168 	TAny* ImplementationObjectL(TAny* aCreationParameters,
   169 								TBool aCreationParamsFlag,
   170 								const TAny* aNewLpointer);
   171 
   172 	void CleanupAfterFailure(CUnloadPolicy* aPolicy);
   173 	void Cleanup(CUnloadPolicy* aPolicy);
   174 private:
   175 #ifdef ECOM_TRACE
   176 	/** Instantiation counter for debug trace */
   177 	TInt iDebugInstantiationCounter;
   178 #endif
   179 	/** List of all the UnloadPolicies for objects which have been created */
   180 	RPointerArray<CUnloadPolicy> iAllUnloadPolicies;
   181 	/** Garbage UnloadPolicy which is not in use anymore */
   182 	CUnloadPolicy* iGarbagePolicy;
   183 	// Array of instance information
   184 	RPointerArray<CInstanceInfo> iInstanceInfoList;
   185 
   186 	// Make the test State Accessor a friend
   187 	friend class TLoadManager_StateAccessor;
   188 };
   189 
   190 #include "loadmanager.inl"
   191 
   192 #endif //__LOADMANAGER_H__