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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: smlrmlog.h,v 1.1.22.1 2004/07/09 01:58:02 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 SMLRMLOG_H
  50. #define SMLRMLOG_H
  51. // Include files
  52. // Usually we don't include header files from
  53. // other header files. However, the idea here is
  54. // to produce a single header file on a per-module
  55. // basis that can be used to include all the logging
  56. // definitions necessary for that module.
  57. #include "multilog.h"
  58. //
  59. // For debugging leaks in the SMIL renderer
  60. //
  61. #define MLOG_LEAKCHECK_COMPILED_OUT
  62. #if defined(_DEBUG)
  63. #define LEAKCHECK_TARGET_FILE      0
  64. #define LEAKCHECK_TARGET_DEBUGGER  0
  65. #else
  66. #define LEAKCHECK_TARGET_FILE      1
  67. #define LEAKCHECK_TARGET_DEBUGGER  0
  68. #endif
  69. // Create an inline MLOG_LEAKCHECK() function
  70. #ifndef MLOG_LEAKCHECK_COMPILED_OUT
  71. INIT_MULTILOG_GROUP_NO_COREDEBUG(LEAKCHECK,
  72.                                  LEAKCHECK_TARGET_FILE,
  73.                                  LEAKCHECK_TARGET_DEBUGGER,
  74.                                  "smlrendr_leakcheck.log");
  75. #else
  76. #define MLOG_LEAKCHECK if(0)
  77. #endif
  78. //
  79. // For debugging layout issues in the SMIL renderer
  80. //
  81. #define MLOG_LAYOUT_COMPILED_OUT
  82. #if defined(_DEBUG)
  83. #define LAYOUT_TARGET_FILE      0
  84. #define LAYOUT_TARGET_DEBUGGER  1
  85. #define LAYOUT_TARGET_COREDEBUG 0
  86. #else
  87. #define LAYOUT_TARGET_FILE      0
  88. #define LAYOUT_TARGET_DEBUGGER  0
  89. #define LAYOUT_TARGET_COREDEBUG 1
  90. #endif
  91. // Create an inline MLOG_LAYOUT() function
  92. #ifndef MLOG_LAYOUT_COMPILED_OUT
  93. INIT_MULTILOG_GROUP(LAYOUT,
  94.                     LAYOUT_TARGET_FILE,
  95.                     LAYOUT_TARGET_DEBUGGER,
  96.                     LAYOUT_TARGET_COREDEBUG,
  97.                     "smlrendr_layout.log",
  98.                     DOL_SMIL_EXTENDED,
  99.                     "DebugSMIL2Layout");
  100. #else
  101. #define MLOG_LAYOUT if(0)
  102. #endif
  103. //
  104. // For debugging event issues in the SMIL renderer
  105. //
  106. #define MLOG_EVENT_COMPILED_OUT
  107. #if defined(_DEBUG)
  108. #define EVENT_TARGET_FILE      0
  109. #define EVENT_TARGET_DEBUGGER  1
  110. #define EVENT_TARGET_COREDEBUG 0
  111. #else
  112. #define EVENT_TARGET_FILE      0
  113. #define EVENT_TARGET_DEBUGGER  0
  114. #define EVENT_TARGET_COREDEBUG 0
  115. #endif
  116. // Create an inline MLOG_EVENT() function
  117. #ifndef MLOG_EVENT_COMPILED_OUT
  118. INIT_MULTILOG_GROUP(EVENT,
  119.                     EVENT_TARGET_FILE,
  120.                     EVENT_TARGET_DEBUGGER,
  121.                     EVENT_TARGET_COREDEBUG,
  122.                     "smlrendr_events.log",
  123.                     DOL_SMIL_EXTENDED,
  124.                     "DebugSMIL2Events");
  125. #else
  126. #define MLOG_EVENT if(0)
  127. #endif
  128. //
  129. // For debugging animation issues in the SMIL renderer
  130. //
  131. #define MLOG_ANIM_COMPILED_OUT
  132. #if defined(_DEBUG)
  133. #define ANIM_TARGET_FILE      0
  134. #define ANIM_TARGET_DEBUGGER  1
  135. #define ANIM_TARGET_COREDEBUG 0
  136. #else
  137. #define ANIM_TARGET_FILE      0
  138. #define ANIM_TARGET_DEBUGGER  0
  139. #define ANIM_TARGET_COREDEBUG 1
  140. #endif
  141. // Create an inline MLOG_ANIM() function
  142. #ifndef MLOG_ANIM_COMPILED_OUT
  143. INIT_MULTILOG_GROUP(ANIM,
  144.                     ANIM_TARGET_FILE,
  145.                     ANIM_TARGET_DEBUGGER,
  146.                     ANIM_TARGET_COREDEBUG,
  147.                     "smlrendr_animate.log",
  148.                     DOL_SMIL_EXTENDED,
  149.                     "DebugSMIL2Animation");
  150. #else
  151. #define MLOG_ANIM if(0)
  152. #endif
  153. //
  154. // For debugging issues related to media sources in the SMIL renderer
  155. //
  156. #define MLOG_SRC_COMPILED_OUT
  157. #if defined(_DEBUG)
  158. #define SRC_TARGET_FILE      0
  159. #define SRC_TARGET_DEBUGGER  1
  160. #define SRC_TARGET_COREDEBUG 0
  161. #else
  162. #define SRC_TARGET_FILE      0
  163. #define SRC_TARGET_DEBUGGER  0
  164. #define SRC_TARGET_COREDEBUG 0
  165. #endif
  166. // Create an inline MLOG_SRC() function
  167. #ifndef MLOG_SRC_COMPILED_OUT
  168. INIT_MULTILOG_GROUP(SRC,
  169.                     SRC_TARGET_FILE,
  170.                     SRC_TARGET_DEBUGGER,
  171.                     SRC_TARGET_COREDEBUG,
  172.                     "smlrendr_sources.log",
  173.                     DOL_SMIL_EXTENDED,
  174.                     "DebugSMIL2Sources");
  175. #else
  176. #define MLOG_SRC if(0)
  177. #endif
  178. //
  179. // For debugging issues related to transitions in the SMIL renderer
  180. //
  181. #define MLOG_TRANS_COMPILED_OUT
  182. #if defined(_DEBUG)
  183. #define TRANS_TARGET_FILE      0
  184. #define TRANS_TARGET_DEBUGGER  0
  185. #define TRANS_TARGET_COREDEBUG 0
  186. #else
  187. #define TRANS_TARGET_FILE      0
  188. #define TRANS_TARGET_DEBUGGER  0
  189. #define TRANS_TARGET_COREDEBUG 1
  190. #endif
  191. // Create an inline MLOG_TRANS() function
  192. #ifndef MLOG_TRANS_COMPILED_OUT
  193. INIT_MULTILOG_GROUP(TRANS,
  194.                     TRANS_TARGET_FILE,
  195.                     TRANS_TARGET_DEBUGGER,
  196.                     TRANS_TARGET_COREDEBUG,
  197.                     "smlrendr_transitions.log",
  198.                     DOL_SMIL_EXTENDED,
  199.                     "DebugSMIL2Transitions");
  200. #else
  201. #define MLOG_TRANS if(0)
  202. #endif
  203. //
  204. // For dumping OnTimeSync() and OnPosLength() in the SMIL renderer
  205. //
  206. #define MLOG_TIMESYNC_COMPILED_OUT
  207. #if defined(_DEBUG)
  208. #define TIMESYNC_TARGET_FILE      0
  209. #define TIMESYNC_TARGET_DEBUGGER  0
  210. #define TIMESYNC_TARGET_COREDEBUG 0
  211. #else
  212. #define TIMESYNC_TARGET_FILE      0
  213. #define TIMESYNC_TARGET_DEBUGGER  0
  214. #define TIMESYNC_TARGET_COREDEBUG 1
  215. #endif
  216. // Create an inline MLOG_TIMESYNC() function
  217. #ifndef MLOG_TIMESYNC_COMPILED_OUT
  218. INIT_MULTILOG_GROUP(TIMESYNC,
  219.                     TIMESYNC_TARGET_FILE,
  220.                     TIMESYNC_TARGET_DEBUGGER,
  221.                     TIMESYNC_TARGET_COREDEBUG,
  222.                     "smlrendr_timesync.log",
  223.                     DOL_SMIL_EXTENDED,
  224.                     "DebugSMIL2Timesync");
  225. #else
  226. #define MLOG_TIMESYNC if(0)
  227. #endif
  228. //
  229. // For dumping general flow calls in the in the SMIL renderer
  230. //
  231. #define MLOG_FLOW_COMPILED_OUT
  232. #if defined(_DEBUG)
  233. #define FLOW_TARGET_FILE      0
  234. #define FLOW_TARGET_DEBUGGER  1
  235. #define FLOW_TARGET_COREDEBUG 0
  236. #else
  237. #define FLOW_TARGET_FILE      0
  238. #define FLOW_TARGET_DEBUGGER  0
  239. #define FLOW_TARGET_COREDEBUG 1
  240. #endif
  241. // Create an inline MLOG_FLOW() function
  242. #ifndef MLOG_FLOW_COMPILED_OUT
  243. INIT_MULTILOG_GROUP(FLOW,
  244.                     FLOW_TARGET_FILE,
  245.                     FLOW_TARGET_DEBUGGER,
  246.                     FLOW_TARGET_COREDEBUG,
  247.                     "smlrendr_flow.log",
  248.                     DOL_SMIL_EXTENDED,
  249.                     "DebugSMIL2Flow");
  250. #else
  251. #define MLOG_FLOW if(0)
  252. #endif
  253. #endif // #ifndef SMLRMLOG_H