LibreOffice
LibreOffice 7.1 SDK C/C++ API Reference
dynload.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#ifndef INCLUDED_SALHELPER_DYNLOAD_HXX
21#define INCLUDED_SALHELPER_DYNLOAD_HXX
22
23#include "sal/types.h"
24#include "rtl/ustring.hxx"
25#include "osl/module.h"
27
28namespace salhelper
29{
30
34{
35public:
44 ORealDynamicLoader ** ppSetToZeroInDestructor,
45 const ::rtl::OUString& strModuleName,
46 const ::rtl::OUString& strInitFunction );
47
49 sal_uInt32 SAL_CALL acquire();
51 sal_uInt32 SAL_CALL release();
52
54 void* SAL_CALL getApi() const;
55
56protected:
66 ORealDynamicLoader( ORealDynamicLoader ** ppSetToZeroInDestructor,
67 const ::rtl::OUString& strModuleName,
68 const ::rtl::OUString& strInitFunction,
69 void* pApi,
70 oslModule pModule );
71
74
76 void* m_pApi;
78 sal_uInt32 m_refCount;
89};
90
91
104template<class API>
106{
107public:
110 {
111 m_pLoader = NULL;
112 }
113
120 ODynamicLoader( const ::rtl::OUString& strModuleName,
121 const ::rtl::OUString& strInitFunction )
122 {
123 if (!m_pStaticLoader)
124 {
127 strModuleName,
128 strInitFunction);
129 }
130 else
131 {
133 }
134
136 }
137
140 {
141 m_pLoader = toCopy.m_pLoader;
142 if( m_pLoader )
144 }
145
148 {
149 if( m_pLoader )
150 if (m_pLoader->release()==0)
151 m_pStaticLoader = NULL;
152 }
153
156 {
157 if( m_pLoader != toAssign.m_pLoader )
158 {
159 if( toAssign.m_pLoader )
160 {
161 toAssign.m_pLoader->acquire();
162 }
163 if( m_pLoader )
164 {
166 }
167 m_pLoader = toAssign.m_pLoader;
168 }
169
170 return (*this);
171 }
172
174 API* SAL_CALL getApi() const
175 {
176 return static_cast<API*>(m_pLoader->getApi());
177 }
178
180 API* SAL_CALL operator->() const
181 {
182 return static_cast<API*>(m_pLoader->getApi());
183 }
184
186 bool SAL_CALL isLoaded() const
187 {
188 return (m_pLoader != NULL);
189 }
190
191protected:
195};
196
197
198template<class API>
200
201}
202
203#endif
204
205/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SALHELPER_DLLPUBLIC
Definition: salhelperdllapi.h:28
void * oslModule
Definition: module.h:55
Definition: condition.hxx:31
The ORealDynamicLoader is an implementation helper class for the template loader ODynamicLoader.
Definition: dynload.hxx:34
sal_uInt32 release()
decrease the reference count and delete the last instance.
::rtl::OUString m_strModuleName
stores the library name.
Definition: dynload.hxx:82
static ORealDynamicLoader * newInstance(ORealDynamicLoader **ppSetToZeroInDestructor, const ::rtl::OUString &strModuleName, const ::rtl::OUString &strInitFunction)
initializes the loader, loads the library and call the initialization function.
oslModule m_pModule
stores the library handle.
Definition: dynload.hxx:80
void * m_pApi
points to the structure with the initialized API function pointers.
Definition: dynload.hxx:76
sal_uInt32 m_refCount
stores the reference count.
Definition: dynload.hxx:78
void * getApi() const
returns a pointer to the initialized API function structure.
ORealDynamicLoader(ORealDynamicLoader **ppSetToZeroInDestructor, const ::rtl::OUString &strModuleName, const ::rtl::OUString &strInitFunction, void *pApi, oslModule pModule)
Constructor.
::rtl::OUString m_strInitFunction
stores the name of the initialization function.
Definition: dynload.hxx:84
virtual ~ORealDynamicLoader()
Destructor, try to unload the library.
sal_uInt32 acquire()
increase the reference count.
ORealDynamicLoader ** ppSetToZeroInDestructor
stores a pointer to itself, which must be reset in the destructor to signal that the loader is invali...
Definition: dynload.hxx:88
The ODynamicLoader provides a special load on call mechanism for dynamic libraries which support a C-...
Definition: dynload.hxx:106
~ODynamicLoader()
Destructor, decrease the reference count and unload the library if it is the last instance.
Definition: dynload.hxx:147
ODynamicLoader(const ::rtl::OUString &strModuleName, const ::rtl::OUString &strInitFunction)
Constructor, loads the library if necessary otherwise the reference count will be increased.
Definition: dynload.hxx:120
API * getApi() const
returns a pointer to the initialized API function structure.
Definition: dynload.hxx:174
ODynamicLoader(const ODynamicLoader< API > &toCopy)
Copy constructor.
Definition: dynload.hxx:139
API * operator->() const
cast operator, which cast to a pointer with the initialized API function structure.
Definition: dynload.hxx:180
ORealDynamicLoader * m_pLoader
Definition: dynload.hxx:194
ODynamicLoader()
Default constructor.
Definition: dynload.hxx:109
bool isLoaded() const
checks if the loader works on a loaded and initialized library.
Definition: dynload.hxx:186
ODynamicLoader< API > & operator=(const ODynamicLoader< API > &toAssign)
Assign operator.
Definition: dynload.hxx:155
static ORealDynamicLoader * m_pStaticLoader
stores the real loader helper instance
Definition: dynload.hxx:193
This String class provides base functionality for C++ like Unicode character array handling.
Definition: ustring.hxx:161