forked from eriksvedang/cakelisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.cpp
897 lines (803 loc) · 30.3 KB
/
Build.cpp
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
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
#include "Build.hpp"
#include <string.h>
#include <cstring>
#include <vector>
#include "FileUtilities.hpp"
#include "GeneratorHelpers.hpp"
#include "Logging.hpp"
#include "ModuleManager.hpp"
#include "Tokenizer.hpp"
#include "Utilities.hpp"
#ifdef WINDOWS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "FindVisualStudio.hpp"
// TODO: These should change based on compiler, i.e. you should be able to build things via mingw on
// Windows, using the Unix extensions
const char* compilerObjectExtension = "obj";
const char* compilerDebugSymbolsExtension = "pdb";
const char* compilerImportLibraryExtension = "lib";
const char* linkerDynamicLibraryPrefix = ""; // Not applicable
const char* linkerDynamicLibraryExtension = "dll";
const char* defaultExecutableName = "output.exe";
const char* precompiledHeaderExtension = "pch";
#else
const char* compilerObjectExtension = "o";
const char* compilerDebugSymbolsExtension = ""; // Not applicable
const char* compilerImportLibraryExtension = ""; // Not applicable
const char* linkerDynamicLibraryPrefix = "lib";
#ifdef MACOS
const char* linkerDynamicLibraryExtension = "dylib";
#else
const char* linkerDynamicLibraryExtension = "so";
#endif
const char* defaultExecutableName = "a.out";
const char* precompiledHeaderExtension = "gch";
#endif
void makeIncludeArgument(char* buffer, int bufferSize, const char* searchDir)
{
// TODO: Make this a setting rather than a define
#ifdef WINDOWS
SafeSnprintf(buffer, bufferSize, "/I \"%s\"", searchDir);
#else
SafeSnprintf(buffer, bufferSize, "-I%s", searchDir);
#endif
}
void makeObjectOutputArgument(char* buffer, int bufferSize, const char* objectName)
{
// TODO: Make this a setting rather than a define
#ifdef WINDOWS
SafeSnprintf(buffer, bufferSize, "/Fo\"%s\"", objectName);
#else
SafeSnprintf(buffer, bufferSize, "%s", objectName);
#endif
}
void makeImportLibraryPathArgument(char* buffer, int bufferSize, const char* path,
const char* buildExecutable)
{
if (StrCompareIgnoreCase(buildExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/LIBPATH:%s", path);
}
// else if (StrCompareIgnoreCase(buildExecutable, "link.exe") == 0)
// {
// SafeSnprintf(buffer, bufferSize, "/OUT:\"%s\"", path);
// }
else
{
SafeSnprintf(buffer, bufferSize, "%s", path);
}
}
void makeDebugSymbolsOutputArgument(char* buffer, int bufferSize, const char* debugSymbolsName)
{
// TODO: Make this a setting rather than a define
#ifdef WINDOWS
SafeSnprintf(buffer, bufferSize, "/Fd\"%s\"", debugSymbolsName);
// #else // No repositioning of debug symbols necessary
// SafeSnprintf(buffer, bufferSize, "%s", debugSymbolsName);
#endif
}
void makeDynamicLibraryOutputArgument(char* buffer, int bufferSize, const char* libraryName,
const char* buildExecutable)
{
if (StrCompareIgnoreCase(buildExecutable, "cl.exe") == 0)
{
Log("error: attempting to build dynamic library using cl.exe. You must use link.exe "
"instead\n");
SafeSnprintf(buffer, bufferSize, "%s", libraryName);
}
else if (StrCompareIgnoreCase(buildExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/OUT:\"%s\"", libraryName);
}
else
{
SafeSnprintf(buffer, bufferSize, "%s", libraryName);
}
}
void makeExecutableOutputArgument(char* buffer, int bufferSize, const char* executableName,
const char* linkExecutable)
{
// Annoying exception for MSVC not having spaces between some arguments
if (StrCompareIgnoreCase(linkExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/Fe\"%s\"", executableName);
}
else if (StrCompareIgnoreCase(linkExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/out:\"%s\"", executableName);
}
else
{
SafeSnprintf(buffer, bufferSize, "%s", executableName);
}
}
void makeLinkLibraryArgument(char* buffer, int bufferSize, const char* libraryName,
const char* linkExecutable)
{
if (StrCompareIgnoreCase(linkExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "%s.dll", libraryName);
}
else if (StrCompareIgnoreCase(linkExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "%s.dll", libraryName);
}
else
{
SafeSnprintf(buffer, bufferSize, "-l%s", libraryName);
}
}
void makeLinkLibrarySearchDirArgument(char* buffer, int bufferSize, const char* searchDir,
const char* linkExecutable)
{
if (StrCompareIgnoreCase(linkExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/LIBPATH:%s", searchDir);
}
else if (StrCompareIgnoreCase(linkExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/LIBPATH:%s", searchDir);
}
else
{
SafeSnprintf(buffer, bufferSize, "-L%s", searchDir);
}
}
void makeLinkLibraryRuntimeSearchDirArgument(char* buffer, int bufferSize, const char* searchDir,
const char* linkExecutable)
{
if (StrCompareIgnoreCase(linkExecutable, "cl.exe") == 0)
{
// TODO: Decide how to handle DLLs on Windows. Copy to same dir? Convert to full paths?
// SafeSnprintf(buffer, bufferSize, "/LIBPATH:%s", searchDir);
Log("warning: link library runtime search directories not supported on Windows\n");
}
else if (StrCompareIgnoreCase(linkExecutable, "link.exe") == 0)
{
// SafeSnprintf(buffer, bufferSize, "/LIBPATH:%s", searchDir);
Log("warning: link library runtime search directories not supported on Windows\n");
}
else
{
SafeSnprintf(buffer, bufferSize, "-Wl,-rpath,%s", searchDir);
}
}
void makeLinkerArgument(char* buffer, int bufferSize, const char* argument,
const char* linkExecutable)
{
if (StrCompareIgnoreCase(linkExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "%s", argument);
}
else if (StrCompareIgnoreCase(linkExecutable, "link.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "%s", argument);
}
else
{
SafeSnprintf(buffer, bufferSize, "-Wl,%s", argument);
}
}
void makePrecompiledHeaderOutputArgument(char* buffer, int bufferSize, const char* outputName,
const char* precompilerExecutable)
{
if (StrCompareIgnoreCase(precompilerExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/Yc%s", outputName);
}
else
{
SafeSnprintf(buffer, bufferSize, "%s", outputName);
}
}
void makePrecompiledHeaderIncludeArgument(char* buffer, int bufferSize,
const char* precompiledHeaderName,
const char* buildExecutable)
{
if (StrCompareIgnoreCase(buildExecutable, "cl.exe") == 0)
{
SafeSnprintf(buffer, bufferSize, "/Yu%s", precompiledHeaderName);
}
else
{
SafeSnprintf(buffer, bufferSize, "%s", precompiledHeaderName);
}
}
void convertBuildArguments(BuildArgumentConverter* argumentsToConvert, int numArgumentsToConvert,
const char* buildExecutable)
{
for (int typeIndex = 0; typeIndex < numArgumentsToConvert; ++typeIndex)
{
int numStrings = (int)argumentsToConvert[typeIndex].stringsIn->size();
argumentsToConvert[typeIndex].argumentsOutMemory.resize(numStrings);
argumentsToConvert[typeIndex].argumentsOut->resize(numStrings);
int currentString = 0;
for (const std::string& stringIn : *argumentsToConvert[typeIndex].stringsIn)
{
if (argumentsToConvert[typeIndex].argumentConversionFunc)
{
// Give some extra padding for prefixes
char argumentOut[MAX_PATH_LENGTH + 15] = {0};
argumentsToConvert[typeIndex].argumentConversionFunc(
argumentOut, sizeof(argumentOut), stringIn.c_str(), buildExecutable);
argumentsToConvert[typeIndex].argumentsOutMemory[currentString] = argumentOut;
}
else
argumentsToConvert[typeIndex].argumentsOutMemory[currentString] = stringIn;
++currentString;
}
for (int stringIndex = 0; stringIndex < numStrings; ++stringIndex)
(*argumentsToConvert[typeIndex].argumentsOut)[stringIndex] =
argumentsToConvert[typeIndex].argumentsOutMemory[stringIndex].c_str();
}
}
bool resolveExecutablePath(const char* fileToExecute, char* resolvedPathOut,
int resolvedPathOutSize)
{
#ifdef WINDOWS
// We need to do some extra legwork to find which compiler they actually want to use, based on
// the current environment variables set by vcvars*.bat
// See https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line?view=msvc-160
if (_stricmp(fileToExecute, "cl.exe") == 0 || _stricmp(fileToExecute, "link.exe") == 0 ||
_stricmp(fileToExecute, "rc.exe") == 0 || _stricmp(fileToExecute, "lib.exe") == 0 ||
_stricmp(fileToExecute, "nmake.exe") == 0)
{
if (true) // Use FindVS to get proper paths
{
static char visualStudioExePath[2048] = {0};
static char windowsSDKExePath[2048] = {0};
if (!visualStudioExePath[0])
{
Find_Result result = find_visual_studio_and_windows_sdk();
SafeSnprintf(visualStudioExePath, sizeof(visualStudioExePath), "%ws",
result.vs_exe_path);
// TODO Maybe don't assume it's a x64
SafeSnprintf(windowsSDKExePath, sizeof(windowsSDKExePath), "%ws\\x64",
result.windows_sdk_bin_path);
free_resources(&result);
}
if (_stricmp(fileToExecute, "rc.exe") == 0)
{
SafeSnprintf(resolvedPathOut, resolvedPathOutSize, "%s\\%s", windowsSDKExePath,
fileToExecute);
}
else
{
SafeSnprintf(resolvedPathOut, resolvedPathOutSize, "%s\\%s", visualStudioExePath,
fileToExecute);
}
if (logging.processes)
Logf("\nOverriding command to:\n%s\n\n", resolvedPathOut);
return true;
}
else // Use environment variables set by e.g. vcvars scripts
{
LPTSTR vcInstallDir = nullptr;
LPTSTR vcHostArchitecture = nullptr;
LPTSTR vcTargetArchitecture = nullptr;
const int bufferSize = 4096;
struct
{
const char* variableName;
LPTSTR* outputString;
} msvcVariables[] = {{"VCToolsInstallDir", &vcInstallDir},
{"VSCMD_ARG_HOST_ARCH", &vcHostArchitecture},
{"VSCMD_ARG_TGT_ARCH", &vcTargetArchitecture}};
bool variablesFound = true;
for (int i = 0; i < ArraySize(msvcVariables); ++i)
{
*msvcVariables[i].outputString = (LPTSTR)malloc(bufferSize * sizeof(TCHAR));
if (!GetEnvironmentVariable(msvcVariables[i].variableName,
*msvcVariables[i].outputString, bufferSize))
{
Logf(
"error: could not find environment variable '%s'.\n Please read the "
"following "
"URL:\nhttps://docs.microsoft.com/en-us/cpp/build/"
"building-on-the-command-line?view=msvc-160\nYou must run Cakelisp in a "
"command prompt which has already run vcvars* scripts.\nSee "
"cakelisp/Build.bat for an example.\nYou can define variables when running "
"Cakelisp from Visual Studio via Project -> Properties -> Configuration "
"Properties -> Debugging -> Environment\n",
msvcVariables[i].variableName);
Log("The following vars need to be defined in the environment to be read from "
"Cakelisp directly:\n");
for (int n = 0; n < ArraySize(msvcVariables); ++n)
Logf("\t%s\n", msvcVariables[n].variableName);
Log("Note that MSVC relies on more variables which vcvars*.bat define, so you "
"need "
"to define those as well (if you do not use vcvars script).\n");
variablesFound = false;
break;
}
}
if (variablesFound)
{
SafeSnprintf(resolvedPathOut, resolvedPathOutSize, "%sbin\\Host%s\\%s\\%s",
vcInstallDir, vcHostArchitecture, vcTargetArchitecture, fileToExecute);
if (logging.processes)
Logf("\nOverriding command to:\n%s\n\n", resolvedPathOut);
}
for (int n = 0; n < ArraySize(msvcVariables); ++n)
if (*msvcVariables[n].outputString)
free(*msvcVariables[n].outputString);
return variablesFound;
}
}
else if (_stricmp(fileToExecute, "MSBuild.exe") == 0)
{
static char visualStudioPath[2048] = {0};
if (!visualStudioPath[0])
{
Find_Result result = find_visual_studio_and_windows_sdk();
SafeSnprintf(visualStudioPath, sizeof(visualStudioPath), "%ws",
result.vs_root_path);
free_resources(&result);
}
const char* versionsToTry[] = {"Current", "15.0", "14.0"};
for (int i = 0; i < ArraySize(versionsToTry); ++i)
{
SafeSnprintf(resolvedPathOut, resolvedPathOutSize, "%s\\MSBuild\\%s\\Bin\\amd64\\%s",
visualStudioPath, versionsToTry[i], fileToExecute);
if (fileExists(resolvedPathOut))
{
if (logging.processes)
Logf("\nOverriding command to:\n%s\n\n", resolvedPathOut);
return true;
}
}
return false;
}
#endif
// Unix searches PATH automatically, thanks to the 'p' of execvp()
SafeSnprintf(resolvedPathOut, resolvedPathOutSize, "%s", fileToExecute);
return true;
}
// /p:WindowsTargetPlatformVersion=%d.%d.%d.%d for MSBuild
void makeTargetPlatformVersionArgument(char* resolvedArgumentOut, int resolvedArgumentOutSize)
{
#ifdef WINDOWS
static int targetPlatformVersion[4] = {0};
if (!targetPlatformVersion[0])
{
Find_Result result = find_visual_studio_and_windows_sdk();
memcpy(targetPlatformVersion, result.windows_target_platform_version,
sizeof(targetPlatformVersion));
free_resources(&result);
}
SafeSnprintf(resolvedArgumentOut, resolvedArgumentOutSize,
"/p:WindowsTargetPlatformVersion=%d.%d.%d.%d", targetPlatformVersion[0],
targetPlatformVersion[1], targetPlatformVersion[2], targetPlatformVersion[3]);
#endif
}
static void buildWriteCacheFile(const char* buildOutputDir, ArtifactCrcTable& cachedCommandCrcs,
ArtifactCrcTable& newCommandCrcs,
HashedSourceArtifactCrcTable& sourceArtifactFileCrcs,
ArtifactCrcTable& headerCrcCache)
{
char outputFilename[MAX_PATH_LENGTH] = {0};
if (!outputFilenameFromSourceFilename(buildOutputDir, "Cache", "cake", outputFilename,
sizeof(outputFilename)))
{
Log("error: failed to create cache file name\n");
return;
}
// Combine all CRCs into a single map
ArtifactCrcTable outputCrcs;
for (ArtifactCrcTablePair& crcPair : cachedCommandCrcs)
outputCrcs.insert(crcPair);
// New commands override previously cached
for (ArtifactCrcTablePair& crcPair : newCommandCrcs)
outputCrcs[crcPair.first] = crcPair.second;
std::vector<Token> outputTokens;
const Token openParen = {TokenType_OpenParen, EmptyString, "Build.cpp", 1, 0, 0};
const Token closeParen = {TokenType_CloseParen, EmptyString, "Build.cpp", 1, 0, 0};
const Token commandCrcInvoke = {TokenType_Symbol, "command-crc", "Build.cpp", 1, 0, 0};
const Token headerCrcInvoke = {TokenType_Symbol, "command-crc", "Build.cpp", 1, 0, 0};
const Token sourceArtifactInvoke = {TokenType_Symbol, "source-artifact-crc", "Build.cpp", 1, 0, 0};
struct
{
const Token crcInvoke;
ArtifactCrcTable* sourceTable;
} artifactCrcTablesToWrite[] = {
{{TokenType_Symbol, "command-crc", "Build.cpp", 1, 0, 0}, &outputCrcs},
{{TokenType_Symbol, "header-crc", "Build.cpp", 1, 0, 0}, &headerCrcCache}};
for (unsigned int i = 0; i < ArraySize(artifactCrcTablesToWrite); ++i)
{
for (ArtifactCrcTablePair& crcPair : *artifactCrcTablesToWrite[i].sourceTable)
{
outputTokens.push_back(openParen);
outputTokens.push_back(artifactCrcTablesToWrite[i].crcInvoke);
Token artifactName = {TokenType_String, crcPair.first, "Build.cpp", 1, 0, 0};
outputTokens.push_back(artifactName);
Token crcToken = {
TokenType_Symbol, std::to_string(crcPair.second), "Build.cpp", 1, 0, 0};
outputTokens.push_back(crcToken);
outputTokens.push_back(closeParen);
}
}
for (const HashedSourceArtifactCrcTablePair& crcPair : sourceArtifactFileCrcs)
{
outputTokens.push_back(openParen);
outputTokens.push_back(sourceArtifactInvoke);
Token sourceArtifactName = {
TokenType_String, std::to_string(crcPair.first), "Build.cpp", 1, 0, 0};
outputTokens.push_back(sourceArtifactName);
Token crcToken = {TokenType_Symbol, std::to_string(crcPair.second), "Build.cpp", 1, 0, 0};
outputTokens.push_back(crcToken);
outputTokens.push_back(closeParen);
}
if (outputTokens.empty())
{
Log("no tokens to write to cache file");
return;
}
FILE* file = fileOpen(outputFilename, "wb");
if (!file)
{
Logf("error: Could not write cache file %s", outputFilename);
return;
}
prettyPrintTokensToFile(file, outputTokens);
fclose(file);
}
// Returns false if there were errors; the file not existing is not an error
bool buildReadCacheFile(const char* buildOutputDir, ArtifactCrcTable& cachedCommandCrcs,
HashedSourceArtifactCrcTable& sourceArtifactFileCrcs,
ArtifactCrcTable& headerCrcCache)
{
char inputFilename[MAX_PATH_LENGTH] = {0};
if (!outputFilenameFromSourceFilename(buildOutputDir, "Cache", "cake", inputFilename,
sizeof(inputFilename)))
{
Log("error: failed to create cache file name\n");
return false;
}
// This is fine if it's the first build of this configuration
if (!fileExists(inputFilename))
return true;
const std::vector<Token>* tokens = nullptr;
if (!moduleLoadTokenizeValidate(inputFilename, &tokens))
{
// moduleLoadTokenizeValidate deletes tokens on error
return false;
}
for (int i = 0; i < (int)(*tokens).size(); ++i)
{
const Token& currentToken = (*tokens)[i];
if (currentToken.type == TokenType_OpenParen)
{
int endInvocationIndex = FindCloseParenTokenIndex((*tokens), i);
const Token& invocationToken = (*tokens)[i + 1];
int keyIndex =
getExpectedArgument("expected artifact name or key", (*tokens), i, 1, endInvocationIndex);
if (keyIndex == -1)
{
delete tokens;
return false;
}
int crcIndex = getExpectedArgument("expected crc", (*tokens), i, 2, endInvocationIndex);
if (crcIndex == -1)
{
delete tokens;
return false;
}
if (invocationToken.contents.compare("command-crc") == 0)
{
cachedCommandCrcs[(*tokens)[keyIndex].contents] =
static_cast<uint32_t>(std::stoul((*tokens)[crcIndex].contents));
}
else if (invocationToken.contents.compare("header-crc") == 0)
{
headerCrcCache[(*tokens)[keyIndex].contents] =
static_cast<uint32_t>(std::stoul((*tokens)[crcIndex].contents));
}
else if (invocationToken.contents.compare("source-artifact-crc") == 0)
{
sourceArtifactFileCrcs[static_cast<uint32_t>(
std::stoul((*tokens)[keyIndex].contents))] =
static_cast<uint32_t>(std::stoul((*tokens)[crcIndex].contents));
}
else
{
Logf("error: unrecognized invocation in %s: %s\n", inputFilename,
invocationToken.contents.c_str());
delete tokens;
return false;
}
i = endInvocationIndex;
}
}
delete tokens;
return true;
}
void buildReadMergeWriteCacheFile(const char* buildOutputDir, ArtifactCrcTable& cachedCommandCrcs,
ArtifactCrcTable& newCommandCrcs,
HashedSourceArtifactCrcTable& sourceArtifactFileCrcs,
ArtifactCrcTable& changedHeaderCrcCache)
{
ArtifactCrcTable mergedCachedCommandCrcs;
HashedSourceArtifactCrcTable mergedSourceArtifactFileCrcs;
ArtifactCrcTable mergedLoadedHeaderCrcCache;
buildReadCacheFile(buildOutputDir, mergedCachedCommandCrcs, mergedSourceArtifactFileCrcs,
mergedLoadedHeaderCrcCache);
// Merge, using our version as latest
for (ArtifactCrcTablePair& crcPair : newCommandCrcs)
mergedCachedCommandCrcs[crcPair.first] = crcPair.second;
for (const HashedSourceArtifactCrcTablePair& crcPair : sourceArtifactFileCrcs)
{
mergedSourceArtifactFileCrcs[crcPair.first] = crcPair.second;
}
for (ArtifactCrcTablePair& crcPair : changedHeaderCrcCache)
mergedLoadedHeaderCrcCache[crcPair.first] = crcPair.second;
buildWriteCacheFile(buildOutputDir, mergedCachedCommandCrcs, newCommandCrcs,
mergedSourceArtifactFileCrcs, mergedLoadedHeaderCrcCache);
}
// It is essential to scan the #include files to determine if any of the headers have been modified,
// because changing them could require a rebuild (for e.g., you change the size or order of a struct
// declared in a header; all source files now need updated sizeof calls). This is annoyingly
// complex, but must be done every time a build is run, just in case headers change. If this step
// was skipped, it opens the door to very frustrating bugs involving stale builds and mismatched
// headers.
//
// Note that this cannot early out because we have no reference file to compare against. While it
// could be faster to implement it that way, my gut tells me having a cache sharable across build
// objects is faster. We must find the absolute time because different build objects may be more
// recently modified than others, so they shouldn't get built. If we wanted to early out, we cannot
// share the cache because of this
static bool AreIncludedHeadersModified_Recursive(const std::vector<std::string>& searchDirectories,
const char* filename, const char* includedInFile,
HeaderModificationTimeTable& isModifiedCache,
ArtifactCrcTable& loadedHeaderCrcCache,
ArtifactCrcTable& changedHeaderCrcCache,
FileModifyTime* mostRecentModifiedTimeOut)
{
bool headerCrcDiffersFromExpected = false;
// Already cached?
{
const HeaderModificationTimeTable::iterator findIt = isModifiedCache.find(filename);
if (findIt != isModifiedCache.end())
{
if (logging.includeScanning)
Logf(" > cache hit %s\n", filename);
if (mostRecentModifiedTimeOut)
*mostRecentModifiedTimeOut = findIt->second;
bool isCachedCrcDifferent = (changedHeaderCrcCache.find(filename) != changedHeaderCrcCache.end());
if (logging.includeScanning && isCachedCrcDifferent)
Logf(" >>> %s already marked as changed\n", filename);
return isCachedCrcDifferent;
}
}
// Find a match
char resolvedPathBuffer[MAX_PATH_LENGTH] = {0};
if (!searchForFileInPaths(filename, includedInFile, searchDirectories, resolvedPathBuffer,
ArraySize(resolvedPathBuffer)))
{
if (logging.includeScanning || logging.strictIncludes)
Logf("warning: failed to find %s in search paths\n", filename);
// Might as well not keep failing to find it. It doesn't cause modification up the stream if
// not found (else you'd get full rebuilds every time if you had even one header not found)
isModifiedCache[filename] = 0;
if (mostRecentModifiedTimeOut)
*mostRecentModifiedTimeOut = 0;
// Don't make unfound headers dirty the build
return false;
}
// Is the resolved path cached?
{
const HeaderModificationTimeTable::iterator findIt =
isModifiedCache.find(resolvedPathBuffer);
if (findIt != isModifiedCache.end())
{
if (logging.includeScanning)
Logf(" > resolved path cache hit %s\n", filename);
if (mostRecentModifiedTimeOut)
*mostRecentModifiedTimeOut = findIt->second;
bool isCachedCrcDifferent = (changedHeaderCrcCache.find(filename) != changedHeaderCrcCache.end());
if (logging.includeScanning && isCachedCrcDifferent)
Logf(" >>> %s already marked as changed\n", filename);
return isCachedCrcDifferent;
}
}
if (logging.includeScanning)
Logf("Checking %s for headers\n", resolvedPathBuffer);
const FileModifyTime thisModificationTime = fileGetLastModificationTime(resolvedPathBuffer);
// To prevent loops, add ourselves to the cache now. We'll revise our answer higher if necessary
isModifiedCache[filename] = thisModificationTime;
FileModifyTime mostRecentModTime = thisModificationTime;
uint32_t crc = 0;
FILE* file = fileOpen(resolvedPathBuffer, "rb");
if (!file)
{
Logf("warning: failed to open file %s even though it should exist\n", resolvedPathBuffer);
if (mostRecentModifiedTimeOut)
*mostRecentModifiedTimeOut = 0;
return false;
}
char lineBuffer[2048] = {0};
while (fgets(lineBuffer, sizeof(lineBuffer), file))
{
unsigned int lineLength = 0;
// I think '# include' is valid
if (lineBuffer[0] != '#' || !strstr(lineBuffer, "include"))
{
// No include on this line; get the length for the CRC
lineLength = strlen(lineBuffer);
}
else
{
char foundInclude[MAX_PATH_LENGTH] = {0};
char* foundIncludeWrite = foundInclude;
bool foundOpening = false;
for (char* c = &lineBuffer[0]; *c != '\0'; ++c)
{
++lineLength;
if (foundOpening)
{
if (*c == '\"' || *c == '>')
{
if (logging.includeScanning)
Logf("\t%s include: %s\n", resolvedPathBuffer, foundInclude);
FileModifyTime includeModifiedTime = 0;
headerCrcDiffersFromExpected |= AreIncludedHeadersModified_Recursive(
searchDirectories, foundInclude, resolvedPathBuffer, isModifiedCache,
loadedHeaderCrcCache, changedHeaderCrcCache, &includeModifiedTime);
if (logging.includeScanning)
Logf("\t tree modification time: " FORMAT_FILETIME "\n",
includeModifiedTime);
if (includeModifiedTime > mostRecentModTime)
mostRecentModTime = includeModifiedTime;
}
*foundIncludeWrite = *c;
++foundIncludeWrite;
}
else if (*c == '\"' || *c == '<')
foundOpening = true;
}
}
crc32(lineBuffer, lineLength, &crc);
}
if (changedHeaderCrcCache.find(filename) != changedHeaderCrcCache.end())
{
headerCrcDiffersFromExpected |= true;
if (logging.includeScanning)
Logf(" >>> Header %s already marked as different.\n", filename);
}
else
{
ArtifactCrcTable::iterator findIt = loadedHeaderCrcCache.find(filename);
if (findIt != loadedHeaderCrcCache.end())
{
bool isCrcChanged = (findIt->second != crc);
headerCrcDiffersFromExpected |= isCrcChanged;
// We only want to make an entry if we no longer match
if (isCrcChanged)
{
changedHeaderCrcCache[filename] = crc;
if (logging.includeScanning)
Logf(" >>> Header %s crc %u no longer matches %u.\n", filename, crc, findIt->second);
}
}
else
{
// We don't know anything about this header yet; we must assume it has "changed" and we
// need to rebuild whatever is dependent on it
headerCrcDiffersFromExpected |= true;
changedHeaderCrcCache[filename] = crc;
if (logging.includeScanning)
Logf(" >>> Header %s was unknown. Marking as changed.\n", filename);
}
}
if (thisModificationTime != mostRecentModTime)
isModifiedCache[filename] = mostRecentModTime;
fclose(file);
if (mostRecentModifiedTimeOut)
*mostRecentModifiedTimeOut = mostRecentModTime;
return headerCrcDiffersFromExpected;
}
// commandArguments should have terminating null sentinel
bool commandEqualsCachedCommand(ArtifactCrcTable& cachedCommandCrcs, const char* artifactKey,
const char** commandArguments, uint32_t* crcOut)
{
uint32_t newCommandCrc = 0;
if (logging.commandCrcs)
Log("\"");
for (const char** currentArg = commandArguments; *currentArg; ++currentArg)
{
crc32(*currentArg, strlen(*currentArg), &newCommandCrc);
if (logging.commandCrcs)
Logf("%s ", *currentArg);
}
if (logging.commandCrcs)
Log("\"\n");
if (crcOut)
*crcOut = newCommandCrc;
ArtifactCrcTable::iterator findIt = cachedCommandCrcs.find(artifactKey);
if (findIt == cachedCommandCrcs.end())
{
if (logging.commandCrcs)
Logf("CRC32 for %s: %u (not cached)\n", artifactKey, newCommandCrc);
return false;
}
if (logging.commandCrcs)
Logf("CRC32 for %s: old %u new %u\n", artifactKey, findIt->second, newCommandCrc);
return findIt->second == newCommandCrc;
}
bool cppFileNeedsBuild(EvaluatorEnvironment& environment, const char* sourceFilename,
const char* artifactFilename, const char** commandArguments,
ArtifactCrcTable& cachedCommandCrcs, ArtifactCrcTable& newCommandCrcs,
HeaderModificationTimeTable& headerModifiedCache,
std::vector<std::string>& headerSearchDirectories)
{
uint32_t commandCrc = 0;
bool commandEqualsCached = commandEqualsCachedCommand(cachedCommandCrcs, artifactFilename,
commandArguments, &commandCrc);
// We could avoid doing this work, but it makes it easier to log if we do it regardless of
// commandEqualsCached invalidating our cache anyways
bool canUseCache = canUseCachedFile(environment, sourceFilename, artifactFilename);
// Note that I use the .o as "includedBy" because our header may not have needed any
// changes if our include changed. We have to use the .o as the time reference that
// we've rebuilt
FileModifyTime mostRecentHeaderModTime = 0;
bool headersModified = AreIncludedHeadersModified_Recursive(
headerSearchDirectories, sourceFilename,
/*includedBy*/ nullptr, headerModifiedCache, environment.loadedHeaderCrcCache,
environment.changedHeaderCrcCache, &mostRecentHeaderModTime);
if (commandEqualsCached && canUseCache)
{
FileModifyTime artifactModTime = fileGetLastModificationTime(artifactFilename);
if (artifactModTime >= mostRecentHeaderModTime && !headersModified)
{
if (logging.buildProcess)
Logf("Skipping compiling %s (using cached object)\n", sourceFilename);
return false;
}
else
{
if (logging.includeScanning || logging.buildProcess)
{
Logf("--- Must rebuild %s (header files modified)\n", sourceFilename);
Logf("Artifact: " FORMAT_FILETIME " Most recent header: " FORMAT_FILETIME
" reason: %s\n",
artifactModTime, mostRecentHeaderModTime,
headersModified ? "crcs don't match" : "timestamps are newer");
}
}
}
if (logging.buildReasons)
{
Logf("Build %s reason(s):\n", artifactFilename);
if (!fileExists(artifactFilename))
Log("\tfile does not exist\n");
else if (!canUseCache)
Log("\tobject files updated\n");
if (!commandEqualsCached)
Log("\tcommand changed since last run\n");
if (headersModified)
Log("\theaders modified\n");
}
if (!commandEqualsCached)
newCommandCrcs[artifactFilename] = commandCrc;
return true;
}
bool setPlatformEnvironmentVariable(const char* name, const char* value)
{
#ifdef WINDOWS
if (!(SetEnvironmentVariable(name, value)))
{
Logf("failed to set environment variable %s to %s with error %d\n", name, value,
GetLastError());
return false;
}
#else
int overwrite = 1;
if ((0 != setenv(name, value, overwrite)))
{
perror("failed to set variable: ");
Logf("failed to set environment variable %s to %s\n", name, value);
return false;
}
#endif
return true;
}