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