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 |
// Written by Brendan, Dec 1996
|
sl@0
|
15 |
// Library associated files for pluggable components
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__LIBASSOC_H__)
|
sl@0
|
20 |
#define __LIBASSOC_H__
|
sl@0
|
21 |
#if !defined(__F32FILE_H__)
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
class TLibAssocBase
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@publishedAll
|
sl@0
|
31 |
@released
|
sl@0
|
32 |
|
sl@0
|
33 |
This is an implementation base class for TLibAssoc.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
{
|
sl@0
|
36 |
protected:
|
sl@0
|
37 |
inline TLibAssocBase();
|
sl@0
|
38 |
IMPORT_C TLibAssocBase(const RLibrary& aLib,TAny* aPtr);
|
sl@0
|
39 |
IMPORT_C void Set(const RLibrary& aLib,TAny* aPtr);
|
sl@0
|
40 |
IMPORT_C static void DoUnload(TAny* aThis);
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
inline TBool IsNull() const;
|
sl@0
|
43 |
private:
|
sl@0
|
44 |
RLibrary iLibrary;
|
sl@0
|
45 |
protected:
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
A Pointer to the class instance.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
TAny* iPtr;
|
sl@0
|
51 |
};
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
// class TLibAssoc inlines
|
sl@0
|
57 |
inline TLibAssocBase::TLibAssocBase()
|
sl@0
|
58 |
: iPtr(NULL)
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
Default constructor.
|
sl@0
|
61 |
|
sl@0
|
62 |
It sets the member TLibAssocBase::iPtr to NULL.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
{}
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
inline TBool TLibAssocBase::IsNull() const
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
Tests whether the pointer to the class instance is NULL.
|
sl@0
|
72 |
|
sl@0
|
73 |
@return ETrue, if the pointer is NULL; EFalse, otherwise.
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
{return iPtr==NULL;}
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
//
|
sl@0
|
79 |
// class TLibAssoc
|
sl@0
|
80 |
//
|
sl@0
|
81 |
template <class T>
|
sl@0
|
82 |
class TLibAssoc : public TLibAssocBase
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
@publishedAll
|
sl@0
|
85 |
@released
|
sl@0
|
86 |
|
sl@0
|
87 |
Associates a dynamically loadable DLL and an instance of a class that,
|
sl@0
|
88 |
typically, will have been created using the ordinal 1 function of that DLL.
|
sl@0
|
89 |
|
sl@0
|
90 |
An object of this type is useful when cleanup behaviour requires that
|
sl@0
|
91 |
a class instance be deleted and the associated DLL be closed.
|
sl@0
|
92 |
|
sl@0
|
93 |
The DLL is expected to be already open when the TLibAssoc object is created.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
{
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
inline TLibAssoc();
|
sl@0
|
98 |
inline TLibAssoc(const RLibrary& aLib,T* aClass);
|
sl@0
|
99 |
inline void Set(const RLibrary& aLib,T* aClass);
|
sl@0
|
100 |
//
|
sl@0
|
101 |
inline void Unload();
|
sl@0
|
102 |
//
|
sl@0
|
103 |
inline operator TCleanupItem();
|
sl@0
|
104 |
operator TLibAssoc*(); // undefined, but here to prevent accidental delete(TLibAssoc)
|
sl@0
|
105 |
//
|
sl@0
|
106 |
inline T* Ptr();
|
sl@0
|
107 |
inline const T* PtrC() const;
|
sl@0
|
108 |
//
|
sl@0
|
109 |
inline operator T*();
|
sl@0
|
110 |
inline operator const T*() const;
|
sl@0
|
111 |
//
|
sl@0
|
112 |
inline T* operator->();
|
sl@0
|
113 |
inline const T* operator->() const;
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
static void Cleanup(TAny* aThis); // for TCleanupOperation
|
sl@0
|
116 |
};
|
sl@0
|
117 |
|
sl@0
|
118 |
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
template <class T>
|
sl@0
|
122 |
inline TLibAssoc<T>::TLibAssoc()
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
Default constructor.
|
sl@0
|
125 |
|
sl@0
|
126 |
An association between a DLL and a class instance can be made
|
sl@0
|
127 |
after construction using the Set() function.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
{}
|
sl@0
|
130 |
|
sl@0
|
131 |
|
sl@0
|
132 |
|
sl@0
|
133 |
template <class T>
|
sl@0
|
134 |
inline TLibAssoc<T>::TLibAssoc(const RLibrary& aLib,T* aClass)
|
sl@0
|
135 |
: TLibAssocBase(aLib,aClass)
|
sl@0
|
136 |
/**
|
sl@0
|
137 |
Constructs the object taking the specified DLL and an instance of
|
sl@0
|
138 |
the specified class.
|
sl@0
|
139 |
|
sl@0
|
140 |
@param aLib A reference to a DLL that has already been opened.
|
sl@0
|
141 |
@param aClass A pointer to an object to be associated with the DLL.
|
sl@0
|
142 |
Typically, this object will have been created using
|
sl@0
|
143 |
the ordinal 1 function from that DLL.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
{}
|
sl@0
|
146 |
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
|
sl@0
|
150 |
template <class T>
|
sl@0
|
151 |
inline void TLibAssoc<T>::Set(const RLibrary& aLib,T* aClass)
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
Makes an association between the specified DLL and an instance of
|
sl@0
|
154 |
the specified class.
|
sl@0
|
155 |
|
sl@0
|
156 |
@param aLib A reference to a DLL that has already been opened.
|
sl@0
|
157 |
@param aClass A pointer to an object to be associated with the DLL.
|
sl@0
|
158 |
Typically, this object will have been created using
|
sl@0
|
159 |
the ordinal 1 function from that DLL.
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
{TLibAssocBase::Set(aLib,aClass);}
|
sl@0
|
162 |
|
sl@0
|
163 |
|
sl@0
|
164 |
|
sl@0
|
165 |
|
sl@0
|
166 |
template <class T>
|
sl@0
|
167 |
inline T* TLibAssoc<T>::Ptr()
|
sl@0
|
168 |
/**
|
sl@0
|
169 |
Gets a pointer to the class instance.
|
sl@0
|
170 |
|
sl@0
|
171 |
@return A pointer to the class instance.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
{return (T*)iPtr;}
|
sl@0
|
174 |
|
sl@0
|
175 |
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
template <class T>
|
sl@0
|
179 |
inline const T* TLibAssoc<T>::PtrC() const
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
Gets a pointer to the const class instance.
|
sl@0
|
182 |
|
sl@0
|
183 |
@return A pointer to the const class instance.
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
{return (const T*)iPtr;}
|
sl@0
|
186 |
|
sl@0
|
187 |
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
template <class T>
|
sl@0
|
191 |
inline TLibAssoc<T>::operator T*()
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
Conversion operator.
|
sl@0
|
194 |
|
sl@0
|
195 |
Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
|
sl@0
|
196 |
is prototyped to take a T* type.
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
{return (T*)iPtr;}
|
sl@0
|
199 |
|
sl@0
|
200 |
|
sl@0
|
201 |
|
sl@0
|
202 |
|
sl@0
|
203 |
template <class T>
|
sl@0
|
204 |
inline TLibAssoc<T>::operator const T*() const
|
sl@0
|
205 |
/**
|
sl@0
|
206 |
Const conversion operator.
|
sl@0
|
207 |
|
sl@0
|
208 |
Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
|
sl@0
|
209 |
is prototyped to take a const T* type.
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
{return (const T*)iPtr;}
|
sl@0
|
212 |
|
sl@0
|
213 |
|
sl@0
|
214 |
|
sl@0
|
215 |
|
sl@0
|
216 |
template <class T>
|
sl@0
|
217 |
inline T* TLibAssoc<T>::operator->()
|
sl@0
|
218 |
/**
|
sl@0
|
219 |
Dereferencing operator.
|
sl@0
|
220 |
|
sl@0
|
221 |
@return A pointer to the class instance.
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
{return (T*)iPtr;}
|
sl@0
|
224 |
|
sl@0
|
225 |
|
sl@0
|
226 |
|
sl@0
|
227 |
|
sl@0
|
228 |
template <class T>
|
sl@0
|
229 |
inline const T* TLibAssoc<T>::operator->() const
|
sl@0
|
230 |
/**
|
sl@0
|
231 |
Const dereferencing operator.
|
sl@0
|
232 |
|
sl@0
|
233 |
@return A pointer to the const class instance.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
{return (const T*)iPtr;}
|
sl@0
|
236 |
|
sl@0
|
237 |
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
template <class T>
|
sl@0
|
241 |
inline TLibAssoc<T>::operator TCleanupItem()
|
sl@0
|
242 |
/**
|
sl@0
|
243 |
The TCleanupItem conversion operator.
|
sl@0
|
244 |
|
sl@0
|
245 |
Invoked by the compiler when a TLibAssoc<T> type is passed to a function that
|
sl@0
|
246 |
is prototyped to take a TCleanupItem type.
|
sl@0
|
247 |
|
sl@0
|
248 |
The most common usage is to put a cleanup item onto the cleanup stack using
|
sl@0
|
249 |
CleanupStack::PushL(). The cleanup operation is represented by the private
|
sl@0
|
250 |
static function Cleanup().
|
sl@0
|
251 |
|
sl@0
|
252 |
For example, if we declare
|
sl@0
|
253 |
|
sl@0
|
254 |
@code
|
sl@0
|
255 |
TLibAssoc<A> a;
|
sl@0
|
256 |
@endcode
|
sl@0
|
257 |
|
sl@0
|
258 |
then we can simply put a cleanup item onto the cleanup stack
|
sl@0
|
259 |
by calling
|
sl@0
|
260 |
|
sl@0
|
261 |
@code
|
sl@0
|
262 |
CleanupStack::PushL(a);
|
sl@0
|
263 |
@endcode
|
sl@0
|
264 |
|
sl@0
|
265 |
@see TCleanupItem
|
sl@0
|
266 |
@see CleanupStack::PushL
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
{return(TCleanupItem(Cleanup,this));}
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
|
sl@0
|
272 |
|
sl@0
|
273 |
template <class T>
|
sl@0
|
274 |
inline void TLibAssoc<T>::Unload()
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
Deletes the class instance and calls Close() on the associated DLL.
|
sl@0
|
277 |
|
sl@0
|
278 |
@see RLibrary::Close
|
sl@0
|
279 |
*/
|
sl@0
|
280 |
{Cleanup(this);}
|
sl@0
|
281 |
|
sl@0
|
282 |
|
sl@0
|
283 |
|
sl@0
|
284 |
|
sl@0
|
285 |
template <class T>
|
sl@0
|
286 |
void TLibAssoc<T>::Cleanup(TAny* aThis)
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
The cleanup operation.
|
sl@0
|
289 |
|
sl@0
|
290 |
The implementation deletes the class instance and calls Close() on
|
sl@0
|
291 |
the associated DLL.
|
sl@0
|
292 |
|
sl@0
|
293 |
Note that this function is internal and is not intended for use; it is documented
|
sl@0
|
294 |
for completeness.
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
{
|
sl@0
|
297 |
delete (T*)(((TLibAssoc<T>*)aThis)->iPtr);
|
sl@0
|
298 |
TLibAssocBase::DoUnload(aThis);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
#endif
|