1998-03-28 02:44:41 +00:00
|
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
|
/*
|
1999-11-06 03:43:54 +00:00
|
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-03-28 02:44:41 +00:00
|
|
|
|
*
|
1999-11-06 03:43:54 +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 for the specific language governing
|
|
|
|
|
* rights and limitations under the License.
|
1998-03-28 02:44:41 +00:00
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
|
*
|
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-03-28 02:44:41 +00:00
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
|
* Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s):
|
2000-05-12 01:09:58 +00:00
|
|
|
|
*
|
|
|
|
|
* This Original Code has been modified by IBM Corporation. Modifications made by IBM
|
|
|
|
|
* described herein are Copyright (c) International Business Machines Corporation, 2000.
|
|
|
|
|
* Modifications to Mozilla code or documentation identified per MPL Section 3.3
|
|
|
|
|
*
|
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
|
* 04/10/2000 IBM Corp. Added DebugBreak() definitions for OS/2
|
2000-06-20 13:59:17 +00:00
|
|
|
|
* 06/19/2000 IBM Corp. Fix DebugBreak() messagebox defaults for OS/2
|
|
|
|
|
* 06/19/2000 Henry Sobotka Fix DebugBreak() for OS/2 on retail build.
|
1998-03-28 02:44:41 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "nsDebug.h"
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#include "prprf.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
|
#include "prlog.h"
|
1999-02-26 03:52:37 +00:00
|
|
|
|
#include "prinit.h"
|
1999-12-07 07:21:30 +00:00
|
|
|
|
#include "plstr.h"
|
2000-01-24 21:28:28 +00:00
|
|
|
|
#include "nsError.h"
|
|
|
|
|
#include "prerror.h"
|
|
|
|
|
#include "prerr.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
1999-06-29 10:27:58 +00:00
|
|
|
|
#if defined(XP_BEOS)
|
|
|
|
|
/* For DEBUGGER macros */
|
|
|
|
|
#include <Debug.h>
|
2000-04-05 02:12:26 +00:00
|
|
|
|
/* for getenv() */
|
|
|
|
|
#include <stdlib.h>
|
1999-06-29 10:27:58 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-05-12 01:09:58 +00:00
|
|
|
|
#if defined(XP_UNIX) || defined(_WIN32) || defined(XP_OS2)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
/* for abort() and getenv() */
|
1999-02-25 17:48:25 +00:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-08-14 23:09:39 +00:00
|
|
|
|
#if defined(XP_UNIX) && !defined(UNIX_CRASH_ON_ASSERT)
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
/* for nsTraceRefcnt::WalkTheStack() */
|
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
|
#include "nsTraceRefcnt.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-06-20 13:59:17 +00:00
|
|
|
|
#if defined(XP_OS2)
|
2000-05-12 01:09:58 +00:00
|
|
|
|
/* Added definitions for DebugBreak() for 2 different OS/2 compilers. Doing
|
|
|
|
|
* the int3 on purpose for Visual Age so that a developer can step over the
|
|
|
|
|
* instruction if so desired. Not always possible if trapping due to exception
|
|
|
|
|
* handling IBM-AKR
|
|
|
|
|
*/
|
|
|
|
|
#define INCL_WINDIALOGS // need for WinMessageBox
|
|
|
|
|
#include <os2.h>
|
|
|
|
|
|
2000-06-20 13:59:17 +00:00
|
|
|
|
#if defined(DEBUG)
|
2000-05-12 01:09:58 +00:00
|
|
|
|
#if defined(XP_OS2_VACPP)
|
|
|
|
|
#include <builtin.h>
|
|
|
|
|
#define DebugBreak() { _interrupt(3); }
|
|
|
|
|
#elif defined(XP_OS2_EMX)
|
|
|
|
|
/* Force a trap */
|
|
|
|
|
#define DebugBreak() { int *pTrap=NULL; *pTrap = 1; }
|
|
|
|
|
#else
|
|
|
|
|
#define DebugBreak()
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-06-20 13:59:17 +00:00
|
|
|
|
#else
|
2000-05-12 01:09:58 +00:00
|
|
|
|
#define DebugBreak()
|
2000-06-20 13:59:17 +00:00
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
#endif /* XP_OS2 */
|
2000-05-12 01:09:58 +00:00
|
|
|
|
|
1998-05-22 21:56:30 +00:00
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
#include <windows.h>
|
1999-12-06 23:34:48 +00:00
|
|
|
|
#include <signal.h>
|
1998-12-23 22:13:47 +00:00
|
|
|
|
#elif defined(XP_MAC)
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#define TEMP_MAC_HACK
|
|
|
|
|
|
|
|
|
|
//------------------------
|
|
|
|
|
#ifdef TEMP_MAC_HACK
|
1999-01-14 19:36:22 +00:00
|
|
|
|
#include <MacTypes.h>
|
|
|
|
|
#include <Processes.h>
|
1999-06-10 19:50:56 +00:00
|
|
|
|
#include <string.h>
|
1998-12-23 22:13:47 +00:00
|
|
|
|
|
1999-01-14 19:36:22 +00:00
|
|
|
|
// TEMPORARY UNTIL WE HAVE MACINTOSH ENVIRONMENT VARIABLES THAT CAN TURN ON
|
|
|
|
|
// LOGGING ON MACINTOSH
|
|
|
|
|
// At this moment, NSPR's logging is a no-op on Macintosh.
|
1998-12-23 22:13:47 +00:00
|
|
|
|
|
1999-01-14 19:36:22 +00:00
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#undef PR_LOG
|
|
|
|
|
#undef PR_LogFlush
|
|
|
|
|
#define PR_LOG(module,level,args) dprintf args
|
|
|
|
|
#define PR_LogFlush()
|
1999-01-14 19:36:22 +00:00
|
|
|
|
static void dprintf(const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
Str255 buffer;
|
|
|
|
|
|
|
|
|
|
va_start(ap, format);
|
2000-06-20 23:10:06 +00:00
|
|
|
|
buffer[0] = std::vsnprintf((char *)buffer + 1, sizeof(buffer) - 1, format, ap);
|
1999-01-14 19:36:22 +00:00
|
|
|
|
va_end(ap);
|
1999-12-07 07:21:30 +00:00
|
|
|
|
if (PL_strcasestr((char *)&buffer[1], "warning"))
|
1999-06-10 19:50:56 +00:00
|
|
|
|
printf("<EFBFBD><EFBFBD><EFBFBD>%s\n", (char*)buffer + 1);
|
|
|
|
|
else
|
|
|
|
|
DebugStr(buffer);
|
1999-01-14 19:36:22 +00:00
|
|
|
|
}
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#endif // TEMP_MAC_HACK
|
|
|
|
|
//------------------------
|
1999-03-01 06:29:14 +00:00
|
|
|
|
#elif defined(XP_UNIX)
|
|
|
|
|
#include<stdlib.h>
|
1998-05-22 21:56:30 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* Define output so users will always see it
|
|
|
|
|
*/
|
2000-10-27 22:43:51 +00:00
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#if defined(XP_UNIX) || defined(_WIN32)
|
|
|
|
|
#define DBG_LOG(log,err,pargs) \
|
|
|
|
|
InitLog(); \
|
|
|
|
|
PR_LOG(log,err,pargs); \
|
|
|
|
|
PR_LogFlush(); \
|
|
|
|
|
printf pargs; putchar('\n');
|
|
|
|
|
#else
|
|
|
|
|
#define DBG_LOG(log,err,pargs) \
|
|
|
|
|
InitLog(); \
|
|
|
|
|
PR_LOG(log,err,pargs); \
|
|
|
|
|
PR_LogFlush();
|
|
|
|
|
#endif
|
1998-12-23 22:13:47 +00:00
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
/*
|
|
|
|
|
* Determine if debugger is present in windows.
|
|
|
|
|
*/
|
|
|
|
|
#if defined (_WIN32)
|
|
|
|
|
|
|
|
|
|
typedef WINBASEAPI BOOL (WINAPI* LPFNISDEBUGGERPRESENT)();
|
|
|
|
|
PRBool InDebugger()
|
|
|
|
|
{
|
|
|
|
|
PRBool fReturn = PR_FALSE;
|
|
|
|
|
LPFNISDEBUGGERPRESENT lpfnIsDebuggerPresent = NULL;
|
|
|
|
|
HINSTANCE hKernel = LoadLibrary("Kernel32.dll");
|
|
|
|
|
|
|
|
|
|
if(hKernel)
|
|
|
|
|
{
|
|
|
|
|
lpfnIsDebuggerPresent =
|
|
|
|
|
(LPFNISDEBUGGERPRESENT)GetProcAddress(hKernel, "IsDebuggerPresent");
|
|
|
|
|
if(lpfnIsDebuggerPresent)
|
|
|
|
|
{
|
|
|
|
|
fReturn = (*lpfnIsDebuggerPresent)();
|
|
|
|
|
}
|
|
|
|
|
FreeLibrary(hKernel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fReturn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* WIN32*/
|
|
|
|
|
|
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* Implementation of the nsDebug methods. Note that this code is
|
|
|
|
|
* always compiled in, in case some other module that uses it is
|
|
|
|
|
* compiled with debugging even if this library is not.
|
|
|
|
|
*/
|
2000-10-28 22:17:53 +00:00
|
|
|
|
static PRLogModuleInfo* gDebugLog;
|
|
|
|
|
|
|
|
|
|
static void InitLog(void)
|
|
|
|
|
{
|
|
|
|
|
if (0 == gDebugLog) {
|
|
|
|
|
gDebugLog = PR_NewLogModule("nsDebug");
|
|
|
|
|
gDebugLog->level = PR_LOG_DEBUG;
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
NS_COM void nsDebug::Assertion(const char* aStr, const char* aExpr,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
|
InitLog();
|
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
char buf[1000];
|
|
|
|
|
PR_snprintf(buf, sizeof(buf),
|
2000-10-28 22:17:53 +00:00
|
|
|
|
"###!!! ASSERTION: %s: '%s', file %s, line %d",
|
|
|
|
|
aStr, aExpr, aFile, aLine);
|
|
|
|
|
|
|
|
|
|
// Write out the assertion message to the debug log
|
|
|
|
|
PR_LOG(gDebugLog, PR_LOG_ERROR, ("%s", buf));
|
|
|
|
|
PR_LogFlush();
|
1999-09-30 21:39:31 +00:00
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
|
// And write it out to the stdout
|
|
|
|
|
printf("%s\n", buf);
|
|
|
|
|
fflush(stdout);
|
1999-12-06 23:34:48 +00:00
|
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
if(!InDebugger())
|
2000-10-28 22:17:53 +00:00
|
|
|
|
{
|
|
|
|
|
char msg[1200];
|
|
|
|
|
PR_snprintf(msg, sizeof(msg),
|
|
|
|
|
"%s\n\nClick Abort to exit the Application.\n"
|
|
|
|
|
"Click Retry to Debug the Application..\n"
|
|
|
|
|
"Click Ignore to continue running the Application.", buf);
|
|
|
|
|
int code = ::MessageBox(NULL, msg, "nsDebug::Assertion",
|
|
|
|
|
MB_ICONSTOP | MB_ABORTRETRYIGNORE);
|
|
|
|
|
switch(code)
|
|
|
|
|
{
|
|
|
|
|
case IDABORT:
|
|
|
|
|
//This should exit us
|
|
|
|
|
raise(SIGABRT);
|
|
|
|
|
//If we are ignored exit this way..
|
|
|
|
|
_exit(3);
|
|
|
|
|
break;
|
1999-12-06 23:34:48 +00:00
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
|
case IDIGNORE:
|
|
|
|
|
return;
|
|
|
|
|
// Fall Through
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-06 23:34:48 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-05-12 01:09:58 +00:00
|
|
|
|
#if defined(XP_OS2)
|
|
|
|
|
char msg[1200];
|
|
|
|
|
PR_snprintf(msg, sizeof(msg),
|
2000-06-20 13:59:17 +00:00
|
|
|
|
"%s\n\nClick Cancel to Debug Application.\n"
|
|
|
|
|
"Click Enter to continue running the Application.", buf);
|
2000-05-12 01:09:58 +00:00
|
|
|
|
ULONG code = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, msg,
|
2000-10-28 22:17:53 +00:00
|
|
|
|
"nsDebug::Assertion", 0,
|
2000-06-20 13:59:17 +00:00
|
|
|
|
MB_ERROR | MB_ENTERCANCEL);
|
2000-05-12 01:09:58 +00:00
|
|
|
|
|
|
|
|
|
/* It is possible that we are executing on a thread that doesn't have a
|
|
|
|
|
* message queue. In that case, the message won't appear, and code will
|
|
|
|
|
* be 0xFFFF. We'll give the user a chance to debug it by calling
|
|
|
|
|
* Break()
|
2000-09-01 21:41:42 +00:00
|
|
|
|
* Actually, that's a really bad idea since this happens a lot with threadsafe
|
|
|
|
|
* assertions and since it means that you can't actually run the debug build
|
|
|
|
|
* outside a debugger without it crashing constantly.
|
2000-05-12 01:09:58 +00:00
|
|
|
|
*/
|
2000-09-01 21:41:42 +00:00
|
|
|
|
if(( code == MBID_ENTER ) || (code == MBID_ERROR))
|
2000-05-12 01:09:58 +00:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
// If Retry, Fall Through
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Break(aFile, aLine);
|
|
|
|
|
}
|
1999-09-30 21:39:31 +00:00
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
NS_COM void nsDebug::Break(const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#ifndef TEMP_MAC_HACK
|
|
|
|
|
DBG_LOG(gDebugLog, PR_LOG_ERROR,
|
|
|
|
|
("###!!! Break: at file %s, line %d", aFile, aLine));
|
|
|
|
|
#if defined(_WIN32)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#ifdef _M_IX86
|
2000-10-28 22:17:53 +00:00
|
|
|
|
::DebugBreak();
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#else /* _M_ALPHA */
|
2000-10-28 22:17:53 +00:00
|
|
|
|
fprintf(stderr, "Break: at file %s\n",aFile, aLine); fflush(stderr);
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#endif
|
1999-12-06 23:34:48 +00:00
|
|
|
|
#elif defined(XP_UNIX) && !defined(UNIX_CRASH_ON_ASSERT)
|
2000-08-14 23:09:39 +00:00
|
|
|
|
fprintf(stderr, "\07");
|
|
|
|
|
|
|
|
|
|
char *assertBehavior = getenv("XPCOM_DEBUG_BREAK");
|
|
|
|
|
|
|
|
|
|
if (!assertBehavior) {
|
|
|
|
|
|
|
|
|
|
// the default; nothing else to do
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
} else if ( strcmp(assertBehavior, "suspend")== 0 ) {
|
|
|
|
|
|
|
|
|
|
// the suspend case is first because we wanna send the signal before
|
|
|
|
|
// other threads have had a chance to get too far from the state that
|
|
|
|
|
// caused this assertion (in case they happen to have been involved).
|
|
|
|
|
//
|
|
|
|
|
fprintf(stderr, "Suspending process; attach with the debugger.\n");
|
|
|
|
|
kill(0, SIGSTOP);
|
|
|
|
|
|
|
|
|
|
} else if ( strcmp(assertBehavior, "warn")==0 ) {
|
|
|
|
|
|
|
|
|
|
// same as default; nothing else to do (see "suspend" case comment for
|
|
|
|
|
// why this compare isn't done as part of the default case)
|
|
|
|
|
//
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
} else if ( strcmp(assertBehavior,"stack")==0 ) {
|
|
|
|
|
|
|
|
|
|
// walk the stack
|
|
|
|
|
//
|
|
|
|
|
nsTraceRefcnt::WalkTheStack(stderr);
|
|
|
|
|
|
|
|
|
|
} else if ( strcmp(assertBehavior,"abort")==0 ) {
|
|
|
|
|
|
|
|
|
|
// same as UNIX_CRASH_ON_ASSERT
|
|
|
|
|
//
|
|
|
|
|
Abort(aFile, aLine);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "unrecognized value of XPCOM_DEBUG_BREAK env var!\n");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
fflush(stderr); // this shouldn't really be necessary, i don't think,
|
|
|
|
|
// but maybe there's some lame stdio that buffers stderr
|
|
|
|
|
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#elif defined(XP_BEOS)
|
|
|
|
|
{
|
2000-02-16 08:06:00 +00:00
|
|
|
|
#ifdef UNIX_CRASH_ON_ASSERT
|
1999-12-06 23:34:48 +00:00
|
|
|
|
char buf[2000];
|
2000-10-28 22:17:53 +00:00
|
|
|
|
sprintf(buf, "Break: at file %s, line %d", aFile, aLine);
|
1999-12-06 23:34:48 +00:00
|
|
|
|
DEBUGGER(buf);
|
2000-02-16 08:06:00 +00:00
|
|
|
|
#endif
|
1999-12-06 23:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
Abort(aFile, aLine);
|
1999-09-30 21:39:31 +00:00
|
|
|
|
#endif
|
2000-10-28 22:17:53 +00:00
|
|
|
|
#endif // TEMP_MAC_HACK
|
1999-09-30 21:39:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
NS_COM void nsDebug::Warning(const char* aMessage,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
|
InitLog();
|
|
|
|
|
|
|
|
|
|
char buf[1000];
|
|
|
|
|
PR_snprintf(buf, sizeof(buf),
|
|
|
|
|
"WARNING: %s, file %s, line %d",
|
|
|
|
|
aMessage, aFile, aLine);
|
|
|
|
|
|
|
|
|
|
// Write out the warning message to the debug log
|
|
|
|
|
PR_LOG(gDebugLog, PR_LOG_ERROR, ("%s", buf));
|
|
|
|
|
|
|
|
|
|
// And write it out to the stdout
|
|
|
|
|
printf("%s\n", buf);
|
1999-09-30 21:39:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
//**************** All Dead Code Below
|
|
|
|
|
// Don't use these!
|
|
|
|
|
NS_COM void nsDebug::AbortIfFalse(const char* aStr, const char* aExpr,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aStr, aExpr, aFile, aLine);
|
1999-09-30 21:39:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-06 23:34:48 +00:00
|
|
|
|
NS_COM PRBool nsDebug::WarnIfFalse(const char* aStr, const char* aExpr,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
1999-09-30 21:39:31 +00:00
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aStr, aExpr, aFile, aLine);
|
1999-12-07 00:15:42 +00:00
|
|
|
|
return PR_TRUE;
|
1999-09-30 21:39:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
|
NS_COM void nsDebug::Abort(const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
|
DBG_LOG(gDebugLog, PR_LOG_ERROR,
|
|
|
|
|
("###!!! Abort: at file %s, line %d", aFile, aLine));
|
1998-03-28 02:44:41 +00:00
|
|
|
|
#if defined(_WIN32)
|
1999-07-24 22:00:00 +00:00
|
|
|
|
#ifdef _M_IX86
|
1998-03-28 02:44:41 +00:00
|
|
|
|
long* __p = (long*) 0x7;
|
|
|
|
|
*__p = 0x7;
|
1999-07-24 22:00:00 +00:00
|
|
|
|
#else /* _M_ALPHA */
|
|
|
|
|
fprintf(stderr, "\07 Abort\n"); fflush(stderr);
|
|
|
|
|
PR_Abort();
|
|
|
|
|
#endif
|
1998-12-23 22:13:47 +00:00
|
|
|
|
#elif defined(XP_MAC)
|
|
|
|
|
ExitToShell();
|
1999-02-02 17:41:54 +00:00
|
|
|
|
#elif defined(XP_UNIX)
|
1999-02-26 03:52:37 +00:00
|
|
|
|
PR_Abort();
|
2000-05-12 01:09:58 +00:00
|
|
|
|
#elif defined(XP_OS2)
|
|
|
|
|
DebugBreak();
|
2000-06-20 13:59:17 +00:00
|
|
|
|
return;
|
1999-06-29 10:27:58 +00:00
|
|
|
|
#elif defined(XP_BEOS)
|
|
|
|
|
{
|
2000-02-16 08:06:00 +00:00
|
|
|
|
#ifndef DEBUG_cls
|
1999-06-29 10:27:58 +00:00
|
|
|
|
char buf[2000];
|
2000-10-28 22:17:53 +00:00
|
|
|
|
sprintf(buf, "Abort: at file %s, line %d", aFile, aLine);
|
1999-06-29 10:27:58 +00:00
|
|
|
|
DEBUGGER(buf);
|
2000-02-16 08:06:00 +00:00
|
|
|
|
#endif
|
1999-06-29 10:27:58 +00:00
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1998-05-22 21:56:30 +00:00
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
|
NS_COM void nsDebug::PreCondition(const char* aStr, const char* aExpr,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aStr, aExpr, aFile, aLine);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_COM void nsDebug::PostCondition(const char* aStr, const char* aExpr,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aStr, aExpr, aFile, aLine);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_COM void nsDebug::NotYetImplemented(const char* aMessage,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aMessage, "NotYetImplemented", aFile, aLine);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_COM void nsDebug::NotReached(const char* aMessage,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aMessage, "Not Reached", aFile, aLine);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_COM void nsDebug::Error(const char* aMessage,
|
|
|
|
|
const char* aFile, PRIntn aLine)
|
|
|
|
|
{
|
1999-12-06 23:34:48 +00:00
|
|
|
|
Assertion(aMessage, "Error", aFile, aLine);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
}
|
2000-01-24 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
|
NS_ErrorAccordingToNSPR()
|
|
|
|
|
{
|
|
|
|
|
PRErrorCode err = PR_GetError();
|
|
|
|
|
switch (err) {
|
|
|
|
|
case PR_OUT_OF_MEMORY_ERROR: return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
case PR_WOULD_BLOCK_ERROR: return NS_BASE_STREAM_WOULD_BLOCK;
|
|
|
|
|
case PR_FILE_NOT_FOUND_ERROR: return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
|
case PR_READ_ONLY_FILESYSTEM_ERROR: return NS_ERROR_FILE_READ_ONLY;
|
|
|
|
|
case PR_NOT_DIRECTORY_ERROR: return NS_ERROR_FILE_NOT_DIRECTORY;
|
|
|
|
|
case PR_IS_DIRECTORY_ERROR: return NS_ERROR_FILE_IS_DIRECTORY;
|
|
|
|
|
case PR_LOOP_ERROR: return NS_ERROR_FILE_UNRESOLVABLE_SYMLINK;
|
|
|
|
|
case PR_FILE_EXISTS_ERROR: return NS_ERROR_FILE_ALREADY_EXISTS;
|
|
|
|
|
case PR_FILE_IS_LOCKED_ERROR: return NS_ERROR_FILE_IS_LOCKED;
|
|
|
|
|
case PR_FILE_TOO_BIG_ERROR: return NS_ERROR_FILE_TOO_BIG;
|
|
|
|
|
case PR_NO_DEVICE_SPACE_ERROR: return NS_ERROR_FILE_NO_DEVICE_SPACE;
|
|
|
|
|
case PR_NAME_TOO_LONG_ERROR: return NS_ERROR_FILE_NAME_TOO_LONG;
|
|
|
|
|
case PR_DIRECTORY_NOT_EMPTY_ERROR: return NS_ERROR_FILE_DIR_NOT_EMPTY;
|
|
|
|
|
case PR_NO_ACCESS_RIGHTS_ERROR: return NS_ERROR_FILE_ACCESS_DENIED;
|
|
|
|
|
default: return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2000-03-05 10:14:50 +00:00
|
|
|
|
// This wrapper around PR_CurrentThread is simply here for debug builds so
|
|
|
|
|
// that clients linking with xpcom don't also have to link with nspr explicitly.
|
|
|
|
|
|
2000-03-08 11:24:10 +00:00
|
|
|
|
#if defined(NS_DEBUG) && defined(NS_MT_SUPPORTED)
|
|
|
|
|
|
2000-03-05 10:14:50 +00:00
|
|
|
|
#include "nsISupportsUtils.h"
|
|
|
|
|
#include "prthread.h"
|
|
|
|
|
|
2000-03-07 03:25:04 +00:00
|
|
|
|
extern "C" NS_EXPORT void* NS_CurrentThread(void);
|
2000-03-08 09:21:32 +00:00
|
|
|
|
extern "C" NS_EXPORT void NS_CheckThreadSafe(void* owningThread, const char* msg);
|
2000-03-07 03:25:04 +00:00
|
|
|
|
|
2000-03-05 10:14:50 +00:00
|
|
|
|
void*
|
|
|
|
|
NS_CurrentThread(void)
|
|
|
|
|
{
|
|
|
|
|
void* th = PR_CurrentThread();
|
|
|
|
|
return th;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-08 09:21:32 +00:00
|
|
|
|
/*
|
|
|
|
|
* DON'T TOUCH THAT DIAL...
|
|
|
|
|
* For now, we're making the thread-safety checking be on by default which, yes, slows
|
|
|
|
|
* down linux a bit... but we're doing it so that everybody has a chance to exercise
|
|
|
|
|
* their code a good deal before the beta. After we branch, we'll turn this back off
|
|
|
|
|
* and then you can enable it explicitly by setting XPCOM_CHECK_THREADSAFE. This will
|
|
|
|
|
* let you verify the thread-safety of your classes without impacting everyone all the
|
|
|
|
|
* time.
|
|
|
|
|
*/
|
|
|
|
|
static PRBool gCheckThreadSafeDefault = PR_TRUE; // READ THE ABOVE COMMENT FIRST!
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
NS_CheckThreadSafe(void* owningThread, const char* msg)
|
|
|
|
|
{
|
|
|
|
|
static int check = -1;
|
|
|
|
|
if (check == -1) {
|
2000-07-05 22:58:28 +00:00
|
|
|
|
const char *eVar = getenv("XPCOM_CHECK_THREADSAFE");
|
|
|
|
|
if (eVar && *eVar == '0')
|
|
|
|
|
check = 0;
|
|
|
|
|
else
|
|
|
|
|
check = gCheckThreadSafeDefault || eVar != 0;
|
2000-03-08 09:21:32 +00:00
|
|
|
|
}
|
|
|
|
|
if (check) {
|
2000-04-06 22:40:25 +00:00
|
|
|
|
NS_ASSERTION(owningThread == NS_CurrentThread(), msg);
|
2000-03-08 09:21:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-08 11:24:10 +00:00
|
|
|
|
#endif // !(defined(NS_DEBUG) && defined(NS_MT_SUPPORTED))
|
2000-03-05 10:14:50 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|