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
|
/**
* Read a file from disk and store it in memory.
*
* Copyright: Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/file_manager.d, _file_manager.d)
* Documentation: https://dlang.org/phobos/dmd_file_manager.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/file_manager.d
*/
module dmd.file_manager;
import core.stdc.stdio;
import dmd.common.outbuffer;
import dmd.root.stringtable : StringTable;
import dmd.root.file : File, Buffer;
import dmd.root.filename : FileName, isDirSeparator;
import dmd.root.string : toDString;
import dmd.errors;
import dmd.globals;
import dmd.identifier;
import dmd.location;
enum package_d = "package." ~ mars_ext;
enum package_di = "package." ~ hdr_ext;
/// Returns: whether a file with `name` is a special "package.d" module
bool isPackageFileName(scope FileName fileName) nothrow
{
return FileName.equals(fileName.name, package_d) || FileName.equals(fileName.name, package_di);
}
// A path stack that allows one to go up and down the path using directory
// separators. `cur` is the current path, `up` goes up one path, `down` goes
// down one path. if `up` or `down` return false, there are no further paths.
private struct PathStack
{
private const(char)[] path;
private size_t pos;
@safe @nogc nothrow pure:
this(const(char)[] p)
{
path = p;
pos = p.length;
}
const(char)[] cur()
{
return path[0 .. pos];
}
bool up()
{
if (pos == 0)
return false;
while (--pos != 0)
if (isDirSeparator(path[pos]))
return true;
return false;
}
bool down()
{
if (pos == path.length)
return false;
while (++pos != path.length)
if (isDirSeparator(path[pos]))
return true;
return false;
}
}
/***************************
* Cache path lookups so the operating system
* is only consulted once for each path.
*/
private struct PathCache
{
/* for filespec "a/b/c/d.ext"
* a b and c are directories, a, a/b, a/b/c are paths.
*/
StringTable!(bool) pathStatus; // cached value of does a path exist or not
nothrow:
/**
* Determine if the path part of path/filename exists.
* Cache the results for the path and each left-justified subpath of the path.
* Params:
* filespec = path/filename
* Returns:
* true if path exists, false if it does not
*/
bool pathExists(const(char)[] filespec) nothrow
{
/* look for the longest leftmost parent path that is cached
* by starting at the right and working to the left
*/
bool exists = true;
auto st = PathStack(filespec);
while (st.up) {
if (auto cached = pathStatus.lookup(st.cur)) {
exists = cached.value;
break;
}
}
/* found a parent path that is cached (or reached the left end of the path).
* Now move right caching the results of those directories.
* Once a directory is found to not exist, all the directories
* to the right of it do not exist
*/
while (st.down) {
if (!exists)
pathStatus.insert(st.cur, false);
else
exists = pathStatus.insert(st.cur, FileName.exists(st.cur) == 2).value;
}
return exists;
}
/**
* Ask if path ends in a directory.
* Cache result for speed.
* Params:
* path = a path
* Returns:
* true if it's a path, false if not
*/
bool isExistingPath(const char[] path)
{
auto cached = pathStatus.lookup(path);
if (!cached)
cached = pathStatus.insert(path, FileName.exists(path) == 2);
return cached.value;
}
}
final class FileManager
{
private StringTable!(const(ubyte)[]) files; // contents of files indexed by file name
private PathCache pathCache;
///
public this () nothrow
{
this.files._init();
this.pathCache.pathStatus._init();
}
nothrow:
/********************************************
* Look for the source file if it's different from filename.
* Look for .di, .d, directory, and along global.path.
* Does not open the file.
* Params:
* filename = as supplied by the user
* paths = paths to look for filename
* Returns:
* the found file name or
* `null` if it is not different from filename.
*/
const(char)[] lookForSourceFile(const char[] filename, const char*[] paths)
{
//printf("lookForSourceFile(`%.*s`)\n", cast(int)filename.length, filename.ptr);
/* Search along paths[] for .di file, then .d file.
*/
// see if we should check for the module locally.
bool checkLocal = pathCache.pathExists(filename);
const sdi = FileName.forceExt(filename, hdr_ext);
if (checkLocal && FileName.exists(sdi) == 1)
return sdi;
scope(exit) FileName.free(sdi.ptr);
const sd = FileName.forceExt(filename, mars_ext);
// Special file name representing `stdin`, always assume its presence
if (sd == "__stdin.d")
return sd;
if (checkLocal && FileName.exists(sd) == 1)
return sd;
scope(exit) FileName.free(sd.ptr);
if (checkLocal)
{
if (pathCache.isExistingPath(filename))
{
/* The filename exists but it's a directory.
* Therefore, the result should be: filename/package.d
* iff filename/package.d is a file
*/
const ni = FileName.combine(filename, package_di);
if (FileName.exists(ni) == 1)
return ni;
FileName.free(ni.ptr);
const n = FileName.combine(filename, package_d);
if (FileName.exists(n) == 1)
return n;
FileName.free(n.ptr);
}
}
if (FileName.absolute(filename))
return null;
if (!paths.length)
return null;
foreach (entry; paths)
{
const p = entry.toDString();
const(char)[] n = FileName.combine(p, sdi);
if (!pathCache.pathExists(n)) {
FileName.free(n.ptr);
continue; // no need to check for anything else.
}
if (FileName.exists(n) == 1) {
return n;
}
FileName.free(n.ptr);
n = FileName.combine(p, sd);
if (FileName.exists(n) == 1) {
return n;
}
FileName.free(n.ptr);
n = FileName.combine(p, FileName.sansExt(filename));
scope(exit) FileName.free(n.ptr);
// also cache this if we are looking for package.d[i]
if (pathCache.isExistingPath(n))
{
const n2i = FileName.combine(n, package_di);
if (FileName.exists(n2i) == 1)
return n2i;
FileName.free(n2i.ptr);
const n2 = FileName.combine(n, package_d);
if (FileName.exists(n2) == 1) {
return n2;
}
FileName.free(n2.ptr);
}
}
/* ImportC: No D modules found, now search along paths[] for .i file, then .c file.
*/
const si = FileName.forceExt(filename, i_ext);
if (FileName.exists(si) == 1)
return si;
scope(exit) FileName.free(si.ptr);
const sc = FileName.forceExt(filename, c_ext);
if (FileName.exists(sc) == 1)
return sc;
scope(exit) FileName.free(sc.ptr);
foreach (entry; paths)
{
const p = entry.toDString();
const(char)[] n = FileName.combine(p, si);
if (FileName.exists(n) == 1) {
return n;
}
FileName.free(n.ptr);
n = FileName.combine(p, sc);
if (FileName.exists(n) == 1) {
return n;
}
FileName.free(n.ptr);
}
return null;
}
/**
* Retrieve the cached contents of the file given by `filename`.
* If the file has not been read before, read it and add the contents
* to the file cache.
* Params:
* filename = the name of the file
* Returns:
* the contents of the file, or `null` if it could not be read or was empty
*/
const(ubyte)[] getFileContents(FileName filename)
{
const name = filename.toString;
if (auto val = files.lookup(name)) // if `name` is cached
return val.value; // return its contents
OutBuffer buf;
if (name == "__stdin.d") // special name for reading from stdin
{
if (readFromStdin(buf))
fatal();
}
else
{
if (FileName.exists(name) != 1) // if not an ordinary file
return null;
if (File.read(name, buf))
return null; // failed
}
buf.write32(0); // terminating dchar 0
const length = buf.length;
const ubyte[] fb = cast(ubyte[])(buf.extractSlice()[0 .. length - 4]);
if (files.insert(name, fb) is null)
assert(0, "Insert after lookup failure should never return `null`");
return fb;
}
/**
* Adds the contents of a file to the table.
* Params:
* filename = name of the file
* buffer = contents of the file
* Returns:
* the buffer added, or null
*/
const(ubyte)[] add(FileName filename, const(ubyte)[] buffer)
{
auto val = files.insert(filename.toString, buffer);
return val == null ? null : val.value;
}
}
private bool readFromStdin(ref OutBuffer sink) nothrow
{
import core.stdc.stdio;
import dmd.errors;
enum BufIncrement = 128 * 1024;
for (size_t j; 1; ++j)
{
char[] buffer = sink.allocate(BufIncrement);
// Fill up buffer
size_t filled = 0;
do
{
filled += fread(buffer.ptr + filled, 1, buffer.length - filled, stdin);
if (ferror(stdin))
{
import core.stdc.errno;
error(Loc.initial, "cannot read from stdin, errno = %d", errno);
return true;
}
if (feof(stdin)) // successful completion
{
sink.setsize(j * BufIncrement + filled);
return false;
}
} while (filled < BufIncrement);
}
assert(0);
}
|