merge the formfield patch from ooo-build
[ooovba.git] / salhelper / source / dynload.cxx
blobae27f1936be11006ef2ed4df0d4834fe66b1f4fe
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: dynload.cxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #include <salhelper/dynload.hxx>
32 #include <rtl/ustrbuf.hxx>
34 namespace salhelper
37 typedef void* (SAL_CALL *ApiInitFunction) (void);
39 ORealDynamicLoader::ORealDynamicLoader(ORealDynamicLoader ** ppSetToZeroInDestructor_,
40 const rtl::OUString& moduleName,
41 const rtl::OUString& initFunction,
42 void* pApi,
43 oslModule pModule)
44 : m_pApi(pApi)
45 , m_refCount(1)
46 , m_pModule(pModule)
47 , m_strModuleName(moduleName)
48 , m_strInitFunction(initFunction)
49 , ppSetToZeroInDestructor( ppSetToZeroInDestructor_ )
53 ORealDynamicLoader* ORealDynamicLoader::newInstance(ORealDynamicLoader ** ppSetToZeroInDestructor,
54 const rtl::OUString& moduleName,
55 const rtl::OUString& initFunction)
57 ApiInitFunction initFunc;
58 oslModule pModule = osl_loadModule(moduleName.pData, SAL_LOADMODULE_DEFAULT);
60 if ( !pModule )
62 return NULL;
65 initFunc = (ApiInitFunction)osl_getFunctionSymbol(
66 pModule, initFunction.pData);
68 if ( !initFunc )
70 osl_unloadModule(pModule);
71 return NULL;
74 return(new ORealDynamicLoader(ppSetToZeroInDestructor, moduleName,
75 initFunction,
76 initFunc(),
77 pModule));
80 ORealDynamicLoader::~ORealDynamicLoader()
82 // set the address to zero
83 if( ppSetToZeroInDestructor )
84 *ppSetToZeroInDestructor = 0;
86 if (m_pModule)
88 osl_unloadModule(m_pModule);
89 m_pModule = NULL;
93 sal_uInt32 ORealDynamicLoader::acquire()
95 return ++m_refCount;
98 sal_uInt32 ORealDynamicLoader::release()
100 sal_uInt32 nRet = --m_refCount;
101 if( nRet == 0 )
102 delete this;
103 return nRet;
107 void* ORealDynamicLoader::getApi() const
109 return m_pApi;
112 } // namespace salhelper