2010-10-14 01:30:07 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 09:29:57 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2008-04-11 05:41:53 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 11:31:30 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_stoc.hxx"
|
|
|
|
|
2000-11-07 07:50:01 -06:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <osl/file.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <osl/mutex.hxx>
|
2000-09-18 09:29:57 -05:00
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#include <osl/module.h>
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#include <uno/environment.h>
|
|
|
|
#include <uno/mapping.hxx>
|
|
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
|
|
#include <cppuhelper/weak.hxx>
|
|
|
|
#include <cppuhelper/factory.hxx>
|
2000-12-19 08:49:47 -06:00
|
|
|
#include <cppuhelper/shlib.hxx>
|
2000-09-18 09:29:57 -05:00
|
|
|
#include <cppuhelper/implbase3.hxx>
|
2001-06-22 10:21:02 -05:00
|
|
|
#include <cppuhelper/implementationentry.hxx>
|
2007-10-15 06:01:52 -05:00
|
|
|
#include <cppuhelper/bootstrap.hxx>
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
#include <com/sun/star/loader/XImplementationLoader.hpp>
|
|
|
|
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
|
|
|
#include <com/sun/star/registry/XRegistryKey.hpp>
|
2002-06-14 07:26:30 -05:00
|
|
|
|
|
|
|
#define SERVICENAME "com.sun.star.loader.SharedLibrary"
|
|
|
|
#define IMPLNAME "com.sun.star.comp.stoc.DLLComponentLoader"
|
|
|
|
|
|
|
|
#define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) )
|
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2002-06-14 07:26:30 -05:00
|
|
|
using namespace com::sun::star;
|
2000-09-18 09:29:57 -05:00
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::loader;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::registry;
|
|
|
|
using namespace cppu;
|
|
|
|
using namespace rtl;
|
2001-06-22 10:21:02 -05:00
|
|
|
using namespace osl;
|
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
extern rtl_StandardModuleCount g_moduleCount;
|
2001-06-22 10:21:02 -05:00
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
namespace stoc_bootstrap
|
|
|
|
{
|
|
|
|
Sequence< OUString > loader_getSupportedServiceNames()
|
2001-06-22 10:21:02 -05:00
|
|
|
{
|
|
|
|
static Sequence < OUString > *pNames = 0;
|
|
|
|
if( ! pNames )
|
|
|
|
{
|
|
|
|
MutexGuard guard( Mutex::getGlobalMutex() );
|
|
|
|
if( !pNames )
|
|
|
|
{
|
|
|
|
static Sequence< OUString > seqNames(1);
|
|
|
|
seqNames.getArray()[0] = OUString(RTL_CONSTASCII_USTRINGPARAM(SERVICENAME));
|
|
|
|
pNames = &seqNames;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *pNames;
|
|
|
|
}
|
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
OUString loader_getImplementationName()
|
2001-06-22 10:21:02 -05:00
|
|
|
{
|
|
|
|
static OUString *pImplName = 0;
|
|
|
|
if( ! pImplName )
|
|
|
|
{
|
|
|
|
MutexGuard guard( Mutex::getGlobalMutex() );
|
|
|
|
if( ! pImplName )
|
|
|
|
{
|
|
|
|
static OUString implName( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME ) );
|
|
|
|
pImplName = &implName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *pImplName;
|
|
|
|
}
|
2007-09-27 06:59:12 -05:00
|
|
|
}
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
namespace stoc_loader
|
|
|
|
{
|
2000-09-18 09:29:57 -05:00
|
|
|
//*************************************************************************
|
|
|
|
// DllComponentLoader
|
|
|
|
//*************************************************************************
|
|
|
|
class DllComponentLoader
|
|
|
|
: public WeakImplHelper3< XImplementationLoader,
|
|
|
|
XInitialization,
|
|
|
|
XServiceInfo >
|
|
|
|
{
|
|
|
|
public:
|
2001-06-22 10:21:02 -05:00
|
|
|
DllComponentLoader( const Reference<XComponentContext> & xCtx );
|
2000-09-18 09:29:57 -05:00
|
|
|
~DllComponentLoader();
|
|
|
|
|
|
|
|
// XServiceInfo
|
|
|
|
virtual OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XInitialization
|
|
|
|
virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XImplementationLoader
|
|
|
|
virtual Reference<XInterface> SAL_CALL activate( const OUString& implementationName, const OUString& implementationLoaderUrl, const OUString& locationUrl, const Reference<XRegistryKey>& xKey ) throw(CannotActivateFactoryException, RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL writeRegistryInfo( const Reference<XRegistryKey>& xKey, const OUString& implementationLoaderUrl, const OUString& locationUrl ) throw(CannotRegisterImplementationException, RuntimeException);
|
|
|
|
|
|
|
|
private:
|
2002-06-14 07:26:30 -05:00
|
|
|
OUString expand_url( OUString const & url )
|
|
|
|
SAL_THROW( (RuntimeException) );
|
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
Reference<XMultiServiceFactory> m_xSMgr;
|
|
|
|
};
|
|
|
|
|
|
|
|
//*************************************************************************
|
2001-06-22 10:21:02 -05:00
|
|
|
DllComponentLoader::DllComponentLoader( const Reference<XComponentContext> & xCtx )
|
2000-09-18 09:29:57 -05:00
|
|
|
{
|
2001-06-22 10:21:02 -05:00
|
|
|
g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
|
2007-10-15 06:01:52 -05:00
|
|
|
m_xSMgr.set( xCtx->getServiceManager(), UNO_QUERY );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
DllComponentLoader::~DllComponentLoader()
|
|
|
|
{
|
2001-06-22 10:21:02 -05:00
|
|
|
g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
OUString SAL_CALL DllComponentLoader::getImplementationName( )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2007-09-27 06:59:12 -05:00
|
|
|
return stoc_bootstrap::loader_getImplementationName();
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
sal_Bool SAL_CALL DllComponentLoader::supportsService( const OUString& ServiceName )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
Sequence< OUString > aSNL = getSupportedServiceNames();
|
|
|
|
const OUString * pArray = aSNL.getArray();
|
|
|
|
for( sal_Int32 i = 0; i < aSNL.getLength(); i++ )
|
|
|
|
if( pArray[i] == ServiceName )
|
|
|
|
return sal_True;
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
Sequence<OUString> SAL_CALL DllComponentLoader::getSupportedServiceNames( )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2007-09-27 06:59:12 -05:00
|
|
|
return stoc_bootstrap::loader_getSupportedServiceNames();
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
2006-06-19 18:03:34 -05:00
|
|
|
void DllComponentLoader::initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& )
|
2000-09-18 09:29:57 -05:00
|
|
|
throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2001-06-22 10:21:02 -05:00
|
|
|
OSL_ENSURE( 0, "dllcomponentloader::initialize should not be called !" );
|
|
|
|
// if( aArgs.getLength() != 1 )
|
|
|
|
// {
|
|
|
|
// throw IllegalArgumentException();
|
|
|
|
// }
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2001-06-22 10:21:02 -05:00
|
|
|
// Reference< XMultiServiceFactory > rServiceManager;
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2001-06-22 10:21:02 -05:00
|
|
|
// if( aArgs.getConstArray()[0].getValueType().getTypeClass() == TypeClass_INTERFACE )
|
|
|
|
// {
|
|
|
|
// aArgs.getConstArray()[0] >>= rServiceManager;
|
|
|
|
// }
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2001-06-22 10:21:02 -05:00
|
|
|
// if( !rServiceManager.is() )
|
|
|
|
// {
|
|
|
|
// throw IllegalArgumentException();
|
|
|
|
// }
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2001-06-22 10:21:02 -05:00
|
|
|
// m_xSMgr = rServiceManager;
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
2002-06-14 07:26:30 -05:00
|
|
|
//==================================================================================================
|
|
|
|
OUString DllComponentLoader::expand_url( OUString const & url )
|
|
|
|
SAL_THROW( (RuntimeException) )
|
|
|
|
{
|
2007-10-15 06:01:52 -05:00
|
|
|
try
|
2002-06-14 07:26:30 -05:00
|
|
|
{
|
2007-10-15 06:01:52 -05:00
|
|
|
return cppu::bootstrap_expandUri( url );
|
2002-06-14 07:26:30 -05:00
|
|
|
}
|
2007-10-15 06:01:52 -05:00
|
|
|
catch ( IllegalArgumentException & e )
|
2002-06-14 07:26:30 -05:00
|
|
|
{
|
2007-10-15 06:01:52 -05:00
|
|
|
throw RuntimeException( e.Message, e.Context );
|
2002-06-14 07:26:30 -05:00
|
|
|
}
|
|
|
|
}
|
2000-12-14 09:23:39 -06:00
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
//*************************************************************************
|
|
|
|
Reference<XInterface> SAL_CALL DllComponentLoader::activate(
|
|
|
|
const OUString & rImplName, const OUString &, const OUString & rLibName,
|
|
|
|
const Reference< XRegistryKey > & xKey )
|
|
|
|
|
|
|
|
throw(CannotActivateFactoryException, RuntimeException)
|
|
|
|
{
|
2002-06-14 07:26:30 -05:00
|
|
|
return loadSharedLibComponentFactory(
|
|
|
|
expand_url( rLibName ), OUString(), rImplName, m_xSMgr, xKey );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
sal_Bool SAL_CALL DllComponentLoader::writeRegistryInfo(
|
|
|
|
const Reference< XRegistryKey > & xKey, const OUString &, const OUString & rLibName )
|
|
|
|
|
|
|
|
throw(CannotRegisterImplementationException, RuntimeException)
|
|
|
|
{
|
2002-06-14 07:26:30 -05:00
|
|
|
writeSharedLibComponentInfo(
|
|
|
|
expand_url( rLibName ), OUString(), m_xSMgr, xKey );
|
2000-12-19 08:49:47 -06:00
|
|
|
return sal_True;
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
2007-09-27 06:59:12 -05:00
|
|
|
}
|
2000-09-18 09:29:57 -05:00
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
namespace stoc_bootstrap
|
|
|
|
{
|
2000-09-18 09:29:57 -05:00
|
|
|
//*************************************************************************
|
2001-06-22 10:21:02 -05:00
|
|
|
Reference<XInterface> SAL_CALL DllComponentLoader_CreateInstance( const Reference<XComponentContext> & xCtx ) throw(Exception)
|
2000-09-18 09:29:57 -05:00
|
|
|
{
|
|
|
|
Reference<XInterface> xRet;
|
|
|
|
|
2007-09-27 06:59:12 -05:00
|
|
|
XImplementationLoader *pXLoader = (XImplementationLoader *)new stoc_loader::DllComponentLoader(xCtx);
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
if (pXLoader)
|
|
|
|
{
|
|
|
|
xRet = Reference<XInterface>::query(pXLoader);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-10-14 01:30:07 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|