Passes parameters correctly for install.Execute() and file.Execute().

Fixes Bug #104152.
This commit is contained in:
curt%netscape.com 2001-11-26 20:46:41 +00:00
Родитель b350a4d16e
Коммит a7c5ba2a04
3 изменённых файлов: 147 добавлений и 40 удалений

Просмотреть файл

@ -43,6 +43,100 @@ static NS_DEFINE_CID(kIProcessCID, NS_PROCESS_CID);
MOZ_DECL_CTOR_COUNTER(nsInstallExecute)
// Chop the command-line up in place into an array of arguments
// by replacing spaces in the command-line string with null
// terminators and pointing the array elements to the
// characters following the null terminators.
//
// aArgsString is a string containing the complete command-line.
// aArgs points to an array which will be filled with the
// individual arguments from the command-line.
// aArgsAvailable is the size of aArgs, i.e. the maximum number of
// individual command-line arguments which can be stored in the array.
//
// Returns the count of the number of command-line arguments actually
// stored into the array aArgs or -1 if it fails.
PRInt32 xpi_PrepareProcessArguments(const nsString& aArgsString, char **aArgs, PRInt32 aArgsAvailable)
{
int argc;
char *c;
char *p; // look ahead
PRBool quoted = PR_FALSE;
aArgs[0] = ToNewCString(aArgsString);
if (!aArgs[0])
return -1;
// Strip leading spaces from command-line string.
argc = 0;
c = aArgs[argc];
while (*c == ' ') ++c;
aArgs[argc++] = c;
for (; *c && argc < aArgsAvailable; ++c)
{
switch(*c) {
// Only handle escaped double quote and escaped backslash.
case '\\':
// See if next character is backslash or dquote
if ( *(c+1) == '\\' || *(c+1) == '\"' )
{
// Eat escape character (i.e., backslash) by
// shifting all characters to the left one.
for (p=c; *p != 0; ++p)
*p = *(p+1);
}
break;
case '\"':
*c = 0; // terminate current arg
if (quoted)
{
p = c+1; // look ahead
while (*p == ' ')
++p; // eat spaces
if (*p)
aArgs[argc++] = p; //not at end, set next arg
c = p-1;
quoted = PR_FALSE;
}
else
{
quoted = PR_TRUE;
if (aArgs[argc-1] == c)
// Quote is at beginning so
// start current argument after the quote.
aArgs[argc-1] = c+1;
else
// Quote is embedded so
// start a new argument after the quote.
aArgs[argc++] = c+1;
}
break;
case ' ':
if (!quoted)
{
*c = 0; // terminate current arg
p = c+1; // look ahead
while (*p == ' ')
++p; // eat spaces
if (*p)
aArgs[argc++] = p; //not at end, set next arg
c = p-1;
}
break;
default:
break; // nothing to do
}
}
return argc;
}
nsInstallExecute:: nsInstallExecute( nsInstall* inInstall,
const nsString& inJarLocation,
const nsString& inArgs,
@ -85,24 +179,27 @@ PRInt32 nsInstallExecute::Prepare()
PRInt32 nsInstallExecute::Complete()
{
#define ARG_SLOTS 256
PRInt32 result = NS_OK;
PRInt32 rv = nsInstall::SUCCESS;
char *cArgs[1];
char *cArgs[ARG_SLOTS];
int argcount = 0;
if (mExecutableFile == nsnull)
return nsInstall::INVALID_ARGUMENTS;
nsCOMPtr<nsIProcess> process = do_CreateInstance(kIProcessCID);
cArgs[0] = ToNewCString(mArgs);
if(cArgs[0] == nsnull)
return nsInstall::OUT_OF_MEMORY;
if (!mArgs.IsEmpty())
argcount = xpi_PrepareProcessArguments(mArgs, cArgs, ARG_SLOTS);
if (argcount >= 0)
{
result = process->Init(mExecutableFile);
if (NS_SUCCEEDED(result))
{
result = process->Run(mBlocking, (const char**)&cArgs, 1, mPid);
result = process->Run(mBlocking, (const char**)&cArgs, argcount, mPid);
if (NS_SUCCEEDED(result))
{
if (mBlocking)
@ -124,6 +221,9 @@ PRInt32 nsInstallExecute::Complete()
if(cArgs[0])
Recycle(cArgs[0]);
}
else
rv = nsInstall::UNEXPECTED_ERROR;
return rv;
}

Просмотреть файл

@ -35,6 +35,8 @@
#include "nsInstall.h"
#include "nsIDOMInstallVersion.h"
PRInt32 xpi_PrepareProcessArguments(const nsString& aArgsString, char **aArgs, PRInt32 aArgsAvailable);
class nsInstallExecute : public nsInstallObject
{

Просмотреть файл

@ -42,6 +42,7 @@
#include "ScheduledTasks.h"
#include "nsProcess.h"
#include "nsReadableUtils.h"
#include "nsInstallExecute.h"
#ifdef _WINDOWS
#include <windows.h>
@ -988,26 +989,30 @@ nsInstallFileOpItem::NativeFileOpFileExecuteComplete()
{
//mTarget->Execute(*mParams);
//mTarget->Spawn(NS_LossyConvertUCS2toASCII(*mParams).get(), 0);
#define ARG_SLOTS 256
char *cParams[1];
char *cParams[ARG_SLOTS];
int argcount = -1;
nsresult rv;
cParams[0] = nsnull;
if (mTarget == nsnull)
return nsInstall::INVALID_ARGUMENTS;
nsCOMPtr<nsIProcess> process = do_CreateInstance(kIProcessCID);
cParams[0] = nsnull;
cParams[0] = ToNewCString(*mParams);
argcount = xpi_PrepareProcessArguments(*mParams, cParams, ARG_SLOTS);
if(cParams[0] == nsnull)
return nsInstall::OUT_OF_MEMORY;
nsresult rv = process->Init(mTarget);
if (NS_FAILED(rv))
if (argcount >= 0)
{
if(cParams[0])
Recycle(cParams[0]);
return rv;
}
rv = process->Init(mTarget);
rv = process->Run(mBlocking, (const char **)&cParams[0], 1, nsnull);
if (NS_SUCCEEDED(rv))
rv = process->Run(mBlocking, (const char **)&cParams, argcount, nsnull);
}
else
rv = nsInstall::UNEXPECTED_ERROR;
if(cParams[0])
Recycle(cParams[0]);