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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dtdparser.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:35:26  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef DTDPARSER_HPP
  10. #define DTDPARSER_HPP
  11. /*  $Id: dtdparser.hpp,v 1000.0 2003/10/29 17:35:26 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: Andrei Gourianov
  37. *
  38. * File Description:
  39. *   DTD parser
  40. *
  41. * ===========================================================================
  42. */
  43. #include <corelib/ncbiutil.hpp>
  44. #include <serial/datatool/aparser.hpp>
  45. #include <serial/datatool/dtdlexer.hpp>
  46. #include <serial/datatool/dtdaux.hpp>
  47. #include <serial/datatool/moduleset.hpp>
  48. #include <map>
  49. #include <stack>
  50. BEGIN_NCBI_SCOPE
  51. class CFileModules;
  52. class CDataModule;
  53. class CDataType;
  54. class CDataMemberContainerType;
  55. class CDataValue;
  56. class CDataMember;
  57. class CEnumDataType;
  58. class CEnumDataTypeValue;
  59. /////////////////////////////////////////////////////////////////////////////
  60. // DTDParser
  61. class DTDParser : public AbstractParser
  62. {
  63. public:
  64.     DTDParser( DTDLexer& lexer);
  65.     virtual ~DTDParser(void);
  66.     AutoPtr<CFileModules> Modules(const string& fileName);
  67. protected:
  68.     AutoPtr<CDataTypeModule> Module(const string& name);
  69.     void BuildDocumentTree(void);
  70.     void BeginElementContent(void);
  71.     void ParseElementContent(const string& name, bool embedded);
  72.     void ConsumeElementContent(DTDElement& node);
  73.     void AddElementContent(DTDElement& node, string& id_name,
  74.                            char separator=0);
  75.     void EndElementContent(DTDElement& node);
  76.     void FixEmbeddedNames(DTDElement& node);
  77.     void BeginEntityContent(void);
  78.     void ParseEntityContent(const string& name);
  79.     void PushEntityLexer(const string& name);
  80.     bool PopEntityLexer(void);
  81.     void BeginAttributesContent(void);
  82.     void ParseAttributesContent(const string& name);
  83.     void ConsumeAttributeContent(DTDElement& node, const string& id_name);
  84.     void ParseEnumeratedList(DTDAttribute& attrib);
  85.     void GenerateDataTree(CDataTypeModule& module);
  86.     void ModuleType(CDataTypeModule& module, const DTDElement& node);
  87.     AutoPtr<CDataType> Type(const DTDElement& node,
  88.                             DTDElement::EOccurrence occ,
  89.                             bool fromInside, bool ignoreAttrib=false);
  90.     CDataType* x_Type(const DTDElement& node,
  91.                       DTDElement::EOccurrence occ,
  92.                       bool fromInside, bool ignoreAttrib=false);
  93.     CDataType* TypesBlock(CDataMemberContainerType* containerType,
  94.                           const DTDElement& node, bool ignoreAttrib=false);
  95.     CDataType* CompositeNode(const DTDElement& node,
  96.                              DTDElement::EOccurrence occ);
  97.     void AddAttributes(AutoPtr<CDataMemberContainerType>& container,
  98.                        const DTDElement& node);
  99.     CDataType* AttribBlock(const DTDElement& node);
  100.     CDataType* x_AttribType(const DTDAttribute& att);
  101.     CDataType* EnumeratedBlock(const DTDAttribute& att,
  102.                                CEnumDataType* enumType);
  103. #if defined(NCBI_DTDPARSER_TRACE)
  104.     void PrintDocumentTree(void);
  105.     void PrintEntities(void);
  106.     void PrintDocumentNode(const string& name, const DTDElement& node);
  107.     void PrintNodeAttributes(const DTDElement& node);
  108. #endif
  109.     map<string,DTDElement> m_MapElement;
  110.     map<string,DTDEntity>  m_MapEntity;
  111.     stack<AbstractLexer*>  m_StackLexer;
  112.     stack<string>          m_StackPath;
  113. };
  114. END_NCBI_SCOPE
  115. #endif // DTDPARSER_HPP
  116. /*
  117.  * ==========================================================================
  118.  * $Log: dtdparser.hpp,v $
  119.  * Revision 1000.0  2003/10/29 17:35:26  gouriano
  120.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  121.  *
  122.  * Revision 1.6  2002/12/17 16:25:08  gouriano
  123.  * replaced _ASSERTs by throwing an exception
  124.  *
  125.  * Revision 1.5  2002/11/26 21:59:37  gouriano
  126.  * added unnamed lists of sequences (or choices) as container elements
  127.  *
  128.  * Revision 1.4  2002/11/14 21:07:10  gouriano
  129.  * added support of XML attribute lists
  130.  *
  131.  * Revision 1.3  2002/10/21 16:10:55  gouriano
  132.  * added parsing of external entities
  133.  *
  134.  * Revision 1.2  2002/10/18 14:35:42  gouriano
  135.  * added parsing of internal parsed entities
  136.  *
  137.  * Revision 1.1  2002/10/15 13:50:15  gouriano
  138.  * DTD lexer and parser. first version
  139.  *
  140.  *
  141.  * ==========================================================================
  142.  */