2010-10-14 08:30:07 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-28 21:09:53 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2006-09-16 16:31:30 +00:00
|
|
|
|
2000-11-07 13:50:01 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <osl/file.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <osl/mutex.hxx>
|
2000-09-18 14:29:57 +00: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 14:49:47 +00:00
|
|
|
#include <cppuhelper/shlib.hxx>
|
2000-09-18 14:29:57 +00:00
|
|
|
#include <cppuhelper/implbase3.hxx>
|
2001-06-22 15:21:02 +00:00
|
|
|
#include <cppuhelper/implementationentry.hxx>
|
2007-10-15 11:01:52 +00:00
|
|
|
#include <cppuhelper/bootstrap.hxx>
|
2000-09-18 14:29:57 +00: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 12:26:30 +00:00
|
|
|
|
|
|
|
#define SERVICENAME "com.sun.star.loader.SharedLibrary"
|
|
|
|
#define IMPLNAME "com.sun.star.comp.stoc.DLLComponentLoader"
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2002-06-14 12:26:30 +00:00
|
|
|
using namespace com::sun::star;
|
2000-09-18 14:29:57 +00: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;
|
2001-06-22 15:21:02 +00:00
|
|
|
using namespace osl;
|
2011-03-03 22:48:57 +01:00
|
|
|
using ::rtl::OUString;
|
2007-09-27 11:59:12 +00:00
|
|
|
extern rtl_StandardModuleCount g_moduleCount;
|
2001-06-22 15:21:02 +00:00
|
|
|
|
2007-09-27 11:59:12 +00:00
|
|
|
namespace stoc_bootstrap
|
|
|
|
{
|
|
|
|
Sequence< OUString > loader_getSupportedServiceNames()
|
2001-06-22 15:21:02 +00:00
|
|
|
{
|
2011-06-01 15:34:41 +01:00
|
|
|
Sequence< OUString > seqNames(1);
|
|
|
|
seqNames.getArray()[0] = OUString(RTL_CONSTASCII_USTRINGPARAM(SERVICENAME));
|
|
|
|
return seqNames;
|
2001-06-22 15:21:02 +00:00
|
|
|
}
|
|
|
|
|
2007-09-27 11:59:12 +00:00
|
|
|
OUString loader_getImplementationName()
|
2001-06-22 15:21:02 +00:00
|
|
|
{
|
2011-06-01 15:34:41 +01:00
|
|
|
return OUString(RTL_CONSTASCII_USTRINGPARAM(IMPLNAME));
|
2001-06-22 15:21:02 +00:00
|
|
|
}
|
2007-09-27 11:59:12 +00:00
|
|
|
}
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2007-09-27 11:59:12 +00:00
|
|
|
namespace stoc_loader
|
|
|
|
{
|
2000-09-18 14:29:57 +00:00
|
|
|
//*************************************************************************
|
|
|
|
// DllComponentLoader
|
|
|
|
//*************************************************************************
|
|
|
|
class DllComponentLoader
|
|
|
|
: public WeakImplHelper3< XImplementationLoader,
|
|
|
|
XInitialization,
|
|
|
|
XServiceInfo >
|
|
|
|
{
|
|
|
|
public:
|
2001-06-22 15:21:02 +00:00
|
|
|
DllComponentLoader( const Reference<XComponentContext> & xCtx );
|
2000-09-18 14:29:57 +00: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 12:26:30 +00:00
|
|
|
OUString expand_url( OUString const & url )
|
|
|
|
SAL_THROW( (RuntimeException) );
|
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
Reference<XMultiServiceFactory> m_xSMgr;
|
|
|
|
};
|
|
|
|
|
|
|
|
//*************************************************************************
|
2001-06-22 15:21:02 +00:00
|
|
|
DllComponentLoader::DllComponentLoader( const Reference<XComponentContext> & xCtx )
|
2000-09-18 14:29:57 +00:00
|
|
|
{
|
2001-06-22 15:21:02 +00:00
|
|
|
g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt );
|
2007-10-15 11:01:52 +00:00
|
|
|
m_xSMgr.set( xCtx->getServiceManager(), UNO_QUERY );
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
DllComponentLoader::~DllComponentLoader()
|
|
|
|
{
|
2001-06-22 15:21:02 +00:00
|
|
|
g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
OUString SAL_CALL DllComponentLoader::getImplementationName( )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2007-09-27 11:59:12 +00:00
|
|
|
return stoc_bootstrap::loader_getImplementationName();
|
2000-09-18 14:29:57 +00: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 11:59:12 +00:00
|
|
|
return stoc_bootstrap::loader_getSupportedServiceNames();
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//*************************************************************************
|
2006-06-19 23:03:34 +00:00
|
|
|
void DllComponentLoader::initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& )
|
2000-09-18 14:29:57 +00:00
|
|
|
throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2011-03-12 12:10:42 +01:00
|
|
|
OSL_FAIL( "dllcomponentloader::initialize should not be called !" );
|
2001-06-22 15:21:02 +00:00
|
|
|
// if( aArgs.getLength() != 1 )
|
|
|
|
// {
|
|
|
|
// throw IllegalArgumentException();
|
|
|
|
// }
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-06-22 15:21:02 +00:00
|
|
|
// Reference< XMultiServiceFactory > rServiceManager;
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-06-22 15:21:02 +00:00
|
|
|
// if( aArgs.getConstArray()[0].getValueType().getTypeClass() == TypeClass_INTERFACE )
|
|
|
|
// {
|
|
|
|
// aArgs.getConstArray()[0] >>= rServiceManager;
|
|
|
|
// }
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-06-22 15:21:02 +00:00
|
|
|
// if( !rServiceManager.is() )
|
|
|
|
// {
|
|
|
|
// throw IllegalArgumentException();
|
|
|
|
// }
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-06-22 15:21:02 +00:00
|
|
|
// m_xSMgr = rServiceManager;
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
|
|
|
|
2002-06-14 12:26:30 +00:00
|
|
|
//==================================================================================================
|
|
|
|
OUString DllComponentLoader::expand_url( OUString const & url )
|
|
|
|
SAL_THROW( (RuntimeException) )
|
|
|
|
{
|
2007-10-15 11:01:52 +00:00
|
|
|
try
|
2002-06-14 12:26:30 +00:00
|
|
|
{
|
2007-10-15 11:01:52 +00:00
|
|
|
return cppu::bootstrap_expandUri( url );
|
2002-06-14 12:26:30 +00:00
|
|
|
}
|
2011-12-27 00:12:38 +09:00
|
|
|
catch ( const IllegalArgumentException & e )
|
2002-06-14 12:26:30 +00:00
|
|
|
{
|
2007-10-15 11:01:52 +00:00
|
|
|
throw RuntimeException( e.Message, e.Context );
|
2002-06-14 12:26:30 +00:00
|
|
|
}
|
|
|
|
}
|
2000-12-14 15:23:39 +00:00
|
|
|
|
2000-09-18 14:29:57 +00:00
|
|
|
//*************************************************************************
|
|
|
|
Reference<XInterface> SAL_CALL DllComponentLoader::activate(
|
|
|
|
const OUString & rImplName, const OUString &, const OUString & rLibName,
|
|
|
|
const Reference< XRegistryKey > & xKey )
|
|
|
|
|
|
|
|
throw(CannotActivateFactoryException, RuntimeException)
|
|
|
|
{
|
2011-06-24 12:24:49 +01:00
|
|
|
rtl::OUString aPrefix;
|
|
|
|
if( xKey.is() )
|
|
|
|
{
|
|
|
|
Reference<XRegistryKey > xActivatorKey = xKey->openKey(
|
2013-03-19 09:22:44 +01:00
|
|
|
rtl::OUString("/UNO/ACTIVATOR") );
|
2011-06-24 12:24:49 +01:00
|
|
|
if (xActivatorKey.is() && xActivatorKey->getValueType() == RegistryValueType_ASCII )
|
|
|
|
{
|
2011-07-28 14:42:08 +02:00
|
|
|
Reference<XRegistryKey > xPrefixKey = xKey->openKey(
|
2013-03-19 09:22:44 +01:00
|
|
|
rtl::OUString("/UNO/PREFIX") );
|
2011-06-24 12:24:49 +01:00
|
|
|
if( xPrefixKey.is() && xPrefixKey->getValueType() == RegistryValueType_ASCII )
|
|
|
|
{
|
|
|
|
aPrefix = xPrefixKey->getAsciiValue();
|
2012-01-12 17:01:19 -02:00
|
|
|
if( !aPrefix.isEmpty() )
|
2013-01-30 11:44:23 +01:00
|
|
|
aPrefix = aPrefix + "_";
|
2011-06-24 12:24:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-14 12:26:30 +00:00
|
|
|
return loadSharedLibComponentFactory(
|
2011-06-24 12:24:49 +01:00
|
|
|
expand_url( rLibName ), OUString(), rImplName, m_xSMgr, xKey, aPrefix );
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
sal_Bool SAL_CALL DllComponentLoader::writeRegistryInfo(
|
|
|
|
const Reference< XRegistryKey > & xKey, const OUString &, const OUString & rLibName )
|
|
|
|
|
|
|
|
throw(CannotRegisterImplementationException, RuntimeException)
|
|
|
|
{
|
2012-03-19 18:43:59 +02:00
|
|
|
#ifdef DISABLE_DYNLOADING
|
|
|
|
(void) xKey;
|
|
|
|
(void) rLibName;
|
|
|
|
OSL_FAIL( "DllComponentLoader::writeRegistryInfo() should not be called I think?" );
|
|
|
|
return sal_False;
|
|
|
|
#else
|
2002-06-14 12:26:30 +00:00
|
|
|
writeSharedLibComponentInfo(
|
|
|
|
expand_url( rLibName ), OUString(), m_xSMgr, xKey );
|
2000-12-19 14:49:47 +00:00
|
|
|
return sal_True;
|
2012-03-19 18:43:59 +02:00
|
|
|
#endif
|
2000-09-18 14:29:57 +00:00
|
|
|
}
|
2007-09-27 11:59:12 +00:00
|
|
|
}
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2007-09-27 11:59:12 +00:00
|
|
|
namespace stoc_bootstrap
|
|
|
|
{
|
2000-09-18 14:29:57 +00:00
|
|
|
//*************************************************************************
|
2001-06-22 15:21:02 +00:00
|
|
|
Reference<XInterface> SAL_CALL DllComponentLoader_CreateInstance( const Reference<XComponentContext> & xCtx ) throw(Exception)
|
2000-09-18 14:29:57 +00:00
|
|
|
{
|
|
|
|
Reference<XInterface> xRet;
|
|
|
|
|
2007-09-27 11:59:12 +00:00
|
|
|
XImplementationLoader *pXLoader = (XImplementationLoader *)new stoc_loader::DllComponentLoader(xCtx);
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
if (pXLoader)
|
|
|
|
{
|
|
|
|
xRet = Reference<XInterface>::query(pXLoader);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-10-14 08:30:07 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|