2003-11-15 00:11:16 +00:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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
|
1999-09-07 06:18:08 +00:00
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
1999-09-07 06:18:08 +00:00
|
|
|
* for the specific language governing rights and limitations under the
|
2003-11-15 00:11:16 +00:00
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
1999-09-07 06:18:08 +00:00
|
|
|
*
|
2003-11-15 00:11:16 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-05-02 22:44:23 +00:00
|
|
|
*
|
2000-08-16 04:01:02 +00:00
|
|
|
* Contributors:
|
|
|
|
* Mike Shaver <shaver@zeroknowledge.com>
|
|
|
|
* John Bandhauer <jband@netscape.com>
|
2001-03-21 01:35:39 +00:00
|
|
|
* IBM Corp.
|
2001-03-14 02:41:55 +00:00
|
|
|
* Robert Ginda <rginda@netscape.com>
|
2003-11-15 00:11:16 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-09-07 06:18:08 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
#ifdef MOZ_LOGGING
|
|
|
|
#define FORCE_PR_LOG
|
|
|
|
#endif
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2000-05-15 18:07:36 +00:00
|
|
|
#include "prlog.h"
|
2000-05-26 04:56:23 +00:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2005-12-13 17:55:43 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2000-05-26 04:56:23 +00:00
|
|
|
#include "nsICategoryManager.h"
|
1999-09-07 06:18:08 +00:00
|
|
|
#include "nsIComponentManager.h"
|
2010-06-10 18:11:11 +00:00
|
|
|
#include "mozilla/Module.h"
|
2000-05-26 04:56:23 +00:00
|
|
|
#include "nsILocalFile.h"
|
1999-09-07 06:18:08 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "mozJSComponentLoader.h"
|
|
|
|
#include "nsIJSRuntimeService.h"
|
1999-11-10 00:34:26 +00:00
|
|
|
#include "nsIJSContextStack.h"
|
1999-09-07 06:18:08 +00:00
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "nsCRT.h"
|
2000-06-03 09:46:12 +00:00
|
|
|
#include "nsMemory.h"
|
2000-05-16 05:09:31 +00:00
|
|
|
#include "nsIObserverService.h"
|
2000-08-16 04:01:02 +00:00
|
|
|
#include "nsIXPCScriptable.h"
|
2003-08-02 19:33:52 +00:00
|
|
|
#include "nsString.h"
|
2000-05-26 04:56:23 +00:00
|
|
|
#ifndef XPCONNECT_STANDALONE
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
2005-10-20 16:39:24 +00:00
|
|
|
#include "nsIURI.h"
|
2007-06-10 21:13:18 +00:00
|
|
|
#include "nsIFileURL.h"
|
2010-06-15 19:38:46 +00:00
|
|
|
#include "nsIJARURI.h"
|
2002-01-08 01:31:25 +00:00
|
|
|
#include "nsNetUtil.h"
|
2000-05-26 04:56:23 +00:00
|
|
|
#endif
|
2005-10-20 16:39:24 +00:00
|
|
|
#include "jsxdrapi.h"
|
2010-09-27 22:55:15 +00:00
|
|
|
#include "jscompartment.h"
|
2007-05-15 23:27:40 +00:00
|
|
|
#include "jsprf.h"
|
2000-03-31 11:19:51 +00:00
|
|
|
// For reporting errors with the console service
|
|
|
|
#include "nsIScriptError.h"
|
|
|
|
#include "nsIConsoleService.h"
|
2010-08-12 19:37:52 +00:00
|
|
|
#include "nsIStorageStream.h"
|
|
|
|
#include "nsIStringStream.h"
|
2006-12-20 20:10:12 +00:00
|
|
|
#include "prmem.h"
|
|
|
|
#include "plbase64.h"
|
2010-06-15 19:38:46 +00:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
#include "nsILocalFileWin.h"
|
|
|
|
#endif
|
2000-03-31 11:19:51 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
#ifdef MOZ_ENABLE_LIBXUL
|
|
|
|
#include "mozilla/scache/StartupCache.h"
|
|
|
|
#include "mozilla/scache/StartupCacheUtils.h"
|
|
|
|
#endif
|
|
|
|
|
2009-07-30 18:48:02 +00:00
|
|
|
#if defined(MOZ_SHARK) || defined(MOZ_CALLGRIND) || defined(MOZ_VTUNE) || defined(MOZ_TRACEVIS)
|
2008-01-20 02:31:10 +00:00
|
|
|
#include "jsdbgapi.h"
|
|
|
|
#endif
|
|
|
|
|
2010-05-19 23:22:19 +00:00
|
|
|
#include "mozilla/FunctionTimer.h"
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
static const char kJSRuntimeServiceContractID[] = "@mozilla.org/js/xpc/RuntimeService;1";
|
|
|
|
static const char kXPConnectServiceContractID[] = "@mozilla.org/js/xpc/XPConnect;1";
|
|
|
|
static const char kObserverServiceContractID[] = "@mozilla.org/observer-service;1";
|
2010-10-07 22:43:15 +00:00
|
|
|
static const char kCacheKeyPrefix[] = "jsloader:";
|
1999-11-10 00:34:26 +00:00
|
|
|
|
2005-10-03 23:34:58 +00:00
|
|
|
/* Some platforms don't have an implementation of PR_MemMap(). */
|
2009-02-20 19:56:31 +00:00
|
|
|
#if !defined(XP_BEOS) && !defined(XP_OS2)
|
2005-10-03 23:34:58 +00:00
|
|
|
#define HAVE_PR_MEMMAP
|
|
|
|
#endif
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
/**
|
|
|
|
* Buffer sizes for serialization and deserialization of scripts.
|
2008-04-02 06:41:23 +00:00
|
|
|
* FIXME: bug #411579 (tune this macro!) Last updated: Jan 2008
|
2005-10-20 16:39:24 +00:00
|
|
|
*/
|
|
|
|
#define XPC_SERIALIZATION_BUFFER_SIZE (64 * 1024)
|
2008-04-02 06:41:23 +00:00
|
|
|
#define XPC_DESERIALIZATION_BUFFER_SIZE (12 * 8192)
|
2005-10-20 16:39:24 +00:00
|
|
|
|
|
|
|
#ifdef PR_LOGGING
|
|
|
|
// NSPR_LOG_MODULES=JSComponentLoader:5
|
|
|
|
static PRLogModuleInfo *gJSCLLog;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LOG(args) PR_LOG(gJSCLLog, PR_LOG_DEBUG, args)
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
// Components.utils.import error messages
|
|
|
|
#define ERROR_SCOPE_OBJ "%s - Second argument must be an object."
|
|
|
|
#define ERROR_NOT_PRESENT "%s - EXPORTED_SYMBOLS is not present."
|
|
|
|
#define ERROR_NOT_AN_ARRAY "%s - EXPORTED_SYMBOLS is not an array."
|
|
|
|
#define ERROR_GETTING_ARRAY_LENGTH "%s - Error getting array length of EXPORTED_SYMBOLS."
|
|
|
|
#define ERROR_ARRAY_ELEMENT "%s - EXPORTED_SYMBOLS[%d] is not a string."
|
|
|
|
#define ERROR_GETTING_SYMBOL "%s - Could not get symbol '%s'."
|
|
|
|
#define ERROR_SETTING_SYMBOL "%s - Could not set symbol '%s' on target object."
|
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
void
|
2006-06-10 00:47:40 +00:00
|
|
|
mozJSLoaderErrorReporter(JSContext *cx, const char *message, JSErrorReport *rep)
|
2001-03-27 05:35:52 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
/* Use the console service to register the error. */
|
|
|
|
nsCOMPtr<nsIConsoleService> consoleService =
|
2005-10-20 16:39:24 +00:00
|
|
|
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
2001-03-27 05:35:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make an nsIScriptError, populate it with information from this
|
|
|
|
* error, then log it with the console service. The UI can then
|
2006-05-25 21:22:32 +00:00
|
|
|
* poll the service to update the Error console.
|
2001-03-27 05:35:52 +00:00
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIScriptError> errorObject =
|
2005-10-20 16:39:24 +00:00
|
|
|
do_CreateInstance(NS_SCRIPTERROR_CONTRACTID);
|
2001-03-27 05:35:52 +00:00
|
|
|
|
|
|
|
if (consoleService && errorObject) {
|
|
|
|
/*
|
|
|
|
* Got an error object; prepare appropriate-width versions of
|
|
|
|
* various arguments to it.
|
|
|
|
*/
|
|
|
|
nsAutoString fileUni;
|
|
|
|
fileUni.AssignWithConversion(rep->filename);
|
|
|
|
|
|
|
|
PRUint32 column = rep->uctokenptr - rep->uclinebuf;
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
rv = errorObject->Init(reinterpret_cast<const PRUnichar*>
|
|
|
|
(rep->ucmessage),
|
2001-03-27 05:35:52 +00:00
|
|
|
fileUni.get(),
|
2007-07-08 07:08:04 +00:00
|
|
|
reinterpret_cast<const PRUnichar*>
|
|
|
|
(rep->uclinebuf),
|
2001-03-27 05:35:52 +00:00
|
|
|
rep->lineno, column, rep->flags,
|
|
|
|
"component javascript");
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
rv = consoleService->LogMessage(errorObject);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// We're done! Skip return to fall thru to stderr
|
|
|
|
// printout, for the benefit of those invoking the
|
|
|
|
// browser with -console
|
|
|
|
// return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If any of the above fails for some reason, fall back to
|
|
|
|
* printing to stderr.
|
|
|
|
*/
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#ifdef DEBUG
|
2001-03-27 05:35:52 +00:00
|
|
|
fprintf(stderr, "JS Component Loader: %s %s:%d\n"
|
|
|
|
" %s\n",
|
|
|
|
JSREPORT_IS_WARNING(rep->flags) ? "WARNING" : "ERROR",
|
|
|
|
rep->filename, rep->lineno,
|
|
|
|
message ? message : "<no message>");
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#endif
|
2001-03-27 05:35:52 +00:00
|
|
|
}
|
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool
|
2010-08-16 19:35:04 +00:00
|
|
|
Dump(JSContext *cx, uintN argc, jsval *vp)
|
1999-09-07 06:18:08 +00:00
|
|
|
{
|
|
|
|
JSString *str;
|
|
|
|
if (!argc)
|
|
|
|
return JS_TRUE;
|
2010-03-23 21:08:18 +00:00
|
|
|
|
2010-08-16 19:35:04 +00:00
|
|
|
str = JS_ValueToString(cx, JS_ARGV(cx, vp)[0]);
|
1999-09-07 06:18:08 +00:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
2010-03-23 21:08:18 +00:00
|
|
|
jschar *chars = JS_GetStringChars(str);
|
2010-04-03 11:32:59 +00:00
|
|
|
fputs(NS_ConvertUTF16toUTF8(reinterpret_cast<const PRUnichar*>(chars)).get(), stderr);
|
1999-09-07 06:18:08 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool
|
2010-08-16 19:35:04 +00:00
|
|
|
Debug(JSContext *cx, uintN argc, jsval *vp)
|
2000-05-26 04:56:23 +00:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
2010-08-16 19:35:04 +00:00
|
|
|
return Dump(cx, argc, vp);
|
2000-05-26 04:56:23 +00:00
|
|
|
#else
|
2001-03-27 05:35:52 +00:00
|
|
|
return JS_TRUE;
|
2000-05-26 04:56:23 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool
|
2010-08-16 19:35:04 +00:00
|
|
|
Atob(JSContext *cx, uintN argc, jsval *vp)
|
2006-12-20 20:10:12 +00:00
|
|
|
{
|
|
|
|
JSString *str;
|
|
|
|
if (!argc)
|
|
|
|
return JS_TRUE;
|
|
|
|
|
2010-08-16 19:35:04 +00:00
|
|
|
str = JS_ValueToString(cx, JS_ARGV(cx, vp)[0]);
|
2006-12-20 20:10:12 +00:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
size_t base64StrLength = JS_GetStringLength(str);
|
|
|
|
char *base64Str = JS_GetStringBytes(str);
|
|
|
|
|
|
|
|
PRUint32 bin_dataLength = (PRUint32)base64StrLength;
|
2009-12-27 00:03:57 +00:00
|
|
|
if (base64StrLength >= 1 && base64Str[base64StrLength - 1] == '=') {
|
|
|
|
if (base64StrLength >= 2 && base64Str[base64StrLength - 2] == '=')
|
2006-12-20 20:10:12 +00:00
|
|
|
bin_dataLength -= 2;
|
2009-12-27 00:03:57 +00:00
|
|
|
else
|
2007-01-31 11:49:16 +00:00
|
|
|
--bin_dataLength;
|
2006-12-20 20:10:12 +00:00
|
|
|
}
|
2006-12-20 20:16:23 +00:00
|
|
|
bin_dataLength = (PRUint32)((PRUint64)bin_dataLength * 3) / 4;
|
2006-12-20 20:10:12 +00:00
|
|
|
|
|
|
|
char *bin_data = PL_Base64Decode(base64Str, base64StrLength, nsnull);
|
|
|
|
if (!bin_data)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
str = JS_NewStringCopyN(cx, bin_data, bin_dataLength);
|
|
|
|
PR_Free(bin_data);
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
2010-08-16 19:35:04 +00:00
|
|
|
JS_SET_RVAL(cx, vp, STRING_TO_JSVAL(str));
|
2006-12-20 20:10:12 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool
|
2010-08-16 19:35:04 +00:00
|
|
|
Btoa(JSContext *cx, uintN argc, jsval *vp)
|
2006-12-20 20:10:12 +00:00
|
|
|
{
|
|
|
|
JSString *str;
|
|
|
|
if (!argc)
|
|
|
|
return JS_TRUE;
|
|
|
|
|
2010-08-16 19:35:04 +00:00
|
|
|
str = JS_ValueToString(cx, JS_ARGV(cx, vp)[0]);
|
2006-12-20 20:10:12 +00:00
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
char *bin_data = JS_GetStringBytes(str);
|
|
|
|
size_t bin_dataLength = JS_GetStringLength(str);
|
|
|
|
|
|
|
|
char *base64 = PL_Base64Encode(bin_data, bin_dataLength, nsnull);
|
|
|
|
if (!base64)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
|
|
|
PRUint32 base64Length = ((bin_dataLength + 2) / 3) * 4;
|
|
|
|
str = JS_NewStringCopyN(cx, base64, base64Length);
|
|
|
|
PR_Free(base64);
|
|
|
|
if (!str)
|
|
|
|
return JS_FALSE;
|
|
|
|
|
2010-08-16 19:35:04 +00:00
|
|
|
JS_SET_RVAL(cx, vp, STRING_TO_JSVAL(str));
|
2006-12-20 20:10:12 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
}
|
|
|
|
|
1999-09-07 06:18:08 +00:00
|
|
|
static JSFunctionSpec gGlobalFun[] = {
|
2010-08-16 19:35:04 +00:00
|
|
|
{"dump", Dump, 1,0},
|
|
|
|
{"debug", Debug, 1,0},
|
|
|
|
{"atob", Atob, 1,0},
|
|
|
|
{"btoa", Btoa, 1,0},
|
2008-01-20 02:31:10 +00:00
|
|
|
#ifdef MOZ_SHARK
|
2010-08-16 19:35:04 +00:00
|
|
|
{"startShark", js_StartShark, 0,0},
|
|
|
|
{"stopShark", js_StopShark, 0,0},
|
|
|
|
{"connectShark", js_ConnectShark, 0,0},
|
|
|
|
{"disconnectShark", js_DisconnectShark,0,0},
|
2008-07-08 22:58:08 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MOZ_CALLGRIND
|
2010-08-16 19:35:04 +00:00
|
|
|
{"startCallgrind", js_StartCallgrind, 0,0},
|
|
|
|
{"stopCallgrind", js_StopCallgrind, 0,0},
|
|
|
|
{"dumpCallgrind", js_DumpCallgrind, 1,0},
|
2008-07-29 22:19:26 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MOZ_VTUNE
|
2010-08-16 19:35:04 +00:00
|
|
|
{"startVtune", js_StartVtune, 1,0},
|
|
|
|
{"stopVtune", js_StopVtune, 0,0},
|
|
|
|
{"pauseVtune", js_PauseVtune, 0,0},
|
|
|
|
{"resumeVtune", js_ResumeVtune, 0,0},
|
2009-07-30 18:48:02 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MOZ_TRACEVIS
|
2010-08-16 19:35:04 +00:00
|
|
|
{"initEthogram", js_InitEthogram, 0,0},
|
|
|
|
{"shutdownEthogram", js_ShutdownEthogram, 0,0},
|
2008-01-20 02:31:10 +00:00
|
|
|
#endif
|
2010-08-16 19:35:04 +00:00
|
|
|
{nsnull,nsnull,0,0}
|
1999-09-07 06:18:08 +00:00
|
|
|
};
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
class JSCLContextHelper
|
|
|
|
{
|
|
|
|
public:
|
2008-07-21 23:56:45 +00:00
|
|
|
JSCLContextHelper(mozJSComponentLoader* loader);
|
2009-02-18 04:11:09 +00:00
|
|
|
~JSCLContextHelper() { Pop(); }
|
|
|
|
|
|
|
|
JSContext* Pop();
|
2005-10-20 16:39:24 +00:00
|
|
|
|
|
|
|
operator JSContext*() const {return mContext;}
|
|
|
|
|
|
|
|
private:
|
|
|
|
JSContext* mContext;
|
2008-07-21 23:56:45 +00:00
|
|
|
intN mContextThread;
|
|
|
|
nsIThreadJSContextStack* mContextStack;
|
2010-03-12 06:50:10 +00:00
|
|
|
|
|
|
|
// prevent copying and assignment
|
|
|
|
JSCLContextHelper(const JSCLContextHelper &); // not implemented
|
|
|
|
const JSCLContextHelper& operator=(const JSCLContextHelper &); // not implemented
|
2005-10-20 16:39:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class JSCLAutoErrorReporterSetter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSCLAutoErrorReporterSetter(JSContext* cx, JSErrorReporter reporter)
|
|
|
|
{mContext = cx; mOldReporter = JS_SetErrorReporter(cx, reporter);}
|
|
|
|
~JSCLAutoErrorReporterSetter()
|
|
|
|
{JS_SetErrorReporter(mContext, mOldReporter);}
|
|
|
|
private:
|
|
|
|
JSContext* mContext;
|
|
|
|
JSErrorReporter mOldReporter;
|
2010-03-12 06:50:10 +00:00
|
|
|
// prevent copying and assignment
|
|
|
|
JSCLAutoErrorReporterSetter(const JSCLAutoErrorReporterSetter &); // not implemented
|
|
|
|
const JSCLAutoErrorReporterSetter& operator=(const JSCLAutoErrorReporterSetter &); // not implemented
|
2005-10-20 16:39:24 +00:00
|
|
|
};
|
|
|
|
|
2009-02-18 04:11:09 +00:00
|
|
|
static nsresult
|
|
|
|
OutputError(JSContext *cx,
|
|
|
|
const char *format,
|
|
|
|
va_list ap)
|
|
|
|
{
|
|
|
|
char *buf = JS_vsmprintf(format, ap);
|
|
|
|
if (!buf) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS_ReportError(cx, buf);
|
|
|
|
JS_smprintf_free(buf);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
ReportOnCaller(nsAXPCNativeCallContext *cc,
|
|
|
|
const char *format, ...) {
|
|
|
|
if (!cc) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
JSContext *callerContext;
|
|
|
|
rv = cc->GetJSContext(&callerContext);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return OutputError(callerContext, format, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
ReportOnCaller(JSCLContextHelper &helper,
|
|
|
|
const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
|
|
|
|
JSContext *cx = helper.Pop();
|
|
|
|
if (!cx) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OutputError(cx, format, ap);
|
|
|
|
}
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
static nsresult
|
|
|
|
ReadScriptFromStream(JSContext *cx, nsIObjectInputStream *stream,
|
|
|
|
JSScript **script)
|
|
|
|
{
|
|
|
|
*script = nsnull;
|
|
|
|
|
|
|
|
PRUint32 size;
|
|
|
|
nsresult rv = stream->Read32(&size);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
char *data;
|
|
|
|
rv = stream->ReadBytes(size, &data);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
JSXDRState *xdr = JS_XDRNewMem(cx, JSXDR_DECODE);
|
|
|
|
NS_ENSURE_TRUE(xdr, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
xdr->userdata = stream;
|
|
|
|
JS_XDRMemSetData(xdr, data, size);
|
|
|
|
|
2007-07-11 03:10:43 +00:00
|
|
|
if (!JS_XDRScript(xdr, script)) {
|
2005-10-20 16:39:24 +00:00
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2007-07-11 03:10:43 +00:00
|
|
|
// Update data in case ::JS_XDRScript called back into C++ code to
|
|
|
|
// read an XPCOM object.
|
|
|
|
//
|
|
|
|
// In that case, the serialization process must have flushed a run
|
|
|
|
// of counted bytes containing JS data at the point where the XPCOM
|
|
|
|
// object starts, after which an encoding C++ callback from the JS
|
|
|
|
// XDR code must have written the XPCOM object directly into the
|
|
|
|
// nsIObjectOutputStream.
|
|
|
|
//
|
|
|
|
// The deserialization process will XDR-decode counted bytes up to
|
|
|
|
// but not including the XPCOM object, then call back into C++ to
|
|
|
|
// read the object, then read more counted bytes and hand them off
|
|
|
|
// to the JSXDRState, so more JS data can be decoded.
|
|
|
|
//
|
|
|
|
// This interleaving of JS XDR data and XPCOM object data may occur
|
|
|
|
// several times beneath the call to ::JS_XDRScript, above. At the
|
|
|
|
// end of the day, we need to free (via nsMemory) the data owned by
|
|
|
|
// the JSXDRState. So we steal it back, nulling xdr's buffer so it
|
|
|
|
// doesn't get passed to ::JS_free by ::JS_XDRDestroy.
|
|
|
|
|
|
|
|
uint32 length;
|
|
|
|
data = static_cast<char*>(JS_XDRMemGetData(xdr, &length));
|
|
|
|
if (data) {
|
|
|
|
JS_XDRMemSetData(xdr, nsnull, 0);
|
|
|
|
}
|
|
|
|
JS_XDRDestroy(xdr);
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
// If data is null now, it must have been freed while deserializing an
|
|
|
|
// XPCOM object (e.g., a principal) beneath ::JS_XDRScript.
|
|
|
|
if (data) {
|
|
|
|
nsMemory::Free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
WriteScriptToStream(JSContext *cx, JSScript *script,
|
|
|
|
nsIObjectOutputStream *stream)
|
|
|
|
{
|
|
|
|
JSXDRState *xdr = JS_XDRNewMem(cx, JSXDR_ENCODE);
|
|
|
|
NS_ENSURE_TRUE(xdr, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
xdr->userdata = stream;
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
if (JS_XDRScript(xdr, &script)) {
|
|
|
|
// Get the encoded JSXDRState data and write it. The JSXDRState owns
|
|
|
|
// this buffer memory and will free it beneath ::JS_XDRDestroy.
|
|
|
|
//
|
|
|
|
// If an XPCOM object needs to be written in the midst of the JS XDR
|
|
|
|
// encoding process, the C++ code called back from the JS engine (e.g.,
|
|
|
|
// nsEncodeJSPrincipals in caps/src/nsJSPrincipals.cpp) will flush data
|
|
|
|
// from the JSXDRState to aStream, then write the object, then return
|
|
|
|
// to JS XDR code with xdr reset so new JS data is encoded at the front
|
|
|
|
// of the xdr's data buffer.
|
|
|
|
//
|
|
|
|
// However many XPCOM objects are interleaved with JS XDR data in the
|
|
|
|
// stream, when control returns here from ::JS_XDRScript, we'll have
|
|
|
|
// one last buffer of data to write to aStream.
|
|
|
|
|
|
|
|
uint32 size;
|
2007-07-08 07:08:04 +00:00
|
|
|
const char* data = reinterpret_cast<const char*>
|
|
|
|
(JS_XDRMemGetData(xdr, &size));
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ASSERTION(data, "no decoded JSXDRState data!");
|
|
|
|
|
|
|
|
rv = stream->Write32(size);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
rv = stream->WriteBytes(data, size);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rv = NS_ERROR_FAILURE; // likely to be a principals serialization error
|
|
|
|
}
|
|
|
|
|
|
|
|
JS_XDRDestroy(xdr);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-09-25 20:07:20 +00:00
|
|
|
mozJSComponentLoader::mozJSComponentLoader()
|
2002-06-14 21:33:05 +00:00
|
|
|
: mRuntime(nsnull),
|
2005-06-28 15:21:31 +00:00
|
|
|
mContext(nsnull),
|
1999-09-25 20:07:20 +00:00
|
|
|
mInitialized(PR_FALSE)
|
1999-09-07 06:18:08 +00:00
|
|
|
{
|
2005-12-13 17:55:43 +00:00
|
|
|
NS_ASSERTION(!sSelf, "mozJSComponentLoader should be a singleton");
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
#ifdef PR_LOGGING
|
|
|
|
if (!gJSCLLog) {
|
|
|
|
gJSCLLog = PR_NewLogModule("JSComponentLoader");
|
|
|
|
}
|
|
|
|
#endif
|
1999-09-07 06:18:08 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
sSelf = this;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
mozJSComponentLoader::~mozJSComponentLoader()
|
1999-09-07 06:18:08 +00:00
|
|
|
{
|
2005-12-13 17:55:43 +00:00
|
|
|
if (mInitialized) {
|
|
|
|
NS_ERROR("'xpcom-shutdown-loaders' was not fired before cleaning up mozJSComponentLoader");
|
|
|
|
UnloadModules();
|
1999-11-10 00:34:26 +00:00
|
|
|
}
|
1999-09-07 06:18:08 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
sSelf = nsnull;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
mozJSComponentLoader*
|
|
|
|
mozJSComponentLoader::sSelf;
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_IMPL_ISUPPORTS3(mozJSComponentLoader,
|
2010-06-10 18:11:11 +00:00
|
|
|
mozilla::ModuleLoader,
|
2007-05-15 23:27:40 +00:00
|
|
|
xpcIJSModuleLoader,
|
|
|
|
nsIObserver)
|
|
|
|
|
1999-09-24 02:52:46 +00:00
|
|
|
nsresult
|
1999-09-24 01:37:44 +00:00
|
|
|
mozJSComponentLoader::ReallyInit()
|
|
|
|
{
|
2010-05-19 23:22:19 +00:00
|
|
|
NS_TIME_FUNCTION;
|
1999-09-24 01:37:44 +00:00
|
|
|
nsresult rv;
|
1999-11-10 00:34:26 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
|
1999-11-10 00:34:26 +00:00
|
|
|
/*
|
|
|
|
* Get the JSRuntime from the runtime svc, if possible.
|
|
|
|
* We keep a reference around, because it's a Bad Thing if the runtime
|
|
|
|
* service gets shut down before we're done. Bad!
|
|
|
|
*/
|
2000-09-21 04:30:32 +00:00
|
|
|
|
2000-09-13 23:57:52 +00:00
|
|
|
mRuntimeService = do_GetService(kJSRuntimeServiceContractID, &rv);
|
1999-11-18 15:39:28 +00:00
|
|
|
if (NS_FAILED(rv) ||
|
|
|
|
NS_FAILED(rv = mRuntimeService->GetRuntime(&mRuntime)))
|
1999-09-07 20:30:25 +00:00
|
|
|
return rv;
|
1999-11-10 00:34:26 +00:00
|
|
|
|
2008-07-21 23:56:45 +00:00
|
|
|
mContextStack = do_GetService("@mozilla.org/js/xpc/ContextStack;1", &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2005-06-28 15:21:31 +00:00
|
|
|
// Create our compilation context.
|
|
|
|
mContext = JS_NewContext(mRuntime, 256);
|
|
|
|
if (!mContext)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
uint32 options = JS_GetOptions(mContext);
|
|
|
|
JS_SetOptions(mContext, options | JSOPTION_XML);
|
|
|
|
|
2008-03-25 14:08:48 +00:00
|
|
|
// Always use the latest js version
|
|
|
|
JS_SetVersion(mContext, JSVERSION_LATEST);
|
|
|
|
|
|
|
|
// Limit C stack consumption to a reasonable 512K
|
2010-05-19 08:29:05 +00:00
|
|
|
JS_SetNativeStackQuota(mContext, 512 * 1024);
|
2007-06-07 22:50:12 +00:00
|
|
|
|
2000-08-16 04:01:02 +00:00
|
|
|
#ifndef XPCONNECT_STANDALONE
|
2000-09-21 04:30:32 +00:00
|
|
|
nsCOMPtr<nsIScriptSecurityManager> secman =
|
2005-10-20 16:39:24 +00:00
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID);
|
2000-09-21 04:30:32 +00:00
|
|
|
if (!secman)
|
2000-08-16 04:01:02 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
rv = secman->GetSystemPrincipal(getter_AddRefs(mSystemPrincipal));
|
|
|
|
if (NS_FAILED(rv) || !mSystemPrincipal)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
#endif
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
if (!mModules.Init(32))
|
1999-09-07 06:18:08 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-05-15 23:27:40 +00:00
|
|
|
if (!mImports.Init(32))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-06-20 06:29:49 +00:00
|
|
|
if (!mInProgressImports.Init(32))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
1999-09-07 06:18:08 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
nsCOMPtr<nsIObserverService> obsSvc =
|
|
|
|
do_GetService(kObserverServiceContractID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
rv = obsSvc->AddObserver(this, "xpcom-shutdown-loaders", PR_FALSE);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
1999-11-10 00:34:26 +00:00
|
|
|
#ifdef DEBUG_shaver_off
|
2000-10-05 04:15:43 +00:00
|
|
|
fprintf(stderr, "mJCL: ReallyInit success!\n");
|
1999-09-07 06:18:08 +00:00
|
|
|
#endif
|
1999-09-24 01:37:44 +00:00
|
|
|
mInitialized = PR_TRUE;
|
1999-11-10 00:34:26 +00:00
|
|
|
|
1999-09-07 06:18:08 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
nsresult
|
|
|
|
mozJSComponentLoader::FileKey(nsILocalFile* aFile, nsAString &aResult)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsAutoString canonicalPath;
|
|
|
|
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
nsCOMPtr<nsILocalFileWin> winFile = do_QueryInterface(aFile, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
winFile->GetCanonicalPath(canonicalPath);
|
|
|
|
#else
|
|
|
|
aFile->GetPath(canonicalPath);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
aResult = NS_LITERAL_STRING("f");
|
|
|
|
aResult += canonicalPath;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
mozJSComponentLoader::JarKey(nsILocalFile* aFile,
|
|
|
|
const nsACString &aComponentPath,
|
|
|
|
nsAString &aResult)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsAutoString canonicalPath;
|
|
|
|
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
nsCOMPtr<nsILocalFileWin> winFile = do_QueryInterface(aFile, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
winFile->GetCanonicalPath(canonicalPath);
|
|
|
|
#else
|
|
|
|
aFile->GetPath(canonicalPath);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
aResult = NS_LITERAL_STRING("j");
|
|
|
|
aResult += canonicalPath;
|
|
|
|
AppendUTF8toUTF16(aComponentPath, aResult);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
const mozilla::Module*
|
|
|
|
mozJSComponentLoader::LoadModule(nsILocalFile* aComponentFile)
|
2010-06-15 19:38:46 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
nsCAutoString spec;
|
|
|
|
NS_GetURLSpecFromActualFile(aComponentFile, spec);
|
|
|
|
|
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(uri), spec);
|
2010-06-21 15:41:42 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NULL;
|
2010-06-15 19:38:46 +00:00
|
|
|
|
|
|
|
nsAutoString hashstring;
|
|
|
|
rv = FileKey(aComponentFile, hashstring);
|
2010-06-21 15:41:42 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NULL;
|
2010-06-15 19:38:46 +00:00
|
|
|
|
|
|
|
return LoadModuleImpl(aComponentFile,
|
|
|
|
hashstring,
|
2010-06-21 15:41:42 +00:00
|
|
|
uri);
|
2010-06-15 19:38:46 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 15:41:42 +00:00
|
|
|
const mozilla::Module*
|
2010-06-15 19:38:46 +00:00
|
|
|
mozJSComponentLoader::LoadModuleFromJAR(nsILocalFile *aJarFile,
|
2010-06-21 15:41:42 +00:00
|
|
|
const nsACString &aComponentPath)
|
2010-06-15 19:38:46 +00:00
|
|
|
{
|
|
|
|
#if !defined(XPCONNECT_STANDALONE)
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCAutoString fileSpec;
|
|
|
|
NS_GetURLSpecFromActualFile(aJarFile, fileSpec);
|
|
|
|
|
|
|
|
nsCAutoString jarSpec("jar:");
|
|
|
|
jarSpec += fileSpec;
|
|
|
|
jarSpec += "!/";
|
|
|
|
jarSpec += aComponentPath;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
rv = NS_NewURI(getter_AddRefs(uri), jarSpec);
|
2010-06-21 15:41:42 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NULL;
|
2010-06-15 19:38:46 +00:00
|
|
|
|
|
|
|
nsAutoString hashstring;
|
|
|
|
rv = JarKey(aJarFile, aComponentPath, hashstring);
|
2010-06-21 15:41:42 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NULL;
|
2010-06-15 19:38:46 +00:00
|
|
|
|
|
|
|
return LoadModuleImpl(aJarFile,
|
|
|
|
hashstring,
|
2010-06-21 15:41:42 +00:00
|
|
|
uri);
|
2010-06-15 19:38:46 +00:00
|
|
|
#else
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-06-21 15:41:42 +00:00
|
|
|
const mozilla::Module*
|
2010-06-15 19:38:46 +00:00
|
|
|
mozJSComponentLoader::LoadModuleImpl(nsILocalFile* aSourceFile,
|
|
|
|
nsAString &aKey,
|
2010-06-21 15:41:42 +00:00
|
|
|
nsIURI* aComponentURI)
|
1999-09-07 20:30:25 +00:00
|
|
|
{
|
2000-05-16 05:09:31 +00:00
|
|
|
nsresult rv;
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2010-05-19 23:22:19 +00:00
|
|
|
#ifdef NS_FUNCTION_TIMER
|
2010-06-16 17:01:17 +00:00
|
|
|
nsCAutoString spec__("N/A");
|
|
|
|
aComponentURI->GetSpec(spec__);
|
2010-05-19 23:22:19 +00:00
|
|
|
NS_TIME_FUNCTION_FMT("%s (line %d) (file: %s)", MOZ_FUNCTION_NAME,
|
2010-06-16 17:01:17 +00:00
|
|
|
__LINE__, spec__.get());
|
2010-05-19 23:22:19 +00:00
|
|
|
#endif
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
if (!mInitialized) {
|
|
|
|
rv = ReallyInit();
|
2005-12-03 15:27:17 +00:00
|
|
|
if (NS_FAILED(rv))
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
1999-09-27 02:22:25 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
ModuleEntry* mod;
|
2010-06-21 15:41:42 +00:00
|
|
|
if (mModules.Get(aKey, &mod))
|
|
|
|
return mod;
|
2005-12-03 15:27:17 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
nsAutoPtr<ModuleEntry> entry(new ModuleEntry);
|
|
|
|
if (!entry)
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2005-12-03 15:27:17 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
rv = GlobalForLocation(aSourceFile, aComponentURI, &entry->global,
|
|
|
|
&entry->location, nsnull);
|
2005-10-20 16:39:24 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
1999-09-07 06:18:08 +00:00
|
|
|
#ifdef DEBUG_shaver
|
1999-09-07 20:30:25 +00:00
|
|
|
fprintf(stderr, "GlobalForLocation failed!\n");
|
1999-09-07 06:18:08 +00:00
|
|
|
#endif
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
nsCOMPtr<nsIXPConnect> xpc = do_GetService(kXPConnectServiceContractID,
|
|
|
|
&rv);
|
2005-12-13 17:55:43 +00:00
|
|
|
if (NS_FAILED(rv))
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2005-12-13 17:55:43 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIComponentManager> cm;
|
|
|
|
rv = NS_GetComponentManager(getter_AddRefs(cm));
|
|
|
|
if (NS_FAILED(rv))
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2000-08-24 07:50:27 +00:00
|
|
|
|
2008-07-21 23:56:45 +00:00
|
|
|
JSCLContextHelper cx(this);
|
2010-09-27 22:55:15 +00:00
|
|
|
JSAutoEnterCompartment ac;
|
2010-09-02 05:20:32 +00:00
|
|
|
if (!ac.enter(cx, entry->global))
|
|
|
|
return NULL;
|
1999-11-18 15:39:28 +00:00
|
|
|
|
2000-10-05 04:15:43 +00:00
|
|
|
JSObject* cm_jsobj;
|
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> cm_holder;
|
2005-12-13 17:55:43 +00:00
|
|
|
rv = xpc->WrapNative(cx, entry->global, cm,
|
2000-10-05 04:15:43 +00:00
|
|
|
NS_GET_IID(nsIComponentManager),
|
|
|
|
getter_AddRefs(cm_holder));
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
#ifdef DEBUG_shaver
|
|
|
|
fprintf(stderr, "WrapNative(%p,%p,nsIComponentManager) failed: %x\n",
|
2001-03-27 05:35:52 +00:00
|
|
|
(void *)(JSContext*)cx, (void *)mCompMgr, rv);
|
2000-10-05 04:15:43 +00:00
|
|
|
#endif
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2000-10-05 04:15:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = cm_holder->GetJSObject(&cm_jsobj);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
#ifdef DEBUG_shaver
|
|
|
|
fprintf(stderr, "GetJSObject of ComponentManager failed\n");
|
|
|
|
#endif
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2005-12-13 17:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* file_jsobj;
|
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> file_holder;
|
2010-06-15 19:38:46 +00:00
|
|
|
rv = xpc->WrapNative(cx, entry->global, aSourceFile,
|
2005-12-13 17:55:43 +00:00
|
|
|
NS_GET_IID(nsIFile),
|
|
|
|
getter_AddRefs(file_holder));
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2005-12-13 17:55:43 +00:00
|
|
|
}
|
|
|
|
|
2006-11-22 18:01:37 +00:00
|
|
|
rv = file_holder->GetJSObject(&file_jsobj);
|
2005-12-13 17:55:43 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2000-10-05 04:15:43 +00:00
|
|
|
}
|
|
|
|
|
2006-06-10 00:47:40 +00:00
|
|
|
JSCLAutoErrorReporterSetter aers(cx, mozJSLoaderErrorReporter);
|
1999-11-18 15:39:28 +00:00
|
|
|
|
2010-06-11 20:13:26 +00:00
|
|
|
jsval NSGetFactory_val;
|
2004-10-12 03:37:20 +00:00
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
if (!JS_GetProperty(cx, entry->global, "NSGetFactory", &NSGetFactory_val) ||
|
|
|
|
JSVAL_IS_VOID(NSGetFactory_val)) {
|
|
|
|
return NULL;
|
2004-10-12 03:37:20 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
if (JS_TypeOfValue(cx, NSGetFactory_val) != JSTYPE_FUNCTION) {
|
2010-06-21 15:41:42 +00:00
|
|
|
nsCAutoString spec;
|
|
|
|
aComponentURI->GetSpec(spec);
|
2010-06-10 18:11:11 +00:00
|
|
|
JS_ReportError(cx, "%s has NSGetFactory property that is not a function",
|
2010-06-21 15:41:42 +00:00
|
|
|
spec.get());
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2004-10-12 03:37:20 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
JSObject *jsGetFactoryObj;
|
2010-06-11 20:13:26 +00:00
|
|
|
if (!JS_ValueToObject(cx, NSGetFactory_val, &jsGetFactoryObj) ||
|
2010-06-10 18:11:11 +00:00
|
|
|
!jsGetFactoryObj) {
|
1999-09-07 20:30:25 +00:00
|
|
|
/* XXX report error properly */
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
rv = xpc->WrapJS(cx, jsGetFactoryObj,
|
2010-06-11 20:13:26 +00:00
|
|
|
NS_GET_IID(xpcIJSGetFactory), getter_AddRefs(entry->getfactoryobj));
|
2005-10-20 16:39:24 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
1999-09-07 20:30:25 +00:00
|
|
|
/* XXX report error properly */
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#ifdef DEBUG
|
1999-09-07 06:18:08 +00:00
|
|
|
fprintf(stderr, "mJCL: couldn't get nsIModule from jsval\n");
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#endif
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
// Cache this module for later
|
2010-06-15 19:38:46 +00:00
|
|
|
if (!mModules.Put(aKey, entry))
|
2010-06-10 18:11:11 +00:00
|
|
|
return NULL;
|
2000-09-21 04:30:32 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
// The hash owns the ModuleEntry now, forget about it
|
2010-06-11 20:13:26 +00:00
|
|
|
return entry.forget();
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
// Some stack based classes for cleaning up on early return
|
|
|
|
#ifdef HAVE_PR_MEMMAP
|
|
|
|
class FileAutoCloser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit FileAutoCloser(PRFileDesc *file) : mFile(file) {}
|
|
|
|
~FileAutoCloser() { PR_Close(mFile); }
|
|
|
|
private:
|
|
|
|
PRFileDesc *mFile;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FileMapAutoCloser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit FileMapAutoCloser(PRFileMap *map) : mMap(map) {}
|
|
|
|
~FileMapAutoCloser() { PR_CloseFileMap(mMap); }
|
|
|
|
private:
|
|
|
|
PRFileMap *mMap;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class JSPrincipalsHolder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSPrincipalsHolder(JSContext *cx, JSPrincipals *principals)
|
|
|
|
: mCx(cx), mPrincipals(principals) {}
|
|
|
|
~JSPrincipalsHolder() { JSPRINCIPALS_DROP(mCx, mPrincipals); }
|
|
|
|
private:
|
|
|
|
JSContext *mCx;
|
|
|
|
JSPrincipals *mPrincipals;
|
|
|
|
};
|
|
|
|
|
|
|
|
class JSScriptHolder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSScriptHolder(JSContext *cx, JSScript *script)
|
|
|
|
: mCx(cx), mScript(script) {}
|
|
|
|
~JSScriptHolder() { ::JS_DestroyScript(mCx, mScript); }
|
|
|
|
private:
|
|
|
|
JSContext *mCx;
|
|
|
|
JSScript *mScript;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* static */
|
2010-08-12 19:37:52 +00:00
|
|
|
#ifdef MOZ_ENABLE_LIBXUL
|
2005-10-20 16:39:24 +00:00
|
|
|
nsresult
|
2010-08-12 19:37:52 +00:00
|
|
|
mozJSComponentLoader::ReadScript(StartupCache* cache, nsIURI *uri,
|
2005-10-20 16:39:24 +00:00
|
|
|
JSContext *cx, JSScript **script)
|
|
|
|
{
|
2010-08-12 19:37:52 +00:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCAutoString spec;
|
|
|
|
rv = uri->GetSpec(spec);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-10-07 22:43:15 +00:00
|
|
|
spec.Insert(kCacheKeyPrefix, 0);
|
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
nsAutoArrayPtr<char> buf;
|
|
|
|
PRUint32 len;
|
|
|
|
rv = cache->GetBuffer(spec.get(), getter_Transfers(buf),
|
|
|
|
&len);
|
2005-10-20 16:39:24 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv; // don't warn since NOT_AVAILABLE is an ok error
|
|
|
|
}
|
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
LOG(("Found %s in startupcache\n", spec.get()));
|
|
|
|
nsCOMPtr<nsIObjectInputStream> ois;
|
|
|
|
rv = NS_NewObjectInputStreamFromBuffer(buf, len, getter_AddRefs(ois));
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-08-12 19:37:52 +00:00
|
|
|
buf.forget();
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
return ReadScriptFromStream(cx, ois, script);
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2010-08-12 19:37:52 +00:00
|
|
|
mozJSComponentLoader::WriteScript(StartupCache* cache, JSScript *script,
|
|
|
|
nsIFile *component, nsIURI *uri, JSContext *cx)
|
2005-10-20 16:39:24 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
nsCAutoString spec;
|
|
|
|
rv = uri->GetSpec(spec);
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-10-07 22:43:15 +00:00
|
|
|
spec.Insert(kCacheKeyPrefix, 0);
|
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
LOG(("Writing %s to startupcache\n", spec.get()));
|
|
|
|
nsCOMPtr<nsIObjectOutputStream> oos;
|
|
|
|
nsCOMPtr<nsIStorageStream> storageStream;
|
|
|
|
rv = NS_NewObjectOutputWrappedStorageStream(getter_AddRefs(oos),
|
|
|
|
getter_AddRefs(storageStream));
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
rv = WriteScriptToStream(cx, script, oos);
|
|
|
|
oos->Close();
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-08-12 19:37:52 +00:00
|
|
|
|
|
|
|
nsAutoArrayPtr<char> buf;
|
|
|
|
PRUint32 len;
|
|
|
|
rv = NS_NewBufferFromStorageStream(storageStream, getter_Transfers(buf),
|
|
|
|
&len);
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-08-12 19:37:52 +00:00
|
|
|
|
|
|
|
rv = cache->PutBuffer(spec.get(), buf, len);
|
|
|
|
return rv;
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
2010-08-12 19:37:52 +00:00
|
|
|
#endif //MOZ_ENABLE_LIBXUL
|
2005-10-20 16:39:24 +00:00
|
|
|
|
|
|
|
nsresult
|
2010-06-15 19:38:46 +00:00
|
|
|
mozJSComponentLoader::GlobalForLocation(nsILocalFile *aComponentFile,
|
|
|
|
nsIURI *aURI,
|
2005-12-13 17:55:43 +00:00
|
|
|
JSObject **aGlobal,
|
2008-08-04 17:03:34 +00:00
|
|
|
char **aLocation,
|
|
|
|
jsval *exception)
|
1999-09-07 06:18:08 +00:00
|
|
|
{
|
2005-10-20 16:39:24 +00:00
|
|
|
nsresult rv;
|
2000-02-16 06:26:21 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
JSPrincipals* jsPrincipals = nsnull;
|
2008-07-21 23:56:45 +00:00
|
|
|
JSCLContextHelper cx(this);
|
2010-09-27 22:55:15 +00:00
|
|
|
|
2010-09-02 05:20:32 +00:00
|
|
|
// preserve caller's compartment
|
2010-09-27 22:55:15 +00:00
|
|
|
js::PreserveCompartment pc(cx);
|
2010-09-02 05:20:32 +00:00
|
|
|
|
2000-08-16 04:01:02 +00:00
|
|
|
#ifndef XPCONNECT_STANDALONE
|
2003-11-03 04:26:55 +00:00
|
|
|
rv = mSystemPrincipal->GetJSPrincipals(cx, &jsPrincipals);
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
JSPrincipalsHolder princHolder(mContext, jsPrincipals);
|
2000-08-16 04:01:02 +00:00
|
|
|
#endif
|
2000-05-26 04:56:23 +00:00
|
|
|
|
2004-12-07 18:13:02 +00:00
|
|
|
nsCOMPtr<nsIXPCScriptable> backstagePass;
|
|
|
|
rv = mRuntimeService->GetBackstagePass(getter_AddRefs(backstagePass));
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2004-12-07 18:13:02 +00:00
|
|
|
|
2006-06-10 00:47:40 +00:00
|
|
|
JSCLAutoErrorReporterSetter aers(cx, mozJSLoaderErrorReporter);
|
2003-03-23 07:22:18 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
nsCOMPtr<nsIXPConnect> xpc =
|
|
|
|
do_GetService(kXPConnectServiceContractID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2000-09-21 04:30:32 +00:00
|
|
|
|
2005-06-28 15:21:31 +00:00
|
|
|
// Make sure InitClassesWithNewWrappedGlobal() installs the
|
|
|
|
// backstage pass as the global in our compilation context.
|
|
|
|
JS_SetGlobalObject(cx, nsnull);
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> holder;
|
2000-10-05 04:15:43 +00:00
|
|
|
rv = xpc->InitClassesWithNewWrappedGlobal(cx, backstagePass,
|
|
|
|
NS_GET_IID(nsISupports),
|
2010-07-19 20:36:49 +00:00
|
|
|
mSystemPrincipal,
|
|
|
|
EmptyCString(),
|
2005-05-20 03:12:22 +00:00
|
|
|
nsIXPConnect::
|
|
|
|
FLAG_SYSTEM_GLOBAL_OBJECT,
|
2000-10-05 04:15:43 +00:00
|
|
|
getter_AddRefs(holder));
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2003-03-23 07:22:18 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
JSObject *global;
|
2000-10-05 04:15:43 +00:00
|
|
|
rv = holder->GetJSObject(&global);
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2010-09-27 22:55:15 +00:00
|
|
|
JSAutoEnterCompartment ac;
|
2010-08-27 14:49:31 +00:00
|
|
|
if (!ac.enter(cx, global))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
if (!JS_DefineFunctions(cx, global, gGlobalFun)) {
|
2005-10-20 16:39:24 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2000-10-05 04:15:43 +00:00
|
|
|
}
|
2000-08-16 04:01:02 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
bool realFile = false;
|
|
|
|
// need to be extra careful checking for URIs pointing to files
|
|
|
|
// EnsureFile may not always get called, especially on resource URIs
|
|
|
|
// so we need to call GetFile to make sure this is a valid file
|
|
|
|
nsCOMPtr<nsIFileURL> fileURL = do_QueryInterface(aURI, &rv);
|
|
|
|
nsCOMPtr<nsIFile> testFile;
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
fileURL->GetFile(getter_AddRefs(testFile));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (testFile) {
|
|
|
|
realFile = true;
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> locationHolder;
|
|
|
|
rv = xpc->WrapNative(cx, global, aComponentFile,
|
|
|
|
NS_GET_IID(nsILocalFile),
|
|
|
|
getter_AddRefs(locationHolder));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
JSObject *locationObj;
|
|
|
|
rv = locationHolder->GetJSObject(&locationObj);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!JS_DefineProperty(cx, global, "__LOCATION__",
|
|
|
|
OBJECT_TO_JSVAL(locationObj), nsnull, nsnull, 0))
|
|
|
|
return NS_ERROR_FAILURE;
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString nativePath;
|
|
|
|
// Quick hack to unbust XPCONNECT_STANDALONE.
|
|
|
|
// This leaves the jsdebugger with a non-URL pathname in the
|
|
|
|
// XPCONNECT_STANDALONE case - but at least it builds and runs otherwise.
|
|
|
|
// See: http://bugzilla.mozilla.org/show_bug.cgi?id=121438
|
|
|
|
#ifdef XPCONNECT_STANDALONE
|
|
|
|
localFile->GetNativePath(nativePath);
|
2002-02-03 20:05:22 +00:00
|
|
|
#else
|
2010-06-15 19:38:46 +00:00
|
|
|
rv = aURI->GetSpec(nativePath);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-02-03 20:05:22 +00:00
|
|
|
#endif
|
2000-01-24 21:28:28 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
JSScript *script = nsnull;
|
|
|
|
|
|
|
|
#ifdef MOZ_ENABLE_LIBXUL
|
2005-10-20 16:39:24 +00:00
|
|
|
// Before compiling the script, first check to see if we have it in
|
2010-08-12 19:37:52 +00:00
|
|
|
// the startupcache. Note: as a rule, startupcache errors are not fatal
|
2005-10-20 16:39:24 +00:00
|
|
|
// to loading the script, since we can always slow-load.
|
2010-08-12 19:37:52 +00:00
|
|
|
|
|
|
|
PRBool writeToCache = PR_FALSE;
|
|
|
|
StartupCache* cache = StartupCache::GetSingleton();
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
if (cache) {
|
|
|
|
rv = ReadScript(cache, aURI, cx, &script);
|
2005-10-20 16:39:24 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2010-08-12 19:37:52 +00:00
|
|
|
LOG(("Successfully loaded %s from startupcache\n", nativePath.get()));
|
2005-10-20 16:39:24 +00:00
|
|
|
} else {
|
2010-08-12 19:37:52 +00:00
|
|
|
// This is ok, it just means the script is not yet in the
|
|
|
|
// cache. Could mean that the cache was corrupted and got removed,
|
|
|
|
// but either way we're going to write this out.
|
|
|
|
writeToCache = PR_TRUE;
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-12 19:37:52 +00:00
|
|
|
#endif
|
2005-03-24 18:24:09 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
if (!script) {
|
|
|
|
// The script wasn't in the cache , so compile it now.
|
2005-10-20 16:39:24 +00:00
|
|
|
LOG(("Slow loading %s\n", nativePath.get()));
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2008-08-04 23:54:16 +00:00
|
|
|
// If |exception| is non-null, then our caller wants us to propagate
|
|
|
|
// any exceptions out to our caller. Ensure that the engine doesn't
|
2008-08-04 17:03:34 +00:00
|
|
|
// eagerly report the exception.
|
|
|
|
uint32 oldopts = 0;
|
|
|
|
if (exception) {
|
|
|
|
oldopts = JS_GetOptions(cx);
|
|
|
|
JS_SetOptions(cx, oldopts | JSOPTION_DONT_REPORT_UNCAUGHT);
|
|
|
|
}
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
if (realFile) {
|
2005-10-03 23:34:58 +00:00
|
|
|
#ifdef HAVE_PR_MEMMAP
|
2010-06-15 19:38:46 +00:00
|
|
|
PRInt64 fileSize;
|
|
|
|
rv = aComponentFile->GetFileSize(&fileSize);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return rv;
|
|
|
|
}
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
PRInt64 maxSize;
|
|
|
|
LL_UI2L(maxSize, PR_UINT32_MAX);
|
|
|
|
if (LL_CMP(fileSize, >, maxSize)) {
|
|
|
|
NS_ERROR("file too large");
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
PRFileDesc *fileHandle;
|
|
|
|
rv = aComponentFile->OpenNSPRFileDesc(PR_RDONLY, 0, &fileHandle);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
}
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
// Make sure the file is closed, no matter how we return.
|
|
|
|
FileAutoCloser fileCloser(fileHandle);
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
PRFileMap *map = PR_CreateFileMap(fileHandle, fileSize,
|
|
|
|
PR_PROT_READONLY);
|
|
|
|
if (!map) {
|
|
|
|
NS_ERROR("Failed to create file map");
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
// Make sure the file map is closed, no matter how we return.
|
|
|
|
FileMapAutoCloser mapCloser(map);
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
PRUint32 fileSize32;
|
|
|
|
LL_L2UI(fileSize32, fileSize);
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
char *buf = static_cast<char*>(PR_MemMap(map, 0, fileSize32));
|
|
|
|
if (!buf) {
|
|
|
|
NS_WARNING("Failed to map file");
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
script = JS_CompileScriptForPrincipals(cx, global,
|
|
|
|
jsPrincipals,
|
|
|
|
buf, fileSize32,
|
|
|
|
nativePath.get(), 1);
|
|
|
|
PR_MemUnmap(buf, fileSize32);
|
2005-10-03 23:34:58 +00:00
|
|
|
|
|
|
|
#else /* HAVE_PR_MEMMAP */
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
/**
|
|
|
|
* No memmap implementation, so fall back to using
|
|
|
|
* JS_CompileFileHandleForPrincipals().
|
|
|
|
*/
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
FILE *fileHandle;
|
|
|
|
rv = aComponentFile->OpenANSIFileDesc("r", &fileHandle);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
}
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
script = JS_CompileFileHandleForPrincipals(cx, global,
|
|
|
|
nativePath.get(),
|
|
|
|
fileHandle, jsPrincipals);
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
/* JS will close the filehandle after compilation is complete. */
|
2008-08-04 18:12:51 +00:00
|
|
|
#endif /* HAVE_PR_MEMMAP */
|
2010-06-15 19:38:46 +00:00
|
|
|
} else {
|
|
|
|
nsCOMPtr<nsIIOService> ioService = do_GetIOService(&rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> scriptChannel;
|
|
|
|
rv = ioService->NewChannelFromURI(aURI, getter_AddRefs(scriptChannel));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> scriptStream;
|
|
|
|
rv = scriptChannel->Open(getter_AddRefs(scriptStream));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-08-04 17:03:34 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
PRUint32 len, bytesRead;
|
|
|
|
|
|
|
|
rv = scriptStream->Available(&len);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!len)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
/* malloc an internal buf the size of the file */
|
|
|
|
nsAutoArrayPtr<char> buf(new char[len + 1]);
|
|
|
|
if (!buf)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* read the file in one swoop */
|
|
|
|
rv = scriptStream->Read(buf, len, &bytesRead);
|
|
|
|
if (bytesRead != len)
|
|
|
|
return NS_BASE_STREAM_OSERROR;
|
|
|
|
|
|
|
|
buf[len] = '\0';
|
|
|
|
|
|
|
|
script = JS_CompileScriptForPrincipals(cx, global,
|
|
|
|
jsPrincipals,
|
|
|
|
buf, bytesRead,
|
|
|
|
nativePath.get(), 1);
|
|
|
|
}
|
2008-08-04 17:03:34 +00:00
|
|
|
// Propagate the exception, if one exists. Also, don't leave the stale
|
|
|
|
// exception on this context.
|
|
|
|
// NB: The caller must stick exception into a rooted slot (probably on
|
|
|
|
// its context) as soon as possible to avoid GC hazards.
|
|
|
|
if (exception) {
|
|
|
|
JS_SetOptions(cx, oldopts);
|
|
|
|
if (!script) {
|
|
|
|
JS_GetPendingException(cx, exception);
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
}
|
|
|
|
}
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
if (!script) {
|
1999-11-10 00:34:26 +00:00
|
|
|
#ifdef DEBUG_shaver_off
|
2005-10-20 16:39:24 +00:00
|
|
|
fprintf(stderr, "mJCL: script compilation of %s FAILED\n",
|
|
|
|
nativePath.get());
|
1999-09-07 20:30:25 +00:00
|
|
|
#endif
|
2005-10-20 16:39:24 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
// Ensure that we clean up the script on return.
|
|
|
|
JSScriptHolder scriptHolder(cx, script);
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2006-07-27 17:49:01 +00:00
|
|
|
// Flag this script as a system script
|
|
|
|
// FIXME: BUG 346139: We actually want to flag this exact filename, not
|
|
|
|
// anything that starts with this filename... Maybe we need a way to do
|
|
|
|
// that? On the other hand, the fact that this is in our components dir
|
|
|
|
// means that if someone snuck a malicious file into this dir we're screwed
|
|
|
|
// anyway... So maybe flagging as a prefix is fine.
|
2007-12-20 03:11:02 +00:00
|
|
|
xpc->FlagSystemFilenamePrefix(nativePath.get(), PR_TRUE);
|
2006-07-27 17:49:01 +00:00
|
|
|
|
1999-11-10 00:34:26 +00:00
|
|
|
#ifdef DEBUG_shaver_off
|
2005-10-20 16:39:24 +00:00
|
|
|
fprintf(stderr, "mJCL: compiled JS component %s\n",
|
|
|
|
nativePath.get());
|
1999-09-07 20:30:25 +00:00
|
|
|
#endif
|
2005-10-03 23:34:58 +00:00
|
|
|
|
2010-08-12 19:37:52 +00:00
|
|
|
#ifdef MOZ_ENABLE_LIBXUL
|
|
|
|
if (writeToCache) {
|
|
|
|
// We successfully compiled the script, so cache it.
|
|
|
|
rv = WriteScript(cache, script, aComponentFile, aURI, cx);
|
2005-10-20 16:39:24 +00:00
|
|
|
|
|
|
|
// Don't treat failure to write as fatal, since we might be working
|
2010-08-12 19:37:52 +00:00
|
|
|
// with a read-only cache.
|
2005-10-20 16:39:24 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2010-08-12 19:37:52 +00:00
|
|
|
LOG(("Successfully wrote to cache\n"));
|
2005-10-20 16:39:24 +00:00
|
|
|
} else {
|
2010-08-12 19:37:52 +00:00
|
|
|
LOG(("Failed to write to cache\n"));
|
2003-03-23 07:22:18 +00:00
|
|
|
}
|
1999-09-07 20:30:25 +00:00
|
|
|
}
|
2010-08-12 19:37:52 +00:00
|
|
|
#endif
|
2005-10-20 16:39:24 +00:00
|
|
|
|
2007-06-20 06:29:49 +00:00
|
|
|
// Assign aGlobal here so that it's available to recursive imports.
|
|
|
|
// See bug 384168.
|
|
|
|
*aGlobal = global;
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
jsval retval;
|
|
|
|
if (!JS_ExecuteScript(cx, global, script, &retval)) {
|
|
|
|
#ifdef DEBUG_shaver_off
|
|
|
|
fprintf(stderr, "mJCL: failed to execute %s\n", nativePath.get());
|
|
|
|
#endif
|
2007-06-20 06:29:49 +00:00
|
|
|
*aGlobal = nsnull;
|
2005-10-20 16:39:24 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2003-03-23 07:22:18 +00:00
|
|
|
}
|
1999-09-07 20:30:25 +00:00
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
/* Freed when we remove from the table. */
|
2010-06-15 19:38:46 +00:00
|
|
|
*aLocation = ToNewCString(nativePath);
|
2007-06-20 06:29:49 +00:00
|
|
|
if (!*aLocation) {
|
|
|
|
*aGlobal = nsnull;
|
2005-12-13 17:55:43 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-06-20 06:29:49 +00:00
|
|
|
}
|
2000-09-21 04:30:32 +00:00
|
|
|
|
2010-06-08 00:05:02 +00:00
|
|
|
JS_AddNamedObjectRoot(cx, aGlobal, *aLocation);
|
2005-10-20 16:39:24 +00:00
|
|
|
return NS_OK;
|
1999-09-07 06:18:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-11 20:13:26 +00:00
|
|
|
/* static */ PLDHashOperator
|
2010-06-21 15:41:42 +00:00
|
|
|
mozJSComponentLoader::ClearModules(const nsAString& key, ModuleEntry*& entry, void* cx)
|
2010-06-11 20:13:26 +00:00
|
|
|
{
|
|
|
|
entry->Clear();
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
void
|
|
|
|
mozJSComponentLoader::UnloadModules()
|
2005-12-03 15:27:17 +00:00
|
|
|
{
|
2005-12-13 17:55:43 +00:00
|
|
|
mInitialized = PR_FALSE;
|
2005-12-03 15:27:17 +00:00
|
|
|
|
2007-06-20 06:29:49 +00:00
|
|
|
mInProgressImports.Clear();
|
2007-05-15 23:27:40 +00:00
|
|
|
mImports.Clear();
|
2010-06-11 20:13:26 +00:00
|
|
|
|
|
|
|
mModules.Enumerate(ClearModules, NULL);
|
1999-11-10 00:34:26 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
// Destroying our context will force a GC.
|
|
|
|
JS_DestroyContext(mContext);
|
|
|
|
mContext = nsnull;
|
2003-03-23 07:22:18 +00:00
|
|
|
|
2005-12-13 17:55:43 +00:00
|
|
|
mRuntimeService = nsnull;
|
2008-07-21 23:56:45 +00:00
|
|
|
mContextStack = nsnull;
|
2001-03-27 05:35:52 +00:00
|
|
|
#ifdef DEBUG_shaver_off
|
1999-09-07 06:18:08 +00:00
|
|
|
fprintf(stderr, "mJCL: UnloadAll(%d)\n", aWhen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-05-22 21:57:42 +00:00
|
|
|
/* [JSObject] import (in AUTF8String registryLocation,
|
|
|
|
[optional] in JSObject targetObj ); */
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
mozJSComponentLoader::Import(const nsACString & registryLocation)
|
|
|
|
{
|
|
|
|
// This function should only be called from JS.
|
|
|
|
nsresult rv;
|
|
|
|
|
2010-05-19 23:22:19 +00:00
|
|
|
NS_TIME_FUNCTION_FMT("%s (line %d) (file: %s)", MOZ_FUNCTION_NAME,
|
|
|
|
__LINE__, registryLocation.BeginReading());
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
nsCOMPtr<nsIXPConnect> xpc =
|
|
|
|
do_GetService(kXPConnectServiceContractID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-01-15 15:50:57 +00:00
|
|
|
nsAXPCNativeCallContext *cc = nsnull;
|
|
|
|
rv = xpc->GetCurrentNativeCallContext(&cc);
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2007-08-11 00:53:53 +00:00
|
|
|
{
|
2007-05-15 23:27:40 +00:00
|
|
|
// ensure that we are being call from JS, from this method
|
|
|
|
nsCOMPtr<nsIInterfaceInfo> info;
|
|
|
|
rv = cc->GetCalleeInterface(getter_AddRefs(info));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-08-11 00:53:53 +00:00
|
|
|
nsXPIDLCString name;
|
|
|
|
info->GetName(getter_Copies(name));
|
|
|
|
NS_ASSERTION(nsCRT::strcmp("nsIXPCComponents_Utils", name.get()) == 0,
|
2007-05-15 23:27:40 +00:00
|
|
|
"Components.utils.import must only be called from JS.");
|
|
|
|
PRUint16 methodIndex;
|
|
|
|
const nsXPTMethodInfo *methodInfo;
|
|
|
|
rv = info->GetMethodInfoForName("import", &methodIndex, &methodInfo);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
PRUint16 calleeIndex;
|
|
|
|
rv = cc->GetCalleeMethodIndex(&calleeIndex);
|
|
|
|
NS_ASSERTION(calleeIndex == methodIndex,
|
|
|
|
"Components.utils.import called from another utils method.");
|
2007-08-11 00:53:53 +00:00
|
|
|
}
|
2007-05-15 23:27:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
rv = cc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2007-09-19 00:26:39 +00:00
|
|
|
JSAutoRequest ar(cx);
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
JSObject *targetObject = nsnull;
|
|
|
|
|
|
|
|
PRUint32 argc = 0;
|
|
|
|
rv = cc->GetArgc(&argc);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (argc > 1) {
|
|
|
|
// The caller passed in the optional second argument. Get it.
|
|
|
|
jsval *argv = nsnull;
|
|
|
|
rv = cc->GetArgvPtr(&argv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-07-15 18:21:11 +00:00
|
|
|
if (!JSVAL_IS_OBJECT(argv[1])) {
|
2007-05-15 23:27:40 +00:00
|
|
|
return ReportOnCaller(cc, ERROR_SCOPE_OBJ,
|
|
|
|
PromiseFlatCString(registryLocation).get());
|
|
|
|
}
|
2007-07-15 18:21:11 +00:00
|
|
|
targetObject = JSVAL_TO_OBJECT(argv[1]);
|
2007-05-15 23:27:40 +00:00
|
|
|
} else {
|
|
|
|
// Our targetObject is the caller's global object. Find it by
|
|
|
|
// walking the calling object's parent chain.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXPConnectWrappedNative> wn;
|
|
|
|
rv = cc->GetCalleeWrapper(getter_AddRefs(wn));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
wn->GetJSObject(&targetObject);
|
|
|
|
if (!targetObject) {
|
|
|
|
NS_ERROR("null calling object");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-01-28 23:19:51 +00:00
|
|
|
|
|
|
|
targetObject = JS_GetGlobalForObject(cx, targetObject);
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
|
|
|
|
2010-10-10 22:42:04 +00:00
|
|
|
JSAutoEnterCompartment ac;
|
2010-10-10 22:46:16 +00:00
|
|
|
if (targetObject && !ac.enter(cx, targetObject)) {
|
2010-10-10 22:42:04 +00:00
|
|
|
NS_ERROR("can't enter compartment");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
JSObject *globalObj = nsnull;
|
|
|
|
rv = ImportInto(registryLocation, targetObject, cc, &globalObj);
|
|
|
|
|
2010-10-10 22:46:16 +00:00
|
|
|
if (globalObj && !JS_WrapObject(cx, &globalObj)) {
|
2010-10-10 22:42:04 +00:00
|
|
|
NS_ERROR("can't wrap return value");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
jsval *retval = nsnull;
|
|
|
|
cc->GetRetValPtr(&retval);
|
2010-07-15 06:19:36 +00:00
|
|
|
if (retval)
|
2007-05-15 23:27:40 +00:00
|
|
|
*retval = OBJECT_TO_JSVAL(globalObj);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* [noscript] JSObjectPtr importInto(in AUTF8String registryLocation,
|
|
|
|
in JSObjectPtr targetObj); */
|
|
|
|
NS_IMETHODIMP
|
|
|
|
mozJSComponentLoader::ImportInto(const nsACString & aLocation,
|
|
|
|
JSObject * targetObj,
|
2008-01-15 15:50:57 +00:00
|
|
|
nsAXPCNativeCallContext * cc,
|
2007-05-15 23:27:40 +00:00
|
|
|
JSObject * *_retval)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2007-12-01 06:45:04 +00:00
|
|
|
*_retval = nsnull;
|
2007-05-15 23:27:40 +00:00
|
|
|
|
|
|
|
if (!mInitialized) {
|
|
|
|
rv = ReallyInit();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
2007-06-10 21:13:18 +00:00
|
|
|
nsCOMPtr<nsIIOService> ioService = do_GetIOService(&rv);
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-06-10 21:13:18 +00:00
|
|
|
|
2007-12-01 06:45:04 +00:00
|
|
|
// Get the URI.
|
2007-06-10 21:13:18 +00:00
|
|
|
nsCOMPtr<nsIURI> resURI;
|
|
|
|
rv = ioService->NewURI(aLocation, nsnull, nsnull, getter_AddRefs(resURI));
|
2010-06-15 19:38:46 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-06-10 21:13:18 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
// figure out the resolved URI
|
|
|
|
nsCOMPtr<nsIChannel> scriptChannel;
|
|
|
|
rv = ioService->NewChannelFromURI(resURI, getter_AddRefs(scriptChannel));
|
2007-12-01 06:45:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_INVALID_ARG);
|
2007-06-10 21:13:18 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
nsCOMPtr<nsIURI> resolvedURI;
|
|
|
|
rv = scriptChannel->GetURI(getter_AddRefs(resolvedURI));
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
// get the JAR if there is one
|
|
|
|
nsCOMPtr<nsIJARURI> jarURI;
|
|
|
|
jarURI = do_QueryInterface(resolvedURI, &rv);
|
|
|
|
nsCOMPtr<nsIFileURL> baseFileURL;
|
|
|
|
nsCAutoString jarEntry;
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsCOMPtr<nsIURI> baseURI;
|
|
|
|
rv = jarURI->GetJARFile(getter_AddRefs(baseURI));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
baseFileURL = do_QueryInterface(baseURI, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
jarURI->GetJAREntry(jarEntry);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
} else {
|
|
|
|
baseFileURL = do_QueryInterface(resolvedURI, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
nsCOMPtr<nsIFile> sourceFile;
|
|
|
|
rv = baseFileURL->GetFile(getter_AddRefs(sourceFile));
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-06-15 19:38:46 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFile> sourceLocalFile;
|
|
|
|
sourceLocalFile = do_QueryInterface(sourceFile, &rv);
|
2007-05-15 23:27:40 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
nsAutoString key;
|
|
|
|
if (jarEntry.IsEmpty()) {
|
|
|
|
rv = FileKey(sourceLocalFile, key);
|
|
|
|
} else {
|
|
|
|
rv = JarKey(sourceLocalFile, jarEntry, key);
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
2010-06-15 19:38:46 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-05-15 23:27:40 +00:00
|
|
|
|
|
|
|
ModuleEntry* mod;
|
|
|
|
nsAutoPtr<ModuleEntry> newEntry;
|
2010-06-15 19:38:46 +00:00
|
|
|
if (!mImports.Get(key, &mod) && !mInProgressImports.Get(key, &mod)) {
|
2007-05-15 23:27:40 +00:00
|
|
|
newEntry = new ModuleEntry;
|
2010-06-15 19:38:46 +00:00
|
|
|
if (!newEntry || !mInProgressImports.Put(key, newEntry))
|
2007-05-15 23:27:40 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-06-20 06:29:49 +00:00
|
|
|
|
2008-08-04 17:03:34 +00:00
|
|
|
jsval exception = JSVAL_VOID;
|
2010-06-15 19:38:46 +00:00
|
|
|
rv = GlobalForLocation(sourceLocalFile, resURI, &newEntry->global,
|
2008-08-04 17:03:34 +00:00
|
|
|
&newEntry->location, &exception);
|
2007-06-20 06:29:49 +00:00
|
|
|
|
2010-06-15 19:38:46 +00:00
|
|
|
mInProgressImports.Remove(key);
|
2007-06-20 06:29:49 +00:00
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
*_retval = nsnull;
|
2008-08-04 17:03:34 +00:00
|
|
|
|
|
|
|
if (!JSVAL_IS_VOID(exception)) {
|
|
|
|
// An exception was thrown during compilation. Propagate it
|
|
|
|
// out to our caller so they can report it.
|
|
|
|
JSContext *callercx;
|
|
|
|
cc->GetJSContext(&callercx);
|
|
|
|
JS_SetPendingException(callercx, exception);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Something failed, but we don't know what it is, guess.
|
2008-08-05 01:04:19 +00:00
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
2007-06-20 06:29:49 +00:00
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
mod = newEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(mod->global, "Import table contains entry with no global");
|
|
|
|
*_retval = mod->global;
|
|
|
|
|
|
|
|
jsval symbols;
|
|
|
|
if (targetObj) {
|
2009-02-18 04:11:09 +00:00
|
|
|
JSCLContextHelper cxhelper(this);
|
2010-09-27 22:55:15 +00:00
|
|
|
|
|
|
|
JSAutoEnterCompartment ac;
|
2010-09-02 05:20:32 +00:00
|
|
|
if (!ac.enter(mContext, mod->global))
|
|
|
|
return NULL;
|
2007-09-19 00:26:39 +00:00
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
if (!JS_GetProperty(mContext, mod->global,
|
|
|
|
"EXPORTED_SYMBOLS", &symbols)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_NOT_PRESENT,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get());
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *symbolsObj = nsnull;
|
|
|
|
if (!JSVAL_IS_OBJECT(symbols) ||
|
|
|
|
!(symbolsObj = JSVAL_TO_OBJECT(symbols)) ||
|
|
|
|
!JS_IsArrayObject(mContext, symbolsObj)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_NOT_AN_ARRAY,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over symbols array, installing symbols on targetObj:
|
|
|
|
|
|
|
|
jsuint symbolCount = 0;
|
|
|
|
if (!JS_GetArrayLength(mContext, symbolsObj, &symbolCount)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_GETTING_ARRAY_LENGTH,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get());
|
|
|
|
}
|
2007-06-18 15:36:16 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCAutoString logBuffer;
|
|
|
|
#endif
|
|
|
|
|
2007-05-15 23:27:40 +00:00
|
|
|
for (jsuint i = 0; i < symbolCount; ++i) {
|
|
|
|
jsval val;
|
|
|
|
JSString *symbolName;
|
|
|
|
|
|
|
|
if (!JS_GetElement(mContext, symbolsObj, i, &val) ||
|
|
|
|
!JSVAL_IS_STRING(val)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_ARRAY_ELEMENT,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get(), i);
|
|
|
|
}
|
|
|
|
|
|
|
|
symbolName = JSVAL_TO_STRING(val);
|
|
|
|
if (!JS_GetProperty(mContext, mod->global,
|
|
|
|
JS_GetStringBytes(symbolName), &val)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_GETTING_SYMBOL,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get(),
|
|
|
|
JS_GetStringBytes(symbolName));
|
|
|
|
}
|
|
|
|
|
2010-09-29 17:00:52 +00:00
|
|
|
JSAutoEnterCompartment target_ac;
|
|
|
|
|
|
|
|
if (!target_ac.enter(mContext, targetObj) ||
|
|
|
|
!JS_WrapValue(mContext, &val) ||
|
|
|
|
!JS_SetProperty(mContext, targetObj,
|
2007-05-15 23:27:40 +00:00
|
|
|
JS_GetStringBytes(symbolName), &val)) {
|
2009-02-18 04:11:09 +00:00
|
|
|
return ReportOnCaller(cxhelper, ERROR_SETTING_SYMBOL,
|
2007-05-15 23:27:40 +00:00
|
|
|
PromiseFlatCString(aLocation).get(),
|
|
|
|
JS_GetStringBytes(symbolName));
|
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (i == 0) {
|
2007-06-18 15:36:16 +00:00
|
|
|
logBuffer.AssignLiteral("Installing symbols [ ");
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
2007-06-18 15:36:16 +00:00
|
|
|
logBuffer.Append(JS_GetStringBytes(symbolName));
|
|
|
|
logBuffer.AppendLiteral(" ");
|
2007-05-15 23:27:40 +00:00
|
|
|
if (i == symbolCount - 1) {
|
2007-06-18 15:36:16 +00:00
|
|
|
LOG(("%s] from %s\n", PromiseFlatCString(logBuffer).get(),
|
|
|
|
PromiseFlatCString(aLocation).get()));
|
2007-05-15 23:27:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache this module for later
|
|
|
|
if (newEntry) {
|
2010-06-15 19:38:46 +00:00
|
|
|
if (!mImports.Put(key, newEntry))
|
2007-05-15 23:27:40 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
newEntry.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-10-20 16:39:24 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
mozJSComponentLoader::Observe(nsISupports *subject, const char *topic,
|
|
|
|
const PRUnichar *data)
|
|
|
|
{
|
2010-08-12 19:37:52 +00:00
|
|
|
if (!strcmp(topic, "xpcom-shutdown-loaders")) {
|
2005-12-13 17:55:43 +00:00
|
|
|
UnloadModules();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_ERROR("Unexpected observer topic.");
|
2005-10-20 16:39:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-11 20:13:26 +00:00
|
|
|
/* static */ already_AddRefed<nsIFactory>
|
|
|
|
mozJSComponentLoader::ModuleEntry::GetFactory(const mozilla::Module& module,
|
|
|
|
const mozilla::Module::CIDEntry& entry)
|
|
|
|
{
|
|
|
|
const ModuleEntry& self = static_cast<const ModuleEntry&>(module);
|
|
|
|
NS_ASSERTION(self.getfactoryobj, "Handing out an uninitialized module?");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFactory> f;
|
|
|
|
nsresult rv = self.getfactoryobj->Get(*entry.cid, getter_AddRefs(f));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return f.forget();
|
|
|
|
}
|
|
|
|
|
1999-09-30 21:47:04 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2008-07-21 23:56:45 +00:00
|
|
|
JSCLContextHelper::JSCLContextHelper(mozJSComponentLoader *loader)
|
|
|
|
: mContext(loader->mContext), mContextThread(0),
|
|
|
|
mContextStack(loader->mContextStack)
|
2000-09-21 04:30:32 +00:00
|
|
|
{
|
2008-07-21 23:56:45 +00:00
|
|
|
mContextStack->Push(mContext);
|
2005-06-28 15:21:31 +00:00
|
|
|
mContextThread = JS_GetContextThread(mContext);
|
|
|
|
if (mContextThread) {
|
|
|
|
JS_BeginRequest(mContext);
|
|
|
|
}
|
2000-09-21 04:30:32 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 04:11:09 +00:00
|
|
|
// Pops the context that was pushed and then returns the context that is now at
|
|
|
|
// the top of the stack.
|
|
|
|
JSContext*
|
|
|
|
JSCLContextHelper::Pop()
|
2000-09-21 04:30:32 +00:00
|
|
|
{
|
2009-02-18 04:11:09 +00:00
|
|
|
JSContext* cx = nsnull;
|
|
|
|
if (mContextStack) {
|
|
|
|
JS_ClearNewbornRoots(mContext);
|
|
|
|
if (mContextThread) {
|
|
|
|
JS_EndRequest(mContext);
|
|
|
|
}
|
2008-07-21 23:56:45 +00:00
|
|
|
|
2009-02-18 04:11:09 +00:00
|
|
|
mContextStack->Pop(nsnull);
|
|
|
|
mContextStack->Peek(&cx);
|
|
|
|
mContextStack = nsnull;
|
|
|
|
}
|
|
|
|
return cx;
|
|
|
|
}
|