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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ctools.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:14:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ctools.cpp,v 1000.2 2004/06/01 19:14:37 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   A bridge between C and C++ Toolkits
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>  // C++ Toolkit stuff, must go first!
  42. #include <ctools/ctools.h>
  43. #include <ncbimsg.h>            // C   Toolkit error and message posting
  44. USING_NCBI_SCOPE;
  45. static int LIBCALLBACK s_c2cxxErrorHandler(const ErrDesc* err)
  46. {
  47.     EDiagSev level;
  48.     switch (err->severity) {
  49.     case SEV_NONE:
  50.         level = eDiag_Trace;
  51.         break;
  52.     case SEV_INFO:
  53.         level = eDiag_Info;
  54.         break;
  55.     case SEV_WARNING:
  56.         level = eDiag_Warning;
  57.         break;
  58.     case SEV_ERROR:
  59.         level = eDiag_Error;
  60.         break;
  61.     case SEV_REJECT:
  62.         level = eDiag_Critical;
  63.         break;
  64.     case SEV_FATAL:
  65.         /*fallthru*/
  66.     default:
  67.         level = eDiag_Fatal;
  68.         break;
  69.     }
  70.     try {
  71.         CNcbiDiag diag(level, eDPF_Default);
  72.         if (*err->srcfile)
  73.             diag.SetFile(err->srcfile);
  74.         if (err->srcline)
  75.             diag.SetLine(err->srcline);
  76.         if (*err->module)
  77.             diag << err->module << ' ';
  78.         if (*err->codestr)
  79.             diag << err->codestr << ' ';
  80.         for (const ValNode* node = err->userstr; node; node = node->next) {
  81.             if (node->data.ptrvalue)
  82.                 diag << (char*) node->data.ptrvalue << ' ';
  83.         }
  84.         if (*err->errtext)
  85.             diag << err->errtext;
  86.     } catch (...) {
  87.         _ASSERT(0);
  88.         return ANS_NONE;
  89.     }
  90.     return ANS_OK;
  91. }
  92. void SetupCToolkitErrPost(void)
  93. {
  94.     Nlm_CallErrHandlerOnly(TRUE);
  95.     Nlm_ErrSetHandler(reinterpret_cast<ErrHookProc>(s_c2cxxErrorHandler));
  96. }
  97. /*
  98.  * --------------------------------------------------------------------------
  99.  * $Log: ctools.cpp,v $
  100.  * Revision 1000.2  2004/06/01 19:14:37  gouriano
  101.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  102.  *
  103.  * Revision 1.7  2004/05/17 20:59:00  gorelenk
  104.  * Added include of PCH ncbi_pch.hpp
  105.  *
  106.  * Revision 1.6  2003/11/13 16:01:48  lavr
  107.  * Log moved to end
  108.  *
  109.  * Revision 1.5  2001/02/12 19:27:42  lavr
  110.  * Now unnecessary intermediate function call eliminated
  111.  *
  112.  * Revision 1.4  2001/02/11 22:45:04  thiessen
  113.  * put outside NCBI namespace, since it requires C linkage
  114.  *
  115.  * Revision 1.3  2001/02/11 02:15:39  lavr
  116.  * extern "C" replaced with reinterpret_cast to accepted by MSVC
  117.  *
  118.  * Revision 1.2  2001/02/10 04:13:35  lavr
  119.  * Extra semicolon removed
  120.  *
  121.  * Revision 1.1  2001/02/09 17:39:12  lavr
  122.  * Initial revision
  123.  *
  124.  * ==========================================================================
  125.  */