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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: proj_item.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/16 17:05:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef PROJECT_TREE_BUILDER__PROJ_ITEM__HPP
  10. #define PROJECT_TREE_BUILDER__PROJ_ITEM__HPP
  11. /* $Id: proj_item.hpp,v 1000.2 2004/06/16 17:05:18 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:  Viatcheslav Gorelenkov
  37.  *
  38.  */
  39. #include <app/project_tree_builder/proj_datatool_generated_src.hpp>
  40. #include <corelib/ncbienv.hpp>
  41. BEGIN_NCBI_SCOPE
  42. /////////////////////////////////////////////////////////////////////////////
  43. ///
  44. /// CProjKey --
  45. ///
  46. /// Project key  abstraction.
  47. ///
  48. /// Project key (type + project_id).
  49. class CProjKey
  50. {
  51. public:
  52.     typedef enum {
  53.         eNoProj,
  54.         eLib,
  55.         eApp,
  56.         eDll,
  57.         eMsvc,
  58.         eLast 
  59.     } TProjType;
  60.     CProjKey(void);
  61.     CProjKey(TProjType type, const string& project_id);
  62.     CProjKey(const CProjKey& key);
  63.     CProjKey& operator= (const CProjKey& key);
  64.     ~CProjKey(void);
  65.     bool operator<  (const CProjKey& key) const;
  66.     bool operator== (const CProjKey& key) const;
  67.     bool operator!= (const CProjKey& key) const;
  68.     TProjType     Type(void) const;
  69.     const string& Id  (void) const;
  70. private:
  71.     TProjType m_Type;
  72.     string    m_Id;
  73. };
  74. /////////////////////////////////////////////////////////////////////////////
  75. ///
  76. /// CProjItem --
  77. ///
  78. /// Project abstraction.
  79. ///
  80. /// Representation of one project from the build tree.
  81. class CProjItem
  82. {
  83. public:
  84.     typedef CProjKey::TProjType TProjType;
  85.     CProjItem(void);
  86.     CProjItem(const CProjItem& item);
  87.     CProjItem& operator= (const CProjItem& item);
  88.     CProjItem(TProjType type,
  89.               const string&         name,
  90.               const string&         id,
  91.               const string&         sources_base,
  92.               const list<string>&   sources, 
  93.               const list<CProjKey>& depends,
  94.               const list<string>&   requires,
  95.               const list<string>&   libs_3_party,
  96.               const list<string>&   include_dirs,
  97.               const list<string>&   defines);
  98.     
  99.     ~CProjItem(void);
  100.     /// Name of atomic project.
  101.     string       m_Name;
  102.     /// ID of atomic project.
  103.     string       m_ID;
  104.     /// Type of the project.
  105.     TProjType    m_ProjType;
  106.     /// Base directory of source files (....c++/src/a/ )
  107.     string       m_SourcesBaseDir;
  108.     /// List of source files without extension ( *.cpp or *.c ) -
  109.     /// with relative pathes from m_SourcesBaseDir.
  110.     list<string> m_Sources;
  111.     
  112.     /// What projects this project is depend upon (IDs).
  113.     list<CProjKey> m_Depends;
  114.     /// What this project requires to have (in user site).
  115.     list<string> m_Requires;
  116.     /// Resolved contents of LIBS flag (Third-party libs)
  117.     list<string> m_Libs3Party;
  118.     /// Resolved contents of CPPFLAG ( -I$(include)<m_IncludeDir> -I$(srcdir)/..)
  119.     /// Absolute pathes
  120.     list<string>  m_IncludeDirs;
  121.     /// Source files *.asn , *.dtd to be processed by datatool app
  122.     list<CDataToolGeneratedSrc> m_DatatoolSources;
  123.     /// Defines like USE_MS_DBLIB
  124.     list<string>  m_Defines;
  125.     /// Libraries from NCBI C Toolkit to link with
  126.     list<string>  m_NcbiCLibs;
  127. private:
  128.     void Clear(void);
  129.     void SetFrom(const CProjItem& item);
  130. };
  131. END_NCBI_SCOPE
  132. /*
  133.  * ===========================================================================
  134.  * $Log: proj_item.hpp,v $
  135.  * Revision 1000.2  2004/06/16 17:05:18  gouriano
  136.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  137.  *
  138.  * Revision 1.18  2004/06/10 15:12:55  gorelenk
  139.  * Added newline at the file end to avoid GCC warning.
  140.  *
  141.  * Revision 1.17  2004/05/10 19:46:22  gorelenk
  142.  * + eMsvc in CProjKey.
  143.  *
  144.  * Revision 1.16  2004/03/18 17:41:03  gorelenk
  145.  * Aligned classes member-functions parameters inside declarations.
  146.  *
  147.  * Revision 1.15  2004/03/10 16:45:39  gorelenk
  148.  * Added eDll to enum TProjType.
  149.  *
  150.  * Revision 1.14  2004/03/02 16:33:12  gorelenk
  151.  * Declarations of classes CProjectItemsTree CCyclicDepends
  152.  * SProjectTreeFolder CProjectTreeFolders moved to proj_tree.hpp
  153.  * Declarations of classes SMakeProjectT SAppProjectT SLibProjectT
  154.  * SAsnProjectT SAsnProjectSingleT SAsnProjectMultipleT and
  155.  * CProjectTreeBuilder moved to proj_tree_builder.hpp.
  156.  *
  157.  * Revision 1.13  2004/03/01 17:58:32  gorelenk
  158.  * Added declaration of CCyclicDepends class.
  159.  *
  160.  * Revision 1.12  2004/02/26 21:24:03  gorelenk
  161.  * Declaration member-functions of class CProjectTreeBuilder:
  162.  * BuildProjectTree, BuildOneProjectTree and ProcessDir changed to use
  163.  * IProjectFilter* filter instead of const string& subtree_to_build.
  164.  *
  165.  * Revision 1.11  2004/02/24 17:15:25  gorelenk
  166.  * Added member m_NcbiCLibs to class CProjItem.
  167.  * Added declaration of member function CreateNcbiCToolkitLibs
  168.  * to struct SAppProjectT.
  169.  *
  170.  * Revision 1.10  2004/02/20 22:55:12  gorelenk
  171.  * Added analysis of ASN projects depends.
  172.  *
  173.  * Revision 1.9  2004/02/06 23:15:40  gorelenk
  174.  * Implemented support of ASN projects, semi-auto configure,
  175.  * CPPFLAGS support. Second working version.
  176.  *
  177.  * Revision 1.8  2004/02/04 23:15:27  gorelenk
  178.  * To class CProjItem added members m_Libs3Party and m_IncludeDirs.
  179.  * Redesigned constructors of class CProjItem.
  180.  *
  181.  * Revision 1.7  2004/02/03 17:05:08  gorelenk
  182.  * Added members to class CProjItem
  183.  *
  184.  * Revision 1.6  2004/01/30 20:42:21  gorelenk
  185.  * Added support of ASN projects
  186.  *
  187.  * Revision 1.5  2004/01/26 19:25:42  gorelenk
  188.  * += MSVC meta makefile support
  189.  * += MSVC project makefile support
  190.  *
  191.  * Revision 1.4  2004/01/22 17:57:09  gorelenk
  192.  * first version
  193.  *
  194.  * ===========================================================================
  195.  */
  196. #endif //PROJECT_TREE_BUILDER__PROJ_ITEM__HPP