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 // Written by Brendan, Dec 1996
15 // Library associated files for pluggable components
19 #if !defined(__LIBASSOC_H__)
20 #define __LIBASSOC_H__
21 #if !defined(__F32FILE_H__)
33 This is an implementation base class for TLibAssoc.
37 inline TLibAssocBase();
38 IMPORT_C TLibAssocBase(const RLibrary& aLib,TAny* aPtr);
39 IMPORT_C void Set(const RLibrary& aLib,TAny* aPtr);
40 IMPORT_C static void DoUnload(TAny* aThis);
42 inline TBool IsNull() const;
48 A Pointer to the class instance.
56 // class TLibAssoc inlines
57 inline TLibAssocBase::TLibAssocBase()
62 It sets the member TLibAssocBase::iPtr to NULL.
69 inline TBool TLibAssocBase::IsNull() const
71 Tests whether the pointer to the class instance is NULL.
73 @return ETrue, if the pointer is NULL; EFalse, otherwise.
82 class TLibAssoc : public TLibAssocBase
87 Associates a dynamically loadable DLL and an instance of a class that,
88 typically, will have been created using the ordinal 1 function of that DLL.
90 An object of this type is useful when cleanup behaviour requires that
91 a class instance be deleted and the associated DLL be closed.
93 The DLL is expected to be already open when the TLibAssoc object is created.
98 inline TLibAssoc(const RLibrary& aLib,T* aClass);
99 inline void Set(const RLibrary& aLib,T* aClass);
101 inline void Unload();
103 inline operator TCleanupItem();
104 operator TLibAssoc*(); // undefined, but here to prevent accidental delete(TLibAssoc)
107 inline const T* PtrC() const;
109 inline operator T*();
110 inline operator const T*() const;
112 inline T* operator->();
113 inline const T* operator->() const;
115 static void Cleanup(TAny* aThis); // for TCleanupOperation
122 inline TLibAssoc<T>::TLibAssoc()
126 An association between a DLL and a class instance can be made
127 after construction using the Set() function.
134 inline TLibAssoc<T>::TLibAssoc(const RLibrary& aLib,T* aClass)
135 : TLibAssocBase(aLib,aClass)
137 Constructs the object taking the specified DLL and an instance of
140 @param aLib A reference to a DLL that has already been opened.
141 @param aClass A pointer to an object to be associated with the DLL.
142 Typically, this object will have been created using
143 the ordinal 1 function from that DLL.
151 inline void TLibAssoc<T>::Set(const RLibrary& aLib,T* aClass)
153 Makes an association between the specified DLL and an instance of
156 @param aLib A reference to a DLL that has already been opened.
157 @param aClass A pointer to an object to be associated with the DLL.
158 Typically, this object will have been created using
159 the ordinal 1 function from that DLL.
161 {TLibAssocBase::Set(aLib,aClass);}
167 inline T* TLibAssoc<T>::Ptr()
169 Gets a pointer to the class instance.
171 @return A pointer to the class instance.
179 inline const T* TLibAssoc<T>::PtrC() const
181 Gets a pointer to the const class instance.
183 @return A pointer to the const class instance.
185 {return (const T*)iPtr;}
191 inline TLibAssoc<T>::operator T*()
195 Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
196 is prototyped to take a T* type.
204 inline TLibAssoc<T>::operator const T*() const
206 Const conversion operator.
208 Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
209 is prototyped to take a const T* type.
211 {return (const T*)iPtr;}
217 inline T* TLibAssoc<T>::operator->()
219 Dereferencing operator.
221 @return A pointer to the class instance.
229 inline const T* TLibAssoc<T>::operator->() const
231 Const dereferencing operator.
233 @return A pointer to the const class instance.
235 {return (const T*)iPtr;}
241 inline TLibAssoc<T>::operator TCleanupItem()
243 The TCleanupItem conversion operator.
245 Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
246 is prototyped to take a TCleanupItem type.
248 The most common usage is to put a cleanup item onto the cleanup stack using
249 CleanupStack::PushL(). The cleanup operation is represented by the private
250 static function Cleanup().
252 For example, if we declare
258 then we can simply put a cleanup item onto the cleanup stack
262 CleanupStack::PushL(a);
266 @see CleanupStack::PushL
268 {return(TCleanupItem(Cleanup,this));}
274 inline void TLibAssoc<T>::Unload()
276 Deletes the class instance and calls Close() on the associated DLL.
286 void TLibAssoc<T>::Cleanup(TAny* aThis)
288 The cleanup operation.
290 The implementation deletes the class instance and calls Close() on
293 Note that this function is internal and is not intended for use; it is documented
297 delete (T*)(((TLibAssoc<T>*)aThis)->iPtr);
298 TLibAssocBase::DoUnload(aThis);