disabled warning 4214
[reactos.git] / reactos / tools / rbuild / backend / msvc / msvc.h
1 /*
2 * Copyright (C) 2005 Trevor McCort
3 * Copyright (C) 2005 Casper S. Hornstrup
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 #ifndef __MSVC_H__
20 #define __MSVC_H__
21
22 #include <fstream>
23 #include <vector>
24 #include <string>
25
26 #include "../backend.h"
27
28 class FileUnit
29 {
30 public:
31 std::string filename;
32 std::string folder;
33 };
34
35 class MSVCBackend : public Backend
36 {
37 public:
38
39 MSVCBackend(Project &project,
40 Configuration& configuration);
41 virtual ~MSVCBackend() {}
42
43 virtual void Process();
44
45 private:
46
47 void ProcessModules();
48 void ProcessFile(std::string &filename);
49
50 bool CheckFolderAdded(std::string &folder);
51 void AddFolders(std::string &folder);
52
53 void OutputFolders();
54 void OutputFileUnits();
55
56 std::string DspFileName ( const Module& module ) const;
57 std::string VcprojFileName ( const Module& module ) const;
58
59 std::vector<FileUnit> m_fileUnits;
60 std::vector<std::string> m_folders;
61
62 int m_unitCount;
63
64 FILE* m_dswFile;
65 FILE* m_slnFile;
66 FILE* m_rulesFile;
67
68 // functions in msvcmaker.cpp:
69
70 void _generate_dsp ( const Module& module );
71 void _generate_dsw_header ( FILE* OUT );
72 void _generate_dsw_project (
73 FILE* OUT,
74 const Module& module,
75 std::string dsp_file,
76 const std::vector<Dependency*>& dependencies );
77
78 void _generate_dsw_footer ( FILE* OUT );
79 void _generate_wine_dsw ( FILE* OUT );
80
81 // functions in vcprojmaker.cpp:
82
83 std::string _get_solution_verion ( void );
84 std::string _gen_guid();
85 std::string _replace_str(
86 std::string string1,
87 const std::string &find_str,
88 const std::string &replace_str);
89
90 void _generate_vcproj ( const Module& module );
91
92 void _generate_sln_header ( FILE* OUT );
93 void _generate_sln_footer ( FILE* OUT );
94 void _generate_sln ( FILE* OUT );
95 void _generate_rules_file ( FILE* OUT );
96 void _generate_sln_project (
97 FILE* OUT,
98 const Module& module,
99 std::string vcproj_file,
100 std::string sln_guid,
101 std::string vcproj_guid,
102 const std::vector<Dependency*>& dependencies );
103 void _generate_sln_configurations (
104 FILE* OUT,
105 std::string vcproj_guid );
106
107 };
108
109 #endif // __MSVC_H__
110