Files
libreoffice/basic/source/app/process.cxx

240 lines
6.8 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 15:18:56 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 15:18:56 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 15:18:56 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 15:18:56 +00: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 15:18:56 +00: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 15:18:56 +00: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 15:18:56 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_basic.hxx"
2000-09-18 15:18:56 +00:00
#include <tools/errcode.hxx>
#include <basic/sbxcore.hxx>
2000-09-18 15:18:56 +00:00
#include <tools/string.hxx>
#include <osl/file.hxx>
#include <osl/process.h>
2000-09-18 15:18:56 +00:00
#include <basic/ttstrhlp.hxx>
#include <basic/process.hxx>
2000-09-18 15:18:56 +00:00
2011-03-28 12:54:35 +02:00
#ifdef WNT
#include <windows.h>
#endif
2000-09-18 15:18:56 +00:00
Process::Process()
: m_nArgumentCount( 0 )
, m_pArgumentList( NULL )
, m_nEnvCount( 0 )
, m_pEnvList( NULL )
, m_aProcessName()
2011-03-18 20:17:29 +00:00
, m_pProcess( NULL )
, bWasGPF( sal_False )
, bHasBeenStarted( sal_False )
2000-09-18 15:18:56 +00:00
{
}
#define FREE_USTRING_LIST( count, list ) \
if ( count && list ) \
{ \
for ( unsigned int i = 0; i < count; ++i ) \
{ \
rtl_uString_release( list[i] ); \
list[i] = NULL; \
} \
delete[] list; \
} \
count = 0; \
list = NULL;
2000-09-18 15:18:56 +00:00
Process::~Process()
{
FREE_USTRING_LIST( m_nArgumentCount, m_pArgumentList );
FREE_USTRING_LIST( m_nEnvCount, m_pEnvList );
if ( m_pProcess )
osl_freeProcessHandle( m_pProcess );
2000-09-18 15:18:56 +00:00
}
sal_Bool Process::ImplIsRunning()
2000-09-18 15:18:56 +00:00
{
if ( m_pProcess && bHasBeenStarted )
2000-09-18 15:18:56 +00:00
{
oslProcessInfo aProcessInfo;
aProcessInfo.Size = sizeof(oslProcessInfo);
osl_getProcessInfo(m_pProcess, osl_Process_EXITCODE, &aProcessInfo );
if ( !(aProcessInfo.Fields & osl_Process_EXITCODE) )
return sal_True;
2000-09-18 15:18:56 +00:00
else
return sal_False;
2000-09-18 15:18:56 +00:00
}
else
return sal_False;
2000-09-18 15:18:56 +00:00
}
long Process::ImplGetExitCode()
{
if ( m_pProcess )
2000-09-18 15:18:56 +00:00
{
oslProcessInfo aProcessInfo;
aProcessInfo.Size = sizeof(oslProcessInfo);
osl_getProcessInfo(m_pProcess, osl_Process_EXITCODE, &aProcessInfo );
if ( !(aProcessInfo.Fields & osl_Process_EXITCODE) )
2000-09-18 15:18:56 +00:00
SbxBase::SetError( SbxERR_NO_ACTIVE_OBJECT );
return aProcessInfo.Code;
}
else
SbxBase::SetError( SbxERR_NO_ACTIVE_OBJECT );
return 0;
}
void Process::SetImage( const String &aAppPath, const String &aAppParams, const Environment *pEnv )
{ // Set image file of executable
if ( m_pProcess && ImplIsRunning() )
2000-09-18 15:18:56 +00:00
SbxBase::SetError( SbxERR_NO_ACTIVE_OBJECT );
else
{
FREE_USTRING_LIST( m_nArgumentCount, m_pArgumentList );
FREE_USTRING_LIST( m_nEnvCount, m_pEnvList );
osl_freeProcessHandle( m_pProcess );
m_pProcess = NULL;
2000-09-18 15:18:56 +00:00
xub_StrLen i, nCount = aAppParams.GetQuotedTokenCount( CUniString("\"\"" ), ' ' );
2001-03-21 14:07:28 +00:00
::rtl::OUString *pParamList = new ::rtl::OUString[nCount];
xub_StrLen nParamCount = 0;
2000-09-18 15:18:56 +00:00
for ( i = 0 ; i < nCount ; i++ )
{
::rtl::OUString aTemp = ::rtl::OUString(aAppParams.GetQuotedToken( i, CUniString("\"\"''" ), ' ' ));
2000-09-18 15:18:56 +00:00
if ( aTemp.getLength() )
{
pParamList[nParamCount] = aTemp;
nParamCount++;
}
2000-09-18 15:18:56 +00:00
}
m_nArgumentCount = nParamCount;
m_pArgumentList = new rtl_uString*[m_nArgumentCount];
for ( i = 0 ; i < m_nArgumentCount ; i++ )
{
m_pArgumentList[i] = NULL;
rtl_uString_assign( &(m_pArgumentList[i]), pParamList[i].pData );
}
delete [] pParamList;
if ( pEnv )
{
m_pEnvList = new rtl_uString*[pEnv->size()];
m_nEnvCount = 0;
Environment::const_iterator aIter = pEnv->begin();
while ( aIter != pEnv->end() )
{
::rtl::OUString aTemp = ::rtl::OUString( (*aIter).first );
aTemp += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "=" ));
aTemp += ::rtl::OUString( (*aIter).second );
m_pEnvList[m_nEnvCount] = NULL;
rtl_uString_assign( &(m_pEnvList[m_nEnvCount]), aTemp.pData );
2010-12-23 21:04:30 +00:00
++m_nEnvCount;
++aIter;
}
}
2001-03-21 14:07:28 +00:00
::rtl::OUString aNormalizedAppPath;
2001-05-10 14:59:46 +00:00
osl::FileBase::getFileURLFromSystemPath( ::rtl::OUString(aAppPath), aNormalizedAppPath );
m_aProcessName = aNormalizedAppPath;;
bHasBeenStarted = sal_False;
2000-09-18 15:18:56 +00:00
}
}
sal_Bool Process::Start()
{ // Start program
sal_Bool bSuccess=sal_False;
if ( m_aProcessName.getLength() && !ImplIsRunning() )
2000-09-18 15:18:56 +00:00
{
bWasGPF = sal_False;
2000-09-18 15:18:56 +00:00
#ifdef WNT
sal_uInt32 nErrorMode = SetErrorMode(SEM_NOOPENFILEERRORBOX | SEM_NOALIGNMENTFAULTEXCEPT | SEM_NOGPFAULTERRORBOX);
try
{
#endif
bSuccess = osl_executeProcess(
m_aProcessName.pData,
m_pArgumentList,
m_nArgumentCount,
osl_Process_SEARCHPATH
/*| osl_Process_DETACHED*/
/*| osl_Process_WAIT*/,
NULL,
NULL,
m_pEnvList,
m_nEnvCount,
&m_pProcess ) == osl_Process_E_None;
2000-09-18 15:18:56 +00:00
#ifdef WNT
}
catch( ... )
{
bWasGPF = sal_True;
// TODO: Output debug message !!
2000-09-18 15:18:56 +00:00
}
nErrorMode = SetErrorMode(nErrorMode);
#endif
bHasBeenStarted = bSuccess;
}
else
SbxBase::SetError( SbxERR_NO_ACTIVE_OBJECT );
return bSuccess;
}
sal_uIntPtr Process::GetExitCode()
{ // ExitCode of program after execution
2000-09-18 15:18:56 +00:00
return ImplGetExitCode();
}
sal_Bool Process::IsRunning()
{
2000-09-18 15:18:56 +00:00
return ImplIsRunning();
}
sal_Bool Process::WasGPF()
{ // Did the process fail?
2000-09-18 15:18:56 +00:00
#ifdef WNT
return ImplGetExitCode() == 3221225477;
#else
return bWasGPF;
#endif
}
sal_Bool Process::Terminate()
{
if ( ImplIsRunning() )
return osl_terminateProcess(m_pProcess) == osl_Process_E_None;
return sal_True;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */