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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: msvc_sln_generator.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/16 17:05:08  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef PROJECT_TREE_BUILDER__MSVC_SLN_GENERATOR__HPP
  10. #define PROJECT_TREE_BUILDER__MSVC_SLN_GENERATOR__HPP
  11. /* $Id: msvc_sln_generator.hpp,v 1000.1 2004/06/16 17:05:08 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/msvc_project_context.hpp>
  40. #include <app/project_tree_builder/msvc_prj_utils.hpp>
  41. #include <corelib/ncbienv.hpp>
  42. BEGIN_NCBI_SCOPE
  43. /////////////////////////////////////////////////////////////////////////////
  44. ///
  45. /// CMsvcSolutionGenerator --
  46. ///
  47. /// Generator of MSVC 7.10 solution file.
  48. ///
  49. /// Generates solution file from projects set.
  50. class CMsvcSolutionGenerator
  51. {
  52. public:
  53.     CMsvcSolutionGenerator(const list<SConfigInfo>& configs);
  54.     ~CMsvcSolutionGenerator(void);
  55.     
  56.     void AddProject(const CProjItem& project);
  57.     
  58.     void AddUtilityProject (const string& full_path);
  59.     void AddBuildAllProject(const string& full_path);
  60.     void SaveSolution(const string& file_path);
  61.     
  62. private:
  63.     list<SConfigInfo> m_Configs;
  64.     string m_SolutionDir;
  65.     // Basename / GUID
  66.     typedef pair<string, string> TUtilityProject;
  67.     // Utility projects
  68.     list<TUtilityProject> m_UtilityProjects;
  69.     // BuildAll utility project
  70.     TUtilityProject m_BuildAllProject; 
  71.     class CPrjContext
  72.     {
  73.     public:
  74.         CPrjContext(void);
  75.         CPrjContext(const CPrjContext& context);
  76.         CPrjContext(const CProjItem& project);
  77.         CPrjContext& operator= (const CPrjContext& context);
  78.         ~CPrjContext(void);
  79.         CProjItem m_Project;
  80.         string    m_GUID;
  81.         string    m_ProjectName;
  82.         string    m_ProjectPath;
  83.     
  84.     private:
  85.         void Clear(void);
  86.         void SetFrom(const CPrjContext& project_context);
  87.     };
  88.     // Real projects
  89.     typedef map<CProjKey, CPrjContext> TProjects;
  90.     TProjects m_Projects;
  91.     // Writers:
  92.     void WriteProjectAndSection(CNcbiOfstream&     ofs, 
  93.                                 const CPrjContext& project);
  94.     
  95.     void WriteUtilityProject   (const TUtilityProject& project, 
  96.                                 CNcbiOfstream& ofs);
  97.     void WriteBuildAllProject  (const TUtilityProject& project, 
  98.                                 CNcbiOfstream& ofs);
  99.     void WriteProjectConfigurations(CNcbiOfstream&     ofs, 
  100.                                     const CPrjContext& project);
  101.     void WriteUtilityProjectConfiguration(const TUtilityProject& project, 
  102.                                           CNcbiOfstream&         ofs);
  103.     // Prohibited to:
  104.     CMsvcSolutionGenerator(void);
  105.     CMsvcSolutionGenerator(const CMsvcSolutionGenerator&);
  106.     CMsvcSolutionGenerator& operator= (const CMsvcSolutionGenerator&);
  107. };
  108. END_NCBI_SCOPE
  109. /*
  110.  * ===========================================================================
  111.  * $Log: msvc_sln_generator.hpp,v $
  112.  * Revision 1000.1  2004/06/16 17:05:08  gouriano
  113.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  114.  *
  115.  * Revision 1.12  2004/06/10 15:12:55  gorelenk
  116.  * Added newline at the file end to avoid GCC warning.
  117.  *
  118.  * Revision 1.11  2004/03/18 17:41:03  gorelenk
  119.  * Aligned classes member-functions parameters inside declarations.
  120.  *
  121.  * Revision 1.10  2004/02/25 19:45:38  gorelenk
  122.  * +BuildAll utility project.
  123.  *
  124.  * Revision 1.9  2004/02/20 22:54:46  gorelenk
  125.  * Added analysis of ASN projects depends.
  126.  *
  127.  * Revision 1.8  2004/02/12 23:13:49  gorelenk
  128.  * Declared function for MSVC utility project creation.
  129.  *
  130.  * Revision 1.7  2004/02/12 17:46:35  gorelenk
  131.  * Re-designed addition of utility projects.
  132.  *
  133.  * Revision 1.6  2004/02/12 16:22:40  gorelenk
  134.  * Changed generation of command line for custom build info.
  135.  *
  136.  * Revision 1.5  2004/01/26 19:25:42  gorelenk
  137.  * += MSVC meta makefile support
  138.  * += MSVC project makefile support
  139.  *
  140.  * Revision 1.4  2004/01/22 17:57:09  gorelenk
  141.  * first version
  142.  *
  143.  * ===========================================================================
  144.  */
  145. #endif //PROJECT_TREE_BUILDER__MSVC_SLN_GENERATOR__HPP