/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * 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. * * 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). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_tools.hxx" #ifdef SCO #define _IOSTREAM_H #endif #ifdef PRECOMPILED #include "first.hxx" #endif #include #include #include "bootstrp/command.hxx" #include #include "bootstrp/appdef.hxx" #ifdef _MSC_VER #pragma warning (push,1) #endif #include #include #include #include #include #include #ifdef _MSC_VER #pragma warning (pop) #endif //#define MH_TEST2 1 // fuers direkte Testen #if defined(WNT) || defined(OS2) #ifdef _MSC_VER #pragma warning (push,1) #endif #include // for _SPAWN #ifdef _MSC_VER #pragma warning (pop) #endif #endif #ifdef UNX #include #include #if ( defined NETBSD ) || defined (FREEBSD) || defined (AIX) \ || defined (HPUX) || defined (MACOSX) #include #else #include #endif #define P_WAIT 1 // erstmal einen dummz #endif #if defined WNT #include #endif #if defined(WNT) || defined(OS2) #define cPathSeperator ';' #endif #ifdef UNX #define cPathSeperator ':' #endif /*****************************************************************************/ CommandLine::CommandLine(BOOL bWrite) /*****************************************************************************/ : bTmpWrite(bWrite) { CommandBuffer = new char [1]; if (CommandBuffer == NULL) { //cout << "Error: nospace" << endl; exit(0); } CommandBuffer[0] = '\0'; nArgc = 0; ppArgv = new char * [1]; ppArgv[0] = NULL; ComShell = new char [128]; char* pTemp = getenv("COMMAND_SHELL"); if(!pTemp) strcpy(ComShell,COMMAND_SHELL); else strcpy(ComShell,pTemp); strcpy(&ComShell[strlen(ComShell)]," -C "); } /*****************************************************************************/ CommandLine::CommandLine(const char *CommandString, BOOL bWrite) /*****************************************************************************/ : bTmpWrite(bWrite) { CommandBuffer = new char [1]; if (CommandBuffer == NULL) { //cout << "Error: nospace" << endl; exit(0); } nArgc = 0; ppArgv = new char * [1]; ppArgv[0] = NULL; ComShell = new char [128]; char* pTemp = getenv("COMMAND_SHELL"); if(!pTemp) strcpy(ComShell,COMMAND_SHELL); else strcpy(ComShell,pTemp); strcpy(&ComShell[strlen(ComShell)]," -C "); BuildCommand(CommandString); } /*****************************************************************************/ CommandLine::CommandLine(const CommandLine& CCommandLine, BOOL bWrite) /*****************************************************************************/ : bTmpWrite(bWrite) { CommandBuffer = new char [1]; if (CommandBuffer == NULL) { //cout << "Error: nospace" << endl; exit(0); } nArgc = 0; ppArgv = new char * [1]; ppArgv[0] = NULL; ComShell = new char [128]; char* pTemp = getenv("COMMAND_SHELL"); if(!pTemp) strcpy(ComShell,COMMAND_SHELL); else strcpy(ComShell,pTemp); strcpy(&ComShell[strlen(ComShell)]," -C "); BuildCommand(CCommandLine.CommandBuffer); } /*****************************************************************************/ CommandLine::~CommandLine() /*****************************************************************************/ { delete [] CommandBuffer; delete [] ComShell; //for (int i = 0; ppArgv[i] != '\0'; i++) { for (int i = 0; ppArgv[i] != 0; i++) { delete [] ppArgv[i]; } delete [] ppArgv; } /*****************************************************************************/ CommandLine& CommandLine::operator=(const CommandLine& CCommandLine) /*****************************************************************************/ { strcpy (CommandBuffer, CCommandLine.CommandBuffer); for (int i = 0; i != nArgc; i++) { delete [] ppArgv[i]; } delete [] ppArgv; ppArgv = new char * [1]; ppArgv[0] = NULL; BuildCommand(CommandBuffer); return *this; } /*****************************************************************************/ CommandLine& CommandLine::operator=(const char *CommandString) /*****************************************************************************/ { strcpy (CommandBuffer, CommandString); for (int i = 0; i != nArgc; i++) { delete [] ppArgv[i]; } delete [] ppArgv; ppArgv = new char * [1]; ppArgv[0] = NULL; BuildCommand(CommandBuffer); return *this; } /*****************************************************************************/ void CommandLine::Print() /*****************************************************************************/ { //cout << "******* start print *******" << endl; //cout << "nArgc = " << nArgc << endl; //cout << "CommandBuffer = " << CommandBuffer << endl; for (int i = 0; ppArgv[i] != NULL; i++) { //cout << "ppArgv[" << i << "] = " << ppArgv[i] << endl; } //cout << "******** end print ********" << endl; } /*****************************************************************************/ void CommandLine::BuildCommand(const char *CommandString) /*****************************************************************************/ { int index = 0, pos=0; char buffer[1024]; char WorkString[1024]; strcpy(WorkString,CommandString); //falls LogWindow -> in tmpfile schreiben if(bTmpWrite) { strcpy(&WorkString[strlen(WorkString)]," >&"); strcpy(&WorkString[strlen(WorkString)],getenv("TMP")); strcpy(&WorkString[strlen(WorkString)],TMPNAME); } // delete old memory and get some new memory for CommandBuffer delete [] CommandBuffer; CommandBuffer = new char [strlen(ComShell)+strlen(WorkString)+1]; if (CommandBuffer == NULL) { //cout << "Error: nospace" << endl; exit(0); } strcpy (CommandBuffer, ComShell); strcpy (&CommandBuffer[strlen(ComShell)], WorkString); CommandString = CommandBuffer; // get the number of tokens Strtokens(CommandString); // delete the space for the old CommandLine for (int i = 0; ppArgv[i] != 0; i++) { delete [] ppArgv[i]; } delete [] ppArgv; /* get space for the new command line */ ppArgv = (char **) new char * [nArgc+1]; if (ppArgv == NULL) { //cout << "Error: no space" << endl; exit(0); } // flush the white space while ( isspace(*CommandString) ) CommandString++; index = 0; // start the loop to build all the individual tokens while (*CommandString != '\0') { pos = 0; // copy the token until white space is found while ( !isspace(*CommandString) && *CommandString != '\0') { buffer[pos++] = *CommandString++; } buffer[pos] = '\0'; // get space for the individual tokens ppArgv[index] = (char *) new char [strlen(buffer)+1]; if (ppArgv[index] == NULL) { //cout << "Error: nospace" << endl; exit(0); } // copy the token strcpy (ppArgv[index++], buffer); // flush while space while ( isspace(*CommandString) ) CommandString++; } // finish by setting the las pointer to NULL ppArgv[nArgc]= NULL; } /*****************************************************************************/ void CommandLine::Strtokens(const char *CommandString) /*****************************************************************************/ { int count = 0; const char *temp; temp = CommandString; /* bypass white space */ while (isspace(*temp)) temp++; for (count=0; *temp != '\0'; count++) { /* continue until white space of string terminator is found */ while ((!isspace(*temp)) && (*temp != '\0')) temp++; /* bypass white space */ while (isspace(*temp)) temp++; } nArgc = count; } /*****************************************************************************/ CCommand::CCommand( ByteString &rString ) /*****************************************************************************/ { rString.SearchAndReplace( '\t', ' ' ); aCommand = rString.GetToken( 0, ' ' ); aCommandLine = Search( "PATH" ); #ifndef UNX aCommandLine += " /c "; #else aCommandLine += " -c "; #endif ByteString sCmd( rString.GetToken( 0, ' ' )); ByteString sParam( rString.Copy( sCmd.Len())); aCommandLine += Search( "PATH", sCmd ); aCommandLine += sParam; ImplInit(); } /*****************************************************************************/ CCommand::CCommand( const char *pChar ) /*****************************************************************************/ { ByteString aString = pChar; aString.SearchAndReplace( '\t', ' ' ); aCommand = aString.GetToken( 0, ' ' ); aCommandLine = Search( "PATH" ); #ifndef UNX aCommandLine += " /c "; #else aCommandLine += " -c "; #endif ByteString rString( pChar ); ByteString sCmd( rString.GetToken( 0, ' ' )); ByteString sParam( rString.Copy( sCmd.Len())); aCommandLine += Search( "PATH", sCmd ); aCommandLine += sParam; ImplInit(); } /*****************************************************************************/ void CCommand::ImplInit() /*****************************************************************************/ { char pTmpStr[255]; size_t *pPtr; char *pChar; int nVoid = sizeof( size_t * ); nArgc = aCommandLine.GetTokenCount(' '); ULONG nLen = aCommandLine.Len(); ppArgv = (char **) new char[ (ULONG)(nLen + nVoid * (nArgc +2) + nArgc ) ]; pChar = (char *) ppArgv + ( (1+nArgc) * nVoid ); pPtr = (size_t *) ppArgv; for ( xub_StrLen i=0; i