2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-10-19 17:48:55 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +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-10-19 17:48:55 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +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-10-19 17:48:55 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2000-12-23 16:43:32 +00:00
|
|
|
* L. David Baron <dbaron@fas.harvard.edu>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* 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 ***** */
|
1998-10-19 17:48:55 +00:00
|
|
|
#ifndef nsTraceRefcnt_h___
|
|
|
|
#define nsTraceRefcnt_h___
|
|
|
|
|
|
|
|
#include "nsCom.h"
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-21 03:44:37 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2000-12-23 16:43:32 +00:00
|
|
|
class nsISupports;
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
// Normaly, the implementation of NS_LOG_ADDREF and NS_LOG_RELEASE
|
|
|
|
// will use a stack crawl to determine who called Addref/Release on an
|
|
|
|
// xpcom object. If your platform can't implement a stack crawling
|
|
|
|
// function, then define this to symbol. When the symbol is defined
|
|
|
|
// then the NS_LOG_ADDREF_CALL and NS_LOG_RELEASE_CALL will expand
|
|
|
|
// differently.
|
|
|
|
#undef NS_LOSING_ARCHITECTURE
|
|
|
|
|
|
|
|
// By default refcnt logging is not part of the build.
|
|
|
|
#undef NS_BUILD_REFCNT_LOGGING
|
|
|
|
|
|
|
|
#if (defined(DEBUG) || defined(FORCE_BUILD_REFCNT_LOGGING))
|
|
|
|
// Make refcnt logging part of the build. This doesn't mean that
|
|
|
|
// actual logging will occur (that requires a seperate enable; see
|
|
|
|
// nsTraceRefcnt.h for more information).
|
|
|
|
#define NS_BUILD_REFCNT_LOGGING 1
|
|
|
|
#endif
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
// If NO_BUILD_REFCNT_LOGGING is defined then disable refcnt logging
|
|
|
|
// in the build. This overrides FORCE_BUILD_REFCNT_LOGGING.
|
|
|
|
#if defined(NO_BUILD_REFCNT_LOGGING)
|
|
|
|
#undef NS_BUILD_REFCNT_LOGGING
|
1999-10-04 23:36:18 +00:00
|
|
|
#endif
|
1998-10-19 17:48:55 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
1998-10-19 17:48:55 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_ADDREF(_p, _rc, _type, _size) \
|
|
|
|
nsTraceRefcnt::LogAddRef((_p), (_rc), (_type), (PRUint32) (_size))
|
1998-10-19 17:48:55 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_RELEASE(_p, _rc, _type) \
|
|
|
|
nsTraceRefcnt::LogRelease((_p), (_rc), (_type))
|
1998-10-19 17:48:55 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#ifdef NS_LOSING_ARCHITECTURE
|
1999-06-15 03:25:27 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_ADDREF_CALL(_p,_rc,_file,_line) \
|
|
|
|
nsTraceRefcnt::LogAddRefCall((_p), (_rc), (_file), (_line))
|
1999-09-14 13:24:25 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_RELEASE_CALL(_p,_rc,_file,_line) \
|
|
|
|
nsTraceRefcnt::LogReleaseCall((_p), (_rc), (_file), (_line))
|
1999-06-15 03:25:27 +00:00
|
|
|
|
1999-10-16 01:57:18 +00:00
|
|
|
#define NS_LOG_NEW_XPCOM(_p,_type,_size,_file,_line) \
|
|
|
|
nsTraceRefcnt::LogNewXPCOM((_p),(_type),(PRUint32)(_size),(_file),(_line))
|
|
|
|
|
|
|
|
#define NS_LOG_DELETE_XPCOM(_p,_file,_line) \
|
|
|
|
nsTraceRefcnt::LogDeleteXPCOM((_p),(_file),(_line))
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#else
|
1998-10-19 17:48:55 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_ADDREF_CALL(_p,_rc,_file,_line) _rc
|
|
|
|
#define NS_LOG_RELEASE_CALL(_p,_rc,_file,_line) _rc
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-16 01:57:18 +00:00
|
|
|
#define NS_LOG_NEW_XPCOM(_p,_type,_size,_file,_line)
|
|
|
|
#define NS_LOG_DELETE_XPCOM(_p,_file,_line)
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#endif
|
1999-10-04 23:36:18 +00:00
|
|
|
|
2000-12-23 16:43:32 +00:00
|
|
|
#define MOZ_DECL_CTOR_COUNTER(_type)
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define MOZ_COUNT_CTOR(_type) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
nsTraceRefcnt::LogCtor((void*)this, #_type, sizeof(*this)); \
|
1999-10-04 23:36:18 +00:00
|
|
|
PR_END_MACRO
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define MOZ_COUNT_DTOR(_type) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
nsTraceRefcnt::LogDtor((void*)this, #_type, sizeof(*this)); \
|
1999-10-04 23:36:18 +00:00
|
|
|
PR_END_MACRO
|
|
|
|
|
2000-06-15 02:23:55 +00:00
|
|
|
#ifdef HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR // from autoconf (XXX needs to be
|
|
|
|
// set for non-autoconf platforms)
|
|
|
|
|
|
|
|
// nsCOMPtr.h allows these macros to be defined by clients
|
2000-12-23 16:43:32 +00:00
|
|
|
// These logging functions require dynamic_cast<void *>, so we don't
|
|
|
|
// define these macros if we don't have dynamic_cast.
|
2000-06-15 02:23:55 +00:00
|
|
|
#define NSCAP_LOG_ASSIGNMENT(_c, _p) \
|
2000-12-23 16:43:32 +00:00
|
|
|
if ((_p)) nsTraceRefcnt::LogAddCOMPtr((_c),NS_STATIC_CAST(nsISupports*,_p))
|
2000-06-15 02:23:55 +00:00
|
|
|
|
|
|
|
#define NSCAP_RELEASE(_c, _p); \
|
|
|
|
if ((_p)) { \
|
2000-12-23 16:43:32 +00:00
|
|
|
nsTraceRefcnt::LogReleaseCOMPtr((_c),NS_STATIC_CAST(nsISupports*,_p)); \
|
2000-06-15 02:23:55 +00:00
|
|
|
NS_RELEASE(_p); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR */
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#else /* !NS_BUILD_REFCNT_LOGGING */
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#define NS_LOG_ADDREF(_p, _rc, _type, _size)
|
|
|
|
#define NS_LOG_RELEASE(_p, _rc, _type)
|
|
|
|
#define NS_LOG_NEW_XPCOM(_p,_type,_size,_file,_line)
|
|
|
|
#define NS_LOG_DELETE_XPCOM(_p,_file,_line)
|
|
|
|
#define NS_LOG_ADDREF_CALL(_p,_rc,_file,_line) _rc
|
|
|
|
#define NS_LOG_RELEASE_CALL(_p,_rc,_file,_line) _rc
|
2000-12-23 16:43:32 +00:00
|
|
|
#define MOZ_DECL_CTOR_COUNTER(_type)
|
1999-10-05 14:54:05 +00:00
|
|
|
#define MOZ_COUNT_CTOR(_type)
|
|
|
|
#define MOZ_COUNT_DTOR(_type)
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
#endif /* NS_BUILD_REFCNT_LOGGING */
|
1999-10-04 23:36:18 +00:00
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct nsTraceRefcntStats {
|
|
|
|
nsrefcnt mAddRefs;
|
|
|
|
nsrefcnt mReleases;
|
|
|
|
nsrefcnt mCreates;
|
|
|
|
nsrefcnt mDestroys;
|
1999-10-12 00:29:54 +00:00
|
|
|
double mRefsOutstandingTotal;
|
2000-02-05 02:07:45 +00:00
|
|
|
double mRefsOutstandingSquared;
|
1999-10-12 00:29:54 +00:00
|
|
|
double mObjsOutstandingTotal;
|
2000-02-05 02:07:45 +00:00
|
|
|
double mObjsOutstandingSquared;
|
1999-10-08 20:29:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Function type used by GatherStatistics. For each type that data has
|
|
|
|
// been gathered for, this function is called with the counts of the
|
|
|
|
// various operations that have been logged. The function can return
|
|
|
|
// PR_FALSE if the gathering should stop.
|
|
|
|
//
|
|
|
|
// aCurrentStats is the current value of the counters. aPrevStats is
|
|
|
|
// the previous value of the counters which is established by the
|
|
|
|
// nsTraceRefcnt::SnapshotStatistics call.
|
|
|
|
typedef PRBool (PR_CALLBACK *nsTraceRefcntStatFunc)
|
|
|
|
(const char* aTypeName,
|
|
|
|
PRUint32 aInstanceSize,
|
|
|
|
nsTraceRefcntStats* aCurrentStats,
|
|
|
|
nsTraceRefcntStats* aPrevStats,
|
|
|
|
void *aClosure);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Note: The implementations for these methods are no-ops in a build
|
|
|
|
* where NS_BUILD_REFCNT_LOGGING is disabled.
|
|
|
|
*/
|
|
|
|
class nsTraceRefcnt {
|
|
|
|
public:
|
2000-12-23 16:43:32 +00:00
|
|
|
static NS_COM void Startup();
|
|
|
|
|
|
|
|
static NS_COM void Shutdown();
|
|
|
|
|
1999-10-08 20:29:47 +00:00
|
|
|
static NS_COM void LogAddRef(void* aPtr,
|
|
|
|
nsrefcnt aNewRefCnt,
|
|
|
|
const char* aTypeName,
|
|
|
|
PRUint32 aInstanceSize);
|
|
|
|
|
|
|
|
static NS_COM void LogRelease(void* aPtr,
|
|
|
|
nsrefcnt aNewRefCnt,
|
|
|
|
const char* aTypeName);
|
|
|
|
|
|
|
|
static NS_COM void LogNewXPCOM(void* aPtr,
|
|
|
|
const char* aTypeName,
|
|
|
|
PRUint32 aInstanceSize,
|
|
|
|
const char* aFile,
|
|
|
|
int aLine);
|
|
|
|
|
|
|
|
static NS_COM void LogDeleteXPCOM(void* aPtr,
|
|
|
|
const char* aFile,
|
|
|
|
int aLine);
|
|
|
|
|
|
|
|
static NS_COM nsrefcnt LogAddRefCall(void* aPtr,
|
|
|
|
nsrefcnt aNewRefcnt,
|
|
|
|
const char* aFile,
|
|
|
|
int aLine);
|
|
|
|
|
|
|
|
static NS_COM nsrefcnt LogReleaseCall(void* aPtr,
|
|
|
|
nsrefcnt aNewRefcnt,
|
|
|
|
const char* aFile,
|
|
|
|
int aLine);
|
|
|
|
|
|
|
|
static NS_COM void LogCtor(void* aPtr, const char* aTypeName,
|
|
|
|
PRUint32 aInstanceSize);
|
|
|
|
|
|
|
|
static NS_COM void LogDtor(void* aPtr, const char* aTypeName,
|
|
|
|
PRUint32 aInstanceSize);
|
|
|
|
|
2000-12-23 16:43:32 +00:00
|
|
|
static NS_COM void LogAddCOMPtr(void *aCOMPtr, nsISupports *aObject);
|
2000-06-15 02:23:55 +00:00
|
|
|
|
2000-12-23 16:43:32 +00:00
|
|
|
static NS_COM void LogReleaseCOMPtr(void *aCOMPtr, nsISupports *aObject);
|
2000-06-15 02:23:55 +00:00
|
|
|
|
1999-10-12 09:30:12 +00:00
|
|
|
enum StatisticsType {
|
|
|
|
ALL_STATS,
|
|
|
|
NEW_STATS
|
|
|
|
};
|
1999-10-08 20:29:47 +00:00
|
|
|
|
1999-10-12 09:30:12 +00:00
|
|
|
static NS_COM nsresult DumpStatistics(StatisticsType type = ALL_STATS,
|
1999-10-23 03:16:19 +00:00
|
|
|
FILE* out = 0);
|
1999-10-12 09:30:12 +00:00
|
|
|
|
1999-10-12 00:29:54 +00:00
|
|
|
static NS_COM void ResetStatistics(void);
|
1999-10-08 20:29:47 +00:00
|
|
|
|
|
|
|
static NS_COM void GatherStatistics(nsTraceRefcntStatFunc aFunc,
|
|
|
|
void* aClosure);
|
|
|
|
|
|
|
|
static NS_COM void LoadLibrarySymbols(const char* aLibraryName,
|
|
|
|
void* aLibrayHandle);
|
|
|
|
|
|
|
|
static NS_COM void DemangleSymbol(const char * aSymbol,
|
|
|
|
char * aBuffer,
|
|
|
|
int aBufLen);
|
|
|
|
|
1999-10-21 03:44:37 +00:00
|
|
|
static NS_COM void WalkTheStack(FILE* aStream);
|
1999-11-19 03:50:28 +00:00
|
|
|
|
|
|
|
static NS_COM void SetPrefServiceAvailability(PRBool avail);
|
2000-12-23 16:43:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell nsTraceRefcnt whether refcounting, allocation, and destruction
|
|
|
|
* activity is legal. This is used to trigger assertions for any such
|
|
|
|
* activity that occurs because of static constructors or destructors.
|
|
|
|
*/
|
|
|
|
static NS_COM void SetActivityIsLegal(PRBool aLegal);
|
1999-10-08 20:29:47 +00:00
|
|
|
};
|
1999-10-07 21:50:20 +00:00
|
|
|
|
2000-02-05 02:07:45 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// And now for that utility that you've all been asking for...
|
|
|
|
|
2000-02-24 04:55:05 +00:00
|
|
|
extern "C" NS_COM void
|
2000-02-05 02:07:45 +00:00
|
|
|
NS_MeanAndStdDev(double n, double sumOfValues, double sumOfSquaredValues,
|
|
|
|
double *meanResult, double *stdDevResult);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
1998-10-19 17:48:55 +00:00
|
|
|
#endif /* nsTraceRefcnt_h___ */
|