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 // This file contains the definition of the CUnloadPolicy class.
18 #if defined (_MSC_VER) && (_MSC_VER >= 1000)
21 #ifndef _INC_UNLOADPOLICY_3A1D309500CE_INCLUDED
22 #define _INC_UNLOADPOLICY_3A1D309500CE_INCLUDED
27 #include <ecom/extendedinterfaceimplementationproxy.h>
28 #include "EComEntry.h"
31 Type of the function pointer which is the proxy into the interface implementation collection
34 typedef TImplementationProxy* (*TInstantiationL)(TInt&);
37 Type of the function pointer which is the proxy into the interface implementation collection 3
40 typedef TImplementationProxy3* (*TInstantiation3L)(TInt&);
42 @enum TUnloadPolicyStatus
44 Signifies if an UnloadPolicy can be deleted after its reference count has been decreased.
45 This will be true if the reference count is zero and the policy is on the garbage list.
48 enum TUnloadPolicyStatus {EDeleteMe, EDontDeleteMe};
53 Controls the unloading of implementation groupings
56 NONSHARABLE_CLASS(CUnloadPolicy) : public CBase
60 @fn NewLC(const TEntry& aDllEntry)
61 Intended Usage : Standardized safe construction which leaves the object on the cleanup stack.
62 Error Condition : Cannot fully construct because of memory limitations.
65 @param aDllEntry Information on the dll which this policy refers to
66 @return A pointer to the new class
67 @post CUnloadPolicy is fully constructed and initialized.
70 static CUnloadPolicy* NewLC(const TEntry& aDllEntry);
74 Intended Usage : Standard default d'tor
75 Error Condition : None
82 @fn DecreaseReference()
83 Intended Usage : Decrease the reference count for the specified grouping and therefore
84 check whether it should be unloaded.
85 Error Condition : None.
87 @return EDeleteMe if this unload policy can be deleted because its reference
88 count is zero and it is on the garbage list.
89 @pre This object is fully constructed and initialized
90 @post If the decreased reference count has reached zero and the policy is not
91 on the garbage list then the timer is activated.
94 TUnloadPolicyStatus DecreaseReference();
97 @fn IncreaseReference()
98 Intended Usage : Increase the reference count for the specified grouping.
99 Error Condition : None.
101 @pre This object is fully constructed and initialized
102 @post The reference count has been increased and if there was an outstanding timer
103 request it has been cancelled.
106 void IncreaseReference();
109 @fn ReferenceCount() const
110 Intended Usage : Returns the current reference count for this grouping
111 Error Condition : None.
113 @return The current library reference count for this unload policy
114 @pre This object is fully constructed and initialized
117 TInt ReferenceCount() const;
120 @fn DllEntryInformation() const
121 Intended Usage : Returns information on the dll which this unload policy refers to.
122 Error Condition : None.
124 @pre This object is fully constructed and initialized
127 const CEComEntry& DllEntryInformation() const;
130 @fn LoadDllAndReturnProxyL()
131 Intended Usage : Loads the dll which this unload policy refers to and returns a function pointer
132 to the proxy into the dll.
133 Error Condition : Leaves with an error code.
134 @leave KErrInvalidDll, @see RLibrary::Load
136 @return The proxy function into the dll to which this unload policy refers.
137 @pre This object is fully constructed and initialized
138 @post iLibrary is unloaded
141 TLibraryFunction LoadDllAndReturnProxyL();
147 Intended Usage : Standardized default c'tor
148 Error Condition : None
150 @post CUnloadPolicy is fully constructed
156 @fn ConstructL(const TEntry& aDllEntry)
157 Intended Usage : Standardized 2nd, (Initialization) phase of two phase construction.
158 Error Condition : None
161 @param aDllEntry Information on the dll to which this unload policy refers
162 @pre CUnloadPolicy is fully constructed.
163 @post CUnloadPolicy is fully initialized.
166 void ConstructL(const TEntry& aDllEntry);
170 /** The controlled implementation grouping */
173 /** Information on the Dll which this is the unload policy for */
175 const CEComEntry* iDllEntry;
177 A reference count indicating that an implementation from
178 this implementation grouping has been instantiated / removed
180 TInt iReferencesInUseCount;
183 #endif /* _INC_UNLOADPOLICY_3A1D309500CE_INCLUDED */