debug.cpp
上传用户: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. #include "hlxclib/stdio.h"
  36. #include "hlxclib/stdarg.h"
  37. #include "hlxclib/stdlib.h"
  38. #include "hxtypes.h"
  39. #include "debug.h"
  40. #include "hxtime.h"
  41. #include "hxproc.h"
  42. #include "hxassert.h"
  43. #include "hxstrutl.h"
  44. #include "hlxclib/time.h"
  45. #ifdef _MACINTOSH
  46. #include <stdlib.h> /* for exit */
  47. #endif
  48. #if (defined WIN32 && defined _SERVER)
  49. #include "messages.h"
  50. #endif 
  51. #include "hxheap.h"
  52. #ifdef _DEBUG
  53. #undef HX_THIS_FILE
  54. static const char HX_THIS_FILE[] = __FILE__;
  55. #endif
  56. #if !defined(HELIX_CONFIG_NOSTATICS)
  57. const char* progname = "unknown";
  58. #else
  59. const char* const progname = "unknown";
  60. #endif
  61. #if defined(_SYMBIAN)
  62. #error not for symbian
  63. #endif
  64. #if (defined WIN32 && defined _SERVER)
  65. void
  66. logprintf(int code, char* buf)
  67. {
  68. HANDLE EventSource;
  69. WORD EventType;
  70. switch(code) {
  71. case 1:
  72. EventType = EVENTLOG_ERROR_TYPE;
  73. break;
  74. default:
  75. EventType = EVENTLOG_INFORMATION_TYPE;
  76. }
  77. //
  78. // Use event logging to log the error.
  79. //
  80. EventSource = RegisterEventSource(NULL, TEXT("HXServer"));
  81. if (EventSource != NULL) {
  82.     ReportEvent(EventSource,
  83.                 EventType,
  84.                 0,
  85.                 MSG_PNSERVEREVENT,
  86.                 NULL,
  87.                 1,
  88.                 0,
  89.                 (const char **)&buf,
  90.                 NULL);
  91.     (VOID) DeregisterEventSource(EventSource);
  92. }
  93. }
  94. #endif
  95. #define BUF_SIZE 4096
  96. void
  97. vdprintf(int print_line_header, int err, const char* fmt, va_list args)
  98. char *buf = new char[BUF_SIZE];
  99. if (!buf)
  100. {
  101.     return;
  102. }
  103. #if (defined _MACINTOSH)
  104. // The implementation of time on the mac is quite different from UNIX.
  105. // For now, I hacked the debug time to not include the milliseconds.
  106. // I call time() to get the actual date.
  107. struct tm* tm;
  108. time_t now;
  109. ::time(&now);
  110. tm = localtime(&now);
  111. strftime(buf, BUF_SIZE, "%d-%b-%y %H:%M:%S", tm);
  112. ProcessSerialNumber process_id;
  113. GetCurrentProcess(&process_id);
  114. int len = SafeSprintf(buf, BUF_SIZE, "%s %s(%ld): ", buf, progname, process_id.lowLongOfPSN);
  115.         if (len < 0) len = 0;
  116. vsprintf(&buf[len], fmt, args);
  117. #elif defined(_WINDOWS) && (!defined(WIN32) || defined(WIN32_PLATFORM_PSPC))
  118. // for the win 16 implementation we just skip line headers to avoid linking
  119. // in a library that messes up the client core for win 16.
  120. vsprintf(buf, fmt, args);
  121. #else
  122. if (print_line_header) {
  123. struct tm* tm;
  124. HXTime now;
  125. UINT32 ulProcId = 0;
  126. gettimeofday(&now, 0);
  127. tm = localtime((const time_t *)&now.tv_sec);
  128. size_t len = strftime(buf, BUF_SIZE, "%d-%b-%y %H:%M:%S", tm);
  129. #if !defined(_OPENWAVE)    // temporary work-around
  130. ulProcId = process_id();
  131. #endif // _OPENWAVE
  132.                 int nWrite = SafeSprintf(&buf[len], BUF_SIZE - len, 
  133.                     ".%03ld %s(%ld): ", now.tv_usec/1000, progname, ulProcId);
  134.                 if (nWrite > 0)
  135.                 {
  136.                     len += nWrite;
  137.                 }
  138.                 vsnprintf(&buf[len], BUF_SIZE-len, fmt, args);
  139. } else
  140. vsnprintf(buf, BUF_SIZE, fmt, args);
  141. #endif
  142. #if (defined WIN32 && defined _SERVER)
  143. if (IsService) {
  144. logprintf(err, buf);
  145. delete [] buf;
  146. return;
  147. }
  148. #endif
  149. #if !defined( _MACINTOSH)
  150. if (err) {
  151. fprintf(stderr, "***");
  152. }
  153. fprintf(stderr, "%s", buf); 
  154. #endif
  155. // For the macintosh using printf with the debug.console.c, will display the 
  156. // debug messages to a window as well, when using the dummy console for linking
  157. // this function does nothing.
  158. #if (defined _MACINTOSH && defined  _DEBUG)
  159. if (err) 
  160.     fprintf(stderr, "***");
  161. fprintf(stderr, "%s", buf);
  162. printf("%s",buf);
  163. #endif
  164. fflush(stderr);
  165. delete [] buf;
  166. }
  167. void
  168. dprintf(const char* fmt, ...)
  169. {
  170. va_list args;
  171. va_start(args, fmt);
  172. vdprintf(1, 0, fmt, args);
  173. va_end(args);
  174. }
  175. void
  176. dprintfx(const char* fmt, ...)
  177. {
  178. va_list args;
  179. va_start(args, fmt);
  180. vdprintf(0, 0, fmt, args);
  181. va_end(args);
  182. }
  183. void
  184. rm_panic(const char* fmt, ...)
  185. {
  186. va_list args;
  187. va_start(args, fmt);
  188. vdprintf(1, 1, fmt, args);
  189. va_end(args);
  190. int In_PANIC_Macro = 0;
  191. HX_ASSERT(In_PANIC_Macro);
  192. }