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"
|
2013-06-12 21:17:56 +00:00
|
|
|
#include "nsCxPusher.h"
|
|
|
|
|
|
|
|
using mozilla::AutoSafeJSContext;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
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;
|
2013-09-19 19:26:36 +00:00
|
|
|
static void* _user = nullptr;
|
|
|
|
static JSRuntime* _jsrt = nullptr;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
#ifdef JSD_HAS_DANGEROUS_THREAD
|
2013-09-19 19:26:36 +00:00
|
|
|
static void* _dangerousThread = nullptr;
|
1998-11-05 08:57:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef JSD_THREADSAFE
|
2013-09-19 19:26:36 +00:00
|
|
|
JSDStaticLock* _jsd_global_lock = nullptr;
|
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->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*
|
2013-09-11 12:49:05 +00:00
|
|
|
CreateJSDGlobal(JSContext *cx, const JSClass *clasp);
|
2013-04-04 09:27:37 +00:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2013-09-11 12:49:05 +00:00
|
|
|
static const 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
|
|
|
};
|
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
static bool
|
1998-11-05 08:57:24 +00:00
|
|
|
_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
|
|
|
{
|
2013-09-19 19:26:36 +00:00
|
|
|
JSDContext* jsdc = nullptr;
|
2013-06-12 21:17:56 +00:00
|
|
|
bool ok = true;
|
|
|
|
AutoSafeJSContext cx;
|
1998-11-05 08:57:24 +00:00
|
|
|
|
|
|
|
if( ! jsrt )
|
2013-09-19 19:26:36 +00:00
|
|
|
return nullptr;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
if( ! _validateUserCallbacks(callbacks) )
|
2013-09-19 19:26:36 +00:00
|
|
|
return nullptr;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
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;
|
|
|
|
|
2006-06-12 22:39:55 +00:00
|
|
|
|
2013-06-12 21:17:56 +00:00
|
|
|
jsdc->glob = CreateJSDGlobal(cx, &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;
|
|
|
|
|
2013-06-12 21:17:56 +00:00
|
|
|
{
|
|
|
|
JSAutoCompartment ac(cx, jsdc->glob);
|
|
|
|
ok = JS_AddNamedObjectRoot(cx, &jsdc->glob, "JSD context global") &&
|
|
|
|
JS_InitStandardClasses(cx, jsdc->glob);
|
|
|
|
}
|
2011-02-04 08:36:05 +00:00
|
|
|
if( ! ok )
|
|
|
|
goto label_newJSDContext_failure;
|
2010-09-30 06:32:22 +00:00
|
|
|
|
2013-09-19 19:26:36 +00:00
|
|
|
jsdc->data = nullptr;
|
2013-08-07 06:59:54 +00:00
|
|
|
jsdc->inited = 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 ) {
|
2013-06-12 21:17:56 +00:00
|
|
|
if ( jsdc->glob )
|
|
|
|
JS_RemoveObjectRootRT(JS_GetRuntime(cx), &jsdc->glob);
|
2006-05-11 13:19:45 +00:00
|
|
|
jsd_DestroyObjectManager(jsdc);
|
|
|
|
jsd_DestroyAtomTable(jsdc);
|
1998-11-05 08:57:24 +00:00
|
|
|
free(jsdc);
|
2006-05-11 13:19:45 +00:00
|
|
|
}
|
2013-09-19 19:26:36 +00:00
|
|
|
return nullptr;
|
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();
|
|
|
|
|
2013-06-12 21:17:56 +00:00
|
|
|
if ( jsdc->glob ) {
|
|
|
|
JS_RemoveObjectRootRT(jsdc->jsrt, &jsdc->glob);
|
2012-03-21 04:29:47 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
jsd_DestroyObjectManager(jsdc);
|
|
|
|
jsd_DestroyAtomTable(jsdc);
|
|
|
|
|
2013-08-07 06:59:54 +00:00
|
|
|
jsdc->inited = false;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
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
|
|
|
|
*/
|
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 )
|
2013-09-19 19:26:36 +00:00
|
|
|
return nullptr;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
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);
|
2013-07-10 20:53:11 +00:00
|
|
|
|
1998-11-05 08:57:24 +00:00
|
|
|
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));
|
2013-09-19 19:26:36 +00:00
|
|
|
return jsd_DebuggerOnForUser(_jsrt, &_callbacks, _user, nullptr);
|
1998-11-05 08:57:24 +00:00
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
jsd_DebuggerOff(JSDContext* jsdc)
|
|
|
|
{
|
2013-08-07 06:59:54 +00:00
|
|
|
jsd_DebuggerPause(jsdc, true);
|
1998-03-28 02:44:41 +00:00
|
|
|
/* clear hooks here */
|
2013-09-19 19:26:36 +00:00
|
|
|
JS_SetNewScriptHookProc(jsdc->jsrt, nullptr, nullptr);
|
|
|
|
JS_SetDestroyScriptHookProc(jsdc->jsrt, nullptr, nullptr);
|
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 )
|
2013-09-19 19:26:36 +00:00
|
|
|
jsdc->userCallbacks.setContext(nullptr, jsdc->user);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2009-12-12 21:35:04 +00:00
|
|
|
void
|
2013-08-08 22:53:04 +00:00
|
|
|
jsd_DebuggerPause(JSDContext* jsdc, bool forceAllHooksOff)
|
2009-12-12 21:35:04 +00:00
|
|
|
{
|
2013-09-19 19:26:36 +00:00
|
|
|
JS_SetDebuggerHandler(jsdc->jsrt, nullptr, nullptr);
|
2010-07-24 02:33:49 +00:00
|
|
|
if (forceAllHooksOff || !(jsdc->flags & JSD_COLLECT_PROFILE_DATA)) {
|
2013-09-19 19:26:36 +00:00
|
|
|
JS_SetExecuteHook(jsdc->jsrt, nullptr, nullptr);
|
|
|
|
JS_SetCallHook(jsdc->jsrt, nullptr, nullptr);
|
2009-12-12 21:35:04 +00:00
|
|
|
}
|
2013-09-19 19:26:36 +00:00
|
|
|
JS_SetThrowHook(jsdc->jsrt, nullptr, nullptr);
|
|
|
|
JS_SetDebugErrorHook(jsdc->jsrt, nullptr, nullptr);
|
2009-12-12 21:35:04 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
static bool
|
2012-03-22 05:21:16 +00:00
|
|
|
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;
|
2013-09-19 19:26:36 +00:00
|
|
|
JSDContext* jsdc = nullptr;
|
1998-11-05 08:57:24 +00:00
|
|
|
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
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
static bool
|
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);
|
2013-08-07 06:59:54 +00:00
|
|
|
return true;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
1998-11-05 08:57:24 +00:00
|
|
|
if( JSD_IS_DANGEROUS_THREAD(jsdc) )
|
2013-08-07 06:59:54 +00:00
|
|
|
return 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)
|
2013-08-07 06:59:54 +00:00
|
|
|
return 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:
|
2013-08-07 06:59:54 +00:00
|
|
|
return true;
|
1998-11-05 08:57:24 +00:00
|
|
|
case JSD_ERROR_REPORTER_RETURN:
|
2013-08-07 06:59:54 +00:00
|
|
|
return 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 */
|
2013-08-07 06:59:54 +00:00
|
|
|
return 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);
|
2013-08-07 06:59:54 +00:00
|
|
|
return false;
|
1998-11-05 08:57:24 +00:00
|
|
|
default:
|
|
|
|
JS_ASSERT(0);
|
|
|
|
break;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
2013-08-07 06:59:54 +00:00
|
|
|
return true;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
bool
|
1998-11-05 08:57:24 +00:00
|
|
|
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();
|
2013-08-07 06:59:54 +00:00
|
|
|
return true;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
bool
|
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();
|
2013-08-07 06:59:54 +00:00
|
|
|
return true;
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|