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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxhpbase.h,v 1.6.32.3 2004/07/09 01:45:08 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 _INC_HXHPBASE_
  50. #define _INC_HXHPBASE_
  51.     /*
  52.     //////////////////////////////////////////////////////////////////
  53.     // HX_THIS_FILE
  54.     //
  55.     // this macro must be redefined in EVERY source module where new,
  56.     // malloc, etc., are called as the following:
  57.     //
  58.     // #ifdef _DEBUG
  59.     // #undef HX_THIS_FILE
  60.     // static const char HX_THIS_FILE[] = __FILE__;
  61.     // #endif
  62.     //
  63.     // making this definition enables tracing of memory allocations to
  64.     // module/line where allocation was performed
  65.     */
  66. #ifndef HX_THIS_FILE
  67. #   define HX_THIS_FILE "no file defined"
  68. #endif
  69.     /*
  70.     /////////////////////////////////////////////////////////////////
  71.     // HX_SET_HEAP_OPTION, HX_CLEAR_HEAP_OPTION
  72.     //
  73.     // Use these macros to change heap checking options.  They are
  74.     // given null definitions here for cross platform support.
  75.     // Platforms supporting these options should #undef, then #define
  76.     // the supported options and flags.
  77.     //
  78.     // Typically, options will be set only once at the program entry point
  79.     //
  80.     // To set/clear heap options, pass in combinations of the
  81.     // HX_HEAP_* flags OR'd together as follows:
  82.     //
  83.     // HX_CLEAR_HEAP_OPTION(HX_HEAP_NO_HEAP_CHECKS)
  84.     // HX_SET_HEAP_OPTION(HX_HEAP_CHECK_ON_EXIT | HX_HEAP_DELAY_FREE_MEM)
  85.     //
  86.     // note that these macros are intended to OR the given option w/
  87.     // the current state of heap options
  88.     //
  89.     //#define  HX_SET_HEAP_OPTION(a)
  90.     //#define  HX_CLEAR_HEAP_OPTION(a)
  91.     */
  92.     /*
  93.     ///////////////////////////////////////////////////////////////////
  94.     // HX_HEAP_*
  95.     //
  96.     // These definitions include common options for heap debugging.
  97.     // See platform specific sections for implementation details.  They
  98.     // are all defined as 0 here for cross platform support.  Platforms
  99.     // supporting these options should #undef, then #define the flags
  100.     // using appropriate values.
  101.     //
  102.     //#define HX_HEAP_ENABLE_HEAP_CHECKS 0
  103.     //#define HX_HEAP_CHECK_EVERY_TIME 0
  104.     //#define HX_HEAP_DELAY_FREE_MEM 0
  105.     //#define HX_HEAP_LEAK_CHECK_ON_EXIT 0
  106.     */
  107.     /*
  108.     ///////////////////////////////////////////////////////////////////
  109.     // HX_CHECK_MEMORY()
  110.     //
  111.     // Calls the runtime function triggering a heap check
  112.     // #define HX_CHECK_MEMORY()
  113.     */
  114.     /*
  115.     ///////////////////////////////////////////////////////////////////
  116.     // HX_DUMP_LEAKS()
  117.     //
  118.     // Calls the runtime function triggering a dump of all the objects 
  119.     // still in heap. 
  120.     // #define HX_DUMP_LEAKS()
  121.     */
  122. #   ifdef _DEBUG /* DEBUG definitions */
  123. #if !defined(_WIN32) || defined(WIN32_PLATFORM_PSPC)
  124. #     define HX_SET_HEAP_OPTION(a)
  125. #     define HX_CLEAR_HEAP_OPTION(a)
  126. #     define HX_HEAP_ENABLE_HEAP_CHECKS 0
  127. #     define HX_HEAP_CHECK_EVERY_TIME 0
  128. #     define HX_HEAP_DELAY_FREE_MEM 0
  129. #     define HX_HEAP_LEAK_CHECK_ON_EXIT 0
  130. #     define HX_CHECK_MEMORY()
  131. #     define HX_DUMP_LEAKS()
  132. #     define HX_SET_BREAK_ALLOC(a)
  133. # endif
  134. /*
  135. // ------------------------ _WIN32 -------------------------
  136. */
  137. #if defined(_WIN32) && !defined(WIN32_PLATFORM_PSPC)
  138. #     include <crtdbg.h>
  139. #     define HX_DEBUG_NEW_PARAMS
  140. unsigned int size,
  141. int block,
  142. const char * szfile,
  143. int line
  144. #     define HX_DEBUG_NEW
  145. new(_NORMAL_BLOCK, HX_THIS_FILE, __LINE__)
  146. #     define HX_DEBUG_MALLOC(n)
  147. _malloc_dbg(n,_NORMAL_BLOCK,HX_THIS_FILE, __LINE__)
  148. #     define HX_DEBUG_CALLOC(n,s)
  149. _calloc_dbg(n,s,_NORMAL_BLOCK,HX_THIS_FILE, __LINE__)
  150. #     define HX_DEBUG_REALLOC(p,s)
  151. _realloc_dbg(p,s,_NORMAL_BLOCK,HX_THIS_FILE, __LINE__)
  152. #     undef HX_CHECK_MEMORY
  153. #     define HX_CHECK_MEMORY()     _ASSERT(_CrtCheckMemory())
  154. #     undef  HX_DUMP_LEAKS
  155. #     define HX_DUMP_LEAKS() _CrtDumpMemoryLeaks()
  156. #     define HX_SET_BREAK_ALLOC(a)    _CrtSetBreakAlloc(a)
  157. #     define HX_SET_HEAP_OPTION(a) 
  158. _CrtSetDbgFlag((a) | _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG))
  159. #     define HX_CLEAR_HEAP_OPTION(a) 
  160. _CrtSetDbgFlag(~(a) & _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG))
  161.     /*
  162.     // HX_HEAP_ENABLE_HEAP_CHECKS
  163.     // ON by default.  If this option is turned off, subsequent
  164.     // memory allocations will not be subject to standard heap checks
  165.     */
  166. #     define HX_HEAP_ENABLE_HEAP_CHECKS _CRTDBG_ALLOC_MEM_DF
  167.     /*
  168.     // HX_HEAP_CHECK_EVERY_TIME
  169.     // OFF by default.  If this option is turned on, every allocation
  170.     // and release of memory will cause the entire heap to be checked
  171.     // for integrity
  172.     */
  173. #     define HX_HEAP_CHECK_EVERY_TIME _CRTDBG_CHECK_ALWAYS_DF
  174.     /*
  175.     // HX_HEAP_DELAY_FREE_MEM
  176.     // OFF by default.
  177.     // Causes freed memory to be marked as free, instead of actually
  178.     // freed.  The freed blocks are all written over w/ DD and 
  179.     // maintained on the heap.  This has 2 benefits:
  180.     // 1) Simulate low memory conditions
  181.     // 2) Detection of corruption of previously freed blocks.  
  182.     // This occurrs when a pointer to freed memory is used
  183.     // w/o reinitializing it
  184.     */
  185. #     define HX_HEAP_DELAY_FREE_MEM _CRTDBG_DELAY_FREE_MEM_DF
  186.     /*
  187.     // HX_HEAP_LEAK_CHECK_ON_EXIT
  188.     // OFF by default.  When the CRT shuts down, the heap linked
  189.     // list is examined, and any remaining blocks not marked as
  190.     // free generate a leakage report indicating the module and
  191.     // line where the block was allocated.
  192.     */
  193. #     define HX_HEAP_LEAK_CHECK_ON_EXIT _CRTDBG_LEAK_CHECK_DF
  194. /* ------------------------ _WIN32 ------------------------- */
  195. # endif
  196. /* ---------------------- MACINTOSH ---------------------- */
  197. # ifdef _MACINTOSH
  198. #     define HX_DEBUG_NEW new
  199. /* ---------------------- MACINTOSH ---------------------- */
  200. # endif
  201. #   else /* end debug section */
  202. # define HX_SET_HEAP_OPTION(a)
  203. # define HX_CLEAR_HEAP_OPTION(a)
  204. # define HX_HEAP_ENABLE_HEAP_CHECKS 0
  205. # define HX_HEAP_CHECK_EVERY_TIME 0
  206. # define HX_HEAP_DELAY_FREE_MEM 0
  207. # define HX_HEAP_LEAK_CHECK_ON_EXIT 0
  208. # define HX_CHECK_MEMORY()
  209. # define HX_DUMP_LEAKS()
  210. #   endif /* end retail section */
  211. #endif /* _INC_HXHPBASE_ */