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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: classstr.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:39:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.23
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CLASSSTR_HPP
  10. #define CLASSSTR_HPP
  11. /*  $Id: classstr.hpp,v 1000.3 2004/06/01 19:39:14 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. #include <serial/datatool/typestr.hpp>
  42. #include <corelib/ncbiutil.hpp>
  43. #include <serial/datatool/namespace.hpp>
  44. #include <list>
  45. BEGIN_NCBI_SCOPE
  46. class CClassCode;
  47. class CDataType;
  48. class CClassTypeStrings : public CTypeStrings
  49. {
  50.     typedef CTypeStrings CParent;
  51. public:
  52.     struct SMemberInfo {
  53.         string externalName; // logical name
  54.         string cName; // C++ type code
  55.         string mName; // member name
  56.         string tName; // typedef name
  57.         AutoPtr<CTypeStrings> type; // value type
  58.         string ptrType; // "*" or "NCBI_NS_NCBI::CRef"
  59.         string valueName; // value name (mName or '*'+mName)
  60.         bool optional;  // have OPTIONAL or DEFAULT attribute
  61.         bool ref;       // implement member via CRef
  62.         bool haveFlag;  // need additional boolean flag 'isSet'
  63.         bool canBeNull; // pointer type can be NULL pointer
  64.         bool delayed;
  65.         int memberTag;
  66.         string defaultValue; // DEFAULT value code
  67.         bool noPrefix;
  68.         bool attlist;
  69.         bool noTag;
  70.         bool simple;
  71.         const CDataType* dataType;
  72.         bool nonEmpty;
  73.         SMemberInfo(const string& name, const AutoPtr<CTypeStrings>& type,
  74.                     const string& pointerType,
  75.                     bool optional, const string& defaultValue,
  76.                     bool delayed, int tag,
  77.                     bool noPrefx, bool attlst, bool noTg, bool simpl,
  78.                     const CDataType* dataTp, bool nEmpty);
  79.     };
  80.     typedef list<SMemberInfo> TMembers;
  81.     CClassTypeStrings(const string& externalName, const string& className);
  82.     ~CClassTypeStrings(void);
  83.     void SetClassNamespace(const CNamespace& ns);
  84.     const string& GetExternalName(void) const
  85.         {
  86.             return m_ExternalName;
  87.         }
  88.     // DT added to avoid conflict with the standard Windows interfaces
  89.     const string& GetClassNameDT(void) const
  90.         {
  91.             return m_ClassName;
  92.         }
  93.     void SetParentClass(const string& className, const CNamespace& ns,
  94.                         const string& fileName);
  95.     void AddMember(const string& name, const AutoPtr<CTypeStrings>& type,
  96.                    const string& pointerType,
  97.                    bool optional, const string& defaultValue,
  98.                    bool delayed, int tag,
  99.                    bool noPrefix, bool attlist, bool noTag, bool simple,
  100.                    const CDataType* dataType, bool nonEmpty);
  101.     void AddMember(const AutoPtr<CTypeStrings>& type, int tag, bool nonEmpty, bool noPrefix)
  102.         {
  103.             AddMember(NcbiEmptyString, type, NcbiEmptyString,
  104.                       false, NcbiEmptyString, false, tag,
  105.                       noPrefix,false,false,false,0,nonEmpty);
  106.         }
  107.     string GetCType(const CNamespace& ns) const;
  108.     string GetPrefixedCType(const CNamespace& ns,
  109.                             const string& methodPrefix) const;
  110.     string GetRef(const CNamespace& ns) const;
  111.     EKind GetKind(void) const;
  112.     string NewInstance(const string& init) const;
  113.     void SetObject(bool isObject)
  114.         {
  115.             m_IsObject = isObject;
  116.         }
  117.     bool HaveUserClass(void) const
  118.         {
  119.             return m_HaveUserClass;
  120.         }
  121.     void SetHaveUserClass(bool haveUserClass)
  122.         {
  123.             m_HaveUserClass = haveUserClass;
  124.         }
  125.     bool HaveTypeInfo(void) const
  126.         {
  127.             return m_HaveTypeInfo;
  128.         }
  129.     void SetHaveTypeInfo(bool haveTypeInfo)
  130.         {
  131.             m_HaveTypeInfo = haveTypeInfo;
  132.         }
  133.     void GenerateTypeCode(CClassContext& ctx) const;
  134.     string GetResetCode(const string& var) const;
  135.     void GenerateUserHPPCode(CNcbiOstream& out) const;
  136.     void GenerateUserCPPCode(CNcbiOstream& out) const;
  137. protected:
  138.     virtual void GenerateClassCode(CClassCode& code,
  139.                                    CNcbiOstream& getters,
  140.                                    const string& methodPrefix,
  141.                                    bool haveUserClass,
  142.                                    const string& classPrefix) const;
  143.     bool x_IsNullType(TMembers::const_iterator i) const;
  144.     bool x_IsNullWithAttlist(TMembers::const_iterator i) const;
  145. private:
  146.     bool m_IsObject;
  147.     bool m_HaveUserClass;
  148.     bool m_HaveTypeInfo;
  149.     string m_ExternalName;
  150.     string m_ClassName;
  151.     string m_ParentClassName;
  152.     CNamespace m_ParentClassNamespace;
  153.     string m_ParentClassFileName;
  154. public:
  155.     TMembers m_Members;
  156. };
  157. class CClassRefTypeStrings : public CTypeStrings
  158. {
  159. public:
  160.     CClassRefTypeStrings(const string& className, const CNamespace& ns,
  161.                          const string& fileName);
  162.     string GetClassName(void) const;
  163.     string GetCType(const CNamespace& ns) const;
  164.     string GetPrefixedCType(const CNamespace& ns,
  165.                             const string& methodPrefix) const;
  166.     string GetRef(const CNamespace& ns) const;
  167.     EKind GetKind(void) const;
  168.     const CNamespace& GetNamespace(void) const;
  169.     string NewInstance(const string& init) const;
  170.     string GetResetCode(const string& var) const;
  171.     void GenerateTypeCode(CClassContext& ctx) const;
  172.     void GeneratePointerTypeCode(CClassContext& ctx) const;
  173. private:
  174.     string m_ClassName;
  175.     CNamespace m_Namespace;
  176.     string m_FileName;
  177. };
  178. END_NCBI_SCOPE
  179. /*
  180. * ===========================================================================
  181. *
  182. * $Log: classstr.hpp,v $
  183. * Revision 1000.3  2004/06/01 19:39:14  gouriano
  184. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.23
  185. *
  186. * Revision 1.23  2004/05/19 17:23:25  gouriano
  187. * Corrected generation of C++ code by DTD for containers
  188. *
  189. * Revision 1.22  2004/03/08 20:08:02  gouriano
  190. * Correct namespaces of generated classes
  191. *
  192. * Revision 1.21  2003/11/20 14:32:12  gouriano
  193. * changed generated C++ code so NULL data types have no value
  194. *
  195. * Revision 1.20  2003/06/24 20:53:39  gouriano
  196. * corrected code generation and serialization of non-empty unnamed containers (XML)
  197. *
  198. * Revision 1.19  2003/04/29 18:29:33  gouriano
  199. * object data member initialization verification
  200. *
  201. * Revision 1.18  2002/11/19 19:47:49  gouriano
  202. * added support of XML attributes of choice variants
  203. *
  204. * Revision 1.17  2002/11/14 21:07:11  gouriano
  205. * added support of XML attribute lists
  206. *
  207. * Revision 1.16  2002/11/13 00:44:00  ucko
  208. * Made type info declaration optional (but on by default); CVS logs to end
  209. *
  210. * Revision 1.15  2002/10/15 13:53:08  gouriano
  211. * use "noprefix" flag
  212. *
  213. * Revision 1.14  2002/08/14 17:14:22  grichenk
  214. * Fixed function name conflict on Win32: renamed
  215. * GetClassName() -> GetClassNameDT()
  216. *
  217. * Revision 1.13  2001/06/11 14:34:58  grichenk
  218. * Added support for numeric tags in ASN.1 specifications and data streams.
  219. *
  220. * Revision 1.12  2000/08/25 15:58:46  vasilche
  221. * Renamed directory tool -> datatool.
  222. *
  223. * Revision 1.11  2000/07/11 20:36:01  vasilche
  224. * Removed unnecessary generation of namespace references for enum members.
  225. * Removed obsolete methods.
  226. *
  227. * Revision 1.10  2000/06/16 16:31:13  vasilche
  228. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  229. *
  230. * Revision 1.9  2000/05/03 14:38:10  vasilche
  231. * SERIAL: added support for delayed reading to generated classes.
  232. * DATATOOL: added code generation for delayed reading.
  233. *
  234. * Revision 1.8  2000/04/17 19:11:04  vasilche
  235. * Fixed failed assertion.
  236. * Removed redundant namespace specifications.
  237. *
  238. * Revision 1.7  2000/04/12 15:36:40  vasilche
  239. * Added -on <namespace> argument to datatool.
  240. * Removed unnecessary namespace specifications in generated files.
  241. *
  242. * Revision 1.6  2000/04/07 19:26:07  vasilche
  243. * Added namespace support to datatool.
  244. * By default with argument -oR datatool will generate objects in namespace
  245. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  246. * Datatool's classes also moved to NCBI namespace.
  247. *
  248. * Revision 1.5  2000/03/14 18:32:54  vasilche
  249. * Fixed class includes generation.
  250. *
  251. * Revision 1.4  2000/03/07 20:04:56  vasilche
  252. * Added NewInstance method to generated classes.
  253. *
  254. * Revision 1.3  2000/03/07 14:06:05  vasilche
  255. * Added generation of reference counted objects.
  256. *
  257. * Revision 1.2  2000/02/17 20:05:02  vasilche
  258. * Inline methods now will be generated in *_Base.inl files.
  259. * Fixed processing of StringStore.
  260. * Renamed in choices: Selected() -> Which(), E_choice -> E_Choice.
  261. * Enumerated values now will preserve case as in ASN.1 definition.
  262. *
  263. * Revision 1.1  2000/02/01 21:46:16  vasilche
  264. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  265. * Removed CMemberInfo subclasses.
  266. * Added support for DEFAULT/OPTIONAL members.
  267. * Changed class generation.
  268. * Moved datatool headers to include/internal/serial/tool.
  269. *
  270. * Revision 1.5  2000/01/10 19:46:47  vasilche
  271. * Fixed encoding/decoding of REAL type.
  272. * Fixed encoding/decoding of StringStore.
  273. * Fixed encoding/decoding of NULL type.
  274. * Fixed error reporting.
  275. * Reduced object map (only classes).
  276. *
  277. * Revision 1.4  1999/12/01 17:36:28  vasilche
  278. * Fixed CHOICE processing.
  279. *
  280. * Revision 1.3  1999/11/16 15:41:17  vasilche
  281. * Added plain pointer choice.
  282. * By default we use C pointer instead of auto_ptr.
  283. * Start adding initializers.
  284. *
  285. * Revision 1.2  1999/11/15 19:36:21  vasilche
  286. * Fixed warnings on GCC
  287. *
  288. * ===========================================================================
  289. */
  290. #endif