debug.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _DEBUG_H_
  36. #define _DEBUG_H_
  37. #include "hlxclib/stdio.h"
  38. #include <stdarg.h>
  39. extern void vdprintf(int, int, const char*, va_list);
  40. #ifdef HELIX_CONFIG_NOSTATICS
  41. # include "globals/hxglobals.h"
  42. #endif
  43. #if !defined(HELIX_CONFIG_NOSTATICS)
  44. extern const char* progname;
  45. #else
  46. extern const char* const progname;
  47. #endif
  48. extern FILE* error_file;
  49. // Profiling
  50. #if defined (DEBUG) && (defined(_FREEBSD) || defined(_OPENBSD) || defined(_NETBSD))
  51. #define PRE_PROFILE
  52.      struct rusage before;
  53.      getrusage(RUSAGE_SELF, &before);
  54. #define AFT_PROFILE
  55.      struct rusage after;
  56.      int x[13];
  57.      getrusage(RUSAGE_SELF, &after);
  58.      x[0]  = (after.ru_utime.tv_sec   * 1000000 +
  59.            after.ru_utime.tv_usec) -
  60.              (before.ru_utime.tv_sec  * 1000000 +
  61.            before.ru_utime.tv_usec);
  62.      x[1]  = (after.ru_stime.tv_sec   * 1000000 +
  63.            after.ru_stime.tv_usec) -
  64.              (before.ru_stime.tv_sec  * 1000000 +
  65.            before.ru_stime.tv_usec);
  66.      x[2]  = after.ru_minflt   - before.ru_minflt;
  67.      x[3]  = after.ru_majflt   - before.ru_majflt;
  68.      x[4]  = after.ru_nswap    - before.ru_nswap;
  69.      x[5]  = after.ru_inblock  - before.ru_inblock;
  70.      x[6]  = after.ru_oublock  - before.ru_oublock;
  71.      x[7]  = after.ru_nsignals - before.ru_nsignals;
  72.      x[8]  = after.ru_msgsnd   - before.ru_msgsnd;
  73.      x[9]  = after.ru_msgrcv   - before.ru_msgrcv;
  74.      x[10] = after.ru_nvcsw   - before.ru_nvcsw;
  75.      x[11] = after.ru_nivcsw   - before.ru_nivcsw;
  76.      x[12] = after.ru_maxrss   - before.ru_maxrss;
  77. DPRINTF(D_PROF, ("n"
  78. "       user     %3dus  system %3dus pg-reclaim %3dn"
  79.      "    pg-fault %3d    swaps  %3d   blkin %3dn"
  80.      "    blkout   %3d    nsig   %3d   msg-sent %3dn"
  81.      "       msg-rcv  %3dn"
  82. "       voluntary / involuntary context switches %3d / %3dn"
  83. "       Max RSS setsize %3dn",
  84.     x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7],
  85.          x[8], x[9], x[10], x[11], x[12]));
  86. #else
  87. #define PRE_PROFILE
  88. #define AFT_PROFILE
  89. #endif
  90. #ifdef DEBUG
  91. extern "C" void rm_panic(const char*, ...)
  92. #ifdef  __GNUC__
  93. __attribute__((format(printf,1,2)))
  94. #endif
  95. ;
  96. #define PANIC(x) rm_panic x
  97. #else
  98. #define PANIC(x)
  99. #endif
  100. #ifdef DEBUG
  101. inline int& debug_level()
  102. {
  103. #if defined(HELIX_CONFIG_NOSTATICS)
  104.     static const INT32 nDebugLevel = 0;
  105.     return (int&)HXGlobalInt32::Get(&nDebugLevel, 0 );
  106. #else
  107.     static int nDebugLevel = 0;
  108.     return nDebugLevel;
  109. #endif    
  110. }
  111. inline int& debug_func_level()
  112. {
  113. #if defined(HELIX_CONFIG_NOSTATICS)
  114.     static const INT32 nDebugFuncLevel = 0;
  115.     return (int&)HXGlobalInt32::Get(&nDebugFuncLevel, 0 );
  116. #else
  117.     static int nDebugFuncLevel = 0;
  118.     return nDebugFuncLevel;
  119. #endif    
  120. }
  121.     extern void dprintf( const char *, ... )
  122. #ifdef __GNUC__
  123. __attribute__((format(printf,1,2)))
  124. #endif /* __GNUC__ */
  125.     ;
  126.     extern void dprintfx( const char *, ... )
  127. #ifdef __GNUC__
  128. __attribute__((format(printf,1,2)))
  129. #endif /* __GNUC__ */
  130.     ;
  131. #ifdef DEVEL_DEBUG
  132. #define DPRINTF(mask,x) if (debug_level() & (mask)) {
  133. dprintf("%s:%d ", __FILE__, __LINE__); dprintfx x; } else
  134. #else
  135. #define DPRINTF(mask,x) if (debug_level() & (mask)) dprintf x; else
  136. #endif /* DEVEL_DEBUG */
  137. #else /* No Debuggging */
  138. #ifdef _CARBON
  139. #undef DPRINTF
  140. #endif
  141. #define DPRINTF(mask,x)
  142. #endif
  143. #if 0
  144. inline void
  145. DPRINTF(int mask, const char* fmt, ...)
  146. {
  147. #ifdef DEBUG
  148.     extern void dprintf(const char*, ...);
  149.     extern void dprintfx(const char*, ...);
  150.     extern int debug_level;
  151.     if ((debug_level & mask) == 0)
  152. return;
  153.     va_list args;
  154.     va_start(args, fmt);
  155.     vdprintf(1, 0, fmt, args);
  156.     va_end(args);
  157. #endif
  158. }
  159. #endif
  160. #endif/*_DEBUG_H_*/