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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: filecode.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:39:25  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef FILECODE_HPP
  10. #define FILECODE_HPP
  11. /*  $Id: filecode.hpp,v 1000.1 2004/06/01 19:39:25 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++ file generator
  40. *
  41. */
  42. #include <corelib/ncbistd.hpp>
  43. #include <corelib/ncbiutil.hpp>
  44. #include <serial/datatool/classctx.hpp>
  45. #include <serial/datatool/namespace.hpp>
  46. #include <serial/datatool/typestr.hpp>
  47. #include <map>
  48. #include <set>
  49. #include <list>
  50. BEGIN_NCBI_SCOPE
  51. class CDataType;
  52. class CTypeStrings;
  53. class CCodeGenerator;
  54. class CFileCode : public CClassContext
  55. {
  56. public:
  57.     typedef map<string, CNamespace> TForwards;
  58.     typedef set<string> TAddedClasses;
  59.     struct SClassInfo {
  60.         SClassInfo(const CNamespace& classNamespace,
  61.                    AutoPtr<CTypeStrings> classCode)
  62.             : ns(classNamespace), code(classCode)
  63.             {
  64.             }
  65.         CNamespace ns;
  66.         AutoPtr<CTypeStrings> code;
  67.         string hppCode, inlCode, cppCode;
  68.     };
  69.     typedef list< SClassInfo > TClasses;
  70.     CFileCode(const CCodeGenerator* codeGenerator,const string& baseName);
  71.     ~CFileCode(void);
  72.     const CNamespace& GetNamespace(void) const;
  73.     bool AddType(const CDataType* type);
  74.     string Include(const string& s, bool addExt=false) const;
  75.     const string& GetFileBaseName(void) const
  76.         {
  77.             return m_BaseName;
  78.         }
  79.     const string& ChangeFileBaseName(void);
  80.     const string& GetHeaderPrefix(void) const
  81.         {
  82.             return m_HeaderPrefix;
  83.         }
  84.     string GetUserFileBaseName(void) const;
  85.     string GetBaseFileBaseName(void) const;
  86.     string GetBaseHPPName(void) const;
  87.     string GetBaseCPPName(void) const;
  88.     string GetUserHPPName(void) const;
  89.     string GetUserCPPName(void) const;
  90.     string GetDefineBase(void) const;
  91.     string GetBaseHPPDefine(void) const;
  92.     string GetUserHPPDefine(void) const;
  93.     string GetMethodPrefix(void) const;
  94.     TIncludes& HPPIncludes(void);
  95.     TIncludes& CPPIncludes(void);
  96.     void AddForwardDeclaration(const string& className, const CNamespace& ns);
  97.     void AddHPPCode(const CNcbiOstrstream& code);
  98.     void AddINLCode(const CNcbiOstrstream& code);
  99.     void AddCPPCode(const CNcbiOstrstream& code);
  100.     void UseQuotedForm(bool use);
  101.     void CreateFileFolder(const string& fileName) const;
  102.     void GenerateCode(void);
  103.     void GenerateHPP(const string& path, string& fileName) const;
  104.     void GenerateCPP(const string& path, string& fileName) const;
  105.     bool GenerateUserHPP(const string& path, string& fileName) const;
  106.     bool GenerateUserCPP(const string& path, string& fileName) const;
  107.     CNcbiOstream& WriteSourceFile(CNcbiOstream& out) const;
  108.     static CNcbiOstream& WriteCopyrightHeader(CNcbiOstream& out);
  109.     CNcbiOstream& WriteSpecRefs(CNcbiOstream& out) const;
  110.     CNcbiOstream& WriteCopyright(CNcbiOstream& out, bool header) const;
  111.     CNcbiOstream& WriteUserCopyright(CNcbiOstream& out, bool header) const;
  112.     static CNcbiOstream& WriteLogKeyword(CNcbiOstream& out);
  113.     void GetModuleNames( map<string,string>& names) const;
  114.     static void SetPchHeader(const string& name)
  115.         {
  116.             m_PchHeader = name;
  117.         }
  118.     static const string& GetPchHeader(void)
  119.         {
  120.             return m_PchHeader;
  121.         }
  122. private:
  123.     const CCodeGenerator* m_CodeGenerator;
  124.     bool m_UseQuotedForm;
  125.     // file names
  126.     string m_BaseName;
  127.     string m_HeaderPrefix;
  128.     TIncludes m_HPPIncludes;
  129.     TIncludes m_CPPIncludes;
  130.     TForwards m_ForwardDeclarations;
  131.     SClassInfo* m_CurrentClass;
  132.     set<string> m_SourceFiles;
  133.     // classes code
  134.     TAddedClasses m_AddedClasses;
  135.     TClasses m_Classes;
  136.     static string m_PchHeader;
  137.     
  138.     CFileCode(const CFileCode&);
  139.     CFileCode& operator=(const CFileCode&);
  140.     void GenerateUserHPPCode(CNcbiOstream& code) const;
  141.     void GenerateUserCPPCode(CNcbiOstream& code) const;
  142.     typedef void (CFileCode::* TGenerateMethod)(CNcbiOstream& out) const;
  143.     bool WriteUserFile(const string& path, const string& name,
  144.                        string& fileName, TGenerateMethod method) const;
  145.     void LoadLines(TGenerateMethod method, list<string>& lines) const;
  146.     bool ModifiedByUser(const string& fileName,
  147.                         const list<string>& newLines) const;
  148. };
  149. END_NCBI_SCOPE
  150. /*
  151. * ===========================================================================
  152. * $Log: filecode.hpp,v $
  153. * Revision 1000.1  2004/06/01 19:39:25  gouriano
  154. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  155. *
  156. * Revision 1.18  2004/05/19 15:45:46  gouriano
  157. * Add precompiled header into combining files as well
  158. *
  159. * Revision 1.17  2004/05/17 14:51:23  gouriano
  160. * Added possibility to include precompiled header
  161. *
  162. * Revision 1.16  2004/04/29 20:09:44  gouriano
  163. * Generate DOXYGEN-style comments in C++ headers
  164. *
  165. * Revision 1.15  2003/05/29 17:22:59  gouriano
  166. * added possibility of generation .cvsignore file
  167. *
  168. * Revision 1.14  2002/12/17 16:21:20  gouriano
  169. * separated class name from the name of the file in which it will be written
  170. *
  171. * Revision 1.13  2002/10/22 15:07:01  gouriano
  172. * added possibillity to use quoted syntax form for generated include files
  173. *
  174. * Revision 1.12  2002/10/01 14:21:10  gouriano
  175. * added more generation report data
  176. *
  177. * Revision 1.11  2002/06/10 18:41:25  ucko
  178. * Move CVS logs (both internal and generated) to the end.
  179. *
  180. * Revision 1.10  2000/11/22 16:26:22  vasilche
  181. * Added generation/checking of checksum to user files.
  182. *
  183. * Revision 1.9  2000/08/25 15:58:46  vasilche
  184. * Renamed directory tool -> datatool.
  185. *
  186. * Revision 1.8  2000/04/17 19:11:05  vasilche
  187. * Fixed failed assertion.
  188. * Removed redundant namespace specifications.
  189. *
  190. * Revision 1.7  2000/04/12 15:36:41  vasilche
  191. * Added -on <namespace> argument to datatool.
  192. * Removed unnecessary namespace specifications in generated files.
  193. *
  194. * Revision 1.6  2000/04/07 19:26:09  vasilche
  195. * Added namespace support to datatool.
  196. * By default with argument -oR datatool will generate objects in namespace
  197. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  198. * Datatool's classes also moved to NCBI namespace.
  199. *
  200. * Revision 1.5  2000/03/29 15:51:41  vasilche
  201. * Generated files names limited to 31 symbols due to limitations of Mac.
  202. *
  203. * Revision 1.4  2000/03/17 16:47:38  vasilche
  204. * Added copyright message to generated files.
  205. * All objects pointers in choices now share the only CObject pointer.
  206. *
  207. * Revision 1.3  2000/02/17 21:26:22  vasilche
  208. * Inline methods now will be at the end of *_Base.hpp files.
  209. *
  210. * Revision 1.2  2000/02/17 20:05:03  vasilche
  211. * Inline methods now will be generated in *_Base.inl files.
  212. * Fixed processing of StringStore.
  213. * Renamed in choices: Selected() -> Which(), E_choice -> E_Choice.
  214. * Enumerated values now will preserve case as in ASN.1 definition.
  215. *
  216. * Revision 1.1  2000/02/01 21:46:18  vasilche
  217. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  218. * Removed CMemberInfo subclasses.
  219. * Added support for DEFAULT/OPTIONAL members.
  220. * Changed class generation.
  221. * Moved datatool headers to include/internal/serial/tool.
  222. *
  223. * Revision 1.5  1999/12/29 16:01:50  vasilche
  224. * Added explicit virtual destructors.
  225. * Resolved overloading of InternalResolve.
  226. *
  227. * Revision 1.4  1999/12/20 21:00:17  vasilche
  228. * Added generation of sources in different directories.
  229. *
  230. * Revision 1.3  1999/11/19 15:48:10  vasilche
  231. * Modified AutoPtr template to allow its use in STL containers (map, vector etc.)
  232. *
  233. * Revision 1.2  1999/11/15 19:36:15  vasilche
  234. * Fixed warnings on GCC
  235. *
  236. * ===========================================================================
  237. */
  238. #endif