debug.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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