f0b32fa58d31f5652fe9a441b3a117e6fedd5628
[reactos.git] / reactos / tools / rbuild / backend / msvc / vcprojmaker.cpp
1 /*
2 * Copyright (C) 2002 Patrik Stridvall
3 * Copyright (C) 2005 Royce Mitchell III
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
20 #ifdef _MSC_VER
21 #pragma warning ( disable : 4786 )
22 #endif//_MSC_VER
23
24 #include <string>
25 #include <vector>
26
27 #include <stdio.h>
28
29 #include "msvc.h"
30
31 using std::string;
32 using std::vector;
33
34 #ifdef OUT
35 #undef OUT
36 #endif//OUT
37
38 void
39 MSVCBackend::_generate_vcproj ( const Module& module )
40 {
41 size_t i;
42 // TODO FIXME wine hack?
43 //const bool wine = false;
44
45 string vcproj_file = VcprojFileName(module);
46 printf ( "Creating MSVC.NET project: '%s'\n", vcproj_file.c_str() );
47 FILE* OUT = fopen ( vcproj_file.c_str(), "wb" );
48
49 vector<string> imports;
50 string module_type = GetExtension(module.GetTargetName());
51 bool lib = (module.type == ObjectLibrary) || (module_type == ".lib") || (module_type == ".a");
52 bool dll = (module_type == ".dll") || (module_type == ".cpl");
53 bool exe = (module_type == ".exe");
54 bool sys = (module_type == ".sys");
55
56 string path_basedir = module.GetPathToBaseDir ();
57 string intenv = Environment::GetIntermediatePath ();
58 string outenv = Environment::GetOutputPath ();
59 string outdir;
60 string intdir;
61
62 if ( intenv == "obj-i386" )
63 intdir = path_basedir + "obj-i386"; /* append relative dir from project dir */
64 else
65 intdir = intenv;
66
67 if ( outenv == "output-i386" )
68 outdir = path_basedir + "output-i386";
69 else
70 outdir = outenv;
71
72 // TODO FIXME - need more checks here for 'sys' and possibly 'drv'?
73
74 bool console = exe && (module.type == Win32CUI);
75
76 // TODO FIXME - not sure if the count here is right...
77 int parts = 0;
78 const char* p = strpbrk ( vcproj_file.c_str(), "/\\" );
79 while ( p )
80 {
81 ++parts;
82 p = strpbrk ( p+1, "/\\" );
83 }
84 string msvc_wine_dir = "..";
85 while ( --parts )
86 msvc_wine_dir += "\\..";
87
88 string wine_include_dir = msvc_wine_dir + "\\include";
89
90 //$progress_current++;
91 //$output->progress("$dsp_file (file $progress_current of $progress_max)");
92
93 string vcproj_path = module.GetBasePath();
94 vector<string> source_files, resource_files, includes, libraries, defines;
95 vector<const IfableData*> ifs_list;
96 ifs_list.push_back ( &module.project.non_if_data );
97 ifs_list.push_back ( &module.non_if_data );
98
99 // MinGW doesn't have a safe-string library yet
100 defines.push_back ( "_CRT_SECURE_NO_DEPRECATE" );
101 defines.push_back ( "_CRT_NON_CONFORMING_SWPRINTFS" );
102 // this is a define in MinGW w32api, but not Microsoft's headers
103 defines.push_back ( "STDCALL=__stdcall" );
104
105 string baseaddr;
106
107 while ( ifs_list.size() )
108 {
109 const IfableData& data = *ifs_list.back();
110 ifs_list.pop_back();
111 // TODO FIXME - refactor needed - we're discarding if conditions
112 for ( i = 0; i < data.ifs.size(); i++ )
113 ifs_list.push_back ( &data.ifs[i]->data );
114 const vector<File*>& files = data.files;
115 for ( i = 0; i < files.size(); i++ )
116 {
117 // TODO FIXME - do we want the full path of the file here?
118 string file = string(".") + &files[i]->name[vcproj_path.size()];
119
120 if ( !stricmp ( Right(file,3).c_str(), ".rc" ) )
121 resource_files.push_back ( file );
122 else
123 source_files.push_back ( file );
124 }
125 const vector<Include*>& incs = data.includes;
126 for ( i = 0; i < incs.size(); i++ )
127 {
128 // explicitly omit win32api directories
129 if ( !strncmp(incs[i]->directory.c_str(), "w32api", 6 ) )
130 continue;
131
132 // explicitly omit include/wine directories
133 if ( !strncmp(incs[i]->directory.c_str(), "include\\wine", 12 ) )
134 continue;
135
136 string path = Path::RelativeFromDirectory (
137 incs[i]->directory,
138 module.GetBasePath() );
139 includes.push_back ( path );
140 }
141 const vector<Library*>& libs = data.libraries;
142 for ( i = 0; i < libs.size(); i++ )
143 {
144 #if 0
145 // this code is deactivated untill the tree builds fine with msvc
146 // --- is appended to each library path which is later
147 // replaced by the configuration
148 // i.e. ../output-i386/lib/rtl/---/rtl.lib becomes
149 // ../output-i386/lib/rtl/Debug/rtl.lib
150 // etc
151 libs[i]->importedModule->
152 string libpath = outdir + "\\" + libs[i]->importedModule->GetBasePath() + "\\---\\" + libs[i]->name + ".lib";
153 libraries.push_back ( libpath );
154 #else
155 libraries.push_back ( libs[i]->name + ".lib" );
156 #endif
157 }
158 const vector<Define*>& defs = data.defines;
159 for ( i = 0; i < defs.size(); i++ )
160 {
161 if ( defs[i]->value[0] )
162 defines.push_back ( defs[i]->name + "=" + defs[i]->value );
163 else
164 defines.push_back ( defs[i]->name );
165 }
166 for ( i = 0; i < data.properties.size(); i++ )
167 {
168 Property& prop = *data.properties[i];
169 if ( strstr ( module.baseaddress.c_str(), prop.name.c_str() ) )
170 baseaddr = prop.value;
171 }
172 }
173
174 vector<string> header_files;
175
176 bool no_cpp = true;
177 bool no_msvc_headers = true;
178
179 std::vector<std::string> cfgs;
180
181 cfgs.push_back ( "Debug" );
182 cfgs.push_back ( "Release" );
183 cfgs.push_back ( "Speed" );
184
185 if (!no_cpp)
186 {
187 std::vector<std::string> _cfgs;
188 for ( i = 0; i < cfgs.size(); i++ )
189 {
190 _cfgs.push_back ( cfgs[i] + " C" );
191 _cfgs.push_back ( cfgs[i] + " C++" );
192 }
193 cfgs.resize(0);
194 cfgs = _cfgs;
195 }
196
197 if (!no_msvc_headers)
198 {
199 std::vector<std::string> _cfgs;
200 for ( i = 0; i < cfgs.size(); i++ )
201 {
202 _cfgs.push_back ( cfgs[i] + " MSVC Headers" );
203 _cfgs.push_back ( cfgs[i] + " Wine Headers" );
204 }
205 cfgs.resize(0);
206 cfgs = _cfgs;
207 }
208
209 string default_cfg = cfgs.back();
210 string include_string;
211
212 fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );
213 fprintf ( OUT, "<VisualStudioProject\r\n" );
214 fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );
215
216 if (configuration.VSProjectVersion.empty())
217 configuration.VSProjectVersion = MS_VS_DEF_VERSION;
218
219 fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );
220 fprintf ( OUT, "\tName=\"%s\"\r\n", module.name.c_str() );
221 fprintf ( OUT, "\tProjectGUID=\"%s\"\r\n", module.guid.c_str() );
222 fprintf ( OUT, "\tKeyword=\"Win32Proj\">\r\n" );
223
224 fprintf ( OUT, "\t<Platforms>\r\n" );
225 fprintf ( OUT, "\t\t<Platform\r\n" );
226 fprintf ( OUT, "\t\t\tName=\"Win32\"/>\r\n" );
227 fprintf ( OUT, "\t</Platforms>\r\n" );
228
229 //fprintf ( OUT, "\t<ToolFiles>\r\n" );
230 //fprintf ( OUT, "\t\t<ToolFile\r\n" );
231
232 //string path = Path::RelativeFromDirectory ( ProjectNode.name, module.GetBasePath() );
233 //path.erase(path.find(ProjectNode.name, 0), ProjectNode.name.size() + 1);
234
235 //fprintf ( OUT, "\t\t\tRelativePath=\"%sgccasm.rules\"/>\r\n", path.c_str() );
236 //fprintf ( OUT, "\t</ToolFiles>\r\n" );
237
238 int n = 0;
239
240 std::string output_dir;
241
242 fprintf ( OUT, "\t<Configurations>\r\n" );
243 for ( size_t icfg = 0; icfg < cfgs.size(); icfg++ )
244 {
245 std::string& cfg = cfgs[icfg];
246
247 bool debug = strstr ( cfg.c_str(), "Debug" ) != NULL;
248 bool speed = strstr ( cfg.c_str(), "Speed" ) != NULL;
249 bool release = (!debug && !speed );
250
251 //bool msvc_headers = ( 0 != strstr ( cfg.c_str(), "MSVC Headers" ) );
252
253 fprintf ( OUT, "\t\t<Configuration\r\n" );
254 fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.c_str() );
255 fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s\\%s\\%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), _get_vc_dir().c_str (), cfg.c_str() );
256 fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s\\%s\\%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), _get_vc_dir().c_str (), cfg.c_str() );
257 fprintf ( OUT, "\t\t\tConfigurationType=\"%d\"\r\n", exe ? 1 : dll ? 2 : lib ? 4 : -1 );
258 fprintf ( OUT, "\t\t\tCharacterSet=\"2\">\r\n" );
259
260 fprintf ( OUT, "\t\t\t<Tool\r\n" );
261 fprintf ( OUT, "\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
262 fprintf ( OUT, "\t\t\t\tOptimization=\"%d\"\r\n", release ? 2 : 0 );
263
264 fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
265 bool multiple_includes = false;
266 fprintf ( OUT, "./;" );
267 for ( i = 0; i < includes.size(); i++ )
268 {
269 const string& include = includes[i];
270 if ( strcmp ( include.c_str(), "." ) )
271 {
272 if ( multiple_includes )
273 fprintf ( OUT, ";" );
274
275 fprintf ( OUT, "%s", include.c_str() );
276 include_string += " /I " + include;
277 multiple_includes = true;
278 }
279 }
280 fprintf ( OUT, "\"\r\n " );
281
282 if ( debug )
283 {
284 defines.push_back ( "_DEBUG" );
285 }
286 else
287 {
288 defines.push_back ( "NDEBUG" );
289 }
290
291 if ( lib || exe )
292 {
293 defines.push_back ( "_LIB" );
294 }
295 else
296 {
297 defines.push_back ( "_WINDOWS" );
298 defines.push_back ( "_USRDLL" );
299 }
300
301 fprintf ( OUT, "\t\t\t\tPreprocessorDefinitions=\"" );
302 for ( i = 0; i < defines.size(); i++ )
303 {
304 if ( i > 0 )
305 fprintf ( OUT, ";" );
306
307 defines[i] = _replace_str(defines[i], "\"","&quot;");
308 fprintf ( OUT, "%s", defines[i].c_str() );
309 }
310 fprintf ( OUT, "\"\r\n" );
311
312 fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
313 fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"%s\"\r\n", sys ? 0 : (debug ? "3" : "0") );
314 fprintf ( OUT, "\t\t\t\tRuntimeLibrary=\"5\"\r\n" );
315 fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"%s\"\r\n", sys ? "FALSE" : (debug ? "TRUE" : "FALSE" ));
316 fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"%s\"\r\n", debug ? "TRUE" : "FALSE" );
317
318 if ( module.pch != NULL )
319 {
320 fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"2\"\r\n" );
321 string pch_path = Path::RelativeFromDirectory (
322 module.pch->file.name,
323 module.GetBasePath() );
324 string::size_type pos = pch_path.find_last_of ("/");
325 if ( pos != string::npos )
326 pch_path.erase(0, pos+1);
327 fprintf ( OUT, "\t\t\t\tPrecompiledHeaderThrough=\"%s\"\r\n", pch_path.c_str() );
328 }
329 else
330 {
331 fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"0\"\r\n" );
332 }
333
334 fprintf ( OUT, "\t\t\t\tWholeProgramOptimization=\"%s\"\r\n", release ? "TRUE" : "FALSE");
335 if ( release )
336 {
337 fprintf ( OUT, "\t\t\t\tFavorSizeOrSpeed=\"1\"\r\n" );
338 fprintf ( OUT, "\t\t\t\tStringPooling=\"true\"\r\n" );
339 }
340
341 fprintf ( OUT, "\t\t\t\tEnablePREfast=\"%s\"\r\n", debug ? "TRUE" : "FALSE");
342 fprintf ( OUT, "\t\t\t\tDisableSpecificWarnings=\"4201;4127;4214\"\r\n" );
343 fprintf ( OUT, "\t\t\t\tWarningLevel=\"%s\"\r\n", speed ? "0" : "4" );
344 fprintf ( OUT, "\t\t\t\tDetect64BitPortabilityProblems=\"%s\"\r\n", speed ? "FALSE" : "TRUE");
345 if ( !module.cplusplus )
346 fprintf ( OUT, "\t\t\t\tCompileAs=\"1\"\r\n" );
347 fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", (sys || (exe && module.type == Kernel)) ? 2: 1);
348 fprintf ( OUT, "\t\t\t\tDebugInformationFormat=\"%s\"/>\r\n", speed ? "0" : "4");
349
350 fprintf ( OUT, "\t\t\t<Tool\r\n" );
351 fprintf ( OUT, "\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n" );
352
353 if ( lib )
354 {
355 fprintf ( OUT, "\t\t\t<Tool\r\n" );
356 fprintf ( OUT, "\t\t\t\tName=\"VCLibrarianTool\"\r\n" );
357 fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s.lib\"/>\r\n", module.name.c_str() );
358 }
359 else
360 {
361 fprintf ( OUT, "\t\t\t<Tool\r\n" );
362 fprintf ( OUT, "\t\t\t\tName=\"VCLinkerTool\"\r\n" );
363
364 fprintf ( OUT, "\t\t\t\tAdditionalDependencies=\"" );
365 for ( i = 0; i < libraries.size(); i++ )
366 {
367 if ( i > 0 )
368 fprintf ( OUT, " " );
369 #if 0
370 // this code is deactivated untill
371 // msvc can build the whole tree
372 string libpath = libraries[i].c_str();
373 libpath.replace (libpath.find("---"), //See HACK
374 3,
375 cfg);
376 fprintf ( OUT, "%s", libpath.c_str() );
377 #else
378 fprintf ( OUT, "%s", libraries[i].c_str() );
379 #endif
380 }
381 fprintf ( OUT, "\"\r\n" );
382
383 fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"\r\n", module.name.c_str(), module_type.c_str() );
384 fprintf ( OUT, "\t\t\t\tLinkIncremental=\"%d\"\r\n", debug ? 2 : 1 );
385 fprintf ( OUT, "\t\t\t\tGenerateDebugInformation=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
386
387 if ( debug )
388 fprintf ( OUT, "\t\t\t\tProgramDatabaseFile=\"$(OutDir)/%s.pdb\"\r\n", module.name.c_str() );
389
390 if ( sys )
391 {
392 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20 /SECTION:INIT,D /IGNORE:4001,4037,4039,4065,4070,4078,4087,4089,4096\"\r\n" );
393 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
394 fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
395 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
396 fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
397 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.entrypoint == "" ? "DriverEntry" : module.entrypoint.c_str ());
398 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x10000" : baseaddr.c_str ());
399 }
400 else if ( exe )
401 {
402 if ( module.type == Kernel )
403 {
404 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /SECTION:INIT,D /ALIGN:0x80\"\r\n" );
405 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
406 fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
407 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
408 fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
409 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"KiSystemStartup\"\r\n" );
410 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());
411 }
412 else if ( module.type == NativeCUI )
413 {
414 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20\"\r\n" );
415 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 1 );
416 fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
417 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
418 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"NtProcessStartup\"\r\n" );
419 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());
420 }
421 else if ( module.type == Win32CUI || module.type == Win32GUI )
422 {
423 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", console ? 1 : 2 );
424 }
425 }
426 else if ( dll )
427 {
428 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.entrypoint == "" ? "DllMain" : module.entrypoint.c_str ());
429 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x40000" : baseaddr.c_str ());
430 }
431 fprintf ( OUT, "\t\t\t\tTargetMachine=\"%d\"/>\r\n", 1 );
432 }
433
434 fprintf ( OUT, "\t\t\t<Tool\r\n" );
435 fprintf ( OUT, "\t\t\t\tName=\"VCResourceCompilerTool\"\r\n" );
436 fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
437 multiple_includes = false;
438 fprintf ( OUT, "./;" );
439 for ( i = 0; i < includes.size(); i++ )
440 {
441 const string& include = includes[i];
442 if ( strcmp ( include.c_str(), "." ) )
443 {
444 if ( multiple_includes )
445 fprintf ( OUT, ";" );
446 fprintf ( OUT, "%s", include.c_str() );
447 multiple_includes = true;
448 }
449 }
450 fprintf ( OUT, "\"/>\r\n " );
451
452 fprintf ( OUT, "\t\t\t<Tool\r\n" );
453 fprintf ( OUT, "\t\t\t\tName=\"VCMIDLTool\"/>\r\n" );
454 fprintf ( OUT, "\t\t\t<Tool\r\n" );
455 fprintf ( OUT, "\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n" );
456 fprintf ( OUT, "\t\t\t<Tool\r\n" );
457 fprintf ( OUT, "\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n" );
458 fprintf ( OUT, "\t\t\t<Tool\r\n" );
459 fprintf ( OUT, "\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n" );
460 fprintf ( OUT, "\t\t\t<Tool\r\n" );
461 fprintf ( OUT, "\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n" );
462 fprintf ( OUT, "\t\t\t<Tool\r\n" );
463 fprintf ( OUT, "\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n" );
464 fprintf ( OUT, "\t\t</Configuration>\r\n" );
465
466 n++;
467 }
468 fprintf ( OUT, "\t</Configurations>\r\n" );
469
470 fprintf ( OUT, "\t<Files>\r\n" );
471
472 // Source files
473 fprintf ( OUT, "\t\t<Filter\r\n" );
474 fprintf ( OUT, "\t\t\tName=\"Source Files\"\r\n" );
475 fprintf ( OUT, "\t\t\tFilter=\"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;S\">\r\n" );
476 for ( size_t isrcfile = 0; isrcfile < source_files.size(); isrcfile++ )
477 {
478 string source_file = DosSeparator(source_files[isrcfile]);
479 fprintf ( OUT, "\t\t\t<File\r\n" );
480 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", source_file.c_str() );
481
482 for ( size_t iconfig = 0; iconfig < cfgs.size(); iconfig++ )
483 {
484 std::string& config = cfgs[iconfig];
485
486 if (( isrcfile == 0 ) && ( module.pch != NULL ))
487 {
488 /* little hack to speed up PCH */
489 fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
490 fprintf ( OUT, "\t\t\t\t\tName=\"" );
491 fprintf ( OUT, config.c_str() );
492 fprintf ( OUT, "|Win32\">\r\n" );
493 fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
494 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
495 fprintf ( OUT, "\t\t\t\t\t\tUsePrecompiledHeader=\"1\"/>\r\n" );
496 fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
497 }
498
499 //if (configuration.VSProjectVersion < "8.00") {
500 if ((source_file.find(".idl") != string::npos) || ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's')))
501 {
502 fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
503 fprintf ( OUT, "\t\t\t\t\tName=\"" );
504 fprintf ( OUT, config.c_str() );
505 fprintf ( OUT, "|Win32\">\r\n" );
506 fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
507 if (source_file.find(".idl") != string::npos)
508 {
509 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
510 fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\(InputName).obj\"/>\r\n" );
511 }
512 else if ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's'))
513 {
514 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
515 fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"cl /E &quot;$(InputPath)&quot; %s /D__ASM__ | as -o &quot;$(OutDir)\\(InputName).obj&quot;\"\r\n",include_string.c_str() );
516 fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\(InputName).obj\"/>\r\n" );
517 }
518 fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
519 }
520 //}
521 }
522 fprintf ( OUT, "\t\t\t</File>\r\n" );
523 }
524 fprintf ( OUT, "\t\t</Filter>\r\n" );
525
526 // Header files
527 fprintf ( OUT, "\t\t<Filter\r\n" );
528 fprintf ( OUT, "\t\t\tName=\"Header Files\"\r\n" );
529 fprintf ( OUT, "\t\t\tFilter=\"h;hpp;hxx;hm;inl\">\r\n" );
530 for ( i = 0; i < header_files.size(); i++ )
531 {
532 const string& header_file = header_files[i];
533 fprintf ( OUT, "\t\t\t<File\r\n" );
534 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", header_file.c_str() );
535 fprintf ( OUT, "\t\t\t</File>\r\n" );
536 }
537 fprintf ( OUT, "\t\t</Filter>\r\n" );
538
539 // Resource files
540 fprintf ( OUT, "\t\t<Filter\r\n" );
541 fprintf ( OUT, "\t\t\tName=\"Resource Files\"\r\n" );
542 fprintf ( OUT, "\t\t\tFilter=\"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\">\r\n" );
543 for ( i = 0; i < resource_files.size(); i++ )
544 {
545 const string& resource_file = resource_files[i];
546 fprintf ( OUT, "\t\t\t<File\r\n" );
547 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", resource_file.c_str() );
548 fprintf ( OUT, "\t\t\t</File>\r\n" );
549 }
550 fprintf ( OUT, "\t\t</Filter>\r\n" );
551
552 fprintf ( OUT, "\t</Files>\r\n" );
553 fprintf ( OUT, "\t<Globals>\r\n" );
554 fprintf ( OUT, "\t</Globals>\r\n" );
555 fprintf ( OUT, "</VisualStudioProject>\r\n" );
556 fclose(OUT);
557 }
558
559 std::string
560 MSVCBackend::_replace_str(std::string string1, const std::string &find_str, const std::string &replace_str)
561 {
562 std::string::size_type pos = string1.find(find_str, 0);
563 int intLen = find_str.length();
564
565 while(std::string::npos != pos)
566 {
567 string1.replace(pos, intLen, replace_str);
568 pos = string1.find(find_str, intLen + pos);
569 }
570
571 return string1;
572 }
573
574 std::string
575 MSVCBackend::_get_solution_verion ( void ) {
576 string version;
577
578 if (configuration.VSProjectVersion.empty())
579 configuration.VSProjectVersion = MS_VS_DEF_VERSION;
580
581 if (configuration.VSProjectVersion == "7.00")
582 version = "7.00";
583
584 if (configuration.VSProjectVersion == "7.10")
585 version = "8.00";
586
587 if (configuration.VSProjectVersion == "8.00")
588 version = "9.00";
589
590 return version;
591 }
592
593
594 //void
595 //MSVCBackend::_generate_rules_file ( FILE* OUT )
596 //{
597 // fprintf ( OUT, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" );
598 // fprintf ( OUT, "<VisualStudioToolFile\r\n" );
599 // fprintf ( OUT, "\tName=\"GCC Assembler\"\r\n" );
600 // fprintf ( OUT, "\tVersion=\"%s\"\r\n", _get_solution_verion().c_str() );
601 // fprintf ( OUT, "\t>\r\n" );
602 // fprintf ( OUT, "\t<Rules>\r\n" );
603 // fprintf ( OUT, "\t\t<CustomBuildRule\r\n" );
604 // fprintf ( OUT, "\t\t\tName=\"Assembler\"\r\n" );
605 // fprintf ( OUT, "\t\t\tDisplayName=\"Assembler Files\"\r\n" );
606 // fprintf ( OUT, "\t\t\tCommandLine=\"cl /E &quot;$(InputPath)&quot; | as -o &quot;$(OutDir)\\$(InputName).obj&quot;\"\r\n" );
607 // fprintf ( OUT, "\t\t\tOutputs=\"$(OutDir)\\$(InputName).obj\"\r\n" );
608 // fprintf ( OUT, "\t\t\tFileExtensions=\"*.S\"\r\n" );
609 // fprintf ( OUT, "\t\t\tExecutionDescription=\"asm\"\r\n" );
610 // fprintf ( OUT, "\t\t\t>\r\n" );
611 // fprintf ( OUT, "\t\t\t<Properties>\r\n" );
612 // fprintf ( OUT, "\t\t\t</Properties>\r\n" );
613 // fprintf ( OUT, "\t\t</CustomBuildRule>\r\n" );
614 // fprintf ( OUT, "\t</Rules>\r\n" );
615 // fprintf ( OUT, "</VisualStudioToolFile>\r\n" );
616 //}
617
618 void
619 MSVCBackend::_generate_sln_header ( FILE* OUT )
620 {
621 fprintf ( OUT, "Microsoft Visual Studio Solution File, Format Version %s\r\n", _get_solution_verion().c_str() );
622 fprintf ( OUT, "# Visual Studio 2005\r\n" );
623 fprintf ( OUT, "\r\n" );
624 }
625
626
627 void
628 MSVCBackend::_generate_sln_project (
629 FILE* OUT,
630 const Module& module,
631 std::string vcproj_file,
632 std::string sln_guid,
633 std::string vcproj_guid,
634 const std::vector<Dependency*>& dependencies )
635 {
636 vcproj_file = DosSeparator ( std::string(".\\") + vcproj_file );
637
638 fprintf ( OUT, "Project(\"%s\") = \"%s\", \"%s\", \"%s\"\r\n", sln_guid.c_str() , module.name.c_str(), vcproj_file.c_str(), vcproj_guid.c_str() );
639
640 //FIXME: only omit ProjectDependencies in VS 2005 when there are no dependencies
641 //NOTE: VS 2002 do not use ProjectSection; it uses GlobalSection instead
642 if ((configuration.VSProjectVersion == "7.10") || (dependencies.size() > 0)) {
643 fprintf ( OUT, "\tProjectSection(ProjectDependencies) = postProject\r\n" );
644 for ( size_t i = 0; i < dependencies.size(); i++ )
645 {
646 Dependency& dependency = *dependencies[i];
647 fprintf ( OUT, "\t\t%s = %s\r\n", dependency.module.guid.c_str(), dependency.module.guid.c_str() );
648 }
649 fprintf ( OUT, "\tEndProjectSection\r\n" );
650 }
651
652 fprintf ( OUT, "EndProject\r\n" );
653 }
654
655
656 void
657 MSVCBackend::_generate_sln_footer ( FILE* OUT )
658 {
659 fprintf ( OUT, "Global\r\n" );
660 fprintf ( OUT, "\tGlobalSection(SolutionConfiguration) = preSolution\r\n" );
661 fprintf ( OUT, "\t\tDebug = Debug\r\n" );
662 fprintf ( OUT, "\t\tRelease = Release\r\n" );
663 fprintf ( OUT, "\tEndGlobalSection\r\n" );
664 fprintf ( OUT, "\tGlobalSection(ProjectConfiguration) = postSolution\r\n" );
665 for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
666 {
667 Module& module = *ProjectNode.modules[i];
668 std::string guid = module.guid;
669 _generate_sln_configurations ( OUT, guid.c_str() );
670 }
671 fprintf ( OUT, "\tEndGlobalSection\r\n" );
672 fprintf ( OUT, "\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n" );
673 fprintf ( OUT, "\tEndGlobalSection\r\n" );
674 fprintf ( OUT, "\tGlobalSection(ExtensibilityAddIns) = postSolution\r\n" );
675 fprintf ( OUT, "\tEndGlobalSection\r\n" );
676
677 if (configuration.VSProjectVersion == "7.00") {
678 fprintf ( OUT, "\tGlobalSection(ProjectDependencies) = postSolution\r\n" );
679 //FIXME: Add dependencies for VS 2002
680 fprintf ( OUT, "\tEndGlobalSection\r\n" );
681 }
682
683 if (configuration.VSProjectVersion == "8.00") {
684 fprintf ( OUT, "\tGlobalSection(SolutionProperties) = preSolution\r\n" );
685 fprintf ( OUT, "\t\tHideSolutionNode = FALSE\r\n" );
686 fprintf ( OUT, "\tEndGlobalSection\r\n" );
687 }
688
689 fprintf ( OUT, "EndGlobal\r\n" );
690 fprintf ( OUT, "\r\n" );
691 }
692
693
694 void
695 MSVCBackend::_generate_sln_configurations ( FILE* OUT, std::string vcproj_guid )
696 {
697 fprintf ( OUT, "\t\t%s.Debug.ActiveCfg = Debug|Win32\r\n", vcproj_guid.c_str() );
698 fprintf ( OUT, "\t\t%s.Debug.Build.0 = Debug|Win32\r\n", vcproj_guid.c_str() );
699 fprintf ( OUT, "\t\t%s.Debug.Release.ActiveCfg = Release|Win32\r\n", vcproj_guid.c_str() );
700 fprintf ( OUT, "\t\t%s.Debug.Release.Build.0 = Release|Win32\r\n", vcproj_guid.c_str() );
701 }
702
703 void
704 MSVCBackend::_generate_sln ( FILE* OUT )
705 {
706 string sln_guid = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}";
707 vector<string> guids;
708
709 _generate_sln_header(OUT);
710 // TODO FIXME - is it necessary to sort them?
711 for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
712 {
713 Module& module = *ProjectNode.modules[i];
714
715 std::string vcproj_file = VcprojFileName ( module );
716 _generate_sln_project ( OUT, module, vcproj_file, sln_guid, module.guid, module.dependencies );
717 }
718 _generate_sln_footer ( OUT );
719 }
720