2024 lines
53 KiB
C++
2024 lines
53 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* 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.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#include "jsapi.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsJSFile.h"
|
|
#include "nscore.h"
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsString.h"
|
|
#include "nsInstall.h"
|
|
#include "nsInstallFile.h"
|
|
#include "nsInstallTrigger.h"
|
|
|
|
#include "nsIDOMInstallVersion.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef _WINDOWS
|
|
#include "nsJSWinReg.h"
|
|
#include "nsJSWinProfile.h"
|
|
|
|
extern JSClass WinRegClass;
|
|
extern JSClass WinProfileClass;
|
|
#endif
|
|
|
|
#include "nsJSFileSpecObj.h"
|
|
extern JSClass FileSpecObjectClass;
|
|
|
|
extern JSClass FileOpClass;
|
|
|
|
//
|
|
// Install property ids
|
|
//
|
|
enum Install_slots
|
|
{
|
|
INSTALL_USERPACKAGENAME = -1,
|
|
INSTALL_REGPACKAGENAME = -2,
|
|
INSTALL_JARFILE = -3,
|
|
INSTALL_ARCHIVE = -4,
|
|
INSTALL_ARGUMENTS = -5,
|
|
INSTALL_URL = -6,
|
|
INSTALL_FLAGS = -7,
|
|
INSTALL_STATUSSENT = -8,
|
|
INSTALL_INSTALL = -9,
|
|
INSTALL_FILEOP = -10,
|
|
INSTALL_INSTALLED_FILES = -11
|
|
};
|
|
|
|
// prototype for fileOp object
|
|
JSObject *gFileOpProto = nsnull;
|
|
|
|
// prototype for filespec objects
|
|
JSObject *gFileSpecProto = nsnull;
|
|
|
|
|
|
JSObject *gFileOpObject = nsnull;
|
|
/***********************************************************************/
|
|
//
|
|
// Install Properties Getter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
GetInstallProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsInstall *a = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (JSVAL_IS_INT(id))
|
|
{
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case INSTALL_USERPACKAGENAME:
|
|
{
|
|
nsAutoString prop;
|
|
if (NS_OK == a->GetUserPackageName(prop))
|
|
{
|
|
*vp = STRING_TO_JSVAL( JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*, prop.GetUnicode()), prop.Length()) );
|
|
}
|
|
else
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case INSTALL_REGPACKAGENAME:
|
|
{
|
|
nsAutoString prop;
|
|
if (NS_OK == a->GetRegPackageName(prop))
|
|
{
|
|
*vp = STRING_TO_JSVAL( JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*, prop.GetUnicode()), prop.Length()) );
|
|
}
|
|
else
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case INSTALL_ARCHIVE:
|
|
case INSTALL_JARFILE:
|
|
{
|
|
nsInstallFolder* folder = new nsInstallFolder();
|
|
if ( folder )
|
|
{
|
|
folder->Init(a->GetJarFileLocation());
|
|
JSObject* fileSpecObject =
|
|
JS_NewObject(cx, &FileSpecObjectClass, gFileSpecProto, NULL);
|
|
|
|
if (fileSpecObject)
|
|
{
|
|
JS_SetPrivate(cx, fileSpecObject, folder);
|
|
*vp = OBJECT_TO_JSVAL(fileSpecObject);
|
|
}
|
|
else
|
|
delete folder;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case INSTALL_ARGUMENTS:
|
|
{
|
|
nsAutoString prop;
|
|
|
|
a->GetInstallArguments(prop);
|
|
*vp = STRING_TO_JSVAL( JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*, prop.GetUnicode()), prop.Length()) );
|
|
|
|
break;
|
|
}
|
|
|
|
case INSTALL_URL:
|
|
{
|
|
nsString prop;
|
|
|
|
a->GetInstallURL(prop);
|
|
*vp = STRING_TO_JSVAL( JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*, prop.GetUnicode()), prop.Length()) );
|
|
|
|
break;
|
|
}
|
|
|
|
case INSTALL_FLAGS:
|
|
*vp = INT_TO_JSVAL( a->GetInstallFlags() );
|
|
break;
|
|
|
|
case INSTALL_STATUSSENT:
|
|
*vp = BOOLEAN_TO_JSVAL( a->GetStatusSent() );
|
|
break;
|
|
|
|
case INSTALL_INSTALL:
|
|
*vp = OBJECT_TO_JSVAL(obj);
|
|
break;
|
|
|
|
case INSTALL_FILEOP:
|
|
*vp = OBJECT_TO_JSVAL(gFileOpObject);
|
|
break;
|
|
|
|
case INSTALL_INSTALLED_FILES:
|
|
*vp = BOOLEAN_TO_JSVAL( a->InInstallTransaction() );
|
|
break;
|
|
|
|
default:
|
|
return JS_TRUE;
|
|
}
|
|
}
|
|
else {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
return PR_TRUE;
|
|
}
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// Install Properties Setter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
SetInstallProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsInstall *a = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (JSVAL_IS_INT(id)) {
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case 0:
|
|
default:
|
|
return JS_TRUE;
|
|
}
|
|
}
|
|
else {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
return PR_TRUE;
|
|
}
|
|
|
|
|
|
static void PR_CALLBACK FinalizeInstall(JSContext *cx, JSObject *obj)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
delete nativeThis;
|
|
}
|
|
|
|
/***********************************************************************/
|
|
/* JS Utilities */
|
|
/***********************************************************************/
|
|
void ConvertJSValToStr(nsString& aString,
|
|
JSContext* aContext,
|
|
jsval aValue)
|
|
{
|
|
JSString *jsstring;
|
|
|
|
if ( !JSVAL_IS_NULL(aValue) &&
|
|
(jsstring = JS_ValueToString(aContext, aValue)) != nsnull)
|
|
{
|
|
aString.Assign(NS_REINTERPRET_CAST(const PRUnichar*, JS_GetStringChars(jsstring)));
|
|
}
|
|
else
|
|
{
|
|
aString.Truncate();
|
|
}
|
|
}
|
|
|
|
void ConvertStrToJSVal(const nsString& aProp,
|
|
JSContext* aContext,
|
|
jsval* aReturn)
|
|
{
|
|
JSString *jsstring = JS_NewUCStringCopyN(aContext, NS_REINTERPRET_CAST(const jschar*, aProp.GetUnicode()), aProp.Length());
|
|
// set the return value
|
|
*aReturn = STRING_TO_JSVAL(jsstring);
|
|
}
|
|
|
|
PRBool ConvertJSValToBool(PRBool* aProp,
|
|
JSContext* aContext,
|
|
jsval aValue)
|
|
{
|
|
JSBool temp;
|
|
if(JSVAL_IS_BOOLEAN(aValue) && JS_ValueToBoolean(aContext, aValue, &temp))
|
|
{
|
|
*aProp = (PRBool)temp;
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(aContext, "Parameter must be a boolean");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
PRBool ConvertJSValToObj(nsISupports** aSupports,
|
|
REFNSIID aIID,
|
|
const nsString& aTypeName,
|
|
JSContext* aContext,
|
|
jsval aValue)
|
|
{
|
|
if (JSVAL_IS_NULL(aValue)) {
|
|
*aSupports = nsnull;
|
|
}
|
|
else if (JSVAL_IS_OBJECT(aValue)) {
|
|
JSObject* jsobj = JSVAL_TO_OBJECT(aValue);
|
|
JSClass* jsclass = JS_GetClass(aContext, jsobj);
|
|
if ((nsnull != jsclass) && (jsclass->flags & JSCLASS_HAS_PRIVATE)) {
|
|
nsISupports *supports = (nsISupports *)JS_GetPrivate(aContext, jsobj);
|
|
if (NS_OK != supports->QueryInterface(aIID, (void **)aSupports)) {
|
|
char buf[128];
|
|
char typeName[128];
|
|
aTypeName.ToCString(typeName, sizeof(typeName));
|
|
sprintf(buf, "Parameter must of type %s", typeName);
|
|
JS_ReportError(aContext, buf);
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else {
|
|
JS_ReportError(aContext, "Parameter isn't an object");
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else {
|
|
JS_ReportError(aContext, "Parameter must be an object");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
void ConvertJSvalToVersionString(nsString& versionString, JSContext* cx, jsval argument)
|
|
{
|
|
versionString.SetLength(0);
|
|
|
|
if( JSVAL_IS_OBJECT(argument) )
|
|
{
|
|
if(!JSVAL_IS_NULL(argument))
|
|
{
|
|
JSObject* jsobj = JSVAL_TO_OBJECT(argument);
|
|
JSClass* jsclass = JS_GetClass(cx, jsobj);
|
|
|
|
if ((nsnull != jsclass) && (jsclass->flags & JSCLASS_HAS_PRIVATE))
|
|
{
|
|
nsIDOMInstallVersion* version = (nsIDOMInstallVersion*)JS_GetPrivate(cx, jsobj);
|
|
version->ToString(versionString);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ConvertJSValToStr(versionString, cx, argument);
|
|
}
|
|
}
|
|
/***********************************************************************/
|
|
/***********************************************************************/
|
|
|
|
//
|
|
// Native method AbortInstall
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallAbortInstall(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 b0;
|
|
|
|
*rval = JSVAL_VOID;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int AbortInstall(Number aErrorNumber);
|
|
if(JSVAL_IS_NUMBER(argv[0]))
|
|
{
|
|
b0 = JSVAL_TO_INT(argv[0]);
|
|
|
|
if(NS_OK != nativeThis->AbortInstall(b0))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else
|
|
JS_ReportError(cx, "Parameter must be a number");
|
|
|
|
*rval = JSVAL_VOID;
|
|
}
|
|
else if(argc == 0)
|
|
{
|
|
// public int AbortInstall(void);
|
|
|
|
if(NS_OK != nativeThis->AbortInstall(nsInstall::INSTALL_CANCELLED))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = JSVAL_VOID;
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function AbortInstall requires 0 or 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method AddDirectory
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallAddDirectory(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
nsAutoString b2;
|
|
nsAutoString b3;
|
|
nsAutoString b4;
|
|
JSObject *jsObj;
|
|
nsInstallFolder *folder;
|
|
PRInt32 flags;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (argc == 1)
|
|
{
|
|
// public int AddDirectory (String jarSourcePath)
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->AddDirectory(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if (argc == 4)
|
|
{
|
|
// public int AddDirectory ( String registryName,
|
|
// String jarSourcePath,
|
|
// String localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b3, cx, argv[3]);
|
|
if (argv[2] == JSVAL_NULL || !JSVAL_IS_OBJECT(argv[2])) //argv[2] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[2]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddDirectory(b0, b1, folder, b3, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if (argc == 5)
|
|
{
|
|
// public int AddDirectory ( String registryName,
|
|
// String version, --OR-- VersionInfo version
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSvalToVersionString(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[2]);
|
|
ConvertJSValToStr(b4, cx, argv[4]);
|
|
|
|
if ((argv[3] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[3])) //argv[3] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[3]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddDirectory(b0, b1, b2, folder, b4, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
|
|
}
|
|
else if (argc == 6)
|
|
{
|
|
// public int AddDirectory ( String registryName,
|
|
// String version, --OR-- VersionInfo version,
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath,
|
|
// Int flags);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSvalToVersionString(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[2]);
|
|
ConvertJSValToStr(b4, cx, argv[4]);
|
|
|
|
if ((argv[3] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[3])) //argv[3] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[3]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(JSVAL_IS_INT(argv[5]))
|
|
flags = JSVAL_TO_INT(argv[5]);
|
|
else
|
|
flags = 0;
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddDirectory(b0, b1, b2, folder, b4, flags, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Install.AddDirectory() parameters error");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method AddSubcomponent
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallAddSubcomponent(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
nsAutoString b2;
|
|
nsAutoString b3;
|
|
nsAutoString b4;
|
|
JSObject* jsObj;
|
|
nsInstallFolder* folder;
|
|
PRInt32 flags = 0;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 6)
|
|
{
|
|
// public int AddSubcomponent ( String registryName,
|
|
// String version, --OR-- VersionInfo version,
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath,
|
|
// Int flags);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSvalToVersionString(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[2]);
|
|
ConvertJSValToStr(b4, cx, argv[4]);
|
|
|
|
if ((argv[3] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[3])) //argv[3] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[3]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(JSVAL_IS_INT(argv[5]))
|
|
flags = JSVAL_TO_INT(argv[5]);
|
|
else
|
|
flags = 0;
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddSubcomponent(b0, b1, b2, folder, b4, flags, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if(argc >= 5)
|
|
{
|
|
// public int AddSubcomponent ( String registryName,
|
|
// String version, --OR-- VersionInfo version
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSvalToVersionString(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[2]);
|
|
ConvertJSValToStr(b4, cx, argv[4]);
|
|
|
|
if ((argv[3] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[3])) //argv[3] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[3]);
|
|
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddSubcomponent(b0, b1, b2, folder, b4, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if(argc >= 4)
|
|
{
|
|
// public int AddSubcomponent ( String registryName,
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b3, cx, argv[3]);
|
|
|
|
if ((argv[2] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[2])) //argv[2] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[2]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->AddSubcomponent(b0, b1, folder, b3, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if(argc >= 1)
|
|
{
|
|
// public int AddSubcomponent ( String jarSourcePath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->AddSubcomponent(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function AddSubcomponent requires 6 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method DeleteComponent
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallDeleteComponent(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int DeleteComponent ( String registryName);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->DeleteComponent(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function DeleteComponent requires 1 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method DeleteFile
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallDeleteFile(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
JSObject* jsObj;
|
|
nsAutoString b1;
|
|
nsInstallFolder* folder;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 2)
|
|
{
|
|
// public int DeleteFile ( Object folder,
|
|
// String relativeFileName);
|
|
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
if ((argv[0] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[0])) //argv[0] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[0]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->DeleteFile(folder, b1, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function DeleteFile requires 2 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method DiskSpaceAvailable
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallDiskSpaceAvailable(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt64 nativeRet;
|
|
nsAutoString b0;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int DiskSpaceAvailable ( Object localDirSpec);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->DiskSpaceAvailable(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
double d;
|
|
|
|
LL_L2D(d, nativeRet);
|
|
JS_NewDoubleValue( cx, d, rval );
|
|
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function DiskSpaceAvailable requires 1 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method Execute
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallExecute(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 2)
|
|
{
|
|
// public int Execute ( String jarSourcePath,
|
|
// String args);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
|
|
if(NS_OK != nativeThis->Execute(b0, b1, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if(argc >= 1)
|
|
{
|
|
// public int Execute ( String jarSourcePath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->Execute(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function Execute requires 2 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method FinalizeInstall
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallFinalizeInstall(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 0)
|
|
{
|
|
// public int FinalizeInstall (void);
|
|
|
|
if(NS_OK != nativeThis->FinalizeInstall(&nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function FinalizeInstall requires 0 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method Gestalt
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGestalt(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int Gestalt ( String selector,
|
|
// long *response);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->Gestalt(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function Gestalt requires 1 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method GetComponentFolder
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGetComponentFolder(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsInstallFolder* folder;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 2)
|
|
{
|
|
// public int GetComponentFolder ( String registryName,
|
|
// String subDirectory);
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
|
|
if(NS_OK != nativeThis->GetComponentFolder(b0, b1, &folder))
|
|
{
|
|
// error!
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else if(argc >= 1)
|
|
{
|
|
// public int GetComponentFolder ( String registryName);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->GetComponentFolder(b0, &folder))
|
|
{
|
|
// error!
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function GetComponentFolder requires 2 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
// if we couldn't find one return null rval from here
|
|
if(nsnull == folder)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
/* Now create the new JSObject */
|
|
JSObject* fileSpecObject;
|
|
|
|
fileSpecObject = JS_NewObject(cx, &FileSpecObjectClass, gFileSpecProto, NULL);
|
|
if (fileSpecObject == NULL)
|
|
return JS_FALSE;
|
|
|
|
JS_SetPrivate(cx, fileSpecObject, folder);
|
|
if (fileSpecObject == NULL)
|
|
return JS_FALSE;
|
|
|
|
*rval = OBJECT_TO_JSVAL(fileSpecObject);
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method GetFolder
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGetFolder(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
JSObject *jsObj;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
nsInstallFolder *folder = nsnull;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 2)
|
|
{
|
|
ConvertJSValToStr(b1, cx, argv[1]); // we know that the second param must be a string
|
|
if(JSVAL_IS_STRING(argv[0])) // check if the first argument is a string
|
|
{
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
if(NS_OK != nativeThis->GetFolder(b0, b1, &folder))
|
|
return JS_TRUE;
|
|
}
|
|
else /* it must be an object */
|
|
{
|
|
|
|
if ((argv[0] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[0])) //argv[0] MUST be a jsval
|
|
{
|
|
*rval = JSVAL_NULL;
|
|
JS_ReportError(cx, "GetFolder:Invalid Parameter");
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[0]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = JSVAL_NULL;
|
|
JS_ReportError(cx, "GetFolder:Invalid Parameter");
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
if (!folder)
|
|
{
|
|
JS_ReportError(cx, "GetFolder:Invalid Parameter");
|
|
return JS_FALSE;
|
|
}
|
|
else if(NS_OK != nativeThis->GetFolder(*folder, b1, &folder))
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(nsnull == folder)
|
|
return JS_TRUE;
|
|
}
|
|
else if(argc >= 1)
|
|
{
|
|
// public int GetFolder ( String folderName);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->GetFolder(b0, &folder))
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(nsnull == folder)
|
|
return JS_TRUE;
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function GetFolder requires at least 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
if ( folder )
|
|
{
|
|
/* Now create the new JSObject */
|
|
JSObject* fileSpecObject;
|
|
|
|
fileSpecObject = JS_NewObject(cx, &FileSpecObjectClass, gFileSpecProto, NULL);
|
|
if (fileSpecObject == NULL)
|
|
return JS_FALSE;
|
|
|
|
JS_SetPrivate(cx, fileSpecObject, folder);
|
|
if (fileSpecObject == NULL)
|
|
return JS_FALSE;
|
|
|
|
*rval = OBJECT_TO_JSVAL(fileSpecObject);
|
|
}
|
|
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
|
|
//
|
|
// Native method GetLastError
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGetLastError(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 0)
|
|
{
|
|
// public int GetLastError (void);
|
|
|
|
if(NS_OK != nativeThis->GetLastError(&nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function GetLastError requires 0 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method GetWinProfile
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGetWinProfile(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
*rval = JSVAL_NULL;
|
|
|
|
#ifdef _WINDOWS
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if(nsnull == nativeThis)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 2)
|
|
{
|
|
// public int GetWinProfile (Object folder,
|
|
// String file);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
|
|
if(NS_OK != nativeThis->GetWinProfile(b0, b1, cx, &WinProfileClass, rval))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function GetWinProfile requires 0 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
#endif
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method GetWinRegistry
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallGetWinRegistry(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
*rval = JSVAL_NULL;
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if(nsnull == nativeThis)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 0)
|
|
{
|
|
// public int GetWinRegistry (void);
|
|
if(NS_OK != nativeThis->GetWinRegistry(cx, &WinRegClass, rval))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function GetWinRegistry requires 0 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
#endif
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method LoadResources
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallLoadResources(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (argc >= 1)
|
|
{
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
if (NS_OK != nativeThis->LoadResources(cx, b0, rval))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function LoadResources requires 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method Patch
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallPatch(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
nsAutoString b2;
|
|
nsAutoString b3;
|
|
nsAutoString b4;
|
|
|
|
JSObject *jsObj;
|
|
|
|
nsInstallFolder *folder = nsnull;
|
|
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 5)
|
|
{
|
|
// public int Patch (String registryName,
|
|
// String version, --OR-- VersionInfo version,
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSvalToVersionString(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[2]);
|
|
ConvertJSValToStr(b3, cx, argv[4]);
|
|
|
|
if ((argv[3] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[3])) //argv[3] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[3]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->Patch(b0, b1, b2, folder, b3, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else if(argc >= 4)
|
|
{
|
|
// public int Patch (String registryName,
|
|
// String jarSourcePath,
|
|
// Object localDirSpec,
|
|
// String relativeLocalPath);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
ConvertJSValToStr(b2, cx, argv[3]);
|
|
|
|
if ((argv[2] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[2])) //argv[2] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[2]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
|
|
if(NS_OK != nativeThis->Patch(b0, b1, folder, b2, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function Patch requires 5 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
//
|
|
// Native method RegisterChrome
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallRegisterChrome(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
if (nsnull == nativeThis) {
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
// Now validate the arguments
|
|
uint32 chromeType = 0;
|
|
nsIFile* chrome = nsnull;
|
|
if ( argc >=2 )
|
|
{
|
|
JS_ValueToECMAUint32(cx, argv[0], &chromeType);
|
|
|
|
if (argv[1] != JSVAL_NULL && JSVAL_IS_OBJECT(argv[1]))
|
|
{
|
|
JSObject* jsObj = JSVAL_TO_OBJECT(argv[1]);
|
|
if (JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
nsInstallFolder* folder = (nsInstallFolder*)JS_GetPrivate(cx,jsObj);
|
|
if (folder)
|
|
{
|
|
chrome = folder->GetFileSpec();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
nsAutoString path;
|
|
if (argc >= 3) {
|
|
ConvertJSValToStr(path, cx, argv[2]);
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeThis->RegisterChrome(chrome, chromeType, NS_ConvertUCS2toUTF8(path)));
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method ResetError
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallResetError(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
|
|
*rval = JSVAL_VOID;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nativeThis)
|
|
nativeThis->ResetError();
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method SetPackageFolder
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallSetPackageFolder(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
JSObject *jsObj;
|
|
nsInstallFolder *folder;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int SetPackageFolder (Object folder);
|
|
|
|
if ((argv[0] == JSVAL_NULL) || !JSVAL_IS_OBJECT(argv[0])) //argv[0] MUST be a jsval
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
jsObj = JSVAL_TO_OBJECT(argv[0]);
|
|
if (!JS_InstanceOf(cx, jsObj, &FileSpecObjectClass, nsnull))
|
|
{
|
|
*rval = INT_TO_JSVAL(nsInstall::INVALID_ARGUMENTS);
|
|
nativeThis->SaveError(nsInstall::INVALID_ARGUMENTS);
|
|
return JS_TRUE;
|
|
}
|
|
|
|
folder = (nsInstallFolder*)JS_GetPrivate(cx, jsObj);
|
|
if (!folder)
|
|
{
|
|
JS_ReportError(cx, "setPackageFolder:Invalid Parameter");
|
|
return JS_FALSE;
|
|
}
|
|
else
|
|
if(NS_OK != nativeThis->SetPackageFolder(*folder))
|
|
return JS_FALSE;
|
|
|
|
*rval = JSVAL_ZERO;
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function SetPackageFolder requires 1 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
//
|
|
// Native method StartInstall
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallStartInstall(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
nsAutoString b1;
|
|
nsAutoString b2;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc == 3 || argc == 4)
|
|
{
|
|
// public int StartInstall (String userPackageName,
|
|
// String package,
|
|
// String version); --OR-- VersionInfo version
|
|
// flags?
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
ConvertJSValToStr(b1, cx, argv[1]);
|
|
ConvertJSvalToVersionString(b2, cx, argv[2]);
|
|
|
|
if(NS_OK != nativeThis->StartInstall(b0, b1, b2, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function StartInstall requires 3 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method Uninstall
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallUninstall(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
PRInt32 nativeRet;
|
|
nsAutoString b0;
|
|
|
|
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == nativeThis) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int Uninstall (String packageName);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
if(NS_OK != nativeThis->Uninstall(b0, &nativeRet))
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function Uninstall requires 1 parameters");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
/*START HACK FOR DEBUGGING UNTIL ALERTS WORK*/
|
|
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallTRACE(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsAutoString b0;
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
char *tempStr;
|
|
tempStr = b0.ToNewCString();
|
|
printf("Install:\t%s\n", tempStr);
|
|
|
|
Recycle(tempStr);
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
/*END HACK FOR DEBUGGING UNTIL ALERTS WORK*/
|
|
|
|
|
|
//
|
|
// Native method LogComment
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallLogComment(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if(nsnull == nativeThis)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc >= 1)
|
|
{
|
|
// public int LogComment (String aComment);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
|
|
nativeThis->LogComment(b0);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function LogComment requires 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// Native method InstallAlert
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallAlert(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if(nsnull == nativeThis)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc == 1)
|
|
{
|
|
// public int InstallAlert (String aComment);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
nativeThis->Alert(b0);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function LogComment requires 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
//
|
|
// Native method InstallConfirm
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
InstallConfirm(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
nsInstall *nativeThis = (nsInstall*)JS_GetPrivate(cx, obj);
|
|
nsAutoString b0;
|
|
PRInt32 nativeRet;
|
|
|
|
*rval = JSVAL_NULL;
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if(nsnull == nativeThis)
|
|
{
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if(argc == 1)
|
|
{
|
|
// public int InstallConfirm (String aComment);
|
|
|
|
ConvertJSValToStr(b0, cx, argv[0]);
|
|
nativeThis->Confirm(b0, &nativeRet);
|
|
|
|
*rval = INT_TO_JSVAL(nativeRet);
|
|
}
|
|
else
|
|
{
|
|
JS_ReportError(cx, "Function LogComment requires 1 parameter");
|
|
return JS_FALSE;
|
|
}
|
|
|
|
return JS_TRUE;
|
|
}
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// class for Install
|
|
//
|
|
JSClass InstallClass = {
|
|
"Install",
|
|
JSCLASS_HAS_PRIVATE,
|
|
JS_PropertyStub,
|
|
JS_PropertyStub,
|
|
GetInstallProperty,
|
|
SetInstallProperty,
|
|
JS_EnumerateStub,
|
|
JS_ResolveStub,
|
|
JS_ConvertStub,
|
|
FinalizeInstall
|
|
};
|
|
|
|
//
|
|
// Install class properties
|
|
//
|
|
static JSPropertySpec InstallProperties[] =
|
|
{
|
|
{"userPackageName", INSTALL_USERPACKAGENAME, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"regPackageName", INSTALL_REGPACKAGENAME, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"jarfile", INSTALL_JARFILE, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"archive", INSTALL_ARCHIVE, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"arguments", INSTALL_ARGUMENTS, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"url", INSTALL_URL, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"flags", INSTALL_FLAGS, JSPROP_ENUMERATE | JSPROP_READONLY},
|
|
{"_statusSent", INSTALL_STATUSSENT, JSPROP_READONLY},
|
|
{"Install", INSTALL_INSTALL, JSPROP_READONLY},
|
|
{"File", INSTALL_FILEOP, JSPROP_READONLY},
|
|
{"_installedFiles", INSTALL_INSTALLED_FILES, JSPROP_READONLY},
|
|
{0}
|
|
};
|
|
|
|
|
|
static JSConstDoubleSpec install_constants[] =
|
|
{
|
|
{ nsInstall::BAD_PACKAGE_NAME, "BAD_PACKAGE_NAME" },
|
|
{ nsInstall::UNEXPECTED_ERROR, "UNEXPECTED_ERROR" },
|
|
{ nsInstall::ACCESS_DENIED, "ACCESS_DENIED" },
|
|
|
|
{ nsInstall::NO_INSTALL_SCRIPT, "NO_INSTALL_SCRIPT" },
|
|
|
|
|
|
{ nsInstall::CANT_READ_ARCHIVE, "CANT_READ_ARCHIVE" },
|
|
{ nsInstall::INVALID_ARGUMENTS, "INVALID_ARGUMENTS" },
|
|
|
|
{ nsInstall::USER_CANCELLED, "USER_CANCELLED" },
|
|
{ nsInstall::INSTALL_NOT_STARTED, "INSTALL_NOT_STARTED" },
|
|
|
|
{ nsInstall::NO_SUCH_COMPONENT, "NO_SUCH_COMPONENT" },
|
|
{ nsInstall::DOES_NOT_EXIST, "DOES_NOT_EXIST" },
|
|
{ nsInstall::READ_ONLY, "READ_ONLY" },
|
|
{ nsInstall::IS_DIRECTORY, "IS_DIRECTORY" },
|
|
{ nsInstall::NETWORK_FILE_IS_IN_USE, "NETWORK_FILE_IS_IN_USE" },
|
|
{ nsInstall::APPLE_SINGLE_ERR, "APPLE_SINGLE_ERR" },
|
|
|
|
{ nsInstall::PATCH_BAD_DIFF, "PATCH_BAD_DIFF" },
|
|
{ nsInstall::PATCH_BAD_CHECKSUM_TARGET, "PATCH_BAD_CHECKSUM_TARGET" },
|
|
{ nsInstall::PATCH_BAD_CHECKSUM_RESULT, "PATCH_BAD_CHECKSUM_RESULT" },
|
|
{ nsInstall::UNINSTALL_FAILED, "UNINSTALL_FAILED" },
|
|
{ nsInstall::PACKAGE_FOLDER_NOT_SET, "PACKAGE_FOLDER_NOT_SET" },
|
|
{ nsInstall::EXTRACTION_FAILED, "EXTRACTION_FAILED" },
|
|
{ nsInstall::FILENAME_ALREADY_USED, "FILENAME_ALREADY_USED" },
|
|
{ nsInstall::INSTALL_CANCELLED, "INSTALL_CANCELLED" },
|
|
{ nsInstall::DOWNLOAD_ERROR, "DOWNLOAD_ERROR" },
|
|
{ nsInstall::SCRIPT_ERROR, "SCRIPT_ERROR" },
|
|
{ nsInstall::ALREADY_EXISTS, "ALREADY_EXISTS" },
|
|
{ nsInstall::IS_FILE, "IS_FILE" },
|
|
{ nsInstall::SOURCE_DOES_NOT_EXIST, "SOURCE_DOES_NOT_EXIST" },
|
|
{ nsInstall::SOURCE_IS_DIRECTORY, "SOURCE_IS_DIRECTORY" },
|
|
{ nsInstall::SOURCE_IS_FILE, "SOURCE_IS_FILE" },
|
|
{ nsInstall::INSUFFICIENT_DISK_SPACE, "INSUFFICIENT_DISK_SPACE" },
|
|
|
|
{ nsInstall::UNABLE_TO_LOCATE_LIB_FUNCTION, "UNABLE_TO_LOCATE_LIB_FUNCTION"},
|
|
{ nsInstall::UNABLE_TO_LOAD_LIBRARY, "UNABLE_TO_LOAD_LIBRARY" },
|
|
{ nsInstall::CHROME_REGISTRY_ERROR, "CHROME_REGISTRY_ERROR" },
|
|
{ nsInstall::MALFORMED_INSTALL, "MALFORMED_INSTALL" },
|
|
|
|
{ nsInstall::GESTALT_UNKNOWN_ERR, "GESTALT_UNKNOWN_ERR" },
|
|
{ nsInstall::GESTALT_INVALID_ARGUMENT, "GESTALT_INVALID_ARGUMENT" },
|
|
|
|
{ nsInstall::SUCCESS, "SUCCESS" },
|
|
{ nsInstall::REBOOT_NEEDED, "REBOOT_NEEDED" },
|
|
|
|
// these are bitwise values supported by addFile
|
|
{ nsInstall::DO_NOT_UNINSTALL, "DO_NOT_UNINSTALL" },
|
|
{ nsInstall::WIN_SHARED_FILE, "WIN_SHARED_FILE" },
|
|
|
|
{ CHROME_SKIN, "SKIN" },
|
|
{ CHROME_LOCALE, "LOCALE" },
|
|
{ CHROME_CONTENT, "CONTENT" },
|
|
{ CHROME_ALL, "PACKAGE" },
|
|
{ CHROME_PROFILE, "PROFILE_CHROME" },
|
|
{ CHROME_DELAYED, "DELAYED_CHROME" },
|
|
{ CHROME_SELECT, "SELECT_CHROME" },
|
|
|
|
{0}
|
|
};
|
|
|
|
//
|
|
// Install class methods
|
|
//
|
|
static JSFunctionSpec InstallMethods[] =
|
|
{
|
|
/*START HACK FOR DEBUGGING UNTIL ALERTS WORK*/
|
|
{"TRACE", InstallTRACE, 1},
|
|
/*END HACK FOR DEBUGGING UNTIL ALERTS WORK*/
|
|
// -- new forms that match prevailing javascript style --
|
|
{"addDirectory", InstallAddDirectory, 6},
|
|
{"addFile", InstallAddSubcomponent, 6},
|
|
{"alert", InstallAlert, 1},
|
|
{"cancelInstall", InstallAbortInstall, 1},
|
|
{"confirm", InstallConfirm, 2},
|
|
{"deleteRegisteredFile", InstallDeleteComponent, 1},
|
|
{"execute", InstallExecute, 2},
|
|
{"gestalt", InstallGestalt, 1},
|
|
{"getComponentFolder", InstallGetComponentFolder, 2},
|
|
{"getFolder", InstallGetFolder, 2},
|
|
{"getLastError", InstallGetLastError, 0},
|
|
{"getWinProfile", InstallGetWinProfile, 2},
|
|
{"getWinRegistry", InstallGetWinRegistry, 0},
|
|
{"initInstall", InstallStartInstall, 4},
|
|
{"loadResources", InstallLoadResources, 1},
|
|
{"logComment", InstallLogComment, 1},
|
|
{"patch", InstallPatch, 5},
|
|
{"performInstall", InstallFinalizeInstall, 0},
|
|
{"registerChrome", InstallRegisterChrome, 2},
|
|
{"resetError", InstallResetError, 0},
|
|
{"setPackageFolder", InstallSetPackageFolder, 1},
|
|
{"uninstall", InstallUninstall, 1},
|
|
|
|
// the raw file methods are deprecated, use the File object instead
|
|
{"dirCreate", InstallFileOpDirCreate, 1},
|
|
{"dirGetParent", InstallFileOpDirGetParent, 1},
|
|
{"dirRemove", InstallFileOpDirRemove, 2},
|
|
{"dirRename", InstallFileOpDirRename, 2},
|
|
{"fileCopy", InstallFileOpFileCopy, 2},
|
|
{"fileDelete", InstallFileOpFileRemove, 1},
|
|
{"fileExists", InstallFileOpFileExists, 1},
|
|
{"fileExecute", InstallFileOpFileExecute, 2},
|
|
{"fileGetNativeVersion", InstallFileOpFileGetNativeVersion, 1},
|
|
{"fileGetDiskSpaceAvailable", InstallFileOpFileGetDiskSpaceAvailable,1},
|
|
{"fileGetModDate", InstallFileOpFileGetModDate, 1},
|
|
{"fileGetSize", InstallFileOpFileGetSize, 1},
|
|
{"fileIsDirectory", InstallFileOpFileIsDirectory, 1},
|
|
{"fileIsFile", InstallFileOpFileIsFile, 1},
|
|
{"fileModDateChanged", InstallFileOpFileModDateChanged, 2},
|
|
{"fileMove", InstallFileOpFileMove, 2},
|
|
{"fileRename", InstallFileOpFileRename, 2},
|
|
{"fileWindowsShortcut", InstallFileOpFileWindowsShortcut, 7},
|
|
{"fileMacAlias", InstallFileOpFileMacAlias, 2},
|
|
{"fileUnixLink", InstallFileOpFileUnixLink, 2},
|
|
|
|
// -- obsolete forms for temporary compatibility --
|
|
{"abortInstall", InstallAbortInstall, 1},
|
|
{"finalizeInstall", InstallFinalizeInstall, 0},
|
|
{"startInstall", InstallStartInstall, 4},
|
|
{0}
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
JSObject * InitXPInstallObjects(JSContext *jscontext,
|
|
JSObject *global,
|
|
nsIFile* jarfile,
|
|
const PRUnichar* url,
|
|
const PRUnichar* args,
|
|
PRUint32 flags,
|
|
nsIChromeRegistry* reg,
|
|
nsIDOMWindowInternal* aParent,
|
|
nsIZipReader * theJARFile)
|
|
{
|
|
JSObject *installObject = nsnull;
|
|
nsInstall *nativeInstallObject;
|
|
|
|
if (global == nsnull)
|
|
{
|
|
//we are the global
|
|
// new global object
|
|
global = JS_NewObject(jscontext, &InstallClass, nsnull, nsnull);
|
|
}
|
|
|
|
installObject = JS_InitClass( jscontext, // context
|
|
global, // global object
|
|
nsnull, // parent proto
|
|
&InstallClass, // JSClass
|
|
nsnull, // JSNative ctor
|
|
0, // ctor args
|
|
nsnull, // proto props
|
|
nsnull, // proto funcs
|
|
InstallProperties, // ctor props (static)
|
|
InstallMethods); // ctor funcs (static)
|
|
|
|
if (nsnull == installObject)
|
|
{
|
|
return nsnull;
|
|
}
|
|
|
|
if ( PR_FALSE == JS_DefineConstDoubles(jscontext, installObject, install_constants) )
|
|
return nsnull;
|
|
|
|
nativeInstallObject = new nsInstall(theJARFile);
|
|
|
|
nativeInstallObject->SetJarFileLocation(jarfile);
|
|
nativeInstallObject->SetInstallArguments(nsAutoString(args));
|
|
nativeInstallObject->SetInstallURL(nsAutoString(url));
|
|
nativeInstallObject->SetInstallFlags(flags);
|
|
nativeInstallObject->SetChromeRegistry(reg);
|
|
nativeInstallObject->SetParentDOMWindow(aParent);
|
|
|
|
JS_SetPrivate(jscontext, installObject, nativeInstallObject);
|
|
nativeInstallObject->SetScriptObject(installObject);
|
|
|
|
|
|
//
|
|
// Initialize and create the FileOp object
|
|
//
|
|
if(NS_OK != InitXPFileOpObjectPrototype(jscontext, global, &gFileOpProto))
|
|
{
|
|
return nsnull;
|
|
}
|
|
|
|
gFileOpObject = JS_NewObject(jscontext, &FileOpClass, gFileOpProto, nsnull);
|
|
if (gFileOpObject == nsnull)
|
|
return nsnull;
|
|
|
|
JS_SetPrivate(jscontext, gFileOpObject, nativeInstallObject);
|
|
|
|
|
|
//
|
|
// Initialize the FileSpecObject
|
|
//
|
|
if(NS_OK != InitFileSpecObjectPrototype(jscontext, installObject, &gFileSpecProto))
|
|
{
|
|
return nsnull;
|
|
}
|
|
|
|
|
|
//
|
|
// Initialize platform specific helper objects
|
|
//
|
|
#ifdef _WINDOWS
|
|
JSObject *winRegPrototype = nsnull;
|
|
JSObject *winProfilePrototype = nsnull;
|
|
|
|
if(NS_OK != InitWinRegPrototype(jscontext, global, &winRegPrototype))
|
|
{
|
|
return nsnull;
|
|
}
|
|
nativeInstallObject->SaveWinRegPrototype(winRegPrototype);
|
|
|
|
if(NS_OK != InitWinProfilePrototype(jscontext, global, &winRegPrototype))
|
|
{
|
|
return nsnull;
|
|
}
|
|
nativeInstallObject->SaveWinProfilePrototype(winProfilePrototype);
|
|
#endif
|
|
|
|
return installObject;
|
|
}
|