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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: moduleset.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:43:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.35
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: moduleset.cpp,v 1000.1 2004/06/01 19:43:23 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. *   Set of modules: equivalent of ASN.1 source file
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: moduleset.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:43:23  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.35
  43. *
  44. * Revision 1.35  2004/05/17 21:03:14  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.34  2003/05/14 14:42:22  gouriano
  48. * added generation of XML schema
  49. *
  50. * Revision 1.33  2003/03/11 20:06:47  kuznets
  51. * iterate -> ITERATE
  52. *
  53. * Revision 1.32  2003/03/10 18:55:18  gouriano
  54. * use new structured exceptions (based on CException)
  55. *
  56. * Revision 1.31  2001/05/17 15:07:12  lavr
  57. * Typos corrected
  58. *
  59. * Revision 1.30  2001/02/02 16:20:01  vasilche
  60. * Fixed file path processing on Mac
  61. *
  62. * Revision 1.29  2000/11/29 17:42:45  vasilche
  63. * Added CComment class for storing/printing ASN.1/XML module comments.
  64. * Added srcutil.hpp file to reduce file dependency.
  65. *
  66. * Revision 1.28  2000/11/15 20:34:55  vasilche
  67. * Added user comments to ENUMERATED types.
  68. * Added storing of user comments to ASN.1 module definition.
  69. *
  70. * Revision 1.27  2000/11/14 21:41:25  vasilche
  71. * Added preserving of ASN.1 definition comments.
  72. *
  73. * Revision 1.26  2000/11/08 17:02:51  vasilche
  74. * Added generation of modular DTD files.
  75. *
  76. * Revision 1.25  2000/09/26 17:38:26  vasilche
  77. * Fixed incomplete choiceptr implementation.
  78. * Removed temporary comments.
  79. *
  80. * Revision 1.24  2000/08/25 15:59:22  vasilche
  81. * Renamed directory tool -> datatool.
  82. *
  83. * Revision 1.23  2000/07/10 17:32:00  vasilche
  84. * Macro arguments made more clear.
  85. * All old ASN stuff moved to serialasn.hpp.
  86. * Changed prefix of enum info functions to GetTypeInfo_enum_.
  87. *
  88. * Revision 1.22  2000/06/16 20:01:30  vasilche
  89. * Avoid use of unexpected_exception() which is unimplemented on Mac.
  90. *
  91. * Revision 1.21  2000/05/24 20:09:29  vasilche
  92. * Implemented DTD generation.
  93. *
  94. * Revision 1.20  2000/04/07 19:26:29  vasilche
  95. * Added namespace support to datatool.
  96. * By default with argument -oR datatool will generate objects in namespace
  97. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  98. * Datatool's classes also moved to NCBI namespace.
  99. *
  100. * Revision 1.19  2000/03/15 21:24:12  vasilche
  101. * Error diagnostic about ambiguous types made more clear.
  102. *
  103. * Revision 1.18  2000/02/01 21:48:03  vasilche
  104. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  105. * Removed CMemberInfo subclasses.
  106. * Added support for DEFAULT/OPTIONAL members.
  107. * Changed class generation.
  108. * Moved datatool headers to include/internal/serial/tool.
  109. *
  110. * Revision 1.17  1999/12/30 21:33:40  vasilche
  111. * Changed arguments - more structured.
  112. * Added intelligence in detection of source directories.
  113. *
  114. * Revision 1.16  1999/12/28 18:55:59  vasilche
  115. * Reduced size of compiled object files:
  116. * 1. avoid inline or implicit virtual methods (especially destructors).
  117. * 2. avoid std::string's methods usage in inline methods.
  118. * 3. avoid string literals ("xxx") in inline methods.
  119. *
  120. * Revision 1.15  1999/12/21 17:18:36  vasilche
  121. * Added CDelayedFostream class which rewrites file only if contents is changed.
  122. *
  123. * Revision 1.14  1999/12/20 21:00:19  vasilche
  124. * Added generation of sources in different directories.
  125. *
  126. * Revision 1.13  1999/11/15 19:36:17  vasilche
  127. * Fixed warnings on GCC
  128. *
  129. * ===========================================================================
  130. */
  131. #include <ncbi_pch.hpp>
  132. #include <typeinfo>
  133. #include <serial/datatool/moduleset.hpp>
  134. #include <serial/datatool/module.hpp>
  135. #include <serial/datatool/type.hpp>
  136. #include <serial/datatool/exceptions.hpp>
  137. #include <serial/datatool/fileutil.hpp>
  138. BEGIN_NCBI_SCOPE
  139. CFileModules::CFileModules(const string& name)
  140.     : m_SourceFileName(name)
  141. {
  142. }
  143. void CFileModules::AddModule(const AutoPtr<CDataTypeModule>& module)
  144. {
  145.     module->SetModuleContainer(this);
  146.     CDataTypeModule*& mptr = m_ModulesByName[module->GetName()];
  147.     if ( mptr ) {
  148.         ERR_POST(GetSourceFileName() << ": duplicate module: " <<
  149.                  module->GetName());
  150.     }
  151.     else {
  152.         mptr = module.get();
  153.         m_Modules.push_back(module);
  154.     }
  155. }
  156. bool CFileModules::Check(void) const
  157. {
  158.     bool ok = true;
  159.     ITERATE ( TModules, mi, m_Modules ) {
  160.         if ( !(*mi)->Check() )
  161.             ok = false;
  162.     }
  163.     return ok;
  164. }
  165. bool CFileModules::CheckNames(void) const
  166. {
  167.     bool ok = true;
  168.     ITERATE ( TModules, mi, m_Modules ) {
  169.         if ( !(*mi)->CheckNames() )
  170.             ok = false;
  171.     }
  172.     return ok;
  173. }
  174. void CFileModules::PrintASN(CNcbiOstream& out) const
  175. {
  176.     ITERATE ( TModules, mi, m_Modules ) {
  177.         (*mi)->PrintASN(out);
  178.     }
  179.     m_LastComments.PrintASN(out, 0, CComments::eMultiline);
  180. }
  181. void CFileModules::PrintDTD(CNcbiOstream& out) const
  182. {
  183.     ITERATE ( TModules, mi, m_Modules ) {
  184.         (*mi)->PrintDTD(out);
  185.     }
  186.     m_LastComments.PrintDTD(out, CComments::eMultiline);
  187. }
  188. void CFileModules::PrintDTDModular(void) const
  189. {
  190.     ITERATE ( TModules, mi, m_Modules ) {
  191.         string fileNameBase = (*mi)->GetDTDFileNameBase();
  192.         {
  193.             string fileName = fileNameBase + ".mod";
  194.             CNcbiOfstream out(fileName.c_str());
  195.             (*mi)->PrintDTD(out);
  196.             if ( !out )
  197.                 ERR_POST(Fatal << "Cannot write to file "<<fileName);
  198.         }
  199.         {
  200.             string fileName = fileNameBase + ".dtd";
  201.             CNcbiOfstream out(fileName.c_str());
  202.             (*mi)->PrintDTDModular(out);
  203.             if ( !out )
  204.                 ERR_POST(Fatal << "Cannot write to file "<<fileName);
  205.         }
  206.     }
  207. }
  208. // XML schema generator submitted by
  209. // Marc Dumontier, Blueprint initiative, dumontier@mshri.on.ca
  210. void CFileModules::PrintXMLSchema(CNcbiOstream& out) const
  211. {
  212.     out << "<?xml version="1.0" ?>n"
  213.         << "<xs:scheman"
  214.         << "  xmlns:xs="http://www.w3.org/2001/XMLSchema"n"
  215.         << "  xmlns="http://www.ncbi.nlm.nih.gov"n"
  216.         << "  targetNamespace="http://www.ncbi.nlm.nih.gov"n"
  217.         << "  elementFormDefault="qualified"n"
  218.         << "  attributeFormDefault="unqualified">nn";
  219.     ITERATE ( TModules, mi, m_Modules ) {
  220.         (*mi)->PrintXMLSchema(out);
  221.     }
  222.     m_LastComments.PrintDTD(out, CComments::eMultiline);
  223.     out << "</xs:schema>n";
  224. }
  225. const string& CFileModules::GetSourceFileName(void) const
  226. {
  227.     return m_SourceFileName;
  228. }
  229. string CFileModules::GetFileNamePrefix(void) const
  230. {
  231.     if ( MakeFileNamePrefixFromSourceFileName() ) {
  232.         if ( m_PrefixFromSourceFileName.empty() ) {
  233.             m_PrefixFromSourceFileName = DirName(m_SourceFileName);
  234.             if ( !IsLocalPath(m_PrefixFromSourceFileName) ) {
  235.                 // path absent or non local
  236.                 m_PrefixFromSourceFileName.erase();
  237.                 return GetModuleContainer().GetFileNamePrefix();
  238.             }
  239.         }
  240.         _TRACE("file " << m_SourceFileName << ": "" << m_PrefixFromSourceFileName << """);
  241.         if ( UseAllFileNamePrefixes() ) {
  242.             return Path(GetModuleContainer().GetFileNamePrefix(),
  243.                         m_PrefixFromSourceFileName);
  244.         }
  245.         else {
  246.             return m_PrefixFromSourceFileName;
  247.         }
  248.     }
  249.     return GetModuleContainer().GetFileNamePrefix();
  250. }
  251. CDataType* CFileModules::ExternalResolve(const string& moduleName,
  252.                                          const string& typeName,
  253.                                          bool allowInternal) const
  254. {
  255.     // find module definition
  256.     TModulesByName::const_iterator mi = m_ModulesByName.find(moduleName);
  257.     if ( mi == m_ModulesByName.end() ) {
  258.         // no such module
  259.         NCBI_THROW(CNotFoundException,eModule,
  260.                      "module not found: "+moduleName+" for type "+typeName);
  261.     }
  262.     return mi->second->ExternalResolve(typeName, allowInternal);
  263. }
  264. CDataType* CFileModules::ResolveInAnyModule(const string& typeName,
  265.                                             bool allowInternal) const
  266. {
  267.     CResolvedTypeSet types(typeName);
  268.     ITERATE ( TModules, i, m_Modules ) {
  269.         try {
  270.             types.Add((*i)->ExternalResolve(typeName, allowInternal));
  271.         }
  272.         catch ( CAmbiguiousTypes& exc ) {
  273.             types.Add(exc);
  274.         }
  275.         catch ( CNotFoundException& /* ignored */) {
  276.         }
  277.     }
  278.     return types.GetType();
  279. }
  280. void CFileSet::AddFile(const AutoPtr<CFileModules>& moduleSet)
  281. {
  282.     moduleSet->SetModuleContainer(this);
  283.     m_ModuleSets.push_back(moduleSet);
  284. }
  285. void CFileSet::PrintASN(CNcbiOstream& out) const
  286. {
  287.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  288.         (*i)->PrintASN(out);
  289.     }
  290. }
  291. void CFileSet::PrintDTD(CNcbiOstream& out) const
  292. {
  293. #if 0
  294.     out <<
  295.         "<!-- ======================== -->n"
  296.         "<!-- NCBI DTD                 -->n"
  297.         "<!-- NCBI ASN.1 mapped to XML -->n"
  298.         "<!-- ======================== -->n"
  299.         "n"
  300.         "<!-- Entities used to give specificity to #PCDATA -->n"
  301.         "<!ENTITY % INTEGER '#PCDATA'>n"
  302.         "<!ENTITY % ENUM 'EMPTY'>n"
  303.         "<!ENTITY % BOOLEAN 'EMPTY'>n"
  304.         "<!ENTITY % NULL 'EMPTY'>n"
  305.         "<!ENTITY % REAL '#PCDATA'>n"
  306.         "<!ENTITY % OCTETS '#PCDATA'>n"
  307.         "<!-- ============================================ -->n"
  308.         "n";
  309. #endif
  310.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  311.         (*i)->PrintDTD(out);
  312.     }
  313. }
  314. void CFileSet::PrintDTDModular(void) const
  315. {
  316.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  317.         (*i)->PrintDTDModular();
  318.     }
  319. }
  320. // XML schema generator submitted by
  321. // Marc Dumontier, Blueprint initiative, dumontier@mshri.on.ca
  322. void CFileSet::PrintXMLSchema(CNcbiOstream& out) const
  323. {
  324.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  325.         (*i)->PrintXMLSchema(out);
  326.     }
  327. }
  328. CDataType* CFileSet::ExternalResolve(const string& module, const string& name,
  329.                                      bool allowInternal) const
  330. {
  331.     CResolvedTypeSet types(module, name);
  332.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  333.         try {
  334.             types.Add((*i)->ExternalResolve(module, name, allowInternal));
  335.         }
  336.         catch ( CAmbiguiousTypes& exc ) {
  337.             types.Add(exc);
  338.         }
  339.         catch ( CNotFoundException& /* ignored */) {
  340.         }
  341.     }
  342.     return types.GetType();
  343. }
  344. CDataType* CFileSet::ResolveInAnyModule(const string& name,
  345.                                         bool allowInternal) const
  346. {
  347.     CResolvedTypeSet types(name);
  348.     ITERATE ( TModuleSets, i, m_ModuleSets ) {
  349.         try {
  350.             types.Add((*i)->ResolveInAnyModule(name, allowInternal));
  351.         }
  352.         catch ( CAmbiguiousTypes& exc ) {
  353.             types.Add(exc);
  354.         }
  355.         catch ( CNotFoundException& /* ignored */) {
  356.         }
  357.     }
  358.     return types.GetType();
  359. }
  360. bool CFileSet::Check(void) const
  361. {
  362.     bool ok = true;
  363.     ITERATE ( TModuleSets, mi, m_ModuleSets ) {
  364.         if ( !(*mi)->Check() )
  365.             ok = false;
  366.     }
  367.     return ok;
  368. }
  369. bool CFileSet::CheckNames(void) const
  370. {
  371.     bool ok = true;
  372.     ITERATE ( TModuleSets, mi, m_ModuleSets ) {
  373.         if ( !(*mi)->CheckNames() )
  374.             ok = false;
  375.     }
  376.     return ok;
  377. }
  378. END_NCBI_SCOPE