summaryrefslogtreecommitdiff
path: root/library/qlibrary.cpp
Unidiff
Diffstat (limited to 'library/qlibrary.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qlibrary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/qlibrary.cpp b/library/qlibrary.cpp
index 4aabbc5..cbf49a3 100644
--- a/library/qlibrary.cpp
+++ b/library/qlibrary.cpp
@@ -1,437 +1,437 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21 21
22#include "qlibrary_p.h" 22#include "qlibrary_p.h"
23 23
24// uncomment this to get error messages 24// uncomment this to get error messages
25//#define QT_DEBUG_COMPONENT 1 25//#define QT_DEBUG_COMPONENT 1
26// uncomment this to get error and success messages 26// uncomment this to get error and success messages
27//#define QT_DEBUG_COMPONENT 2 27//#define QT_DEBUG_COMPONENT 2
28 28
29#ifndef QT_DEBUG_COMPONENT 29#ifndef QT_DEBUG_COMPONENT
30# if defined(QT_DEBUG) 30# if defined(QT_DEBUG)
31# define QT_DEBUG_COMPONENT 1 31# define QT_DEBUG_COMPONENT 1
32# endif 32# endif
33#endif 33#endif
34 34
35#ifndef QT_NO_COMPONENT 35#ifndef QT_NO_COMPONENT
36 36
37// KAI C++ has at the moment problems with unloading the Qt plugins. So don't 37// KAI C++ has at the moment problems with unloading the Qt plugins. So don't
38// unload them as a workaround for now. 38// unload them as a workaround for now.
39#if defined(Q_CC_KAI) || defined(Q_OS_MAC) 39#if defined(Q_CC_KAI) || defined(Q_OS_MAC)
40#define QT_NO_LIBRARY_UNLOAD 40#define QT_NO_LIBRARY_UNLOAD
41#endif 41#endif
42 42
43#if defined(Q_WS_WIN) && !defined(QT_MAKEDLL) 43#if defined(Q_WS_WIN) && !defined(QT_MAKEDLL)
44#define QT_NO_LIBRARY_UNLOAD 44#define QT_NO_LIBRARY_UNLOAD
45#endif 45#endif
46 46
47/* Platform independent QLibraryPrivate implementations */ 47/* Platform independent QLibraryPrivate implementations */
48#ifndef QT_LITE_COMPONENT 48#ifndef QT_LITE_COMPONENT
49 49
50#include "qtimer.h" 50#include "qtimer.h"
51 51
52extern Q_EXPORT QApplication *qApp; 52extern Q_EXPORT QApplication *qApp;
53 53
54QLibraryPrivate::QLibraryPrivate( QLibrary *lib ) 54QLibraryPrivate::QLibraryPrivate( QLibrary *lib )
55 : QObject( 0, lib->library().latin1() ), pHnd( 0 ), libIface( 0 ), unloadTimer( 0 ), library( lib ) 55 : QObject( 0, lib->library().latin1() ), pHnd( 0 ), libIface( 0 ), unloadTimer( 0 ), library( lib )
56{ 56{
57} 57}
58 58
59QLibraryPrivate::~QLibraryPrivate() 59QLibraryPrivate::~QLibraryPrivate()
60{ 60{
61 if ( libIface ) 61 if ( libIface )
62 libIface->release(); 62 libIface->release();
63 killTimer(); 63 killTimer();
64} 64}
65 65
66/* 66/*
67 Only components that implement the QLibraryInterface can 67 Only components that implement the QLibraryInterface can
68 be unloaded automatically. 68 be unloaded automatically.
69*/ 69*/
70void QLibraryPrivate::tryUnload() 70void QLibraryPrivate::tryUnload()
71{ 71{
72 if ( library->policy() == QLibrary::Manual || !pHnd || !libIface ) 72 if ( library->policy() == QLibrary::Manual || !pHnd || !libIface )
73 return; 73 return;
74 74
75 if ( !libIface->canUnload() ) 75 if ( !libIface->canUnload() )
76 return; 76 return;
77 77
78#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2 78#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2
79 if ( library->unload() ) 79 if ( library->unload() )
80 qDebug( "%s has been automatically unloaded", library->library().latin1() ); 80 qDebug( "%s has been automatically unloaded", library->library().latin1() );
81#else 81#else
82 library->unload(); 82 library->unload();
83#endif 83#endif
84} 84}
85 85
86#else // QT_LITE_COMPOINENT 86#else // QT_LITE_COMPOINENT
87 87
88QLibraryPrivate::QLibraryPrivate( QLibrary *lib ) 88QLibraryPrivate::QLibraryPrivate( QLibrary *lib )
89 : pHnd( 0 ), libIface( 0 ), library( lib ) 89 : pHnd( 0 ), libIface( 0 ), library( lib )
90{ 90{
91} 91}
92 92
93#endif // QT_LITE_COMPOINENT 93#endif // QT_LITE_COMPOINENT
94 94
95void QLibraryPrivate::startTimer() 95void QLibraryPrivate::startTimer()
96{ 96{
97#ifndef QT_LITE_COMPONENT 97#ifndef QT_LITE_COMPONENT
98 unloadTimer = new QTimer( this ); 98 unloadTimer = new QTimer( this );
99 connect( unloadTimer, SIGNAL( timeout() ), this, SLOT( tryUnload() ) ); 99 connect( unloadTimer, SIGNAL( timeout() ), this, SLOT( tryUnload() ) );
100 unloadTimer->start( 5000, FALSE ); 100 unloadTimer->start( 5000, FALSE );
101#endif 101#endif
102} 102}
103 103
104void QLibraryPrivate::killTimer() 104void QLibraryPrivate::killTimer()
105{ 105{
106#ifndef QT_LITE_COMPONENT 106#ifndef QT_LITE_COMPONENT
107 delete unloadTimer; 107 delete unloadTimer;
108 unloadTimer = 0; 108 unloadTimer = 0;
109#endif 109#endif
110} 110}
111 111
112/*! 112/*!
113 \class QLibrary qlibrary.h 113 \class QLibrary qlibrary.h
114 114
115 \brief The QLibrary class provides a wrapper for handling shared libraries. 115 \brief The QLibrary class provides a wrapper for handling shared libraries.
116 116
117 This class is temporarily copied from Qt 3.0. 117 This class is temporarily copied from Qt 3.0.
118*/ 118*/
119 119
120/*! 120/*!
121 \enum QLibrary::Policy 121 \enum QLibrary::Policy
122 122
123 This enum type defines the various policies a QLibrary can have with respect to 123 This enum type defines the various policies a QLibrary can have with respect to
124 loading and unloading the shared library. 124 loading and unloading the shared library.
125 125
126 The \e policy can be: 126 The \e policy can be:
127 127
128 \value Delayed The library get's loaded as soon as needed and unloaded in the destructor 128 \value Delayed The library get's loaded as soon as needed and unloaded in the destructor
129 \value Immediately The library is loaded immediately and unloaded in the destructor 129 \value Immediately The library is loaded immediately and unloaded in the destructor
130 \value Manual Like delayed, and library has to be unloaded manually 130 \value Manual Like delayed, and library has to be unloaded manually
131*/ 131*/
132 132
133/*! 133/*!
134 Creates a QLibrary object for the shared library \a filename. 134 Creates a QLibrary object for the shared library \a filename.
135 The library get's loaded if \a pol is Immediately. 135 The library get's loaded if \a pol is Immediately.
136 136
137 Note that \a filename does not need to include the (platform specific) 137 Note that \a filename does not need to include the (platform specific)
138 file extension, so calling 138 file extension, so calling
139 139
140 \code 140 \code
141 QLibrary lib( "mylib" ); 141 QLibrary lib( "mylib" );
142 \endcode 142 \endcode
143 143
144 would be equivalent to 144 would be equivalent to
145 145
146 \code 146 \code
147 QLibrary lib( "mylib.dll" ); 147 QLibrary lib( "mylib.dll" );
148 \endcode 148 \endcode
149 149
150 on Windows. But \e "mylib.dll" will obviously not work on other platforms. 150 on Windows. But \e "mylib.dll" will obviously not work on other platforms.
151 151
152 \sa setPolicy(), unload() 152 \sa setPolicy(), unload()
153*/ 153*/
154QLibrary::QLibrary( const QString& filename, Policy pol ) 154QLibrary::QLibrary( const QString& filename, Policy pol )
155 : libfile( filename ), libPol( pol ), entry( 0 ) 155 : libfile( filename ), libPol( pol ), entry( 0 )
156{ 156{
157 d = new QLibraryPrivate( this ); 157 d = new QLibraryPrivate( this );
158 if ( pol == Immediately ) 158 if ( pol == Immediately )
159 load(); 159 load();
160} 160}
161 161
162/*! 162/*!
163 Deletes the QLibrary object. 163 Deletes the QLibrary object.
164 The library will be unloaded if the policy is not Manual. 164 The library will be unloaded if the policy is not Manual.
165 165
166 \sa unload(), setPolicy() 166 \sa unload(), setPolicy()
167*/ 167*/
168QLibrary::~QLibrary() 168QLibrary::~QLibrary()
169{ 169{
170 if ( libPol == Manual || !unload() ) { 170 if ( libPol == Manual || !unload() ) {
171 if ( entry ) { 171 if ( entry ) {
172 entry->release(); 172 entry->release();
173 entry = 0; 173 entry = 0;
174 } 174 }
175 } 175 }
176 delete d; 176 delete d;
177} 177}
178 178
179void QLibrary::createInstanceInternal() 179void QLibrary::createInstanceInternal()
180{ 180{
181 if ( libfile.isEmpty() ) 181 if ( libfile.isEmpty() )
182 return; 182 return;
183 183
184 if ( !d->pHnd ) { 184 if ( !d->pHnd ) {
185 ASSERT( entry == 0 ); 185 ASSERT( entry == 0 );
186 load(); 186 load();
187 } 187 }
188 188
189 if ( d->pHnd && !entry ) { 189 if ( d->pHnd && !entry ) {
190#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2 190#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2
191 qWarning( "%s has been loaded.", library().latin1() ); 191 qWarning( "%s has been loaded.", library().latin1() );
192#endif 192#endif
193 typedef QUnknownInterface* (*UCMInstanceProc)(); 193 typedef QUnknownInterface* (*UCMInstanceProc)();
194 UCMInstanceProc ucmInstanceProc; 194 UCMInstanceProc ucmInstanceProc;
195 ucmInstanceProc = (UCMInstanceProc) resolve( "ucm_instantiate" ); 195 ucmInstanceProc = (UCMInstanceProc) resolve( "ucm_instantiate" );
196 entry = ucmInstanceProc ? ucmInstanceProc() : 0; 196 entry = ucmInstanceProc ? ucmInstanceProc() : 0;
197 if ( entry ) { 197 if ( entry ) {
198 entry->queryInterface( IID_QLibrary, (QUnknownInterface**)&d->libIface); 198 entry->queryInterface( IID_QLibrary, (QUnknownInterface**)&d->libIface);
199 if ( d->libIface ) { 199 if ( d->libIface ) {
200 if ( !d->libIface->init() ) { 200 if ( !d->libIface->init() ) {
201#if defined(QT_DEBUG_COMPONENT) 201#if defined(QT_DEBUG_COMPONENT)
202 qWarning( "%s: QLibraryInterface::init() failed.", library().latin1() ); 202 qWarning( "%s: QLibraryInterface::init() failed.", library().latin1() );
203#endif 203#endif
204 unload(); 204 unload();
205 return; 205 return;
206 } 206 }
207 207
208 d->killTimer(); 208 d->killTimer();
209 if ( libPol != Manual ) 209 if ( libPol != Manual )
210 d->startTimer(); 210 d->startTimer();
211 } 211 }
212 } else { 212 } else {
213#if defined(QT_DEBUG_COMPONENT) 213#if defined(QT_DEBUG_COMPONENT)
214 qWarning( "%s: No interface implemented.", library().latin1() ); 214 qWarning( "%s: No interface implemented.", library().latin1() );
215#endif 215#endif
216 unload(); 216 unload();
217 } 217 }
218 } 218 }
219} 219}
220 220
221/*! 221/*!
222 Returns the address of the exported symbol \a symb. The library gets 222 Returns the address of the exported symbol \a symb. The library gets
223 loaded if necessary. The function returns NULL if the symbol could 223 loaded if necessary. The function returns NULL if the symbol could
224 not be resolved, or if loading the library failed. 224 not be resolved, or if loading the library failed.
225 225
226 \code 226 \code
227 typedef int (*addProc)( int, int ); 227 typedef int (*addProc)( int, int );
228 228
229 addProc add = (addProc) library->resolve( "add" ); 229 addProc add = (addProc) library->resolve( "add" );
230 if ( add ) 230 if ( add )
231 return add( 5, 8 ); 231 return add( 5, 8 );
232 else 232 else
233 return 5 + 8; 233 return 5 + 8;
234 \endcode 234 \endcode
235 235
236 \sa queryInterface() 236 \sa queryInterface()
237*/ 237*/
238void *QLibrary::resolve( const char* symb ) 238void *QLibrary::resolve( const char* symb )
239{ 239{
240 if ( !d->pHnd ) 240 if ( !d->pHnd )
241 load(); 241 load();
242 if ( !d->pHnd ) 242 if ( !d->pHnd )
243 return 0; 243 return 0;
244 244
245 void *address = d->resolveSymbol( symb ); 245 void *address = d->resolveSymbol( symb );
246 if ( !address ) { 246 if ( !address ) {
247#if defined(QT_DEBUG_COMPONENT) 247#if defined(QT_DEBUG_COMPONENT)
248 // resolveSymbol() might give a warning; so let that warning look so fatal 248 // resolveSymbol() might give a warning; so let that warning look so fatal
249 qWarning( QString("Trying to resolve symbol \"_%1\" instead").arg( symb ) ); 249 qWarning( QString("Trying to resolve symbol \"_%1\" instead").arg( symb ) );
250#endif 250#endif
251 address = d->resolveSymbol( QString( "_" ) + symb ); 251 address = d->resolveSymbol( QString( "_" ) + symb );
252 } 252 }
253 return address; 253 return address;
254} 254}
255 255
256/*! 256/*!
257 \overload 257 \overload
258 258
259 Loads the library \a filename and returns the address of the exported symbol \a symb. 259 Loads the library \a filename and returns the address of the exported symbol \a symb.
260 Note that like for the constructor, \a filename does not need to include the (platform specific) 260 Note that like for the constructor, \a filename does not need to include the (platform specific)
261 file extension. The library staying loaded until the process exits. 261 file extension. The library staying loaded until the process exits.
262 262
263 The function returns a null pointer if the symbol could not be resolved or if loading 263 The function returns a null pointer if the symbol could not be resolved or if loading
264 the library failed. 264 the library failed.
265*/ 265*/
266void *QLibrary::resolve( const QString &filename, const char *symb ) 266void *QLibrary::resolve( const QString &filename, const char *symb )
267{ 267{
268 QLibrary lib( filename, Manual ); 268 QLibrary lib( filename, Manual );
269 return lib.resolve( symb ); 269 return lib.resolve( symb );
270} 270}
271 271
272/*! 272/*!
273 Returns whether the library is loaded. 273 Returns whether the library is loaded.
274 274
275 \sa unload() 275 \sa unload()
276*/ 276*/
277bool QLibrary::isLoaded() const 277bool QLibrary::isLoaded() const
278{ 278{
279 return d->pHnd != 0; 279 return d->pHnd != 0;
280} 280}
281 281
282/*! 282/*!
283 Loads the library. 283 Loads the library.
284*/ 284*/
285bool QLibrary::load() 285bool QLibrary::load()
286{ 286{
287 return d->loadLibrary(); 287 return d->loadLibrary();
288} 288}
289 289
290/*! 290/*!
291 Releases the component and unloads the library when successful. 291 Releases the component and unloads the library when successful.
292 Returns TRUE if the library could be unloaded, otherwise FALSE. 292 Returns TRUE if the library could be unloaded, otherwise FALSE.
293 If the component implements the QLibraryInterface, the cleanup() 293 If the component implements the QLibraryInterface, the cleanup()
294 function of this interface will be called. The unloading will be 294 function of this interface will be called. The unloading will be
295 cancelled if the subsequent call to canUnload() returns FALSE. 295 cancelled if the subsequent call to canUnload() returns FALSE.
296 296
297 This function gets called automatically in the destructor if 297 This function gets called automatically in the destructor if
298 the policy is not Manual. 298 the policy is not Manual.
299 299
300 \warning 300 \warning
301 If \a force is set to TRUE, the library gets unloaded at any cost, 301 If \a force is set to TRUE, the library gets unloaded at any cost,
302 which is in most cases a segmentation fault, so you should know what 302 which is in most cases a segmentation fault, so you should know what
303 you're doing! 303 you're doing!
304 304
305 \sa queryInterface(), resolve() 305 \sa queryInterface(), resolve()
306*/ 306*/
307bool QLibrary::unload( bool force ) 307bool QLibrary::unload( bool force )
308{ 308{
309 if ( !d->pHnd ) 309 if ( !d->pHnd )
310 return TRUE; 310 return TRUE;
311 311
312 if ( entry ) { 312 if ( entry ) {
313 if ( d->libIface ) { 313 if ( d->libIface ) {
314 d->libIface->cleanup(); 314 d->libIface->cleanup();
315 315
316 bool can = d->libIface->canUnload(); 316 bool can = d->libIface->canUnload();
317 can = ( d->libIface->release() <= 1 ) && can; 317 can = ( d->libIface->release() <= 1 ) && can;
318 // the "entry" member must be the last reference to the component 318 // the "entry" member must be the last reference to the component
319 if ( can || force ) { 319 if ( can || force ) {
320 d->libIface = 0; 320 d->libIface = 0;
321 } else { 321 } else {
322#if defined(QT_DEBUG_COMPONENT) 322#if defined(QT_DEBUG_COMPONENT)
323 qWarning( "%s prevents unloading!", library().latin1() ); 323 qWarning( "%s prevents unloading!", library().latin1() );
324#endif 324#endif
325 d->libIface->addRef(); 325 d->libIface->addRef();
326 return FALSE; 326 return FALSE;
327 } 327 }
328 } 328 }
329 329
330 if ( entry->release() ) { 330 if ( entry->release() ) {
331#if defined(QT_DEBUG_COMPONENT) 331#if defined(QT_DEBUG_COMPONENT)
332 qWarning( "%s is still in use!", library().latin1() ); 332 qWarning( "%s is still in use!", library().latin1() );
333#endif 333#endif
334 if ( force ) { 334 if ( force ) {
335 delete entry; 335 delete entry;
336 } else { 336 } else {
337 entry->addRef(); 337 entry->addRef();
338 return FALSE; 338 return FALSE;
339 } 339 }
340 } 340 }
341 d->killTimer(); 341 d->killTimer();
342 342
343 entry = 0; 343 entry = 0;
344 } 344 }
345 345
346// ### this is a hack to solve problems with plugin unloading und KAI C++ 346// ### this is a hack to solve problems with plugin unloading und KAI C++
347// (other compilers may have the same problem) 347// (other compilers may have the same problem)
348#if !defined(QT_NO_LIBRARY_UNLOAD) 348#if !defined(QT_NO_LIBRARY_UNLOAD)
349 if ( !d->freeLibrary() ) { 349 if ( !d->freeLibrary() ) {
350#if defined(QT_DEBUG_COMPONENT) 350#if defined(QT_DEBUG_COMPONENT)
351 qWarning( "%s could not be unloaded.", library().latin1() ); 351 qWarning( "%s could not be unloaded.", library().latin1() );
352#endif 352#endif
353 return FALSE; 353 return FALSE;
354#else 354#else
355 return TRUE; 355 return TRUE;
356#endif 356#endif
357#if !defined(QT_NO_LIBRARY_UNLOAD) 357#if !defined(QT_NO_LIBRARY_UNLOAD)
358 } 358 }
359 359
360#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2 360#if defined(QT_DEBUG_COMPONENT) && QT_DEBUG_COMPONENT == 2
361 qWarning( "%s has been unloaded.", library().latin1() ); 361 qWarning( "%s has been unloaded.", library().latin1() );
362#endif 362#endif
363 363
364 d->pHnd = 0; 364 d->pHnd = 0;
365 return TRUE; 365 return TRUE;
366#endif 366#endif
367} 367}
368 368
369/*! 369/*!
370 Sets the current policy to \a pol. 370 Sets the current policy to \a pol.
371 The library is loaded if \a pol is set to Immediately. 371 The library is loaded if \a pol is set to Immediately.
372*/ 372*/
373void QLibrary::setPolicy( Policy pol ) 373void QLibrary::setPolicy( Policy pol )
374{ 374{
375 libPol = pol; 375 libPol = pol;
376 376
377 if ( libPol == Immediately && !d->pHnd ) 377 if ( libPol == Immediately && !d->pHnd )
378 load(); 378 load();
379} 379}
380 380
381/*! 381/*!
382 Returns the current policy. 382 Returns the current policy.
383 383
384 \sa setPolicy() 384 \sa setPolicy()
385*/ 385*/
386QLibrary::Policy QLibrary::policy() const 386QLibrary::Policy QLibrary::policy() const
387{ 387{
388 return libPol; 388 return libPol;
389} 389}
390 390
391/*! 391/*!
392 Returns the filename of the shared library this QLibrary object handles, 392 Returns the filename of the shared library this QLibrary object handles,
393 including the platform specific file extension. 393 including the platform specific file extension.
394 394
395 \code 395 \code
396 QLibrary lib( "mylib" ); 396 QLibrary lib( "mylib" );
397 QString str = lib.library(); 397 QString str = lib.library();
398 \endcode 398 \endcode
399 399
400 will set \e str to "mylib.dll" on Windows, and "libmylib.so" on Linux. 400 will set \e str to "mylib.dll" on Windows, and "libmylib.so" on Linux.
401*/ 401*/
402QString QLibrary::library() const 402QString QLibrary::library() const
403{ 403{
404 if ( libfile.isEmpty() ) 404 if ( libfile.isEmpty() )
405 return libfile; 405 return libfile;
406 406
407 QString filename = libfile; 407 QString filename = libfile;
408#if defined(Q_WS_WIN) 408#if defined(Q_WS_WIN)
409 if ( filename.find( ".dll" ) == -1 ) 409 if ( filename.find( ".dll" ) == -1 )
410 filename += ".dll"; 410 filename += ".dll";
411#elif defined(Q_OS_MACX) 411#elif defined(Q_OS_MACX)
412 if ( filename.find( ".dylib" ) == -1 ) 412 if ( filename.find( ".dylib" ) == -1 )
413 filename += ".dylib"; 413 filename += ".dylib";
414#else 414#else
415 if ( filename.find( ".so" ) == -1 ) 415 if ( filename.find( ".so" ) == -1 )
416 filename = QString( "lib%1.so" ).arg( filename ); 416 filename = QString( "lib%1.so" ).arg( filename );
417#endif 417#endif
418 418
419 return filename; 419 return filename;
420} 420}
421 421
422/*! 422/*!
423 Forwards the query to the component and returns the result. \a request and \a iface 423 Forwards the query to the component and returns the result. \a request and \a iface
424 are propagated to the component's queryInterface implementation. 424 are propagated to the component's queryInterface implementation.
425 425
426 The library gets loaded if necessary. 426 The library gets loaded if necessary.
427*/ 427*/
428QRESULT QLibrary::queryInterface( const QUuid& request, QUnknownInterface** iface ) 428QRESULT QLibrary::queryInterface( const QUuid& request, QUnknownInterface** iface )
429{ 429{
430 if ( !entry ) { 430 if ( !entry ) {
431 createInstanceInternal(); 431 createInstanceInternal();
432 } 432 }
433 433
434 return entry ? entry->queryInterface( request, iface ) : QE_NOINTERFACE; 434 return entry ? entry->queryInterface( request, iface ) : QE_NOINTERFACE;
435} 435}
436 436
437#endif // QT_NO_COMPONENT 437#endif // QT_NO_COMPONENT