LibreOffice
LibreOffice 5.2 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 
28 namespace salhelper
29 {
30 
34 {
35 public:
43  static ORealDynamicLoader* SAL_CALL newInstance(
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 
56 protected:
66  ORealDynamicLoader( ORealDynamicLoader ** ppSetToZeroInDestructor,
67  const ::rtl::OUString& strModuleName,
68  const ::rtl::OUString& strInitFunction,
69  void* pApi,
70  oslModule pModule );
71 
73  virtual ~ORealDynamicLoader();
74 
76  void* m_pApi;
78  sal_uInt32 m_refCount;
89 };
90 
91 
104 template<class API>
106 {
107 public:
110  {
111  m_pLoader = NULL;
112  }
113 
120  ODynamicLoader( const ::rtl::OUString& strModuleName,
121  const ::rtl::OUString& strInitFunction )
122  {
123  if (!m_pStaticLoader)
124  {
125  m_pStaticLoader = ORealDynamicLoader::newInstance(
126  &m_pStaticLoader,
127  strModuleName,
128  strInitFunction);
129  }
130  else
131  {
132  m_pStaticLoader->acquire();
133  }
134 
135  m_pLoader = m_pStaticLoader;
136  }
137 
140  {
141  m_pLoader = toCopy.m_pLoader;
142  if( m_pLoader )
143  m_pLoader->acquire();
144  }
145 
148  {
149  if( m_pLoader )
150  m_pLoader->release();
151  }
152 
154  ODynamicLoader<API>& SAL_CALL operator = (const ODynamicLoader<API>& toAssign)
155  {
156  if( m_pLoader != toAssign.m_pLoader )
157  {
158  if( toAssign.m_pLoader )
159  {
160  toAssign.m_pLoader->acquire();
161  }
162  if( m_pLoader )
163  {
164  m_pLoader->release();
165  }
166  m_pLoader = toAssign.m_pLoader;
167  }
168 
169  return (*this);
170  }
171 
173  API* SAL_CALL getApi() const
174  {
175  return static_cast<API*>(m_pLoader->getApi());
176  }
177 
179  API* SAL_CALL operator->() const
180  {
181  return static_cast<API*>(m_pLoader->getApi());
182  }
183 
185  bool SAL_CALL isLoaded() const
186  {
187  return (m_pLoader != NULL);
188  }
189 
190 protected:
194 };
195 
196 
197 template<class API>
199 
200 }
201 
202 #endif
203 
204 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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
ODynamicLoader(const ::rtl::OUString &strModuleName, const ::rtl::OUString &strInitFunction)
Constructor, loads the library if necessary otherwise the refernece count will be increased...
Definition: dynload.hxx:120
ORealDynamicLoader * m_pLoader
Definition: dynload.hxx:193
API * operator->() const
cast operator, which cast to a poiner with the initialized API function structure.
Definition: dynload.hxx:179
~ODynamicLoader()
Destructor, decrease the reference count and unload the library if it is tha last instance...
Definition: dynload.hxx:147
Definition: condition.hxx:29
void * m_pApi
points to the structure with the initialzed API function pointers.
Definition: dynload.hxx:76
::rtl::OUString m_strInitFunction
stores the name of the initialization function.
Definition: dynload.hxx:84
void * oslModule
Definition: module.h:56
API * getApi() const
returns a poiner to the initialized API function structure.
Definition: dynload.hxx:173
ODynamicLoader(const ODynamicLoader< API > &toCopy)
Copy constructor.
Definition: dynload.hxx:139
static ORealDynamicLoader * newInstance(ORealDynamicLoader **ppSetToZeroInDestructor, const ::rtl::OUString &strModuleName, const ::rtl::OUString &strInitFunction)
initializes the loader, loads the library and call the initialization function.
static ORealDynamicLoader * m_pStaticLoader
stores the real loader helper instance
Definition: dynload.hxx:192
bool isLoaded() const
checks if the loader works on a loaded and initialized library.
Definition: dynload.hxx:185
oslModule m_pModule
stores the library handle.
Definition: dynload.hxx:80
#define SALHELPER_DLLPUBLIC
Definition: salhelperdllapi.h:28
This String class provides base functionality for C++ like Unicode character array handling...
Definition: ustring.hxx:106
The ODynmaicLoader provides a special load on call mechanism for dynamic libraries which support a C-...
Definition: dynload.hxx:105
sal_uInt32 m_refCount
stores the reference count.
Definition: dynload.hxx:78
::rtl::OUString m_strModuleName
stores the library name.
Definition: dynload.hxx:82
The ORealDynamicLoader is an implementation helper class for the template loader ODynamicLoader.
Definition: dynload.hxx:33
ODynamicLoader()
Default constructor.
Definition: dynload.hxx:109