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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: proj_projects.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/16 17:05:20  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef PROJECT_TREE_BUILDER__PROJ_PROJECTS__HPP
  10. #define PROJECT_TREE_BUILDER__PROJ_PROJECTS__HPP
  11. /* $Id: proj_projects.hpp,v 1000.1 2004/06/16 17:05:20 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_item.hpp>
  40. #include <corelib/ncbienv.hpp>
  41. #include <app/project_tree_builder/proj_utils.hpp>
  42. BEGIN_NCBI_SCOPE
  43. class CProjectDummyFilter : public IProjectFilter
  44. {
  45. public:
  46.     CProjectDummyFilter(void)
  47.     {
  48.     }
  49.     virtual ~CProjectDummyFilter(void)
  50.     {
  51.     }
  52.     virtual bool CheckProject(const string& project_base_dir) const
  53.     {
  54.         return true;
  55.     }
  56.     virtual bool PassAll (void) const
  57.     {
  58.         return true;
  59.     }
  60. private:
  61.     // Prohibited to:
  62.     CProjectDummyFilter(const CProjectDummyFilter&);
  63.     CProjectDummyFilter& operator= (const CProjectDummyFilter&);   
  64. };
  65. class CProjectOneNodeFilter : public IProjectFilter
  66. {
  67. public:
  68.     // 
  69.     CProjectOneNodeFilter(const string& root_src_dir,
  70.                           const string& subtree_dir);
  71.     virtual ~CProjectOneNodeFilter(void)
  72.     {
  73.     }
  74.     virtual bool CheckProject(const string& project_base_dir) const;
  75.     virtual bool PassAll     (void) const
  76.     {
  77.         return m_PassAll;
  78.     }
  79. private:
  80.     typedef list<string> TPath;
  81.     string m_RootSrcDir;
  82.     string m_SubtreeDir;
  83.     TPath  m_SubtreePath;
  84.     bool m_PassAll;
  85.     // Prohibited to:
  86.     CProjectOneNodeFilter(void);
  87.     CProjectOneNodeFilter(const CProjectOneNodeFilter&);
  88.     CProjectOneNodeFilter& operator= (const CProjectOneNodeFilter&);   
  89. };
  90. class CProjectsLstFileFilter : public IProjectFilter
  91. {
  92. public:
  93.     // create from .lst file
  94.     CProjectsLstFileFilter(const string& root_src_dir,
  95.                            const string& file_full_path);
  96.     virtual ~CProjectsLstFileFilter(void)
  97.     {
  98.     }
  99.     virtual bool CheckProject(const string& project_base_dir) const;
  100.     virtual bool PassAll     (void) const
  101.     {
  102.         return false;
  103.     }
  104. private:
  105.     typedef list<string> TPath;
  106.     string m_RootSrcDir;
  107.     struct SLstElement
  108.     {
  109.         TPath m_Path;
  110.         bool  m_Recursive;
  111.     };
  112.     /// One .lst file
  113.     typedef list<SLstElement> TLstFileContents;
  114.     TLstFileContents m_LstFileContentsInclude;
  115.     TLstFileContents m_LstFileContentsExclude;
  116.     
  117.     static bool CmpLstElementWithPath(const SLstElement& elt, 
  118.                                       const TPath&       path);
  119.     // Prohibited to:
  120.     CProjectsLstFileFilter(void);
  121.     CProjectsLstFileFilter(const CProjectsLstFileFilter&);
  122.     CProjectsLstFileFilter& operator= (const CProjectsLstFileFilter&);   
  123. };
  124. END_NCBI_SCOPE
  125. /*
  126.  * ===========================================================================
  127.  * $Log: proj_projects.hpp,v $
  128.  * Revision 1000.1  2004/06/16 17:05:20  gouriano
  129.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  130.  *
  131.  * Revision 1.6  2004/06/10 15:12:55  gorelenk
  132.  * Added newline at the file end to avoid GCC warning.
  133.  *
  134.  * Revision 1.5  2004/03/18 19:11:12  gorelenk
  135.  * Added m_LstFileContentsExclude member to class CProjectsLstFileFilter.
  136.  *
  137.  * Revision 1.4  2004/02/26 21:26:11  gorelenk
  138.  * Removed all older class declarations. Added declaration of classes that
  139.  * implements IProjectFilter interface: CProjectDummyFilter,
  140.  * CProjectOneNodeFilter and CProjectsLstFileFilter.
  141.  *
  142.  * Revision 1.3  2004/02/18 23:34:30  gorelenk
  143.  * Added declaration of class CProjProjectsSets.
  144.  *
  145.  * ===========================================================================
  146.  */
  147. #endif //PROJECT_TREE_BUILDER__PROJ_PROJECTS__HPP