зеркало из https://github.com/mozilla/gecko-dev.git
Родитель
57c7da4bc0
Коммит
afcf1ae54b
|
@ -1,534 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/*
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is mozilla.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "nsDebug.h"
|
||||
#include "prprf.h"
|
||||
#include "prlog.h"
|
||||
#include "prinit.h"
|
||||
#include "plstr.h"
|
||||
#include "nsError.h"
|
||||
#include "prerror.h"
|
||||
#include "prerr.h"
|
||||
|
||||
#if defined(XP_BEOS)
|
||||
/* For DEBUGGER macros */
|
||||
#include <Debug.h>
|
||||
#endif
|
||||
|
||||
#if defined(XP_UNIX) || defined(_WIN32) || defined(XP_OS2) || defined(XP_BEOS)
|
||||
/* for abort() and getenv() */
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#if defined(XP_UNIX) && !defined(UNIX_CRASH_ON_ASSERT)
|
||||
#include <signal.h>
|
||||
/* for nsTraceRefcnt::WalkTheStack() */
|
||||
#include "nsISupportsUtils.h"
|
||||
#include "nsTraceRefcnt.h"
|
||||
|
||||
#if defined(linux) && defined(__i386)
|
||||
# define DebugBreak() { asm("int $3"); }
|
||||
#else
|
||||
# define DebugBreak()
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(XP_OS2)
|
||||
/* 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>
|
||||
|
||||
#if defined(DEBUG)
|
||||
#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
|
||||
|
||||
#else
|
||||
#define DebugBreak()
|
||||
#endif /* DEBUG */
|
||||
#endif /* XP_OS2 */
|
||||
|
||||
#if defined(_WIN32)
|
||||
#include <windows.h>
|
||||
#include <signal.h>
|
||||
#elif defined(XP_MAC)
|
||||
#define TEMP_MAC_HACK
|
||||
|
||||
//------------------------
|
||||
#ifdef TEMP_MAC_HACK
|
||||
#include <MacTypes.h>
|
||||
#include <Processes.h>
|
||||
#include <string.h>
|
||||
|
||||
// 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.
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#undef PR_LOG
|
||||
#undef PR_LogFlush
|
||||
#define PR_LOG(module,level,args) dprintf args
|
||||
#define PR_LogFlush()
|
||||
static void dprintf(const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
Str255 buffer;
|
||||
|
||||
va_start(ap, format);
|
||||
buffer[0] = std::vsnprintf((char *)buffer + 1, sizeof(buffer) - 1, format, ap);
|
||||
va_end(ap);
|
||||
if (PL_strcasestr((char *)&buffer[1], "warning"))
|
||||
printf("¥¥¥%s\n", (char*)buffer + 1);
|
||||
else
|
||||
DebugStr(buffer);
|
||||
}
|
||||
#endif // TEMP_MAC_HACK
|
||||
//------------------------
|
||||
#elif defined(XP_UNIX)
|
||||
#include<stdlib.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Define output so users will always see it
|
||||
*/
|
||||
|
||||
#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
|
||||
|
||||
/*
|
||||
* 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*/
|
||||
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
static PRLogModuleInfo* gDebugLog;
|
||||
|
||||
static void InitLog(void)
|
||||
{
|
||||
if (0 == gDebugLog) {
|
||||
gDebugLog = PR_NewLogModule("nsDebug");
|
||||
gDebugLog->level = PR_LOG_DEBUG;
|
||||
}
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::Assertion(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
InitLog();
|
||||
|
||||
char buf[1000];
|
||||
PR_snprintf(buf, sizeof(buf),
|
||||
"###!!! 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();
|
||||
|
||||
// And write it out to the stdout
|
||||
printf("%s\n", buf);
|
||||
fflush(stdout);
|
||||
|
||||
#if defined(_WIN32)
|
||||
char* assertBehavior = getenv("XPCOM_DEBUG_BREAK");
|
||||
if (assertBehavior && PL_strcmp(assertBehavior, "warn") == 0)
|
||||
return;
|
||||
|
||||
if(!InDebugger())
|
||||
{
|
||||
DWORD code = IDRETRY;
|
||||
|
||||
/* Create the debug dialog out of process to avoid the crashes caused by
|
||||
* Windows events leaking into our event loop from an in process dialog.
|
||||
* We do this by launching windbgdlg.exe (built in xpcom/windbgdlg).
|
||||
* See http://bugzilla.mozilla.org/show_bug.cgi?id=54792
|
||||
*/
|
||||
PROCESS_INFORMATION pi;
|
||||
STARTUPINFO si;
|
||||
char executable[MAX_PATH];
|
||||
char* pName;
|
||||
|
||||
memset(&pi, 0, sizeof(pi));
|
||||
|
||||
memset(&si, 0, sizeof(si));
|
||||
si.cb = sizeof(si);
|
||||
si.wShowWindow = SW_SHOW;
|
||||
|
||||
if(GetModuleFileName(NULL, executable, MAX_PATH) &&
|
||||
NULL != (pName = strrchr(executable, '\\')) &&
|
||||
NULL != strcpy(pName+1, "windbgdlg.exe") &&
|
||||
#ifdef DEBUG_jband
|
||||
(printf("Launching %s\n", executable), PR_TRUE) &&
|
||||
#endif
|
||||
CreateProcess(executable, buf, NULL, NULL, PR_FALSE,
|
||||
DETACHED_PROCESS | NORMAL_PRIORITY_CLASS,
|
||||
NULL, NULL, &si, &pi) &&
|
||||
WAIT_OBJECT_0 == WaitForSingleObject(pi.hProcess, INFINITE) &&
|
||||
GetExitCodeProcess(pi.hProcess, &code))
|
||||
{
|
||||
CloseHandle(pi.hProcess);
|
||||
}
|
||||
|
||||
switch(code)
|
||||
{
|
||||
case IDABORT:
|
||||
//This should exit us
|
||||
raise(SIGABRT);
|
||||
//If we are ignored exit this way..
|
||||
_exit(3);
|
||||
break;
|
||||
|
||||
case IDIGNORE:
|
||||
return;
|
||||
// Fall Through
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(XP_OS2)
|
||||
char msg[1200];
|
||||
PR_snprintf(msg, sizeof(msg),
|
||||
"%s\n\nClick Cancel to Debug Application.\n"
|
||||
"Click Enter to continue running the Application.", buf);
|
||||
ULONG code = MBID_ERROR;
|
||||
code = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, msg,
|
||||
"nsDebug::Assertion", 0,
|
||||
MB_ERROR | MB_ENTERCANCEL);
|
||||
|
||||
/* 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()
|
||||
* 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.
|
||||
*/
|
||||
if(( code == MBID_ENTER ) || (code == MBID_ERROR))
|
||||
{
|
||||
return;
|
||||
// If Retry, Fall Through
|
||||
}
|
||||
#endif
|
||||
|
||||
Break(aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::Break(const char* aFile, PRIntn aLine)
|
||||
{
|
||||
#ifndef TEMP_MAC_HACK
|
||||
DBG_LOG(gDebugLog, PR_LOG_ERROR,
|
||||
("###!!! Break: at file %s, line %d", aFile, aLine));
|
||||
#if defined(_WIN32)
|
||||
#ifdef _M_IX86
|
||||
::DebugBreak();
|
||||
#else /* _M_ALPHA */
|
||||
fprintf(stderr, "Break: at file %s\n",aFile, aLine); fflush(stderr);
|
||||
#endif
|
||||
#elif defined(XP_UNIX) && !defined(UNIX_CRASH_ON_ASSERT)
|
||||
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 if ( strcmp(assertBehavior,"trap")==0 ) {
|
||||
|
||||
DebugBreak();
|
||||
|
||||
} 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
|
||||
|
||||
#elif defined(XP_BEOS)
|
||||
{
|
||||
#ifdef UNIX_CRASH_ON_ASSERT
|
||||
char buf[2000];
|
||||
sprintf(buf, "Break: at file %s, line %d", aFile, aLine);
|
||||
DEBUGGER(buf);
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
Abort(aFile, aLine);
|
||||
#endif
|
||||
#endif // TEMP_MAC_HACK
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::Warning(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
//**************** All Dead Code Below
|
||||
// Don't use these!
|
||||
NS_COM void nsDebug::AbortIfFalse(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aStr, aExpr, aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::WarnIfFalse(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aStr, aExpr, aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::Abort(const char* aFile, PRIntn aLine)
|
||||
{
|
||||
DBG_LOG(gDebugLog, PR_LOG_ERROR,
|
||||
("###!!! Abort: at file %s, line %d", aFile, aLine));
|
||||
#if defined(_WIN32)
|
||||
#ifdef _M_IX86
|
||||
long* __p = (long*) 0x7;
|
||||
*__p = 0x7;
|
||||
#else /* _M_ALPHA */
|
||||
fprintf(stderr, "\07 Abort\n"); fflush(stderr);
|
||||
PR_Abort();
|
||||
#endif
|
||||
#elif defined(XP_MAC)
|
||||
ExitToShell();
|
||||
#elif defined(XP_UNIX)
|
||||
PR_Abort();
|
||||
#elif defined(XP_OS2)
|
||||
DebugBreak();
|
||||
return;
|
||||
#elif defined(XP_BEOS)
|
||||
{
|
||||
#ifndef DEBUG_cls
|
||||
char buf[2000];
|
||||
sprintf(buf, "Abort: at file %s, line %d", aFile, aLine);
|
||||
DEBUGGER(buf);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
NS_COM void nsDebug::PreCondition(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aStr, aExpr, aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::PostCondition(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aStr, aExpr, aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::NotYetImplemented(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aMessage, "NotYetImplemented", aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::NotReached(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aMessage, "Not Reached", aFile, aLine);
|
||||
}
|
||||
|
||||
NS_COM void nsDebug::Error(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine)
|
||||
{
|
||||
Assertion(aMessage, "Error", aFile, aLine);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// 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.
|
||||
|
||||
#if defined(NS_DEBUG) && defined(NS_MT_SUPPORTED)
|
||||
|
||||
#include "nsISupportsUtils.h"
|
||||
#include "prthread.h"
|
||||
|
||||
extern "C" NS_EXPORT void* NS_CurrentThread(void);
|
||||
extern "C" NS_EXPORT void NS_CheckThreadSafe(void* owningThread, const char* msg);
|
||||
|
||||
void*
|
||||
NS_CurrentThread(void)
|
||||
{
|
||||
void* th = PR_CurrentThread();
|
||||
return th;
|
||||
}
|
||||
|
||||
/*
|
||||
* 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) {
|
||||
const char *eVar = getenv("XPCOM_CHECK_THREADSAFE");
|
||||
if (eVar && *eVar == '0')
|
||||
check = 0;
|
||||
else
|
||||
check = gCheckThreadSafeDefault || eVar != 0;
|
||||
}
|
||||
if (check) {
|
||||
NS_ASSERTION(owningThread == NS_CurrentThread(), msg);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // !(defined(NS_DEBUG) && defined(NS_MT_SUPPORTED))
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
|
@ -1,356 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Netscape Public License
|
||||
* Version 1.1 (the "License"); you may not use this file except in
|
||||
* compliance with the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Netscape Communications Corporation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 1998
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#ifndef nsDebug_h___
|
||||
#define nsDebug_h___
|
||||
|
||||
#ifndef nscore_h___
|
||||
#include "nscore.h"
|
||||
#endif
|
||||
|
||||
#ifndef nsError_h__
|
||||
#include "nsError.h"
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
#define NS_DEBUG
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Namespace for debugging methods. Note that your code must use the
|
||||
* macros defined later in this file so that the debug code can be
|
||||
* conditionally compiled out.
|
||||
*/
|
||||
|
||||
/* in case this is included by a C file */
|
||||
#ifdef __cplusplus
|
||||
|
||||
class nsDebug {
|
||||
public:
|
||||
/**
|
||||
* When called, this will log a fatal abort message (to stderr and
|
||||
* to the NSPR log file) and then abort the program. This is
|
||||
* used by the NS_ABORT_IF_FALSE macro below when debugging is
|
||||
* enabled.
|
||||
*/
|
||||
static NS_COM void AbortIfFalse(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a warning message when an expression is not true. Used by
|
||||
* the NS_WARN_IF_FALSE macro below when debugging is enabled.
|
||||
*
|
||||
* The default behavior of this method is print a message to stderr
|
||||
* and to log an event in the NSPR log file.
|
||||
*/
|
||||
static NS_COM void WarnIfFalse(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Enable flying a warning message box (if the platform supports
|
||||
* such a thing) when WarnIfFalse is called in addition to
|
||||
* the usual printing to stderr and the NSPR log file.
|
||||
*
|
||||
* If aOnOff is PR_TRUE then the message-box is enabled, otherwise
|
||||
* the message-box is disabled.
|
||||
*
|
||||
* The default state for the message-box enable is "off".
|
||||
*
|
||||
* Note also that the implementation looks at an environment
|
||||
* variable (for those platforms that have environment variables...)
|
||||
* called MOZ_WARNING_MESSAGE_BOX that when set enables the
|
||||
* warning message box by default.
|
||||
*/
|
||||
static NS_COM void SetWarningMessageBoxEnable(PRBool aOnOff);
|
||||
|
||||
/**
|
||||
* Get the current setting of the message-box enable.
|
||||
*/
|
||||
static NS_COM PRBool GetWarningMessageBoxEnable(void);
|
||||
|
||||
// Note: Methods below this line are the old ones; please start using
|
||||
// the new ones. The old ones will be removed eventually!
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
// XXX add in log controls here
|
||||
// XXX probably want printf type arguments
|
||||
|
||||
/**
|
||||
* Abort the executing program. This works on all architectures.
|
||||
*/
|
||||
static NS_COM void Abort(const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Break the executing program into the debugger.
|
||||
*/
|
||||
static NS_COM void Break(const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a pre-condition message to the debug log
|
||||
*/
|
||||
static NS_COM void PreCondition(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a post-condition message to the debug log
|
||||
*/
|
||||
static NS_COM void PostCondition(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log an assertion message to the debug log
|
||||
*/
|
||||
static NS_COM void Assertion(const char* aStr, const char* aExpr,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a not-yet-implemented message to the debug log
|
||||
*/
|
||||
static NS_COM void NotYetImplemented(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a not-reached message to the debug log
|
||||
*/
|
||||
static NS_COM void NotReached(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log an error message to the debug log. This call returns.
|
||||
*/
|
||||
static NS_COM void Error(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine);
|
||||
|
||||
/**
|
||||
* Log a warning message to the debug log.
|
||||
*/
|
||||
static NS_COM void Warning(const char* aMessage,
|
||||
const char* aFile, PRIntn aLine);
|
||||
};
|
||||
|
||||
#ifdef DEBUG
|
||||
|
||||
/**
|
||||
* Abort the execution of the program if the expression evaluates to
|
||||
* false.
|
||||
*
|
||||
* There is no status value returned from the macro.
|
||||
*
|
||||
* Note that the non-debug version of this macro does <b>not</b>
|
||||
* evaluate the expression argument. Hence side effect statements
|
||||
* as arguments to the macro will yield improper execution in a
|
||||
* non-debug build. For example:
|
||||
*
|
||||
* NS_ABORT_IF_FALSE(0 == foo++, "yikes foo should be zero");
|
||||
*
|
||||
* Note also that the non-debug version of this macro does <b>not</b>
|
||||
* evaluate the message argument.
|
||||
*/
|
||||
#define NS_ABORT_IF_FALSE(_expr, _msg) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(_expr)) { \
|
||||
nsDebug::AbortIfFalse(_msg, #_expr, __FILE__, __LINE__);\
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
/**
|
||||
* Warn if a given condition is false.
|
||||
*
|
||||
* Program execution continues past the usage of this macro.
|
||||
*
|
||||
* Note also that the non-debug version of this macro does <b>not</b>
|
||||
* evaluate the message argument.
|
||||
*/
|
||||
#define NS_WARN_IF_FALSE(_expr,_msg) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(_expr)) { \
|
||||
nsDebug::WarnIfFalse(_msg, #_expr, __FILE__, __LINE__); \
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
// Note: Macros below this line are the old ones; please start using
|
||||
// the new ones. The old ones will be removed eventually!
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Test a precondition for truth. If the expression is not true then
|
||||
* trigger a program failure.
|
||||
*/
|
||||
#define NS_PRECONDITION(expr, str) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(expr)) { \
|
||||
nsDebug::PreCondition(str, #expr, __FILE__, __LINE__); \
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
/**
|
||||
* Test an assertion for truth. If the expression is not true then
|
||||
* trigger a program failure.
|
||||
*/
|
||||
#define NS_ASSERTION(expr, str) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(expr)) { \
|
||||
nsDebug::Assertion(str, #expr, __FILE__, __LINE__); \
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
/**
|
||||
* Test a post-condition for truth. If the expression is not true then
|
||||
* trigger a program failure.
|
||||
*/
|
||||
#define NS_POSTCONDITION(expr, str) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(expr)) { \
|
||||
nsDebug::PostCondition(str, #expr, __FILE__, __LINE__); \
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
/**
|
||||
* This macros triggers a program failure if executed. It indicates that
|
||||
* an attempt was made to execute some unimplimented functionality.
|
||||
*/
|
||||
#define NS_NOTYETIMPLEMENTED(str) \
|
||||
nsDebug::NotYetImplemented(str, __FILE__, __LINE__)
|
||||
|
||||
/**
|
||||
* This macros triggers a program failure if executed. It indicates that
|
||||
* an attempt was made to execute some unimplimented functionality.
|
||||
*/
|
||||
#define NS_NOTREACHED(str) \
|
||||
nsDebug::NotReached(str, __FILE__, __LINE__)
|
||||
|
||||
/**
|
||||
* Log an error message.
|
||||
*/
|
||||
#define NS_ERROR(str) \
|
||||
nsDebug::Error(str, __FILE__, __LINE__)
|
||||
|
||||
/**
|
||||
* Log a warning message.
|
||||
*/
|
||||
#define NS_WARNING(str) \
|
||||
nsDebug::Warning(str, __FILE__, __LINE__)
|
||||
|
||||
/**
|
||||
* Trigger an abort
|
||||
*/
|
||||
#define NS_ABORT() \
|
||||
nsDebug::Abort(__FILE__, __LINE__)
|
||||
|
||||
/**
|
||||
* Cause a break
|
||||
*/
|
||||
#define NS_BREAK() \
|
||||
nsDebug::Break(__FILE__, __LINE__)
|
||||
|
||||
#else /* NS_DEBUG */
|
||||
|
||||
/**
|
||||
* The non-debug version of these macros do not evaluate the
|
||||
* expression or the message arguments to the macro.
|
||||
*/
|
||||
#define NS_ABORT_IF_FALSE(_expr, _msg) /* nothing */
|
||||
#define NS_WARN_IF_FALSE(_expr, _msg) /* nothing */
|
||||
#define NS_PRECONDITION(expr, str) /* nothing */
|
||||
#define NS_ASSERTION(expr, str) /* nothing */
|
||||
#define NS_POSTCONDITION(expr, str) /* nothing */
|
||||
#define NS_NOTYETIMPLEMENTED(str) /* nothing */
|
||||
#define NS_NOTREACHED(str) /* nothing */
|
||||
#define NS_ERROR(str) /* nothing */
|
||||
#define NS_WARNING(str) /* nothing */
|
||||
#define NS_ABORT() /* nothing */
|
||||
#define NS_BREAK() /* nothing */
|
||||
|
||||
#endif /* ! NS_DEBUG */
|
||||
#endif /* __cplusplus */
|
||||
|
||||
// Macros for checking the trueness of an expression passed in within an
|
||||
// interface implementation. These need to be compiled regardless of the
|
||||
// NS_DEBUG flag
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define NS_ENSURE_TRUE(x, ret) \
|
||||
PR_BEGIN_MACRO \
|
||||
if (!(x)) { \
|
||||
NS_WARNING("NS_ENSURE_TRUE(" #x ") failed"); \
|
||||
return ret; \
|
||||
} \
|
||||
PR_END_MACRO
|
||||
|
||||
#define NS_ENSURE_FALSE(x, ret) \
|
||||
NS_ENSURE_TRUE(!(x), ret)
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Macros for checking results
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define NS_ENSURE_SUCCESS(res, ret) \
|
||||
NS_ENSURE_TRUE(NS_SUCCEEDED(res), ret)
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Macros for checking state and arguments upon entering interface boundaries
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define NS_ENSURE_ARG(arg) \
|
||||
NS_ENSURE_TRUE(arg, NS_ERROR_INVALID_ARG)
|
||||
|
||||
#define NS_ENSURE_ARG_POINTER(arg) \
|
||||
NS_ENSURE_TRUE(arg, NS_ERROR_INVALID_POINTER)
|
||||
|
||||
#define NS_ENSURE_ARG_MIN(arg, min) \
|
||||
NS_ENSURE_TRUE((arg) >= min, NS_ERROR_INVALID_ARG)
|
||||
|
||||
#define NS_ENSURE_ARG_MAX(arg, max) \
|
||||
NS_ENSURE_TRUE((arg) <= max, NS_ERROR_INVALID_ARG)
|
||||
|
||||
#define NS_ENSURE_ARG_RANGE(arg, min, max) \
|
||||
NS_ENSURE_TRUE(((arg) >= min) && ((arg) <= max), NS_ERROR_INVALID_ARG)
|
||||
|
||||
#define NS_ENSURE_STATE(state) \
|
||||
NS_ENSURE_TRUE(state, NS_ERROR_UNEXPECTED)
|
||||
|
||||
#define NS_ENSURE_NO_AGGREGATION(outer) \
|
||||
NS_ENSURE_FALSE(outer, NS_ERROR_NO_AGGREGATION)
|
||||
|
||||
#define NS_ENSURE_PROPER_AGGREGATION(outer, iid) \
|
||||
NS_ENSURE_FALSE(outer && !iid.Equals(NS_GET_IID(nsISupports)), NS_ERROR_INVALID_ARG)
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#endif /* nsDebug_h___ */
|
|
@ -1,152 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||||
*
|
||||
* 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 http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is the Mozilla browser.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications, Inc. Portions created by Netscape are
|
||||
* Copyright (C) 1999, Mozilla. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Scott Collins <scc@netscape.com>
|
||||
* Pierre Phaneuf <pp@ludusdesign.com>
|
||||
*/
|
||||
|
||||
// nsWeakReference.cpp
|
||||
|
||||
#include "nsWeakReference.h"
|
||||
#include "nsCOMPtr.h"
|
||||
|
||||
nsresult
|
||||
nsQueryReferent::operator()( const nsIID& aIID, void** answer ) const
|
||||
{
|
||||
nsresult status;
|
||||
if ( mWeakPtr )
|
||||
{
|
||||
if ( NS_FAILED(status = mWeakPtr->QueryReferent(aIID, answer)) )
|
||||
*answer = 0;
|
||||
}
|
||||
else
|
||||
status = NS_ERROR_NULL_POINTER;
|
||||
|
||||
if ( mErrorPtr )
|
||||
*mErrorPtr = status;
|
||||
return status;
|
||||
}
|
||||
|
||||
nsresult
|
||||
nsGetWeakReference::operator()( const nsIID&, void** aResult ) const
|
||||
{
|
||||
nsresult status;
|
||||
// nsIWeakReference** result = &NS_STATIC_CAST(nsIWeakReference*, *aResult);
|
||||
*aResult = 0;
|
||||
|
||||
if ( mRawPtr )
|
||||
{
|
||||
nsCOMPtr<nsISupportsWeakReference> factoryPtr = do_QueryInterface(mRawPtr, &status);
|
||||
NS_ASSERTION(factoryPtr, "Oops! You're asking for a weak reference to an object that doesn't support that.");
|
||||
if ( factoryPtr )
|
||||
{
|
||||
nsIWeakReference* temp;
|
||||
status = factoryPtr->GetWeakReference(&temp);
|
||||
*aResult = temp;
|
||||
}
|
||||
// else, |status| has already been set by |do_QueryInterface|
|
||||
}
|
||||
else
|
||||
status = NS_ERROR_NULL_POINTER;
|
||||
|
||||
if ( mErrorPtr )
|
||||
*mErrorPtr = status;
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
NS_COM nsIWeakReference* // or else |already_AddRefed<nsIWeakReference>|
|
||||
NS_GetWeakReference( nsISupports* aInstancePtr, nsresult* aErrorPtr )
|
||||
{
|
||||
void* result = 0;
|
||||
nsGetWeakReference(aInstancePtr, aErrorPtr)(NS_GET_IID(nsIWeakReference), &result);
|
||||
return NS_STATIC_CAST(nsIWeakReference*, result);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsSupportsWeakReference::GetWeakReference( nsIWeakReference** aInstancePtr )
|
||||
{
|
||||
if ( !aInstancePtr )
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
if ( !mProxy )
|
||||
mProxy = new nsWeakReference(this);
|
||||
*aInstancePtr = mProxy;
|
||||
|
||||
nsresult status;
|
||||
if ( !*aInstancePtr )
|
||||
status = NS_ERROR_OUT_OF_MEMORY;
|
||||
else
|
||||
{
|
||||
NS_ADDREF(*aInstancePtr);
|
||||
status = NS_OK;
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP_(nsrefcnt)
|
||||
nsWeakReference::AddRef()
|
||||
{
|
||||
return ++mRefCount;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP_(nsrefcnt)
|
||||
nsWeakReference::Release()
|
||||
{
|
||||
nsrefcnt temp = --mRefCount;
|
||||
if ( !mRefCount )
|
||||
delete this;
|
||||
return temp;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWeakReference::QueryInterface( const nsIID& aIID, void** aInstancePtr )
|
||||
{
|
||||
NS_ASSERTION(aInstancePtr, "QueryInterface requires a non-NULL destination!");
|
||||
|
||||
if ( !aInstancePtr )
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
nsISupports* foundInterface;
|
||||
if ( aIID.Equals(NS_GET_IID(nsIWeakReference)) )
|
||||
foundInterface = NS_STATIC_CAST(nsIWeakReference*, this);
|
||||
else if ( aIID.Equals(NS_GET_IID(nsISupports)) )
|
||||
foundInterface = NS_STATIC_CAST(nsISupports*, this);
|
||||
else
|
||||
foundInterface = 0;
|
||||
|
||||
nsresult status;
|
||||
if ( !foundInterface )
|
||||
status = NS_NOINTERFACE;
|
||||
else
|
||||
{
|
||||
NS_ADDREF(foundInterface);
|
||||
status = NS_OK;
|
||||
}
|
||||
|
||||
*aInstancePtr = foundInterface;
|
||||
return status;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWeakReference::QueryReferent( const nsIID& aIID, void** aInstancePtr )
|
||||
{
|
||||
return mReferent ? mReferent->QueryInterface(aIID, aInstancePtr) : NS_ERROR_NULL_POINTER;
|
||||
}
|
|
@ -1,126 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||||
*
|
||||
* 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 http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is the Mozilla browser.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications, Inc. Portions created by Netscape are
|
||||
* Copyright (C) 1999, Mozilla. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Scott Collins <scc@netscape.com>
|
||||
*/
|
||||
|
||||
#ifndef nsWeakReference_h__
|
||||
#define nsWeakReference_h__
|
||||
|
||||
// nsWeakReference.h
|
||||
|
||||
#include "nsIWeakReference.h"
|
||||
|
||||
class nsWeakReference;
|
||||
|
||||
class NS_COM nsSupportsWeakReference : public nsISupportsWeakReference
|
||||
{
|
||||
public:
|
||||
nsSupportsWeakReference()
|
||||
: mProxy(0)
|
||||
{
|
||||
// nothing else to do here
|
||||
}
|
||||
|
||||
inline virtual ~nsSupportsWeakReference();
|
||||
|
||||
NS_DECL_NSISUPPORTSWEAKREFERENCE
|
||||
|
||||
private:
|
||||
friend class nsWeakReference;
|
||||
|
||||
void
|
||||
NoticeProxyDestruction()
|
||||
// ...called (only) by an |nsWeakReference| from _its_ dtor.
|
||||
{
|
||||
mProxy = 0;
|
||||
}
|
||||
|
||||
nsWeakReference* mProxy;
|
||||
|
||||
protected:
|
||||
|
||||
inline void ClearWeakReferences();
|
||||
PRBool HasWeakReferences() const {return mProxy != 0;}
|
||||
};
|
||||
|
||||
class NS_COM nsWeakReference : public nsIWeakReference
|
||||
{
|
||||
public:
|
||||
// nsISupports...
|
||||
NS_IMETHOD_(nsrefcnt) AddRef();
|
||||
NS_IMETHOD_(nsrefcnt) Release();
|
||||
NS_IMETHOD QueryInterface( const nsIID&, void** );
|
||||
|
||||
// nsIWeakReference...
|
||||
NS_DECL_NSIWEAKREFERENCE
|
||||
|
||||
private:
|
||||
friend class nsSupportsWeakReference;
|
||||
|
||||
nsWeakReference( nsSupportsWeakReference* referent )
|
||||
: mRefCount(0),
|
||||
mReferent(referent)
|
||||
// ...I can only be constructed by an |nsSupportsWeakReference|
|
||||
{
|
||||
// nothing else to do here
|
||||
}
|
||||
|
||||
virtual ~nsWeakReference()
|
||||
// ...I will only be destroyed by calling |delete| myself.
|
||||
{
|
||||
if ( mReferent )
|
||||
mReferent->NoticeProxyDestruction();
|
||||
}
|
||||
|
||||
void
|
||||
NoticeReferentDestruction()
|
||||
// ...called (only) by an |nsSupportsWeakReference| from _its_ dtor.
|
||||
{
|
||||
mReferent = 0;
|
||||
}
|
||||
|
||||
nsrefcnt mRefCount;
|
||||
nsSupportsWeakReference* mReferent;
|
||||
};
|
||||
|
||||
inline
|
||||
void
|
||||
nsSupportsWeakReference::ClearWeakReferences()
|
||||
/*
|
||||
Usually being called from |nsSupportsWeakReference::~nsSupportsWeakReference|
|
||||
will be good enough, but you may have a case where you need to call disconnect
|
||||
your weak references in an outer destructor (to prevent some client holding a
|
||||
weak reference from re-entering your destructor).
|
||||
*/
|
||||
{
|
||||
if ( mProxy )
|
||||
{
|
||||
mProxy->NoticeReferentDestruction();
|
||||
mProxy = 0;
|
||||
}
|
||||
}
|
||||
|
||||
inline
|
||||
nsSupportsWeakReference::~nsSupportsWeakReference()
|
||||
{
|
||||
ClearWeakReferences();
|
||||
}
|
||||
|
||||
#endif
|
Загрузка…
Ссылка в новой задаче