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

Symbian

开发平台:

Visual C++

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