1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
|
/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the qmake application of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef MSBUILD_OBJECTMODEL_H
#define MSBUILD_OBJECTMODEL_H
#include "project.h"
#include "xmloutput.h"
#include "msvc_objectmodel.h"
#include <qatomic.h>
#include <qlist.h>
#include <qstring.h>
#include <qstringlist.h>
#include <qmap.h>
#include <qdebug.h>
QT_BEGIN_NAMESPACE
class VCXConfiguration;
class VCXProject;
class VCXCLCompilerTool : public VCToolBase
{
public:
// Functions
VCXCLCompilerTool();
virtual ~VCXCLCompilerTool(){}
bool parseOption(const char* option);
// Variables
QStringList AdditionalIncludeDirectories;
QStringList AdditionalOptions;
QStringList AdditionalUsingDirectories;
QString AlwaysAppend;
QString AssemblerListingLocation;
QString AssemblerOutput;
QString BasicRuntimeChecks;
triState BrowseInformation;
QString BrowseInformationFile;
triState BufferSecurityCheck;
QString CallingConvention;
QString CompileAs;
QString CompileAsManaged;
triState CreateHotpatchableImage;
QString DebugInformationFormat;
triState DisableLanguageExtensions;
QStringList DisableSpecificWarnings;
QString EnableEnhancedInstructionSet;
triState EnableFiberSafeOptimizations;
triState EnablePREfast;
QString ErrorReporting;
QString ExceptionHandling;
triState ExpandAttributedSource;
QString FavorSizeOrSpeed;
triState FloatingPointExceptions;
QString FloatingPointModel;
triState ForceConformanceInForLoopScope;
QStringList ForcedIncludeFiles;
QStringList ForcedUsingFiles;
triState FunctionLevelLinking;
triState GenerateXMLDocumentationFiles;
triState IgnoreStandardIncludePath;
QString InlineFunctionExpansion;
triState IntrinsicFunctions;
triState MinimalRebuild;
triState MultiProcessorCompilation;
QString ObjectFileName;
QStringList ObjectFiles;
triState OmitDefaultLibName;
triState OmitFramePointers;
triState OpenMPSupport;
QString Optimization;
QString PrecompiledHeader;
QString PrecompiledHeaderFile;
QString PrecompiledHeaderOutputFile;
triState PreprocessKeepComments;
QStringList PreprocessorDefinitions;
QString PreprocessOutputPath;
triState PreprocessSuppressLineNumbers;
triState PreprocessToFile;
QString ProgramDataBaseFileName;
QString ProcessorNumber;
QString RuntimeLibrary;
triState RuntimeTypeInfo;
triState ShowIncludes;
triState SmallerTypeCheck;
triState StringPooling;
QString StructMemberAlignment;
triState SuppressStartupBanner;
QString TreatSpecificWarningsAsErrors;
triState TreatWarningAsError;
triState TreatWChar_tAsBuiltInType;
triState UndefineAllPreprocessorDefinitions;
QStringList UndefinePreprocessorDefinitions;
triState UseFullPaths;
triState UseUnicodeForAssemblerListing;
QString WarningLevel;
triState WholeProgramOptimization;
QString XMLDocumentationFileName;
VCXConfiguration* config;
};
class VCXLinkerTool : public VCToolBase
{
public:
// Functions
VCXLinkerTool();
virtual ~VCXLinkerTool(){}
bool parseOption(const char* option);
// Variables
QStringList AdditionalDependencies;
QStringList AdditionalLibraryDirectories;
QStringList AdditionalManifestDependencies;
QStringList AdditionalOptions;
QStringList AddModuleNamesToAssembly;
triState AllowIsolation;
triState AssemblyDebug;
QStringList AssemblyLinkResource;
QString BaseAddress;
QString CLRImageType;
QString CLRSupportLastError;
QString CLRThreadAttribute;
QString CLRUnmanagedCodeCheck;
QString CreateHotPatchableImage;
triState DataExecutionPrevention;
QStringList DelayLoadDLLs;
triState DelaySign;
QString Driver;
QStringList EmbedManagedResourceFile;
triState EnableCOMDATFolding;
triState EnableUAC;
QString EntryPointSymbol;
triState FixedBaseAddress;
QString ForceFileOutput;
QStringList ForceSymbolReferences;
QString FunctionOrder;
triState GenerateDebugInformation;
triState GenerateManifest;
triState GenerateMapFile;
qlonglong HeapCommitSize;
qlonglong HeapReserveSize;
triState IgnoreAllDefaultLibraries;
triState IgnoreEmbeddedIDL;
triState IgnoreImportLibrary;
QStringList IgnoreSpecificDefaultLibraries;
triState ImageHasSafeExceptionHandlers;
QString ImportLibrary;
QString KeyContainer;
QString KeyFile;
triState LargeAddressAware;
triState LinkDLL;
QString LinkErrorReporting;
triState LinkIncremental;
triState LinkStatus;
QString LinkTimeCodeGeneration;
QString ManifestFile;
triState MapExports;
QString MapFileName;
QString MergedIDLBaseFileName;
QString MergeSections;
QString MidlCommandFile;
QString ModuleDefinitionFile;
QString MSDOSStubFileName;
triState NoEntryPoint;
triState OptimizeReferences;
QString OutputFile;
triState PreventDllBinding;
QString Profile;
QString ProfileGuidedDatabase;
QString ProgramDatabaseFile;
triState RandomizedBaseAddress;
triState RegisterOutput;
qlonglong SectionAlignment;
triState SetChecksum;
QString ShowProgress;
QString SpecifySectionAttributes;
QString StackCommitSize;
QString StackReserveSize;
QString StripPrivateSymbols;
QString SubSystem;
triState SupportNobindOfDelayLoadedDLL;
triState SupportUnloadOfDelayLoadedDLL;
triState SuppressStartupBanner;
triState SwapRunFromCD;
triState SwapRunFromNet;
QString TargetMachine;
triState TerminalServerAware;
triState TreatLinkerWarningAsErrors;
triState TurnOffAssemblyGeneration;
QString TypeLibraryFile;
qlonglong TypeLibraryResourceID;
QString UACExecutionLevel;
triState UACUIAccess;
QString Version;
VCXConfiguration* config;
};
class VCXMIDLTool : public VCToolBase
{
public:
// Functions
VCXMIDLTool();
virtual ~VCXMIDLTool(){}
bool parseOption(const char* option);
// Variables
QStringList AdditionalIncludeDirectories;
QStringList AdditionalOptions;
triState ApplicationConfigurationMode;
QString ClientStubFile;
QString CPreprocessOptions;
QString DefaultCharType;
QString DLLDataFileName;
QString EnableErrorChecks;
triState ErrorCheckAllocations;
triState ErrorCheckBounds;
triState ErrorCheckEnumRange;
triState ErrorCheckRefPointers;
triState ErrorCheckStubData;
QString GenerateClientFiles;
QString GenerateServerFiles;
triState GenerateStublessProxies;
triState GenerateTypeLibrary;
QString HeaderFileName;
triState IgnoreStandardIncludePath;
QString InterfaceIdentifierFileName;
qlonglong LocaleID;
triState MkTypLibCompatible;
QString OutputDirectory;
QStringList PreprocessorDefinitions;
QString ProxyFileName;
QString RedirectOutputAndErrors;
QString ServerStubFile;
QString StructMemberAlignment;
triState SuppressCompilerWarnings;
triState SuppressStartupBanner;
QString TargetEnvironment;
QString TypeLibFormat;
QString TypeLibraryName;
QStringList UndefinePreprocessorDefinitions;
triState ValidateAllParameters;
triState WarnAsError;
QString WarningLevel;
VCXConfiguration* config;
};
class VCXLibrarianTool : public VCToolBase
{
public:
// Functions
VCXLibrarianTool();
virtual ~VCXLibrarianTool(){}
bool parseOption(const char*){ return false; };
// Variables
QStringList AdditionalDependencies;
QStringList AdditionalLibraryDirectories;
QStringList AdditionalOptions;
QString DisplayLibrary;
QString ErrorReporting;
QStringList ExportNamedFunctions;
QStringList ForceSymbolReferences;
triState IgnoreAllDefaultLibraries;
QStringList IgnoreSpecificDefaultLibraries;
triState LinkTimeCodeGeneration;
QString ModuleDefinitionFile;
QString Name;
QString OutputFile;
QStringList RemoveObjects;
QString SubSystem;
triState SuppressStartupBanner;
QString TargetMachine;
triState TreatLibWarningAsErrors;
triState Verbose;
};
class VCXCustomBuildTool : public VCToolBase
{
public:
// Functions
VCXCustomBuildTool();
virtual ~VCXCustomBuildTool(){}
bool parseOption(const char*){ return false; };
// Variables
QStringList AdditionalDependencies;
QStringList CommandLine;
QString Description;
QStringList Outputs;
QString ToolName;
QString ToolPath;
QString ConfigName;
};
class VCXResourceCompilerTool : public VCToolBase
{
public:
// Functions
VCXResourceCompilerTool();
virtual ~VCXResourceCompilerTool(){}
bool parseOption(const char*){ return false; };
// Variables
QStringList AdditionalIncludeDirectories;
QString AdditionalOptions;
QString Culture;
triState IgnoreStandardIncludePath;
triState NullTerminateStrings;
QStringList PreprocessorDefinitions;
QString ResourceOutputFileName;
triState ShowProgress;
triState SuppressStartupBanner;
QString TrackerLogDirectory;
QString UndefinePreprocessorDefinitions;
};
class VCXDeploymentTool
{
public:
// Functions
VCXDeploymentTool();
virtual ~VCXDeploymentTool() {}
// Variables
QString DeploymentTag;
QString RemoteDirectory;
QString AdditionalFiles;
};
class VCXEventTool : public VCToolBase
{
protected:
// Functions
VCXEventTool() : UseInBuild(unset){};
virtual ~VCXEventTool(){}
bool parseOption(const char*){ return false; };
public:
// Variables
QString CommandLine;
QString Description;
triState UseInBuild;
QString EventName;
QString ToolPath;
};
class VCXPostBuildEventTool : public VCXEventTool
{
public:
VCXPostBuildEventTool();
~VCXPostBuildEventTool(){}
};
class VCXPreBuildEventTool : public VCXEventTool
{
public:
VCXPreBuildEventTool();
~VCXPreBuildEventTool(){}
};
class VCXPreLinkEventTool : public VCXEventTool
{
public:
VCXPreLinkEventTool();
~VCXPreLinkEventTool(){}
};
class VCXConfiguration
{
public:
// Functions
VCXConfiguration();
~VCXConfiguration(){}
// Variables
triState ATLMinimizesCRunTimeLibraryUsage;
triState BuildBrowserInformation;
QString CharacterSet;
QString ConfigurationType;
QString DeleteExtensionsOnClean;
QString ImportLibrary;
QString IntermediateDirectory;
QString Name;
QString ConfigurationName;
QString OutputDirectory;
QString PrimaryOutput;
QString ProgramDatabase;
triState RegisterOutput;
QString TargetName;
QString UseOfATL;
QString UseOfMfc;
triState WholeProgramOptimization;
// XML sub-parts
VCXCLCompilerTool compiler;
VCXLibrarianTool librarian;
VCXLinkerTool linker;
VCXMIDLTool idl;
VCXResourceCompilerTool resource;
VCXCustomBuildTool custom;
VCXDeploymentTool deployment; // Not likely to be supported: http://msdn.microsoft.com/en-us/library/sa69he4t.aspx
VCXPostBuildEventTool postBuild;
VCXPreBuildEventTool preBuild;
VCXPreLinkEventTool preLink;
};
struct VCXFilterFile
{
VCXFilterFile()
{ excludeFromBuild = false; }
VCXFilterFile(const QString &filename, bool exclude = false )
{ file = filename; excludeFromBuild = exclude; }
VCXFilterFile(const QString &filename, const QString &additional, bool exclude = false )
{ file = filename; excludeFromBuild = exclude; additionalFile = additional; }
bool operator==(const VCXFilterFile &other){
return file == other.file
&& additionalFile == other.additionalFile
&& excludeFromBuild == other.excludeFromBuild;
}
bool excludeFromBuild;
QString file;
QString additionalFile; // For tools like MOC
};
class VcxprojGenerator;
class VCXFilter
{
public:
// Functions
VCXFilter();
~VCXFilter(){};
void addFile(const QString& filename);
void addFile(const VCXFilterFile& fileInfo);
void addFiles(const QStringList& fileList);
bool addExtraCompiler(const VCXFilterFile &info);
void modifyPCHstage(QString str);
bool outputFileConfig(XmlOutput &xml, XmlOutput &xmlFilter, const QString &filename, const QString &filtername, bool fileAllreadyAdded);
// Variables
QString Name;
QString Filter;
QString Guid;
triState ParseFiles;
VcxprojGenerator* Project;
VCXConfiguration* Config;
QList<VCXFilterFile> Files;
customBuildCheck CustomBuild;
bool useCustomBuildTool;
VCXCustomBuildTool CustomBuildTool;
bool useCompilerTool;
VCXCLCompilerTool CompilerTool;
};
typedef QList<VCXFilter> VCXFilterList;
class VCXProjectSingleConfig
{
public:
enum FilterTypes {
None,
Source,
Header,
Generated,
LexYacc,
Translation,
Resources,
Extras
};
// Functions
VCXProjectSingleConfig(){};
~VCXProjectSingleConfig(){}
// Variables
QString Name;
QString Version;
QString ProjectGUID;
QString Keyword;
QString SccProjectName;
QString SccLocalPath;
QString PlatformName;
// XML sub-parts
VCXConfiguration Configuration;
VCXFilter RootFiles;
VCXFilter SourceFiles;
VCXFilter HeaderFiles;
VCXFilter GeneratedFiles;
VCXFilter LexYaccFiles;
VCXFilter TranslationFiles;
VCXFilter FormFiles;
VCXFilter ResourceFiles;
VCXFilterList ExtraCompilersFiles;
bool flat_files;
// Accessor for extracompilers
VCXFilter &filterForExtraCompiler(const QString &compilerName);
};
// Tree & Flat view of files --------------------------------------------------
class VCXFilter;
class XNode
{
public:
virtual ~XNode() { }
void addElement(const VCXFilterFile &file) {
addElement(file.file, file);
}
virtual void addElement(const QString &filepath, const VCXFilterFile &allInfo) = 0;
virtual void removeElements()= 0;
virtual void generateXML(XmlOutput &xml, XmlOutput &xmlFilter, const QString &tagName, VCXProject &tool, const QString &filter) = 0;
virtual bool hasElements() = 0;
};
class XTreeNode : public XNode
{
typedef QMap<QString, XTreeNode*> ChildrenMap;
VCXFilterFile info;
ChildrenMap children;
public:
virtual ~XTreeNode() { removeElements(); }
int pathIndex(const QString &filepath) {
int Windex = filepath.indexOf("\\");
int Uindex = filepath.indexOf("/");
if (Windex != -1 && Uindex != -1)
return qMin(Windex, Uindex);
else if (Windex != -1)
return Windex;
return Uindex;
}
void addElement(const QString &filepath, const VCXFilterFile &allInfo){
QString newNodeName(filepath);
int index = pathIndex(filepath);
if (index != -1)
newNodeName = filepath.left(index);
XTreeNode *n = children.value(newNodeName);
if (!n) {
n = new XTreeNode;
n->info = allInfo;
children.insert(newNodeName, n);
}
if (index != -1)
n->addElement(filepath.mid(index+1), allInfo);
}
void removeElements() {
ChildrenMap::ConstIterator it = children.constBegin();
ChildrenMap::ConstIterator end = children.constEnd();
for( ; it != end; it++) {
(*it)->removeElements();
delete it.value();
}
children.clear();
}
void generateXML(XmlOutput &xml, XmlOutput &xmlFilter, const QString &tagName, VCXProject &tool, const QString &filter);
bool hasElements() {
return children.size() != 0;
}
};
class XFlatNode : public XNode
{
typedef QMap<QString, VCXFilterFile> ChildrenMapFlat;
ChildrenMapFlat children;
public:
virtual ~XFlatNode() { removeElements(); }
int pathIndex(const QString &filepath) {
int Windex = filepath.lastIndexOf("\\");
int Uindex = filepath.lastIndexOf("/");
if (Windex != -1 && Uindex != -1)
return qMax(Windex, Uindex);
else if (Windex != -1)
return Windex;
return Uindex;
}
void addElement(const QString &filepath, const VCXFilterFile &allInfo){
QString newKey(filepath);
int index = pathIndex(filepath);
if (index != -1)
newKey = filepath.mid(index+1);
// Key designed to sort files with same
// name in different paths correctly
children.insert(newKey + "\0" + allInfo.file, allInfo);
}
void removeElements() {
children.clear();
}
void generateXML(XmlOutput &xml, XmlOutput &xmlFilter, const QString &tagName, VCXProject &proj, const QString &filter);
bool hasElements() {
return children.size() != 0;
}
};
// ----------------------------------------------------------------------------
class VCXProject
{
public:
// Variables
QString Name;
QString Version;
QString ProjectGUID;
QString Keyword;
QString SccProjectName;
QString SccLocalPath;
QString PlatformName;
// Single projects
QList<VCXProjectSingleConfig> SingleProjects;
// List of all extracompilers
QStringList ExtraCompilers;
// Functions
void outputFilter(XmlOutput &xml,
XmlOutput &xmlFilter,
const QString &filtername);
void outputFileConfigs(XmlOutput &xml,
XmlOutput &xmlFilter,
const VCXFilterFile &info,
const QString &filtername);
void addFilters(XmlOutput &xmlFilter,
const QString &filtername);
};
XmlOutput &operator<<(XmlOutput &, const VCXCLCompilerTool &);
XmlOutput &operator<<(XmlOutput &, const VCXLinkerTool &);
XmlOutput &operator<<(XmlOutput &, const VCXMIDLTool &);
XmlOutput &operator<<(XmlOutput &, const VCXCustomBuildTool &);
XmlOutput &operator<<(XmlOutput &, const VCXLibrarianTool &);
XmlOutput &operator<<(XmlOutput &, const VCXResourceCompilerTool &);
XmlOutput &operator<<(XmlOutput &, const VCXEventTool &);
XmlOutput &operator<<(XmlOutput &, const VCXDeploymentTool &);
XmlOutput &operator<<(XmlOutput &, const VCXConfiguration &);
XmlOutput &operator<<(XmlOutput &, const VCXProjectSingleConfig &);
XmlOutput &operator<<(XmlOutput &, VCXProject &);
QT_END_NAMESPACE
#endif // MSVC_OBJECTMODEL_H
|