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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: choicestr.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/21 18:21:07  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CHOICESTR_HPP
  10. #define CHOICESTR_HPP
  11. /*  $Id: choicestr.hpp,v 1000.1 2003/11/21 18:21:07 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. *   C++ class info: includes, used classes, C++ code etc.
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: choicestr.hpp,v $
  43. * Revision 1000.1  2003/11/21 18:21:07  gouriano
  44. * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.15
  45. *
  46. * Revision 1.15  2003/11/20 14:32:11  gouriano
  47. * changed generated C++ code so NULL data types have no value
  48. *
  49. * Revision 1.14  2002/11/19 19:47:50  gouriano
  50. * added support of XML attributes of choice variants
  51. *
  52. * Revision 1.13  2002/11/14 21:07:11  gouriano
  53. * added support of XML attribute lists
  54. *
  55. * Revision 1.12  2002/10/15 13:53:08  gouriano
  56. * use "noprefix" flag
  57. *
  58. * Revision 1.11  2001/06/11 14:34:58  grichenk
  59. * Added support for numeric tags in ASN.1 specifications and data streams.
  60. *
  61. * Revision 1.10  2000/08/25 15:58:45  vasilche
  62. * Renamed directory tool -> datatool.
  63. *
  64. * Revision 1.9  2000/06/16 16:31:12  vasilche
  65. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  66. *
  67. * Revision 1.8  2000/05/03 14:38:10  vasilche
  68. * SERIAL: added support for delayed reading to generated classes.
  69. * DATATOOL: added code generation for delayed reading.
  70. *
  71. * Revision 1.7  2000/04/17 19:11:04  vasilche
  72. * Fixed failed assertion.
  73. * Removed redundant namespace specifications.
  74. *
  75. * Revision 1.6  2000/04/12 15:36:39  vasilche
  76. * Added -on <namespace> argument to datatool.
  77. * Removed unnecessary namespace specifications in generated files.
  78. *
  79. * Revision 1.5  2000/04/07 19:26:07  vasilche
  80. * Added namespace support to datatool.
  81. * By default with argument -oR datatool will generate objects in namespace
  82. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  83. * Datatool's classes also moved to NCBI namespace.
  84. *
  85. * Revision 1.4  2000/03/17 16:47:38  vasilche
  86. * Added copyright message to generated files.
  87. * All objects pointers in choices now share the only CObject pointer.
  88. *
  89. * Revision 1.3  2000/03/07 14:06:04  vasilche
  90. * Added generation of reference counted objects.
  91. *
  92. * Revision 1.2  2000/02/11 17:09:26  vasilche
  93. * Removed unneeded flags.
  94. *
  95. * Revision 1.1  2000/02/01 21:46:14  vasilche
  96. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  97. * Removed CMemberInfo subclasses.
  98. * Added support for DEFAULT/OPTIONAL members.
  99. * Changed class generation.
  100. * Moved datatool headers to include/internal/serial/tool.
  101. *
  102. * Revision 1.5  2000/01/10 19:46:47  vasilche
  103. * Fixed encoding/decoding of REAL type.
  104. * Fixed encoding/decoding of StringStore.
  105. * Fixed encoding/decoding of NULL type.
  106. * Fixed error reporting.
  107. * Reduced object map (only classes).
  108. *
  109. * Revision 1.4  1999/12/01 17:36:28  vasilche
  110. * Fixed CHOICE processing.
  111. *
  112. * Revision 1.3  1999/11/16 15:41:17  vasilche
  113. * Added plain pointer choice.
  114. * By default we use C pointer instead of auto_ptr.
  115. * Start adding initializers.
  116. *
  117. * Revision 1.2  1999/11/15 19:36:21  vasilche
  118. * Fixed warnings on GCC
  119. *
  120. * ===========================================================================
  121. */
  122. #include <serial/datatool/typestr.hpp>
  123. #include <serial/datatool/classstr.hpp>
  124. #include <corelib/ncbiutil.hpp>
  125. BEGIN_NCBI_SCOPE
  126. class CChoiceTypeStrings : public CClassTypeStrings
  127. {
  128.     typedef CClassTypeStrings CParent;
  129. public:
  130.     enum EMemberType {
  131.         eSimpleMember,
  132.         eStringMember,
  133.         ePointerMember,
  134.         eObjectPointerMember
  135.     };
  136.     struct SVariantInfo {
  137.         string externalName;
  138.         string cName;
  139.         EMemberType memberType;
  140.         AutoPtr<CTypeStrings> type;
  141.         bool delayed;
  142.         int memberTag;
  143.         bool noPrefix;
  144.         bool attlist;
  145.         bool noTag;
  146.         bool simple;
  147.         const CDataType* dataType;
  148.         SVariantInfo(const string& name, const AutoPtr<CTypeStrings>& type,
  149.             bool delayed, int tag, bool noPrefx, bool attlst, bool noTg,
  150.             bool simpl, const CDataType* dataTp);
  151.     };
  152.     typedef list<SVariantInfo> TVariants;
  153.     CChoiceTypeStrings(const string& externalName, const string& className);
  154.     ~CChoiceTypeStrings(void);
  155.     bool HaveAssignment(void) const
  156.         {
  157.             return m_HaveAssignment;
  158.         }
  159.     void AddVariant(const string& name, const AutoPtr<CTypeStrings>& type,
  160.                     bool delayed, int tag, bool noPrefix, bool attlist,
  161.                     bool noTag, bool simple, const CDataType* dataType);
  162. protected:
  163.     void GenerateClassCode(CClassCode& code,
  164.                            CNcbiOstream& getters,
  165.                            const string& methodPrefix,
  166.                            bool haveUserClass,
  167.                            const string& classPrefix) const;
  168.     bool x_IsNullType(TVariants::const_iterator i) const;
  169.     bool x_IsNullWithAttlist(TVariants::const_iterator i) const;
  170. private:
  171.     TVariants m_Variants;
  172.     bool m_HaveAssignment;
  173. };
  174. class CChoiceRefTypeStrings : public CClassRefTypeStrings
  175. {
  176.     typedef CClassRefTypeStrings CParent;
  177. public:
  178.     CChoiceRefTypeStrings(const string& className, const CNamespace& ns,
  179.                           const string& fileName);
  180. };
  181. END_NCBI_SCOPE
  182. #endif