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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: asnio.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 19:48:56  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ASNIO__HPP
  10. #define ASNIO__HPP
  11. /*  $Id: asnio.hpp,v 1000.0 2003/10/29 19:48:56 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: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   ASN.1 <-> memory buffer converter
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: asnio.hpp,v $
  43. * Revision 1000.0  2003/10/29 19:48:56  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  45. *
  46. * Revision 1.6  2001/10/15 22:49:42  vakatov
  47. * AsnMemoryWrite::Size() -- get rid of the meaningless "const" qualifier
  48. *
  49. * Revision 1.5  1999/10/21 16:57:05  golikov
  50. * AsnMemoryWrite mode param added
  51. *
  52. * Revision 1.4  1999/10/21 16:20:38  golikov
  53. * Mode param added
  54. *
  55. * Revision 1.3  1999/04/14 19:11:48  vakatov
  56. * Added "LIBCALLBACK" to AsnRead/Write proto (MSVC++ feature)
  57. *
  58. * Revision 1.2  1999/04/14 17:25:45  vasilche
  59. * Fixed warning about mixing pointers to "C" and "C++" functions.
  60. *
  61. * Revision 1.1  1999/02/17 22:03:08  vasilche
  62. * Assed AsnMemoryRead & AsnMemoryWrite.
  63. * Pager now may return NULL for some components if it contains only one
  64. * page.
  65. *
  66. * ===========================================================================
  67. */
  68. #include <corelib/ncbistd.hpp>
  69. #include <asn.h>
  70. BEGIN_NCBI_SCOPE
  71. class AsnMemoryRead
  72. {
  73. public:
  74.     AsnMemoryRead(Uint2 mode, const string& str);
  75.     AsnMemoryRead(Uint2 mode, const char* buffer, size_t size);
  76.     virtual ~AsnMemoryRead(void);
  77.     AsnIoPtr GetIn(void) const
  78.         { return m_In; }
  79.     operator AsnIoPtr(void) const
  80.         { return m_In; }
  81.     // ASN.1 communication interface
  82.     size_t Read(char* buffer, size_t size);
  83. private:
  84.     void Init(void);
  85.     string m_Source;
  86.     const char* m_Data;
  87.     size_t m_Size;
  88.     size_t m_Ptr;
  89.     int m_mode;
  90.     // cached ASN.1 communication interface pointer
  91.     AsnIoPtr m_In;
  92. };
  93. class AsnMemoryWrite
  94. {
  95. public:
  96.     AsnMemoryWrite(Uint2 mode);
  97.     virtual ~AsnMemoryWrite(void);
  98.     AsnIoPtr GetOut(void) const
  99.         { return m_Out; }
  100.     operator AsnIoPtr(void) const
  101.         { return m_Out; }
  102.     
  103.     void flush(void) const;
  104.     const char* Data(void) const
  105.         { flush(); return m_Data; }
  106.     size_t Size(void) const
  107.         { flush(); return m_Ptr; }
  108.     operator string(void) const
  109.         { flush(); return string(m_Data, m_Ptr); }
  110.     // ASN.1 communication interface
  111.     size_t Write(const char* buffer, size_t size);
  112. private:
  113.     char* m_Data;
  114.     size_t m_Size;
  115.     size_t m_Ptr;
  116.     // cached ASN.1 communication interface pointer
  117.     AsnIoPtr m_Out;
  118. };
  119. END_NCBI_SCOPE
  120. #endif /* ASNIO_HPP */