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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_ncbimime.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:32:51  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_ncbimime.cpp,v 1000.1 2004/06/01 19:32:51 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. *   testmedline test program for checking size of application which uses
  38. *   generated objects.
  39. *
  40. * ---------------------------------------------------------------------------
  41. * $Log: test_ncbimime.cpp,v $
  42. * Revision 1000.1  2004/06/01 19:32:51  gouriano
  43. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  44. *
  45. * Revision 1.2  2004/05/19 17:24:27  gorelenk
  46. * Added include of PCH - ncbi_pch.hpp
  47. *
  48. * Revision 1.1  2003/06/02 17:02:51  dicuccio
  49. * Changed file name
  50. *
  51. * Revision 1.7  2000/04/13 14:51:01  vasilche
  52. * Added CObjectIStream::Open() and CObjectOStream::Open() for easier use.
  53. *
  54. * Revision 1.6  2000/04/12 15:38:05  vasilche
  55. * Added copyright header.
  56. * testmedline code moved out of ncbi namespace.
  57. *
  58. * ===========================================================================
  59. */
  60. #include <ncbi_pch.hpp>
  61. #include <corelib/ncbistd.hpp>
  62. #include <serial/serial.hpp>
  63. #include <serial/objistr.hpp>
  64. #include <serial/objostr.hpp>
  65. #define Ncbi_mime_asn11 0
  66. #define Medline1 1
  67. #if Ncbi_mime_asn11
  68. #include <objects/ncbimime/Ncbi_mime_asn1.hpp>
  69. #define Struct1 CNcbi_mime_asn1
  70. #define Module1 ncbimime
  71. #define File1 "ncbimime"
  72. #endif
  73. #if Medline1
  74. #include <objects/medline/Medline_entry.hpp>
  75. #define Struct1 CMedline_entry
  76. #define Module1 medline
  77. #define File1 "medline"
  78. #endif
  79. #include <objects/medlars/Medlars_entry.hpp>
  80. #define Struct2 CMedlars_entry
  81. #define Module2 medlars
  82. #define File2 "medlars"
  83. USING_NCBI_SCOPE;
  84. using namespace objects;
  85. int main(void)
  86. {
  87.     SetDiagStream(&NcbiCerr);
  88.     Struct1 object1;
  89.     try {
  90.         auto_ptr<CObjectIStream> in(CObjectIStream::Open(File1".ent",
  91.                                                          eSerial_AsnText));
  92.         *in >> object1;
  93.     }
  94.     catch (exception& exc) {
  95.         ERR_POST("Exception: " << exc.what());
  96.     }
  97.     try {
  98.         auto_ptr<CObjectOStream> out(CObjectOStream::Open(File1".out",
  99.                                                           eSerial_AsnText));
  100.         *out << object1;
  101.     }
  102.     catch (exception& exc) {
  103.         ERR_POST("Exception: " << exc.what());
  104.     }
  105.     Struct2 object2;
  106.     try {
  107.         auto_ptr<CObjectIStream> in(CObjectIStream::Open(File2".ent",
  108.                                                          eSerial_AsnText));
  109.         *in >> object2;
  110.     }
  111.     catch (exception& exc) {
  112.         ERR_POST("Exception: " << exc.what());
  113.     }
  114.     try {
  115.         auto_ptr<CObjectOStream> out(CObjectOStream::Open(File2".out",
  116.                                                           eSerial_AsnText));
  117.         *out << object2;
  118.     }
  119.     catch (exception& exc) {
  120.         ERR_POST("Exception: " << exc.what());
  121.     }
  122. }