-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
rdmd.d
executable file
·1094 lines (974 loc) · 34.3 KB
/
rdmd.d
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
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env rdmd
/*
* Copyright (C) 2008 by Andrei Alexandrescu
* Written by Andrei Alexandrescu, www.erdani.org
* Based on an idea by Georg Wrede
* Featuring improvements suggested by Christopher Wright
* Windows port using bug fixes and suggestions by Adam Ruppe
*
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
// Written in the D programming language.
import std.algorithm, std.array, core.stdc.stdlib, std.datetime,
std.digest.md, std.exception, std.getopt,
std.parallelism, std.path, std.process, std.range, std.regex,
std.stdio, std.string, std.typecons;
// Globally import types and functions that don't need to be logged
import std.file : FileException, DirEntry, SpanMode, thisExePath, tempDir;
version (Posix)
{
enum objExt = ".o";
enum binExt = "";
enum libExt = ".a";
version (OSX)
enum dllExt = ".dylib";
else
enum dllExt = ".so";
enum altDirSeparator = "";
}
else version (Windows)
{
enum objExt = ".obj";
enum binExt = ".exe";
enum libExt = ".lib";
enum dllExt = ".dll";
enum altDirSeparator = "/";
}
else
{
static assert(0, "Unsupported operating system.");
}
private bool chatty, buildOnly, dryRun, force, preserveOutputPaths;
private string exe, userTempDir;
immutable string[] defaultExclusions = ["std", "etc", "core"];
private string[] exclusions = defaultExclusions; // packages that are to be excluded
private string[] extraFiles = [];
// Override compiler at build time
version (DefaultCompiler_DMD)
private enum defaultCompiler = "dmd";
else version (DefaultCompiler_GDC)
private enum defaultCompiler = "gdmd";
else version (DefaultCompiler_LDC)
private enum defaultCompiler = "ldmd2";
// Default to the current host compiler if no default was specified
else version (DigitalMars)
private enum defaultCompiler = "dmd";
else version (GNU)
private enum defaultCompiler = "gdmd";
else version (LDC)
private enum defaultCompiler = "ldmd2";
else
static assert(false, "Unknown compiler");
private string compiler = null;
version(unittest) {} else
int main(string[] args)
{
if (args.length > 1 && args[1].startsWith("--shebang ", "--shebang="))
{
// multiple options wrapped in one
auto a = args[1]["--shebang ".length .. $];
args = args[0 .. 1] ~ std.string.split(a) ~ args[2 .. $];
}
// Continue parsing the command line; now get rdmd's own arguments
// Parse the -o option (-ofmyfile or -odmydir).
void dashOh(string key, string value)
{
if (value.skipOver('f'))
{
// -ofmyfile passed
value.skipOver('='); // support -of... and -of=...
exe = value;
}
else if (value.skipOver('d'))
{
// -odmydir passed
if (!exe.ptr) // Don't let -od override -of
{
value.skipOver('='); // support -od... and -od=...
exe = value;
// add a trailing dir separator to clarify it's a dir
if (!exe.endsWith(dirSeparator))
{
exe ~= dirSeparator;
}
assert(exe.endsWith(dirSeparator));
}
}
else if (value == "-")
{
// -o- passed
enforce(false, "Option -o- currently not supported by rdmd");
}
else if (value == "p")
{
// -op passed
preserveOutputPaths = true;
}
else
{
enforce(false, "Unrecognized option: " ~ key ~ value);
}
}
// start the web browser on documentation page
void man()
{
std.process.browse("http://dlang.org/rdmd.html");
}
auto programPos = indexOfProgram(args);
assert(programPos > 0);
auto argsBeforeProgram = args[0 .. programPos];
bool bailout; // bailout set by functions called in getopt if
// program should exit
string[] loop; // set by --loop
bool addStubMain;// set by --main
string[] eval; // set by --eval
bool makeDepend;
string makeDepFile;
try
{
getopt(argsBeforeProgram,
std.getopt.config.caseSensitive,
std.getopt.config.passThrough,
"build-only", &buildOnly,
"chatty", &chatty,
"compiler", &compiler,
"dry-run", &dryRun,
"eval", &eval,
"loop", &loop,
"exclude", &exclusions,
"include", (string opt, string p) { exclusions = exclusions.filter!(ex => ex != p).array(); },
"extra-file", &extraFiles,
"force", &force,
"help", { writeln(helpString); bailout = true; },
"main", &addStubMain,
"makedepend", &makeDepend,
"makedepfile", &makeDepFile,
"man", { man(); bailout = true; },
"tmpdir", &userTempDir,
"o", &dashOh);
} catch (Exception e)
{
stderr.writeln(helpString);
stderr.writeln(e.msg);
return 1;
}
if (bailout) return 0;
if (dryRun) chatty = true; // dry-run implies chatty
// If we don't have a known compiler specified by the user,
// then we need to look to see if it was specified via an environmental argument.
// We need to do this due to rdmd being used as the execution engine for shebang files.
// This was originally tested with both $DMD, and $DC variable support.
// It was removed due to the current test suites being fragile enough that it broke them.
if (!compiler)
compiler = environment.get("RDMD_DMD", null);
if (!compiler)
{
compiler = defaultCompiler;
// Look for the D compiler rdmd invokes automatically in the same directory as rdmd
// and fall back to using the one in your path otherwise.
string compilerPath = buildPath(dirName(thisExePath()), compiler ~ binExt);
if (Filesystem.existsAsFile(compilerPath))
compiler = compilerPath;
}
/* Only -of is supported because Make is very susceptible to file names, and
* it doesn't do a good job resolving them. One option would be to use
* std.path.buildNormalizedPath(), but some corner cases will break, so it
* has been decided to only allow -of for now.
* To see the full discussion please refer to:
* https://github.com/dlang/tools/pull/122
*/
if ((makeDepend || makeDepFile.ptr) && (!exe.ptr || exe.endsWith(dirSeparator)))
{
stderr.write(helpString);
stderr.writeln();
stderr.writeln("Missing option: --makedepend and --makedepfile need -of");
return 1;
}
if (preserveOutputPaths)
{
argsBeforeProgram = argsBeforeProgram[0] ~ ["-op"] ~ argsBeforeProgram[1 .. $];
}
string root;
string[] programArgs;
// Just evaluate this program!
enforce(!(loop.ptr && eval.ptr), "Cannot mix --eval and --loop.");
if (loop.ptr)
{
enforce(programPos == args.length, "Cannot have both --loop and a " ~
"program file ('" ~ args[programPos] ~ "').");
root = makeEvalFile(makeEvalCode(loop, Yes.loop));
argsBeforeProgram ~= "-d";
}
else if (eval.ptr)
{
root = makeEvalFile(makeEvalCode(eval, No.loop));
argsBeforeProgram ~= "-d";
programArgs = args[programPos .. $];
}
else if (programPos < args.length)
{
root = args[programPos].chomp(".d") ~ ".d";
programArgs = args[programPos + 1 .. $];
}
else // no code to run
{
write(helpString);
return 1;
}
auto
exeBasename = root.baseName(".d"),
exeDirname = root.dirName;
assert(argsBeforeProgram.length >= 1);
auto compilerFlags = argsBeforeProgram[1 .. $];
bool obj = compilerFlags.canFind("-c");
bool lib = compilerFlags.canFind("-lib");
bool dll = compilerFlags.canFind("-shared");
string outExt =
dll ? dllExt :
lib ? libExt :
obj ? objExt :
binExt;
// Assume --build-only for -c / -lib / -shared.
buildOnly |= obj || lib || dll;
// --build-only implies the user would like a binary in the program's directory
if (buildOnly && !exe.ptr)
exe = exeDirname ~ dirSeparator;
if (exe.ptr && exe.endsWith(dirSeparator))
{
// user specified a directory, complete it to a file
exe = buildPath(exe, exeBasename) ~ outExt;
}
// Compute the object directory and ensure it exists
immutable workDir = getWorkPath(root, compilerFlags);
lockWorkPath(workDir); // will be released by the OS on process exit
string objDir = buildPath(workDir, "objs");
Filesystem.mkdirRecurseIfLive(objDir);
if (lib)
{
// When using -lib, the behavior of the DMD -of switch
// changes: instead of being relative to the current
// directory, it becomes relative to the output directory.
// When building libraries, DMD does not generate any object
// files; thus, we can override objDir (which is normally a
// temporary directory) to be the current directory, so that
// the relative -of path becomes correct.
objDir = ".";
}
// Fetch dependencies
const myDeps = getDependencies(root, workDir, objDir, compilerFlags);
// --makedepend mode. Just print dependencies and exit.
if (makeDepend)
{
writeDeps(exe, root, myDeps, stdout);
return 0;
}
// --makedepfile mode. Print dependencies to a file and continue.
// This is similar to GCC's -MF option, very useful to update the
// dependencies file and compile in one go:
// -include .deps.mak
// prog:
// rdmd --makedepfile=.deps.mak --build-only prog.d
if (makeDepFile !is null)
writeDeps(exe, root, myDeps, File(makeDepFile, "w"));
// Compute executable name, check for freshness, rebuild
/*
We need to be careful about using -o. Normally the generated
executable is hidden in the unique directory workDir. But if the
user forces generation in a specific place by using -od or -of,
the time of the binary can't be used to check for freshness
because the user may change e.g. the compile option from one run
to the next, yet the generated binary's datetime stays the
same. In those cases, we'll use a dedicated file called ".built"
and placed in workDir. Upon a successful build, ".built" will be
touched. See also
http://d.puremagic.com/issues/show_bug.cgi?id=4814
*/
string buildWitness;
SysTime lastBuildTime = SysTime.min;
if (exe.ptr)
{
// user-specified exe name
buildWitness = buildPath(workDir, ".built");
if (!exe.newerThan(buildWitness))
{
// Both exe and buildWitness exist, and exe is older than
// buildWitness. This is the only situation in which we
// may NOT need to recompile.
lastBuildTime = Filesystem.timeLastModified(buildWitness, SysTime.min);
}
}
else
{
exe = buildPath(workDir, exeBasename) ~ outExt;
buildWitness = exe;
lastBuildTime = Filesystem.timeLastModified(buildWitness, SysTime.min);
}
// Have at it
if (chain(root.only, myDeps.byKey).anyNewerThan(lastBuildTime))
{
immutable result = rebuild(root, exe, workDir, objDir,
myDeps, compilerFlags, addStubMain);
if (result)
return result;
// Touch the build witness to track the build time
if (buildWitness != exe)
Filesystem.touchEmptyFileIfLive(buildWitness);
}
if (buildOnly)
{
// Pretty much done!
return 0;
}
// release lock on workDir before launching the user's program
unlockWorkPath();
// run
return exec(exe ~ programArgs);
}
size_t indexOfProgram(string[] args)
{
foreach(i; 1 .. args.length)
{
auto arg = args[i];
if (!arg.startsWith('-', '@') &&
!arg.endsWith(".obj", ".o", ".lib", ".a", ".dll", ".so", ".dylib", ".def", ".map", ".res") &&
args[i - 1] != "--eval")
{
return i;
}
}
return args.length;
}
void writeDeps(string exe, string root, in string[string] myDeps, File fo)
{
fo.writeln(exe, ": \\");
fo.write(" ", root);
foreach (mod, _; myDeps)
{
fo.writeln(" \\");
fo.write(" ", mod);
}
fo.writeln();
fo.writeln();
fo.writeln(root, ":");
foreach (mod, _; myDeps)
{
fo.writeln('\n', mod, ":");
}
}
bool inALibrary(string source, string object)
{
if (object.endsWith(".di")
|| source == "object" || source == "gcstats")
return true;
foreach(string exclusion; exclusions)
if (source.startsWith(exclusion ~ '.'))
return true;
return false;
// another crude heuristic: if a module's path is absolute, it's
// considered to be compiled in a separate library. Otherwise,
// it's a source module.
//return isabs(mod);
}
private @property string myOwnTmpDir()
{
auto tmpRoot = userTempDir ? userTempDir : tempDir();
version (Posix)
{
import core.sys.posix.unistd;
tmpRoot = buildPath(tmpRoot, ".rdmd-%d".format(getuid()));
}
else
tmpRoot = tmpRoot.replace("/", dirSeparator).buildPath(".rdmd");
Filesystem.mkdirRecurseIfLive(tmpRoot);
return tmpRoot;
}
private string getWorkPath(in string root, in string[] compilerFlags)
{
static string workPath;
if (workPath.ptr)
return workPath;
enum string[] irrelevantSwitches = [
"--help", "-ignore", "-quiet", "-v" ];
MD5 context;
context.start();
context.put(compiler.representation);
context.put(root.absolutePath().representation);
foreach (flag; compilerFlags)
{
if (irrelevantSwitches.canFind(flag)) continue;
context.put(flag.representation);
}
foreach (f; extraFiles) context.put(f.representation);
auto digest = context.finish();
auto hash = toHexString(digest);
const tmpRoot = myOwnTmpDir;
workPath = buildPath(tmpRoot,
"rdmd-" ~ baseName(root) ~ '-' ~ hash);
Filesystem.mkdirRecurseIfLive(workPath);
return workPath;
}
private File lockFile;
private void lockWorkPath(string workPath)
{
string lockFileName = buildPath(workPath, "rdmd.lock");
if (!dryRun) lockFile.open(lockFileName, "w");
yap("lock ", lockFile.name);
if (!dryRun) lockFile.lock();
}
private void unlockWorkPath()
{
yap("unlock ", lockFile.name);
if (!dryRun)
{
lockFile.unlock();
lockFile.close();
}
}
// Rebuild the executable fullExe starting from modules in myDeps
// passing the compiler flags compilerFlags. Generates one large
// object file.
private int rebuild(string root, string fullExe,
string workDir, string objDir, in string[string] myDeps,
string[] compilerFlags, bool addStubMain)
{
version (Windows)
fullExe = fullExe.defaultExtension(".exe");
// Delete the old executable before we start building.
if (Filesystem.exists(fullExe))
{
enforce(Filesystem.isFile(fullExe), fullExe ~ " is not a regular file");
try
Filesystem.removeIfLive(fullExe);
catch (FileException)
{
// This can occur on Windows if the executable is locked.
// Although we can't delete the file, we can still rename it.
auto oldExe = "%s.%s-%s.old".format(fullExe,
Clock.currTime.stdTime, thisProcessID);
Filesystem.rename(fullExe, oldExe);
}
}
auto fullExeTemp = fullExe ~ ".tmp";
string[] buildTodo()
{
auto todo = compilerFlags
~ [ "-of" ~ fullExeTemp ]
~ [ "-od" ~ objDir ]
~ [ "-I" ~ dirName(root) ]
~ [ root ];
foreach (k, objectFile; myDeps) {
if(objectFile !is null)
todo ~= [ k ];
}
// Need to add void main(){}?
if (addStubMain)
{
auto stubMain = buildPath(myOwnTmpDir, "stubmain.d");
Filesystem.write(stubMain, "void main(){}");
todo ~= [ stubMain ];
}
return todo;
}
auto todo = buildTodo();
// Different shells and OS functions have different limits,
// but 1024 seems to be the smallest maximum outside of MS-DOS.
enum maxLength = 1024;
auto commandLength = escapeShellCommand(todo).length;
if (commandLength + compiler.length >= maxLength)
{
auto rspName = buildPath(workDir, "rdmd.rsp");
// DMD uses Windows-style command-line parsing in response files
// regardless of the operating system it's running on.
Filesystem.write(rspName, array(map!escapeWindowsArgument(todo)).join(" "));
todo = [ "@" ~ rspName ];
}
immutable result = run([ compiler ] ~ todo);
if (result)
{
// build failed
if (Filesystem.exists(fullExeTemp))
Filesystem.remove(fullExeTemp);
return result;
}
// clean up the dir containing the object file, just not in dry
// run mode because we haven't created any!
if (!dryRun)
{
if (Filesystem.exists(objDir) && objDir.startsWith(workDir))
{
// We swallow the exception because of a potential race: two
// concurrently-running scripts may attempt to remove this
// directory. One will fail.
collectException(Filesystem.rmdirRecurse(objDir));
}
Filesystem.rename(fullExeTemp, fullExe);
}
return 0;
}
// Run a program optionally writing the command line first
// If "replace" is true and the OS supports it, replace the current process.
private int run(string[] args, string output = null, bool replace = false)
{
import std.conv;
yap(replace ? "exec " : "spawn ", args.text);
if (dryRun) return 0;
if (replace && !output.ptr)
{
version (Windows)
{ /* Windows doesn't have exec, fall back to spawnProcess+wait */ }
else
{
import std.process : execv;
auto argv = args.map!toStringz.chain(null.only).array;
return execv(argv[0], argv.ptr);
}
}
File outputFile;
if (output.ptr)
outputFile = File(output, "wb");
else
outputFile = stdout;
auto process = spawnProcess(args, stdin, outputFile);
return process.wait();
}
private int exec(string[] args)
{
return run(args, null, true);
}
// Given module rootModule, returns a mapping of all dependees .d
// source filenames to their corresponding .o files sitting in
// directory workDir. The mapping is obtained by running dmd -v against
// rootModule.
private string[string] getDependencies(string rootModule, string workDir,
string objDir, string[] compilerFlags)
{
immutable depsFilename = buildPath(workDir, "rdmd.deps");
string[string] readDepsFile()
{
string d2obj(string dfile)
{
return buildPath(objDir, dfile.baseName.chomp(".d") ~ objExt);
}
string findLib(string libName)
{
// This can't be 100% precise without knowing exactly where the linker
// will look for libraries (which requires, but is not limited to,
// parsing the linker's command line (as specified in dmd.conf/sc.ini).
// Go for best-effort instead.
string[] dirs = ["."];
foreach (envVar; ["LIB", "LIBRARY_PATH", "LD_LIBRARY_PATH"])
dirs ~= environment.get(envVar, "").split(pathSeparator);
version (Windows)
string[] names = [libName ~ ".lib"];
else
{
string[] names = ["lib" ~ libName ~ ".a", "lib" ~ libName ~ ".so", "lib" ~ libName ~ ".dylib"];
dirs ~= ["/lib", "/usr/lib"];
}
foreach (dir; dirs)
foreach (name; names)
{
auto path = buildPath(dir, name);
if (Filesystem.exists(path))
return absolutePath(path);
}
return null;
}
yap("read ", depsFilename);
auto depsReader = File(depsFilename);
scope(exit) collectException(depsReader.close()); // don't care for errors
// Fetch all dependencies and append them to myDeps
auto pattern = ctRegex!(r"^(import|file|binary|config|library)\s+([^\(]+)\(?([^\)]*)\)?\s*$");
string[string] result;
foreach (string line; lines(depsReader))
{
auto regexMatch = match(line, pattern);
if (regexMatch.empty) continue;
auto captures = regexMatch.captures;
switch(captures[1])
{
case "import":
immutable moduleName = captures[2].strip(), moduleSrc = captures[3].strip();
if (inALibrary(moduleName, moduleSrc)) continue;
immutable moduleObj = d2obj(moduleSrc);
result[moduleSrc] = moduleObj;
break;
case "file":
result[captures[3].strip()] = null;
break;
case "binary":
result[which(captures[2].strip())] = null;
break;
case "config":
auto confFile = captures[2].strip;
// The config file is special: if missing, that's fine too. So
// add it as a dependency only if it actually exists.
if (Filesystem.exists(confFile))
{
result[confFile] = null;
}
break;
case "library":
immutable libName = captures[2].strip();
immutable libPath = findLib(libName);
if (libPath.ptr)
{
yap("library ", libName, " ", libPath);
result[libPath] = null;
}
break;
default: assert(0);
}
}
// All dependencies specified through --extra-file
foreach (immutable moduleSrc; extraFiles)
result[moduleSrc] = d2obj(moduleSrc);
return result;
}
// Check if the old dependency file is fine
if (!force)
{
auto depsT = Filesystem.timeLastModified(depsFilename, SysTime.min);
if (depsT > SysTime.min)
{
// See if the deps file is still in good shape
auto deps = readDepsFile();
auto allDeps = chain(rootModule.only, deps.byKey);
bool mustRebuildDeps = allDeps.anyNewerThan(depsT);
if (!mustRebuildDeps)
{
// Cool, we're in good shape
return deps;
}
// Fall through to rebuilding the deps file
}
}
immutable rootDir = dirName(rootModule);
// Filter out -lib. With -o-, it will create an empty library file.
compilerFlags = compilerFlags.filter!(flag => flag != "-lib").array();
// Collect dependencies
auto depsGetter =
// "cd " ~ shellQuote(rootDir) ~ " && "
[ compiler ] ~ compilerFlags ~
["-v", "-o-", rootModule, "-I" ~ rootDir];
scope(failure)
{
// Delete the deps file on failure, we don't want to be fooled
// by it next time we try
collectException(Filesystem.remove(depsFilename));
}
immutable depsExitCode = run(depsGetter, depsFilename);
if (depsExitCode)
{
stderr.writefln("Failed: %s", depsGetter);
collectException(Filesystem.remove(depsFilename));
exit(depsExitCode);
}
return dryRun ? null : readDepsFile();
}
// Is any file newer than the given file?
bool anyNewerThan(T)(T files, in string file)
{
return files.anyNewerThan(Filesystem.timeLastModified(file));
}
// Is any file newer than the given file?
bool anyNewerThan(T)(T files, SysTime t)
{
bool result;
foreach (source; taskPool.parallel(files))
{
yap("stat ", source);
if (!result && source.newerThan(t))
{
result = true;
}
}
return result;
}
/*
If force is true, returns true. Otherwise, if source and target both
exist, returns true iff source's timeLastModified is strictly greater
than target's. Otherwise, returns true.
*/
private bool newerThan(string source, string target)
{
if (force) return true;
return source.newerThan(Filesystem.timeLastModified(target, SysTime.min));
}
private bool newerThan(string source, SysTime target)
{
if (force) return true;
try
{
return Filesystem.timeLastModified(DirEntry(source)) > target;
}
catch (Exception)
{
// File not there, consider it newer
return true;
}
}
private @property string helpString()
{
return
"rdmd build " ~ thisVersion ~ "
Usage: rdmd [RDMD AND DMD OPTIONS...] program [PROGRAM OPTIONS...]
Builds a D program with its dependencies and runs it.
Example: rdmd -release myprog --myprogparameter 5
Any option to be passed to the compiler must occur before the program name.
In addition to compiler options, rdmd recognizes the following options:
--build-only just build the executable, don't run it
--chatty write compiler commands to stdout before executing them
--compiler=comp use the specified compiler (e.g. gdmd) instead of %s
--dry-run do not compile, just show what commands would be run
(implies --chatty)
--eval=code evaluate code, similar to perl -e (multiple allowed)
--exclude=package exclude a package from the build (multiple allowed)
--include=package negate --exclude or a standard package (%-(%s, %))
--extra-file=file include an extra source or object in the compilation
(multiple allowed)
--force force a rebuild even if apparently not necessary
--help show this message
--loop=code --eval, but wraps code in:
foreach (line; stdin.byLine()) { ... }
--main add a stub main program to the mix (e.g. for unittesting)
--makedepend print dependencies in makefile format and exit
(needs dmd's option `-of` to be present)
--makedepfile=file print dependencies in makefile format to file and continue
(needs dmd's option `-of` to be present)
--man open rdmd's manual in a web browser
--shebang rdmd is in a shebang line (use as first argument)
--tmpdir set an alternative temporary directory to cache compiled code
".format(defaultCompiler, defaultExclusions);
}
// For --eval and --loop
immutable string importWorld = "
module temporary;
import std.stdio, std.algorithm, std.array, std.ascii, std.base64,
std.bigint, std.bitmanip,
std.compiler, std.complex, std.concurrency, std.container, std.conv,
std.csv,
std.datetime, std.demangle, std.digest.md, std.encoding, std.exception,
std.file,
std.format, std.functional, std.getopt, std.json,
std.math, std.mathspecial, std.mmfile,
std.numeric, std.outbuffer, std.parallelism, std.path, std.process,
std.random, std.range, std.regex, std.signals, std.socket,
std.stdint, std.stdio,
std.string, std.windows.syserror, std.system, std.traits, std.typecons,
std.typetuple, std.uni, std.uri, std.utf, std.variant, std.zip,
std.zlib;
";
/**
Joins together the code provided via an `--eval` or `--loop`
flag, ensuring a trailing `;` is added if not already provided
by the user
Params:
eval = array of strings generated by the `--eval`
or `--loop` rdmd flags
Returns:
string of code to be evaluated, corresponding to the
inner code of either the program or the loop
*/
string innerEvalCode(string[] eval)
{
import std.string : join, stripRight;
// assumeSafeAppend just to avoid unnecessary reallocation
string code = eval.join("\n").stripRight.assumeSafeAppend;
if (code.length > 0 && code[$ - 1] != ';')
code ~= ';';
return code;
}
unittest
{
assert(innerEvalCode([`writeln("Hello!")`]) == `writeln("Hello!");`);
assert(innerEvalCode([`writeln("Hello!");`]) == `writeln("Hello!");`);
// test with trailing whitespace
assert(innerEvalCode([`writeln("Hello!") `]) == `writeln("Hello!");`);
assert(innerEvalCode([`writeln("Hello!"); `]) == `writeln("Hello!");`);
// test with multiple entries
assert(innerEvalCode([`writeln("Hello!"); `, `writeln("You!") `])
== "writeln(\"Hello!\"); \nwriteln(\"You!\");");
assert(innerEvalCode([`writeln("Hello!"); `, `writeln("You!"); `])
== "writeln(\"Hello!\"); \nwriteln(\"You!\");");
}
/**
Formats the code provided via `--eval` or `--loop` flags into a
string of complete program code that can be written to a file
and then compiled
Params:
eval = array of strings generated by the `--eval` or
`--loop` rdmd flags
loop = set to `Yes.loop` if this code comes from a
`--loop` flag, `No.loop` if it comes from an
`--eval` flag
Returns:
string of code to be evaluated, corresponding to the
inner code of either the program or the loop
*/
string makeEvalCode(string[] eval, Flag!"loop" loop)
{
import std.format : format;
immutable codeFormat = importWorld
~ "void main(char[][] args) {%s%s\n%s}";
immutable innerCodeOpening =
loop ? " foreach (line; std.stdio.stdin.byLine()) {\n"
: "\n";
immutable innerCodeClosing = loop ? "} " : "";
return format(codeFormat,
innerCodeOpening,
innerEvalCode(eval),
innerCodeClosing);
}
unittest
{
// innerEvalCode already tests the cases for different
// contents in `eval` array, so let's focus on testing
// the difference based on the `loop` flag
assert(makeEvalCode([`writeln("Hello!") `], No.loop) ==
importWorld
~ "void main(char[][] args) {\n"
~ "writeln(\"Hello!\");\n}");
assert(makeEvalCode([`writeln("What!"); `], No.loop) ==
importWorld
~ "void main(char[][] args) {\n"
~ "writeln(\"What!\");\n}");
assert(makeEvalCode([`writeln("Loop!") ; `], Yes.loop) ==
importWorld
~ "void main(char[][] args) { "
~ "foreach (line; std.stdio.stdin.byLine()) {\n"
~ "writeln(\"Loop!\") ;\n} }");
}
string makeEvalFile(string todo)
{
auto pathname = myOwnTmpDir;
auto srcfile = buildPath(pathname,
"eval." ~ todo.md5Of.toHexString ~ ".d");
if (force || !Filesystem.exists(srcfile))
{
Filesystem.write(srcfile, todo);
}
// Clean pathname
enum lifetimeInHours = 24;
auto cutoff = Clock.currTime() - dur!"hours"(lifetimeInHours);
foreach (DirEntry d; Filesystem.dirEntries(pathname, SpanMode.shallow))
{
if (Filesystem.timeLastModified(d) < cutoff)
{
collectException(Filesystem.remove(d.name));
//break; // only one per call so we don't waste time
}
}
return srcfile;
}
@property string thisVersion()
{
enum d = __DATE__;
enum month = d[0 .. 3],
day = d[4] == ' ' ? "0" ~ d[5] : d[4 .. 6],
year = d[7 .. $];
enum monthNum
= month == "Jan" ? "01"
: month == "Feb" ? "02"
: month == "Mar" ? "03"
: month == "Apr" ? "04"
: month == "May" ? "05"
: month == "Jun" ? "06"
: month == "Jul" ? "07"
: month == "Aug" ? "08"
: month == "Sep" ? "09"
: month == "Oct" ? "10"
: month == "Nov" ? "11"
: month == "Dec" ? "12"
: "";
static assert(month != "", "Unknown month " ~ month);
return year[0] ~ year[1 .. $] ~ monthNum ~ day;