Files
libreoffice/desktop/source/app/appinit.cxx

361 lines
12 KiB
C++
Raw Normal View History

2001-07-16 11:55:47 +00:00
/*************************************************************************
*
* $RCSfile: appinit.cxx,v $
*
2001-07-24 05:37:23 +00:00
* $Revision: 1.2 $
2001-07-16 11:55:47 +00:00
*
2001-07-24 05:37:23 +00:00
* last change: $Author: cd $ $Date: 2001-07-24 06:37:23 $
2001-07-16 11:55:47 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include "appinit.hxx"
#include "cmdlineargs.hxx"
#include "officeacceptthread.hxx"
#ifndef _COM_SUN_STAR_REGISTRY_XSIMPLEREGISTRY_HPP_
#include <com/sun/star/registry/XSimpleRegistry.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XCOMPONENT_HPP_
#include <com/sun/star/lang/XComponent.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_
#include <com/sun/star/lang/XInitialization.hpp>
#endif
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
#include <com/sun/star/beans/XPropertySet.hpp>
#endif
#ifndef _CPPUHELPER_SERVICEFACTORY_HXX_
#include <cppuhelper/servicefactory.hxx>
#endif
#ifndef _CPPUHELPER_BOOTSTRAP_HXX_
#include <cppuhelper/bootstrap.hxx>
#endif
#ifndef _OSL_FILE_HXX_
#include <osl/file.hxx>
#endif
#ifndef _VOS_PROCESS_HXX_
#include <vos/process.hxx>
#endif
#ifndef _RTL_URI_HXX_
#include <rtl/uri.hxx>
#endif
#ifndef _RTL_USTRBUF_HXX_
#include <rtl/ustrbuf.hxx>
#endif
#ifndef _COMPHELPER_REGPATHHELPER_HXX_
#include <comphelper/regpathhelper.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
#ifndef _TOOLS_TEMPFILE_HXX
#include <tools/tempfile.hxx>
#endif
#ifndef _UCBHELPER_CONFIGURATIONKEYS_HXX_
#include <ucbhelper/configurationkeys.hxx>
#endif
#include <rtl/logfile.hxx>
#include <comphelper/processfactory.hxx>
#include <unotools/localfilehelper.hxx>
#include <unotools/ucbhelper.hxx>
#include <unotools/tempfile.hxx>
#include <ucbhelper/contentbroker.hxx>
#include <vcl/svapp.hxx>
#include <svtools/startoptions.hxx>
#include <svtools/pathoptions.hxx>
#define DEFINE_CONST_UNICODE(CONSTASCII) UniString(RTL_CONSTASCII_USTRINGPARAM(CONSTASCII))
#define DEFINE_CONST_OUSTRING(CONSTASCII) OUString(RTL_CONSTASCII_USTRINGPARAM(CONSTASCII))
#define DESKTOP_TEMPNAMEBASE_DIR "$(userpath)/temp/soffice.tmp"
using namespace rtl;
using namespace vos;
using namespace desktop;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::registry;
extern desktop::CommandLineArgs* GetCommandLineArgs();
extern desktop::OOfficeAcceptorThread* pOfficeAcceptThread;
static String aTempNameBaseDir;
static String aTempBase;
// -----------------------------------------------------------------------------
static bool configureUcb(bool bServer, rtl::OUString const & rPortalConnect)
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (sb) ::configureUcb" );
2001-07-16 11:55:47 +00:00
Reference< XMultiServiceFactory >
xServiceFactory( comphelper::getProcessServiceFactory() );
if (!xServiceFactory.is())
{
DBG_ERROR("configureUcb(): No XMultiServiceFactory");
return false;
}
rtl::OUString aPipe;
vos::OSecurity().getUserIdent(aPipe);
rtl::OUStringBuffer aPortal;
if (rPortalConnect.getLength() != 0)
{
aPortal.append(sal_Unicode(','));
aPortal.append(rPortalConnect);
}
Sequence< Any > aArgs(6);
aArgs[0]
<<= rtl::OUString::createFromAscii(bServer ?
UCB_CONFIGURATION_KEY1_SERVER :
UCB_CONFIGURATION_KEY1_LOCAL);
aArgs[1]
<<= rtl::OUString::createFromAscii(UCB_CONFIGURATION_KEY2_OFFICE);
aArgs[2] <<= rtl::OUString::createFromAscii("PIPE");
aArgs[3] <<= aPipe;
aArgs[4] <<= rtl::OUString::createFromAscii("PORTAL");
aArgs[5] <<= aPortal.makeStringAndClear();
return ::ucb::ContentBroker::initialize( xServiceFactory, aArgs ) != false;
}
Reference< XMultiServiceFactory > createApplicationServiceManager()
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) ::createApplicationServiceManager" );
2001-07-16 11:55:47 +00:00
try
{
::rtl::OUString localRegistry = ::comphelper::getPathToUserRegistry();
::rtl::OUString systemRegistry = ::comphelper::getPathToSystemRegistry();
Reference< XSimpleRegistry > xLocalRegistry( ::cppu::createSimpleRegistry() );
Reference< XSimpleRegistry > xSystemRegistry( ::cppu::createSimpleRegistry() );
if ( xLocalRegistry.is() && (localRegistry.getLength() > 0) )
{
try
{
xLocalRegistry->open( localRegistry, sal_False, sal_True);
}
catch ( InvalidRegistryException& )
{
}
if ( !xLocalRegistry->isValid() )
xLocalRegistry->open(localRegistry, sal_True, sal_True);
}
if ( xSystemRegistry.is() && (systemRegistry.getLength() > 0) )
xSystemRegistry->open( systemRegistry, sal_True, sal_False);
if ( (xLocalRegistry.is() && xLocalRegistry->isValid()) &&
(xSystemRegistry.is() && xSystemRegistry->isValid()) )
{
Reference < XSimpleRegistry > xReg( ::cppu::createNestedRegistry() );
Sequence< Any > seqAnys(2);
seqAnys[0] <<= xLocalRegistry ;
seqAnys[1] <<= xSystemRegistry ;
Reference< XInitialization > xInit( xReg, UNO_QUERY );
xInit->initialize( seqAnys );
Reference< XComponentContext > xContext( ::cppu::bootstrap_InitialComponentContext( xReg ) );
return Reference< XMultiServiceFactory >( xContext->getServiceManager(), UNO_QUERY );
}
}
catch( ::com::sun::star::uno::Exception& )
{
}
return ::cppu::createServiceFactory();
}
void destroyApplicationServiceManager( Reference< XMultiServiceFactory >& xSMgr )
{
Reference< XPropertySet > xProps( xSMgr, UNO_QUERY );
if ( xProps.is() )
{
try
{
Reference< XComponent > xComp;
if (xProps->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "DefaultContext" ))) >>= xComp )
{
xComp->dispose();
}
}
catch ( UnknownPropertyException& )
{
}
}
}
void registerServices( Reference< XMultiServiceFactory >& xSMgr )
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) ::registerServices" );
2001-07-16 11:55:47 +00:00
// read command line parameters
::rtl::OUString conDcp;
::rtl::OUString aClientDisplay;
::rtl::OUString aUserDir;
::rtl::OUString aTmpString;
sal_Bool bHeadlessMode = sal_False;
// interpret command line arguments
CommandLineArgs* pCmdLine = GetCommandLineArgs();
// read accept string from configuration
if ( !Application::IsRemoteServer() )
conDcp = SvtStartOptions().GetConnectionURL();
if ( pCmdLine->GetAcceptString( aTmpString ))
conDcp = aTmpString;
pCmdLine->GetUserDir( aUserDir );
if ( Application::IsRemoteServer() )
{
bHeadlessMode = pCmdLine->IsHeadless();
pCmdLine->GetClientDisplay( aClientDisplay );
}
if ( bHeadlessMode )
Application::EnableHeadlessMode();
if ( conDcp.getLength() > 0 )
{
// accept incoming connections (scripting and one rvp)
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) ::OOfficeAcceptorThread::OOfficeAcceptorThread" );
2001-07-16 11:55:47 +00:00
pOfficeAcceptThread = new OOfficeAcceptorThread( xSMgr, conDcp, bHeadlessMode, aClientDisplay, aUserDir );
pOfficeAcceptThread->create();
}
// improves parallel processing on Sun ONE Webtop
// servicemanager up -> copy user installation
if ( Application::IsRemoteServer() )
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) createInstance com.sun.star.portal.InstallUser" );
2001-07-16 11:55:47 +00:00
Any aAny;
Reference <XInterface> xRef = xSMgr->createInstanceWithArguments(
OUString::createFromAscii( "com.sun.star.portal.InstallUser" ),
Sequence<Any>( &aAny, 1 ) );
}
// try to start OLE registration service.
// on success (WIN32 only) this process will work
// as OLE automation server for standard UNO objects.
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT_TRACE( aLog, "{ createInstance com.sun.star.bridge.OleApplicationRegistration" );
2001-07-16 11:55:47 +00:00
xSMgr->createInstance(DEFINE_CONST_UNICODE("com.sun.star.bridge.OleApplicationRegistration"));
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT_TRACE( aLog, "} createInstance com.sun.star.bridge.OleApplicationRegistration" );
2001-07-16 11:55:47 +00:00
::rtl::OUString aPortalConnect;
sal_Bool bServer = pCmdLine->IsServer();
pCmdLine->GetPortalConnectString( aPortalConnect );
if ( !configureUcb( bServer, aPortalConnect ))
{
DBG_ERROR( "Can't configure UCB" );
exit(-1);
}
// UCB_Helper::Initialize(); !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
createTemporaryDirectory();
}
void createTemporaryDirectory()
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) ::createTemporaryDirectory" );
2001-07-16 11:55:47 +00:00
// remove old temp dir
SvtPathOptions aOpt;
String aTemp( DEFINE_CONST_UNICODE( DESKTOP_TEMPNAMEBASE_DIR ) );
aTempNameBaseDir = aOpt.SubstituteVariable( aTemp );
String aOldTempBase( aOpt.GetTempPath() );
if ( STRING_NOTFOUND != aOldTempBase.Search( aTempNameBaseDir ) )
{
String aRet;
::utl::LocalFileHelper::ConvertPhysicalNameToURL( aOldTempBase, aRet );
::utl::UCBContentHelper::Kill( aRet );
}
// set temp base directory
::rtl::OUString aRet;
::osl::FileBase::getFileURLFromSystemPath( aTempNameBaseDir, aRet );
TempFile::SetTempNameBaseDirectory( aRet );
aTempBase = ::utl::TempFile::SetTempNameBaseDirectory( aRet );
aOpt.SetTempPath( aTempBase );
}
void removeTemporaryDirectory()
{
2001-07-24 05:37:23 +00:00
RTL_LOGFILE_CONTEXT( aLog, "desktop (cd) ::removeTemporaryDirectory" );
2001-07-16 11:55:47 +00:00
// remove temp directory
if ( STRING_NOTFOUND != aTempBase.Search( aTempNameBaseDir ) )
{
String aRet;
::utl::LocalFileHelper::ConvertPhysicalNameToURL( aTempBase, aRet );
if ( ::utl::UCBContentHelper::Kill( aRet ) )
{
SvtPathOptions().SetTempPath( String() );
::utl::LocalFileHelper::ConvertPhysicalNameToURL( aTempNameBaseDir, aRet );
::utl::UCBContentHelper::Kill( aRet );
}
}
}