ncbidbg_p.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbidbg_p.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:09:36  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBIDBG_P__HPP
  10. #define NCBIDBG_P__HPP
  11. /*  $Id: ncbidbg_p.hpp,v 1000.0 2003/10/29 15:09:36 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Andrei Gourianov, gouriano@ncbi.nlm.nih.gov
  37.  *
  38.  * File Description:
  39.  *   declaration of debugging function(s)
  40.  * 
  41.  */
  42. #include <corelib/ncbi_safe_static.hpp>
  43. #include <corelib/ncbithr.hpp>
  44. #include <assert.h>
  45. BEGIN_NCBI_SCOPE
  46. #if defined(_DEBUG)
  47. // 'simple' verify
  48. #  define xncbi_Verify(expression) assert(expression)
  49. // Abort execution (by default), or throw exception (if explicitly specified
  50. // by calling xncbi_SetValidateAction(eValidate_Throw)) if
  51. // "expression" evaluates to FALSE.
  52. #  define xncbi_Validate(expression, message) 
  53.     do { 
  54.         if ( !(expression) ) 
  55.             NCBI_NS_NCBI::CNcbiDiag::DiagValidate(__FILE__, __LINE__, #expression, message); 
  56.     } while ( 0 )
  57. #else // _DEBUG
  58. // 'simple' verify - just evaluate the expression
  59. #  define xncbi_Verify(expression) ((void)(expression))
  60. // Throw exception if "expression" evaluates to FALSE.
  61. #  define xncbi_Validate(expression, message) 
  62.     do { 
  63.         if ( !(expression) ) 
  64.             NCBI_NS_NCBI::CNcbiDiag::DiagValidate(__FILE__, __LINE__, #expression, message); 
  65.     } while ( 0 )
  66. #endif // _DEBUG
  67. END_NCBI_SCOPE
  68. /*
  69.  * ===========================================================================
  70.  * $Log: ncbidbg_p.hpp,v $
  71.  * Revision 1000.0  2003/10/29 15:09:36  gouriano
  72.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  73.  *
  74.  * Revision 1.10  2002/09/19 20:05:42  vasilche
  75.  * Safe initialization of static mutexes
  76.  *
  77.  * Revision 1.9  2002/07/15 18:17:23  gouriano
  78.  * renamed CNcbiException and its descendents
  79.  *
  80.  * Revision 1.8  2002/07/11 14:18:26  gouriano
  81.  * exceptions replaced by CNcbiException-type ones
  82.  *
  83.  * Revision 1.7  2002/04/11 21:08:01  ivanov
  84.  * CVS log moved to end of the file
  85.  *
  86.  * Revision 1.6  2002/04/11 20:00:45  ivanov
  87.  * Returned standard assert() vice CORE_ASSERT()
  88.  *
  89.  * Revision 1.5  2002/04/10 18:32:04  ivanov
  90.  * Fixed typo
  91.  *
  92.  * Revision 1.4  2002/04/10 18:30:02  ivanov
  93.  * Added new macros CORE_ASSERT
  94.  *
  95.  * Revision 1.3  2002/04/10 14:47:04  ivanov
  96.  * Changed assert() to condition with call Abort()
  97.  *
  98.  * Revision 1.2  2001/12/14 17:58:53  gouriano
  99.  * changed GetValidateAction so it never returns Default
  100.  *
  101.  * Revision 1.1  2001/12/13 19:46:59  gouriano
  102.  * added xxValidateAction functions
  103.  *
  104.  * ===========================================================================
  105.  */
  106. #endif // NCBIDBG_P__HPP