2013-04-16 20:47:10 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/*
|
1998-11-05 08:57:24 +00:00
|
|
|
* JavaScript Debugging support - 'High Level' functions
|
|
|
|
*/
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
#include "jsd.h"
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
/* XXX not 'static' because of old Mac CodeWarrior bug */
|
|
|
|
JSCList _jsd_context_list = JS_INIT_STATIC_CLIST(&_jsd_context_list);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
/* these are used to connect JSD_SetUserCallbacks() with JSD_DebuggerOn() */
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSD_UserCallbacks _callbacks;
|
1998-11-05 08:57:24 +00:00
|
|
|
static void* _user = NULL;
|
|
|
|
static JSRuntime* _jsrt = NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
#ifdef JSD_HAS_DANGEROUS_THREAD
|
|
|
|
static void* _dangerousThread = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef JSD_THREADSAFE
|
2012-09-04 16:02:03 +00:00
|
|
|
JSDStaticLock* _jsd_global_lock = NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
#endif
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
void JSD_ASSERT_VALID_CONTEXT(JSDContext* jsdc)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JS_ASSERT(jsdc->inited);
|
|
|
|
JS_ASSERT(jsdc->jsrt);
|
|
|
|
JS_ASSERT(jsdc->dumbContext);
|
|
|
|
JS_ASSERT(jsdc->glob);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
#endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2013-04-04 09:27:37 +00:00
|
|
|
/***************************************************************************/
|
|
|
|
/* xpconnect related utility functions implemented in jsd_xpc.cpp */
|
|
|
|
|
|
|
|
extern void
|
|
|
|
global_finalize(JSFreeOp* fop, JSObject* obj);
|
|
|
|
|
|
|
|
extern JSObject*
|
|
|
|
CreateJSDGlobal(JSContext *cx, JSClass *clasp);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSClass global_class = {
|
2013-04-04 09:27:37 +00:00
|
|
|
"JSDGlobal", JSCLASS_GLOBAL_FLAGS |
|
|
|
|
JSCLASS_HAS_PRIVATE | JSCLASS_PRIVATE_IS_NSISUPPORTS,
|
2013-04-06 04:22:55 +00:00
|
|
|
JS_PropertyStub, JS_DeletePropertyStub, JS_PropertyStub, JS_StrictPropertyStub,
|
2013-04-04 09:27:37 +00:00
|
|
|
JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, global_finalize
|
1998-03-28 02:44:41 +00:00
|
|
|
};
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
static JSBool
|
|
|
|
_validateUserCallbacks(JSD_UserCallbacks* callbacks)
|
|
|
|
{
|
|
|
|
return !callbacks ||
|
|
|
|
(callbacks->size && callbacks->size <= sizeof(JSD_UserCallbacks));
|
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
static JSDContext*
|
1998-11-05 08:57:24 +00:00
|
|
|
_newJSDContext(JSRuntime* jsrt,
|
|
|
|
JSD_UserCallbacks* callbacks,
|
2010-09-14 23:24:59 +00:00
|
|
|
void* user,
|
|
|
|
JSObject* scopeobj)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext* jsdc = NULL;
|
2012-08-27 20:32:51 +00:00
|
|
|
JSCompartment *oldCompartment = NULL;
|
2011-02-04 08:36:05 +00:00
|
|
|
JSBool ok;
|
1998-11-05 08:57:24 +00:00
|
|
|
|
|
|
|
if( ! jsrt )
|
1998-03-28 02:44:41 +00:00
|
|
|
return NULL;
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if( ! _validateUserCallbacks(callbacks) )
|
1998-03-28 02:44:41 +00:00
|
|
|
return NULL;
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
jsdc = (JSDContext*) calloc(1, sizeof(JSDContext));
|
|
|
|
if( ! jsdc )
|
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
|
|
|
if( ! JSD_INIT_LOCKS(jsdc) )
|
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
|
|
|
JS_INIT_CLIST(&jsdc->links);
|
|
|
|
|
|
|
|
jsdc->jsrt = jsrt;
|
|
|
|
|
|
|
|
if( callbacks )
|
|
|
|
memcpy(&jsdc->userCallbacks, callbacks, callbacks->size);
|
|
|
|
|
|
|
|
jsdc->user = user;
|
|
|
|
|
|
|
|
#ifdef JSD_HAS_DANGEROUS_THREAD
|
|
|
|
jsdc->dangerousThread = _dangerousThread;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
JS_INIT_CLIST(&jsdc->threadsStates);
|
|
|
|
JS_INIT_CLIST(&jsdc->sources);
|
|
|
|
JS_INIT_CLIST(&jsdc->removedSources);
|
|
|
|
|
|
|
|
jsdc->sourceAlterCount = 1;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if( ! jsd_CreateAtomTable(jsdc) )
|
|
|
|
goto label_newJSDContext_failure;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if( ! jsd_InitObjectManager(jsdc) )
|
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
2002-02-27 09:24:14 +00:00
|
|
|
if( ! jsd_InitScriptManager(jsdc) )
|
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
jsdc->dumbContext = JS_NewContext(jsdc->jsrt, 256);
|
1998-03-28 02:44:41 +00:00
|
|
|
if( ! jsdc->dumbContext )
|
1998-11-05 08:57:24 +00:00
|
|
|
goto label_newJSDContext_failure;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2006-06-12 22:39:55 +00:00
|
|
|
JS_BeginRequest(jsdc->dumbContext);
|
2012-06-07 02:52:14 +00:00
|
|
|
JS_SetOptions(jsdc->dumbContext, JS_GetOptions(jsdc->dumbContext));
|
2006-06-12 22:39:55 +00:00
|
|
|
|
2013-04-04 09:27:37 +00:00
|
|
|
jsdc->glob = CreateJSDGlobal(jsdc->dumbContext, &global_class);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2010-09-29 20:39:22 +00:00
|
|
|
if( ! jsdc->glob )
|
2010-09-29 19:28:05 +00:00
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
2012-08-27 20:32:51 +00:00
|
|
|
oldCompartment = JS_EnterCompartment(jsdc->dumbContext, jsdc->glob);
|
2010-09-30 06:32:22 +00:00
|
|
|
|
2012-03-21 04:29:47 +00:00
|
|
|
if ( ! JS_AddNamedObjectRoot(jsdc->dumbContext, &jsdc->glob, "JSD context global") )
|
|
|
|
goto label_newJSDContext_failure;
|
|
|
|
|
2011-02-04 08:36:05 +00:00
|
|
|
ok = JS_InitStandardClasses(jsdc->dumbContext, jsdc->glob);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2012-08-27 20:32:51 +00:00
|
|
|
JS_LeaveCompartment(jsdc->dumbContext, oldCompartment);
|
2011-02-04 08:36:05 +00:00
|
|
|
if( ! ok )
|
|
|
|
goto label_newJSDContext_failure;
|
2010-09-30 06:32:22 +00:00
|
|
|
|
2006-06-12 22:39:55 +00:00
|
|
|
JS_EndRequest(jsdc->dumbContext);
|
|
|
|
|
2001-04-20 03:44:25 +00:00
|
|
|
jsdc->data = NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
jsdc->inited = JS_TRUE;
|
1998-11-05 08:57:24 +00:00
|
|
|
|
|
|
|
JSD_LOCK();
|
|
|
|
JS_INSERT_LINK(&jsdc->links, &_jsd_context_list);
|
|
|
|
JSD_UNLOCK();
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
return jsdc;
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
label_newJSDContext_failure:
|
2006-05-11 13:19:45 +00:00
|
|
|
if( jsdc ) {
|
2012-03-21 04:29:47 +00:00
|
|
|
if ( jsdc->dumbContext && jsdc->glob )
|
|
|
|
JS_RemoveObjectRootRT(JS_GetRuntime(jsdc->dumbContext), &jsdc->glob);
|
2006-05-11 13:19:45 +00:00
|
|
|
jsd_DestroyObjectManager(jsdc);
|
|
|
|
jsd_DestroyAtomTable(jsdc);
|
2011-02-04 08:36:05 +00:00
|
|
|
if( jsdc->dumbContext )
|
|
|
|
JS_EndRequest(jsdc->dumbContext);
|
1998-11-05 08:57:24 +00:00
|
|
|
free(jsdc);
|
2006-05-11 13:19:45 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
return NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-11-05 08:57:24 +00:00
|
|
|
_destroyJSDContext(JSDContext* jsdc)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
|
|
|
JSD_ASSERT_VALID_CONTEXT(jsdc);
|
1998-11-05 08:57:24 +00:00
|
|
|
|
|
|
|
JSD_LOCK();
|
|
|
|
JS_REMOVE_LINK(&jsdc->links);
|
|
|
|
JSD_UNLOCK();
|
|
|
|
|
2012-03-21 04:29:47 +00:00
|
|
|
if ( jsdc->dumbContext && jsdc->glob ) {
|
|
|
|
JS_RemoveObjectRootRT(JS_GetRuntime(jsdc->dumbContext), &jsdc->glob);
|
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_DestroyObjectManager(jsdc);
|
|
|
|
jsd_DestroyAtomTable(jsdc);
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
jsdc->inited = JS_FALSE;
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
/*
|
|
|
|
* We should free jsdc here, but we let it leak in case there are any
|
|
|
|
* asynchronous hooks calling into the system using it as a handle
|
|
|
|
*
|
|
|
|
* XXX we also leak the locks
|
|
|
|
*/
|
2003-01-04 22:47:44 +00:00
|
|
|
JS_DestroyContext(jsdc->dumbContext);
|
|
|
|
jsdc->dumbContext = NULL;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
JSDContext*
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_DebuggerOnForUser(JSRuntime* jsrt,
|
|
|
|
JSD_UserCallbacks* callbacks,
|
2010-09-14 23:24:59 +00:00
|
|
|
void* user,
|
|
|
|
JSObject* scopeobj)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext* jsdc;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2010-09-14 23:24:59 +00:00
|
|
|
jsdc = _newJSDContext(jsrt, callbacks, user, scopeobj);
|
1998-03-28 02:44:41 +00:00
|
|
|
if( ! jsdc )
|
|
|
|
return NULL;
|
|
|
|
|
2009-12-12 21:35:04 +00:00
|
|
|
/*
|
|
|
|
* Set hooks here. The new/destroy script hooks are on even when
|
|
|
|
* the debugger is paused. The destroy hook so we'll clean up
|
|
|
|
* internal data structures when scripts are destroyed, and the
|
|
|
|
* newscript hook for backwards compatibility for now. We'd like
|
|
|
|
* to stop doing that.
|
|
|
|
*/
|
1998-11-05 08:57:24 +00:00
|
|
|
JS_SetNewScriptHookProc(jsdc->jsrt, jsd_NewScriptHookProc, jsdc);
|
|
|
|
JS_SetDestroyScriptHookProc(jsdc->jsrt, jsd_DestroyScriptHookProc, jsdc);
|
2009-12-12 21:35:04 +00:00
|
|
|
jsd_DebuggerUnpause(jsdc);
|
1998-11-05 08:57:24 +00:00
|
|
|
#ifdef LIVEWIRE
|
|
|
|
LWDBG_SetNewScriptHookProc(jsd_NewScriptHookProc, jsdc);
|
|
|
|
#endif
|
|
|
|
if( jsdc->userCallbacks.setContext )
|
|
|
|
jsdc->userCallbacks.setContext(jsdc, jsdc->user);
|
1998-03-28 02:44:41 +00:00
|
|
|
return jsdc;
|
|
|
|
}
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext*
|
|
|
|
jsd_DebuggerOn(void)
|
|
|
|
{
|
|
|
|
JS_ASSERT(_jsrt);
|
|
|
|
JS_ASSERT(_validateUserCallbacks(&_callbacks));
|
2010-09-14 23:24:59 +00:00
|
|
|
return jsd_DebuggerOnForUser(_jsrt, &_callbacks, _user, NULL);
|
1998-11-05 08:57:24 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
jsd_DebuggerOff(JSDContext* jsdc)
|
|
|
|
{
|
2009-12-12 21:35:04 +00:00
|
|
|
jsd_DebuggerPause(jsdc, JS_TRUE);
|
1998-03-28 02:44:41 +00:00
|
|
|
/* clear hooks here */
|
1998-11-05 08:57:24 +00:00
|
|
|
JS_SetNewScriptHookProc(jsdc->jsrt, NULL, NULL);
|
|
|
|
JS_SetDestroyScriptHookProc(jsdc->jsrt, NULL, NULL);
|
|
|
|
#ifdef LIVEWIRE
|
|
|
|
LWDBG_SetNewScriptHookProc(NULL,NULL);
|
|
|
|
#endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/* clean up */
|
1999-09-07 04:54:41 +00:00
|
|
|
JSD_LockScriptSubsystem(jsdc);
|
2002-02-27 09:24:14 +00:00
|
|
|
jsd_DestroyScriptManager(jsdc);
|
1999-09-07 04:54:41 +00:00
|
|
|
JSD_UnlockScriptSubsystem(jsdc);
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_DestroyAllSources(jsdc);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
_destroyJSDContext(jsdc);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if( jsdc->userCallbacks.setContext )
|
|
|
|
jsdc->userCallbacks.setContext(NULL, jsdc->user);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-12-12 21:35:04 +00:00
|
|
|
void
|
|
|
|
jsd_DebuggerPause(JSDContext* jsdc, JSBool forceAllHooksOff)
|
|
|
|
{
|
|
|
|
JS_SetDebuggerHandler(jsdc->jsrt, NULL, NULL);
|
2010-07-24 02:33:49 +00:00
|
|
|
if (forceAllHooksOff || !(jsdc->flags & JSD_COLLECT_PROFILE_DATA)) {
|
2009-12-12 21:35:04 +00:00
|
|
|
JS_SetExecuteHook(jsdc->jsrt, NULL, NULL);
|
|
|
|
JS_SetCallHook(jsdc->jsrt, NULL, NULL);
|
|
|
|
}
|
|
|
|
JS_SetThrowHook(jsdc->jsrt, NULL, NULL);
|
|
|
|
JS_SetDebugErrorHook(jsdc->jsrt, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2012-03-22 05:21:16 +00:00
|
|
|
static JSBool
|
|
|
|
jsd_DebugErrorHook(JSContext *cx, const char *message,
|
|
|
|
JSErrorReport *report, void *closure);
|
|
|
|
|
2009-12-12 21:35:04 +00:00
|
|
|
void
|
|
|
|
jsd_DebuggerUnpause(JSDContext* jsdc)
|
|
|
|
{
|
|
|
|
JS_SetDebuggerHandler(jsdc->jsrt, jsd_DebuggerHandler, jsdc);
|
|
|
|
JS_SetExecuteHook(jsdc->jsrt, jsd_TopLevelCallHook, jsdc);
|
|
|
|
JS_SetCallHook(jsdc->jsrt, jsd_FunctionCallHook, jsdc);
|
|
|
|
JS_SetThrowHook(jsdc->jsrt, jsd_ThrowHandler, jsdc);
|
|
|
|
JS_SetDebugErrorHook(jsdc->jsrt, jsd_DebugErrorHook, jsdc);
|
|
|
|
}
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
void
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_SetUserCallbacks(JSRuntime* jsrt, JSD_UserCallbacks* callbacks, void* user)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
_jsrt = jsrt;
|
1998-03-28 02:44:41 +00:00
|
|
|
_user = user;
|
1998-11-05 08:57:24 +00:00
|
|
|
|
|
|
|
#ifdef JSD_HAS_DANGEROUS_THREAD
|
|
|
|
_dangerousThread = JSD_CURRENT_THREAD();
|
|
|
|
#endif
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
if( callbacks )
|
1998-11-05 08:57:24 +00:00
|
|
|
memcpy(&_callbacks, callbacks, sizeof(JSD_UserCallbacks));
|
1998-03-28 02:44:41 +00:00
|
|
|
else
|
1998-11-05 08:57:24 +00:00
|
|
|
memset(&_callbacks, 0 , sizeof(JSD_UserCallbacks));
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2001-04-20 03:44:25 +00:00
|
|
|
void*
|
|
|
|
jsd_SetContextPrivate(JSDContext* jsdc, void *data)
|
|
|
|
{
|
|
|
|
jsdc->data = data;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
jsd_GetContextPrivate(JSDContext* jsdc)
|
|
|
|
{
|
|
|
|
return jsdc->data;
|
|
|
|
}
|
|
|
|
|
2002-02-27 09:24:14 +00:00
|
|
|
void
|
|
|
|
jsd_ClearAllProfileData(JSDContext* jsdc)
|
|
|
|
{
|
|
|
|
JSDScript *current;
|
|
|
|
|
|
|
|
JSD_LOCK_SCRIPTS(jsdc);
|
|
|
|
current = (JSDScript *)jsdc->scripts.next;
|
|
|
|
while (current != (JSDScript *)&jsdc->scripts)
|
|
|
|
{
|
|
|
|
jsd_ClearScriptProfileData(jsdc, current);
|
|
|
|
current = (JSDScript *)current->links.next;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSD_UNLOCK_SCRIPTS(jsdc);
|
|
|
|
}
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext*
|
|
|
|
jsd_JSDContextForJSContext(JSContext* context)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext* iter;
|
|
|
|
JSDContext* jsdc = NULL;
|
|
|
|
JSRuntime* runtime = JS_GetRuntime(context);
|
|
|
|
|
|
|
|
JSD_LOCK();
|
|
|
|
for( iter = (JSDContext*)_jsd_context_list.next;
|
|
|
|
iter != (JSDContext*)&_jsd_context_list;
|
|
|
|
iter = (JSDContext*)iter->links.next )
|
|
|
|
{
|
|
|
|
if( runtime == iter->jsrt )
|
|
|
|
{
|
|
|
|
jsdc = iter;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
JSD_UNLOCK();
|
|
|
|
return jsdc;
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_DebugErrorHook(JSContext *cx, const char *message,
|
|
|
|
JSErrorReport *report, void *closure)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSDContext* jsdc = (JSDContext*) closure;
|
|
|
|
JSD_ErrorReporter errorReporter;
|
|
|
|
void* errorReporterData;
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
if( ! jsdc )
|
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JS_ASSERT(0);
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
if( JSD_IS_DANGEROUS_THREAD(jsdc) )
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
/* local in case hook gets cleared on another thread */
|
|
|
|
JSD_LOCK();
|
|
|
|
errorReporter = jsdc->errorReporter;
|
|
|
|
errorReporterData = jsdc->errorReporterData;
|
|
|
|
JSD_UNLOCK();
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if(!errorReporter)
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
switch(errorReporter(jsdc, cx, message, report, errorReporterData))
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
|
|
|
case JSD_ERROR_REPORTER_PASS_ALONG:
|
1998-11-05 08:57:24 +00:00
|
|
|
return JS_TRUE;
|
|
|
|
case JSD_ERROR_REPORTER_RETURN:
|
|
|
|
return JS_FALSE;
|
1998-03-28 02:44:41 +00:00
|
|
|
case JSD_ERROR_REPORTER_DEBUG:
|
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
jsval rval;
|
|
|
|
JSD_ExecutionHookProc hook;
|
|
|
|
void* hookData;
|
|
|
|
|
|
|
|
/* local in case hook gets cleared on another thread */
|
|
|
|
JSD_LOCK();
|
|
|
|
hook = jsdc->debugBreakHook;
|
|
|
|
hookData = jsdc->debugBreakHookData;
|
|
|
|
JSD_UNLOCK();
|
|
|
|
|
|
|
|
jsd_CallExecutionHook(jsdc, cx, JSD_HOOK_DEBUG_REQUESTED,
|
|
|
|
hook, hookData, &rval);
|
|
|
|
/* XXX Should make this dependent on ExecutionHook retval */
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
case JSD_ERROR_REPORTER_CLEAR_RETURN:
|
|
|
|
if(report && JSREPORT_IS_EXCEPTION(report->flags))
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
return JS_FALSE;
|
|
|
|
default:
|
|
|
|
JS_ASSERT(0);
|
|
|
|
break;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
JSBool
|
|
|
|
jsd_SetErrorReporter(JSDContext* jsdc,
|
|
|
|
JSD_ErrorReporter reporter,
|
|
|
|
void* callerdata)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSD_LOCK();
|
1998-03-28 02:44:41 +00:00
|
|
|
jsdc->errorReporter = reporter;
|
1998-11-05 08:57:24 +00:00
|
|
|
jsdc->errorReporterData = callerdata;
|
|
|
|
JSD_UNLOCK();
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JSBool
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_GetErrorReporter(JSDContext* jsdc,
|
|
|
|
JSD_ErrorReporter* reporter,
|
|
|
|
void** callerdata)
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1998-11-05 08:57:24 +00:00
|
|
|
JSD_LOCK();
|
|
|
|
if( reporter )
|
|
|
|
*reporter = jsdc->errorReporter;
|
|
|
|
if( callerdata )
|
|
|
|
*callerdata = jsdc->errorReporterData;
|
|
|
|
JSD_UNLOCK();
|
|
|
|
return JS_TRUE;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|