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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: asnwrite.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:14:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: asnwrite.cpp,v 1000.1 2004/06/01 19:14:43 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: Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *   !!! PUT YOUR DESCRIPTION HERE !!!
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: asnwrite.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:14:43  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  43. *
  44. * Revision 1.10  2004/05/17 20:59:07  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.9  2001/02/13 20:44:24  vakatov
  48. * Use `reinterpret_cast<IoFuncType>(WriteAsn)' instead of a more safe
  49. * (but not-compilable by MIPSpro7.3 compiler on IRIX) `extern "C"'
  50. * pre-declaration.
  51. *
  52. * Revision 1.8  2001/02/10 05:00:17  lavr
  53. * ctools added in #includes
  54. *
  55. * Revision 1.7  2000/11/29 17:25:16  vasilche
  56. * Added possibility to change ASNIO mode (mainly for XML output).
  57. * Fixed warnings on 64 bit compilers.
  58. *
  59. * Revision 1.6  1999/11/24 20:18:19  golikov
  60. * flush moved from CreateSubNodes to PrintChildren -> loose of text fixed
  61. *
  62. * Revision 1.5  1999/05/15 23:00:59  vakatov
  63. * Moved "asnio" and "asnwrite" modules to the (new) library
  64. * "xasn"(project "asn")
  65. *
  66. * Revision 1.4  1999/04/15 21:59:58  vakatov
  67. * [MSVC++]  Added "LIBCALLBACK" to the WriteAsn() proto
  68. *
  69. * Revision 1.3  1999/04/14 17:26:52  vasilche
  70. * Fixed warning about mixing pointers to "C" and "C++" functions.
  71. *
  72. * Revision 1.2  1999/02/17 22:03:16  vasilche
  73. * Assed AsnMemoryRead & AsnMemoryWrite.
  74. * Pager now may return NULL for some components if it contains only one
  75. * page.
  76. *
  77. * Revision 1.1  1999/01/28 15:11:09  vasilche
  78. * Added new class CAsnWriteNode for displaying ASN.1 structure in HTML page.
  79. * ===========================================================================
  80. */
  81. #include <ncbi_pch.hpp>
  82. #include <corelib/ncbistd.hpp>
  83. #include <ctools/asn/asnwrite.hpp>
  84. BEGIN_NCBI_SCOPE
  85. CAsnWriteNode::CAsnWriteNode(void)
  86.     : m_Out(0), m_Mode(ASNIO_TEXT)
  87. {
  88. }
  89. CAsnWriteNode::CAsnWriteNode(int mode)
  90.     : m_Out(0), m_Mode(mode)
  91. {
  92. }
  93. CAsnWriteNode::~CAsnWriteNode(void)
  94. {
  95.     AsnIoClose(m_Out);
  96. }
  97. static Int2 LIBCALLBACK WriteAsn(Pointer data, CharPtr buffer, Uint2 size)
  98. {
  99.     if ( !data || !buffer )
  100.         return -1;
  101.     static_cast<CAsnWriteNode*>(data)->AppendPlainText(string(buffer, size));
  102.     return size;
  103. }
  104. AsnIoPtr CAsnWriteNode::GetOut(void)
  105. {
  106.     AsnIoPtr out = m_Out;
  107.     if ( !out ) {
  108.         out = m_Out = AsnIoNew(m_Mode | ASNIO_OUT, 0, this,
  109.                                0, reinterpret_cast<IoFuncType>(WriteAsn));
  110.     }
  111.     return out;
  112. }
  113. CNcbiOstream& CAsnWriteNode::PrintChildren(CNcbiOstream& out, TMode mode)
  114. {
  115.     AsnIoFlush(m_Out);
  116.     CHTMLNode::PrintChildren(out, mode);
  117.     return out;
  118. }
  119. END_NCBI_SCOPE