Files
libreoffice/sal/inc/osl/module.hxx

172 lines
4.6 KiB
C++
Raw Normal View History

2001-03-16 10:19:17 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2001-03-16 10:19:17 +00:00
*
* $RCSfile: module.hxx,v $
2001-03-16 10:19:17 +00:00
*
* $Revision: 1.11 $
2001-03-16 10:19:17 +00:00
*
* last change: $Author: vg $ $Date: 2007-10-15 12:47:16 $
2001-03-16 10:19:17 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2001-03-16 10:19:17 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-03-16 10:19:17 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2001-03-16 10:19:17 +00:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2001-03-16 10:19:17 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2001-03-16 10:19:17 +00:00
*
************************************************************************/
/** @HTML */
2001-03-16 10:19:17 +00:00
#ifndef _OSL_MODULE_HXX_
#define _OSL_MODULE_HXX_
2001-05-14 07:55:38 +00:00
#ifndef _RTL_USTRING_HXX_
#include <rtl/ustring.hxx>
2001-03-16 10:19:17 +00:00
#endif
#ifndef _OSL_MODULE_H_
#include <osl/module.h>
#endif
namespace osl
{
class Module
{
Module( const Module&);
Module& operator = ( const Module&);
public:
2001-09-03 10:08:37 +00:00
static sal_Bool getUrlFromAddress(void * addr, ::rtl::OUString & libraryUrl) {
return osl_getModuleURLFromAddress(addr, &libraryUrl.pData);
}
/** Get module URL from the specified function address in the module.
Similar to getUrlFromAddress, but use a function address to get URL of the Module.
Use Function pointer as symbol address to conceal type conversion.
@param addr
[in] function address in oslGenericFunction format.
@param libraryUrl
[in|out] receives the URL of the module.
@return
<dl>
<dt>sal_True</dt>
<dd>on success</dd>
<dt>sal_False</dt>
<dd>can not get the URL from the specified function address or the parameter is invalid.</dd>
</dl>
@see getUrlFromAddress
*/
static sal_Bool getUrlFromAddress( oslGenericFunction addr, ::rtl::OUString & libraryUrl){
return osl_getModuleURLFromFunctionAddress( addr, &libraryUrl.pData );
}
2001-03-16 10:19:17 +00:00
Module(): m_Module(0){}
Module( const ::rtl::OUString& strModuleName, sal_Int32 nRtldMode = SAL_LOADMODULE_DEFAULT) : m_Module(0)
2001-03-16 10:19:17 +00:00
{
load( strModuleName, nRtldMode);
}
~Module()
{
osl_unloadModule(m_Module);
}
sal_Bool SAL_CALL load( const ::rtl::OUString& strModuleName,
sal_Int32 nRtldMode = SAL_LOADMODULE_DEFAULT)
{
unload();
m_Module= osl_loadModule( strModuleName.pData, nRtldMode );
return is();
}
/// @since UDK 3.2.8
sal_Bool SAL_CALL loadRelative(
::oslGenericFunction baseModule, ::rtl::OUString const & relativePath,
::sal_Int32 mode = SAL_LOADMODULE_DEFAULT)
{
unload();
m_Module = osl_loadModuleRelative(baseModule, relativePath.pData, mode);
return is();
}
2001-03-16 10:19:17 +00:00
void SAL_CALL unload()
{
if (m_Module)
{
osl_unloadModule(m_Module);
m_Module = 0;
}
2001-03-16 10:19:17 +00:00
}
sal_Bool SAL_CALL is() const
{
return m_Module != NULL;
}
void* SAL_CALL getSymbol( const ::rtl::OUString& strSymbolName)
{
return ( osl_getSymbol( m_Module, strSymbolName.pData ) );
}
/** Get function address by the function name in the module.
getFunctionSymbol is an alternative function for getSymbol.
Use Function pointer as symbol address to conceal type conversion.
@param ustrFunctionSymbolName
[in] Function name to be looked up.
@return
<dl>
<dt>oslGenericFunction format function address</dt>
<dd>on success</dd>
<dt>NULL</dt>
<dd>lookup failed or parameter is somewhat invalid</dd>
</dl>
@see getSymbol
*/
oslGenericFunction SAL_CALL getFunctionSymbol( const ::rtl::OUString& ustrFunctionSymbolName )
{
return ( osl_getFunctionSymbol( m_Module, ustrFunctionSymbolName.pData ) );
2001-03-16 10:19:17 +00:00
}
operator oslModule() const
{
return m_Module;
}
private:
oslModule m_Module;
};
}
#endif