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.
17 #ifndef __LOADMANAGER_H__
18 #define __LOADMANAGER_H__
21 #include <ecom/extendedinterfaceimplementationproxy.h>
22 //Forward declarations
27 Represents an instance of an implementation
29 NONSHARABLE_CLASS(CInstanceInfo): public CBase
32 virtual ~CInstanceInfo();
33 CUnloadPolicy* UnloadPolicy() {return iUnloadPolicy;};
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;
42 CInstanceInfo(CUnloadPolicy* aUnloadPolicy);
44 // The Unload Policy for the dll which contains this implementation
45 CUnloadPolicy* iUnloadPolicy;
50 Represents an instance of a PLUGIN3 type implementation
52 NONSHARABLE_CLASS(CInstanceInfoExtended): public CInstanceInfo
55 static CInstanceInfoExtended* NewL(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy3* aRow);
56 void SetObject(TAny* aImplementationObject);
57 ~CInstanceInfoExtended(); // Release all extended objects (if not already released)
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;};
66 CInstanceInfoExtended(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy3* aImplementationProxyRow);
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
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
77 // The extended interface UID
78 TUid iExtendedInterfaceUID;
79 // The extended interface object for the this implementation
80 TAny* iExtendedInterfaceObject;
83 // List of all of the created extended objects for this implementation
84 RArray<TExtendedObjectInfo> iExtendedObjectInfo;
87 friend class TLoadManager_StateAccessor;
92 Represents an instance of a PLUGIN1 type implementation
94 NONSHARABLE_CLASS(CInstanceInfoSimple): public CInstanceInfo
97 static CInstanceInfoSimple* NewL(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy* aImplementationProxyRow);
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;};
109 CInstanceInfoSimple(CUnloadPolicy* aUnloadPolicy,const TImplementationProxy* aImplementationProxyRow);
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;
120 Manages the loading and unloading of interface implementation groupings.
122 NONSHARABLE_CLASS(CLoadManager) : public CBase
125 static CLoadManager* NewL();
127 TBool DestroyedThis(TUid aInstanceKey);
129 TBool PolicyArraysEmpty() const ;
131 TAny* ImplementationObjectL(const TUid& aUniqueImplementationUid,
132 const TEntry& aEntry,
133 TAny* aCreationParameters,
134 TBool aCreationParamsFlag,
137 TAny* GetExtendedInterfaceL(const TUid& aInstanceKey, const TUid& aExtendedInterfaceUid);
138 void ManuallyReleaseExtendedInterfaceL(const TUid& aInstanceKey, const TUid& aExtendedInterfaceUid);
141 TUid GetImplementationUidL(TUid aInstanceKey);
146 void GetUnloadPolicy(TUid aUniqueImplementationUid,
147 const TEntry& aEntry,
148 CUnloadPolicy*& aPolicy);
150 template<typename TImpProxy,typename T> TAny* GetNewLPointerAndProxyTableRowL(TUid aUniqueImplementationUid,
151 TImpProxy*& aImplementationTableEntry,
154 TAny* ImplementationObject1L(const TUid& aUniqueImplementationUid,
155 TAny* aCreationParameters,
156 TBool aCreationParamsFlag,
158 CUnloadPolicy* aPolicy,
159 TLibraryFunction& aLibFunctionProxy);
161 TAny* ImplementationObject3L(const TUid& aUniqueImplementationUid,
162 TAny* aCreationParameters,
163 TBool aCreationParamsFlag,
165 CUnloadPolicy* aPolicy,
166 TLibraryFunction& aLibFunctionProxy);
168 TAny* ImplementationObjectL(TAny* aCreationParameters,
169 TBool aCreationParamsFlag,
170 const TAny* aNewLpointer);
172 void CleanupAfterFailure(CUnloadPolicy* aPolicy);
173 void Cleanup(CUnloadPolicy* aPolicy);
176 /** Instantiation counter for debug trace */
177 TInt iDebugInstantiationCounter;
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;
186 // Make the test State Accessor a friend
187 friend class TLoadManager_StateAccessor;
190 #include "loadmanager.inl"
192 #endif //__LOADMANAGER_H__