LibreOffice
LibreOffice 25.2 SDK C/C++ API Reference
 
Loading...
Searching...
No Matches
module.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20/*
21 * This file is part of LibreOffice published API.
22 */
23
24#ifndef INCLUDED_OSL_MODULE_HXX
25#define INCLUDED_OSL_MODULE_HXX
26
27#include "sal/config.h"
28
29#include <cstddef>
30
31#include "rtl/ustring.hxx"
32#include "osl/module.h"
33
34namespace osl
35{
36
37class Module
38{
39 Module( const Module&) SAL_DELETED_FUNCTION;
40 Module& operator = ( const Module&) SAL_DELETED_FUNCTION;
41
42public:
43 static bool getUrlFromAddress(void * addr, ::rtl::OUString & libraryUrl) {
44 return osl_getModuleURLFromAddress(addr, &libraryUrl.pData);
45 }
46
60 static bool getUrlFromAddress( oslGenericFunction addr, ::rtl::OUString & libraryUrl){
61 return osl_getModuleURLFromFunctionAddress( addr, &libraryUrl.pData );
62 }
63
64 Module(): m_Module(NULL){}
65
66#ifndef DISABLE_DYNLOADING
67
68 Module( const ::rtl::OUString& strModuleName, sal_Int32 nRtldMode = SAL_LOADMODULE_DEFAULT) : m_Module(NULL)
69 {
70 load( strModuleName, nRtldMode);
71 }
72
73#endif
74
76 {
77#ifndef DISABLE_DYNLOADING
78 osl_unloadModule(m_Module);
79#endif
80 }
81
82#ifndef DISABLE_DYNLOADING
83
84 bool SAL_CALL load( const ::rtl::OUString& strModuleName,
85 sal_Int32 nRtldMode = SAL_LOADMODULE_DEFAULT)
86 {
87 unload();
88 m_Module= osl_loadModule( strModuleName.pData, nRtldMode );
89 return is();
90 }
91
93 bool SAL_CALL loadRelative(
94 ::oslGenericFunction baseModule, ::rtl::OUString const & relativePath,
95 ::sal_Int32 mode = SAL_LOADMODULE_DEFAULT)
96 {
97 unload();
98 m_Module = osl_loadModuleRelative(baseModule, relativePath.pData, mode);
99 return is();
100 }
101
103 bool SAL_CALL loadRelative(
104 oslGenericFunction baseModule, char const * relativePath,
105 sal_Int32 mode = SAL_LOADMODULE_DEFAULT)
106 {
107 unload();
108 m_Module = osl_loadModuleRelativeAscii(baseModule, relativePath, mode);
109 return is();
110 }
111
112 void SAL_CALL unload()
113 {
114 if (m_Module)
115 {
116 osl_unloadModule(m_Module);
117 m_Module = NULL;
118 }
119 }
120
121#endif
122
123 bool SAL_CALL is() const
124 {
125 return m_Module != NULL;
126 }
127
128 void* SAL_CALL getSymbol( const ::rtl::OUString& strSymbolName)
129 {
130 return osl_getSymbol( m_Module, strSymbolName.pData );
131 }
132
145 oslGenericFunction SAL_CALL getFunctionSymbol( const ::rtl::OUString& ustrFunctionSymbolName ) const
146 {
147 return osl_getFunctionSymbol( m_Module, ustrFunctionSymbolName.pData );
148 }
149
151 oslGenericFunction SAL_CALL getFunctionSymbol(char const * name) const {
152 return osl_getAsciiFunctionSymbol(m_Module, name);
153 }
154
155 operator oslModule() const
156 {
157 return m_Module;
158 }
159
167 void release() { m_Module = NULL; }
168
169private:
170 oslModule m_Module;
171
172};
173
174}
175
176#endif
177
178/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SAL_DELETED_FUNCTION
short-circuit extra-verbose API namespaces
Definition types.h:396
SAL_DLLPUBLIC oslGenericFunction osl_getAsciiFunctionSymbol(oslModule Module, const char *pSymbol)
Lookup the specified function symbol name.
SAL_DLLPUBLIC void osl_unloadModule(oslModule Module)
Release the module.
SAL_DLLPUBLIC sal_Bool osl_getModuleURLFromAddress(void *pv, rtl_uString **pustrURL)
Lookup URL of module which is mapped at the specified address.
#define SAL_LOADMODULE_DEFAULT
Definition module.h:54
SAL_DLLPUBLIC oslModule osl_loadModule(rtl_uString *strModuleName, sal_Int32 nRtldMode)
Load a shared library or module.
SAL_DLLPUBLIC void * osl_getSymbol(oslModule Module, rtl_uString *strSymbolName)
lookup the specified symbol name.
SAL_DLLPUBLIC oslModule osl_loadModuleRelative(oslGenericFunction baseModule, rtl_uString *relativePath, sal_Int32 mode)
Load a module located relative to some other module.
SAL_DLLPUBLIC oslGenericFunction osl_getFunctionSymbol(oslModule Module, rtl_uString *ustrFunctionSymbolName)
Lookup the specified function symbol name.
void(* oslGenericFunction)(void)
Generic Function pointer type that will be used as symbol address.
Definition module.h:66
SAL_DLLPUBLIC oslModule osl_loadModuleRelativeAscii(oslGenericFunction baseModule, char const *relativePath, sal_Int32 mode)
Load a module located relative to some other module.
void * oslModule
Definition module.h:59
SAL_DLLPUBLIC sal_Bool osl_getModuleURLFromFunctionAddress(oslGenericFunction pf, rtl_uString **pustrFunctionURL)
Lookup URL of module which is mapped at the specified function address.
Definition condition.hxx:31
This String class provides base functionality for C++ like Unicode character array handling.
Definition ustring.hxx:172
void * getSymbol(const ::rtl::OUString &strSymbolName)
Definition module.hxx:128
void unload()
Definition module.hxx:112
static bool getUrlFromAddress(oslGenericFunction addr, ::rtl::OUString &libraryUrl)
Get module URL from the specified function address in the module.
Definition module.hxx:60
bool loadRelative(oslGenericFunction baseModule, char const *relativePath, sal_Int32 mode=SAL_LOADMODULE_DEFAULT)
Definition module.hxx:103
Module(const ::rtl::OUString &strModuleName, sal_Int32 nRtldMode=SAL_LOADMODULE_DEFAULT)
Definition module.hxx:68
bool loadRelative(::oslGenericFunction baseModule, ::rtl::OUString const &relativePath, ::sal_Int32 mode=SAL_LOADMODULE_DEFAULT)
Definition module.hxx:93
Module()
Definition module.hxx:64
bool load(const ::rtl::OUString &strModuleName, sal_Int32 nRtldMode=SAL_LOADMODULE_DEFAULT)
Definition module.hxx:84
void release()
Release the module so that it will not be unloaded from the destructor.
Definition module.hxx:167
~Module()
Definition module.hxx:75
oslGenericFunction getFunctionSymbol(char const *name) const
Definition module.hxx:151
static bool getUrlFromAddress(void *addr, ::rtl::OUString &libraryUrl)
Definition module.hxx:43
bool is() const
Definition module.hxx:123
oslGenericFunction getFunctionSymbol(const ::rtl::OUString &ustrFunctionSymbolName) const
Get function address by the function name in the module.
Definition module.hxx:145