-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathwmkdep.l
506 lines (405 loc) · 11.9 KB
/
wmkdep.l
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
%{
/*---------------------------------*- C -*-----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
wmkdep
Description
A fast dependency list generator that emulates the behaviour and the
output of cpp -M. However, the output contains no duplicates and
is approx. 40% faster than cpp.
The algorithm uses flex to scan the directories specified with '-Idir'
options for include files and searches the files found. Each file is
entered into a hash table so that files are scanned only once. The
resulting file paths are added to the dependencies file after replacing
strings specified with the '-R string replacement' options.
Usage
wmkdep [ -R string replacement ... -R string replacement ] \
[ -Idir ... -Idir ] <source file> <dependencies file>
\*---------------------------------------------------------------------------*/
#define HASH_TABLE_SIZE 500
#define REPLACEMENTS_SIZE 10
#define INITIAL_MAX_N_FILES 1000
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* char* entry in hash table */
struct HashEntry
{
char* name;
struct HashEntry* next;
};
/* String search/replace pair */
struct searchReplace
{
char* search;
size_t searchLen;
char* replace;
size_t replaceLen;
};
int nDirectories = 0;
char** directories;
char* sourceFile = NULL;
char* sourcePath = NULL;
char* depFilePath = NULL;
char* depFileName = NULL;
int nReplacements = 0;
struct searchReplace replacements[REPLACEMENTS_SIZE];
/* Set of files already visited */
struct HashEntry* visitedFiles[HASH_TABLE_SIZE];
/* List of dependency files */
int nFiles = 0;
int currentFile = 0;
int maxNfiles = INITIAL_MAX_N_FILES;
char** files;
/* Current path of the dependency file */
const char* currentPath = NULL;
void nextFile(const char* fileName);
int lookUp(struct HashEntry** hashTable, const char* p);
void addFile(char* filePath);
void openFile(const char* filePath);
char* strRep(char* str, struct searchReplace* sr);
char* substitutePath(char* filePath);
void printFile(FILE* file, const char* filePath);
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#undef yywrap /* Sometimes a macro by default */
%}
%x CMNT CFNAME
%%
"//".*\n ; /* Remove c++ style line comments */
"/*" BEGIN(CMNT); /* Start removing c style comment */
<CMNT>.|\n ;
<CMNT>"*/" BEGIN(INITIAL); /* End removing c style comment */
^[ \t]*#[ \t]*include[ \t]+\" BEGIN(CFNAME); /* c-file name */
<CFNAME>[^"\n ]* { BEGIN(INITIAL); nextFile(yytext); } /*"*/
.|\t|\n ;
%%
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int main(int argc, char* argv[])
{
if (argc == 1)
{
fprintf(stderr, "input file not supplied\n");
exit(1);
}
sourceFile = strdup(argv[argc-2]);
depFilePath = strdup(argv[argc-1]);
char* basePos = strrchr(sourceFile, '/');
if (basePos == NULL)
{
sourcePath = strdup(".");
}
else
{
sourcePath = (char*)malloc(basePos - sourceFile + 1);
strncpy(sourcePath, sourceFile, basePos - sourceFile);
sourcePath[basePos - sourceFile] = '\0';
}
if (basePos == NULL)
{
basePos = sourceFile;
}
else
{
basePos++;
}
char* dotPos = strrchr(sourceFile, '.');
if (dotPos == NULL || dotPos < basePos)
{
fprintf
(
stderr,
"cannot find extension in source file name %s\n",
sourceFile
);
exit(1);
}
/* Build list of string replacements */
int i;
for (i = 1; i < argc - 1; i++)
{
if (strncmp(argv[i], "-R", 2) == 0)
{
replacements[nReplacements].search = strdup(argv[++i]);
replacements[nReplacements].searchLen =
strlen(replacements[nReplacements].search);
replacements[nReplacements].replace = strdup(argv[++i]);
replacements[nReplacements].replaceLen =
strlen(replacements[nReplacements].replace);
nReplacements++;
}
}
/* Count number of -I directories */
nDirectories = 1;
for (i = 1; i < argc - 1; i++)
{
if (strncmp(argv[i], "-I", 2) == 0)
{
if (strlen(argv[i]) > 2)
{
nDirectories++;
}
}
}
directories = (char**)malloc(sizeof(char*)*nDirectories);
// Insert the source directory as the first directory searched
directories[0] = strdup(sourcePath);
/* Build list of -I directories */
nDirectories = 1;
for (i = 1; i < argc - 1; i++)
{
if (strncmp(argv[i], "-I", 2) == 0)
{
if (strlen(argv[i]) > 2)
{
directories[nDirectories++] = strdup(argv[i] + 2);
}
}
}
depFileName = substitutePath(strdup(depFilePath));
/* Initialise storage for the list of the dependencies */
files = (char**)malloc(sizeof(char*)*maxNfiles);
openFile(sourceFile);
yylex();
/* Write dependencies file */
FILE* depFile;
if (!(depFile = fopen(depFilePath, "w")))
{
fprintf
(
stderr,
"could not open dependencies file %s "
"for source file %s due to %s\n",
depFilePath, sourceFile, strerror(errno)
);
exit(1);
}
fprintf(depFile, "%s: \\\n", depFileName);
printFile(depFile, sourceFile);
for (i = 0; i < nFiles; i++)
{
files[i] = substitutePath(files[i]);
printFile(depFile, files[i]);
}
fputs("\n", depFile);
/* Write the dummy rules for the dependencies */
for (i = 0; i < nFiles; i++)
{
fprintf(depFile, "%s :\n", files[i]);
}
fputs("\n", depFile);
/* Clean-up storage */
for (i = 0; i < nDirectories; i++)
{
free(directories[i]);
}
free(directories);
free(sourceFile);
free(depFilePath);
free(depFileName);
for (i = 0; i < nFiles; i++)
{
free(files[i]);
}
free(files);
return 0;
}
/* Add a directory name to the file name */
char* addDirectoryName(const char* dirName, const char* fileName)
{
char* filePath = (char*)malloc(strlen(dirName) + strlen(fileName) + 2);
strcpy(filePath, dirName);
if (dirName[strlen(dirName)-1] != '/')
{
strcat(filePath, "/");
}
strcat(filePath, fileName);
return filePath;
}
/* Find path to next file and add it to the list */
void nextFile(const char* fileName)
{
if (lookUp(visitedFiles, fileName))
{
return; /* Already existed (did not insert) */
}
if (access(fileName, R_OK ) != -1)
{
addFile(strdup(fileName));
currentPath = NULL;
}
else
{
int i;
for (i = 0; i < nDirectories; i++)
{
char* filePath = addDirectoryName(directories[i], fileName);
if (access(filePath, R_OK ) != -1)
{
addFile(filePath);
currentPath = directories[i];
return;
}
free(filePath);
}
if (nDirectories == 0)
{
fprintf
(
stderr,
"could not open file %s for source file %s\n",
fileName, sourceFile
);
}
else
{
fprintf
(
stderr,
"could not open file %s for source file %s due to %s\n",
fileName, sourceFile, strerror(errno)
);
}
/* Only report error on the first occurrence */
lookUp(visitedFiles, fileName);
}
}
/* Lookup name in hash table.
If found - return 1
If not found - insert in table and return 0
*/
int lookUp(struct HashEntry** hashTable, const char* p)
{
int ii = 0;
struct HashEntry* n;
struct HashEntry* nn;
/* Hash */
const char* pp = p;
while (*pp) ii = ii<<1 ^ *pp++;
if (ii < 0) ii = -ii;
ii %= HASH_TABLE_SIZE;
/* Search */
for (n = hashTable[ii]; n; n = n->next)
{
if (strcmp(p, n->name) == 0)
{
/* Entry found so return true */
return 1;
}
}
/* Insert */
nn = (struct HashEntry*)malloc(sizeof(struct HashEntry));
nn->name = strdup(p);
nn->next = hashTable[ii];
hashTable[ii] = nn;
/* Entry not found, and therefore added. return false */
return 0;
}
/* Add file to list */
void addFile(char* filePath)
{
if (nFiles == maxNfiles - 1)
{
maxNfiles *= 2;
files = (char**)realloc(files, sizeof(char*)*maxNfiles);
}
files[nFiles++] = filePath;
}
/* Open file and set yyin */
void openFile(const char* filePath)
{
if (!(yyin = fopen(filePath, "r")))
{
fprintf
(
stderr,
"could not open file %s for source file %s due to %s\n",
filePath, sourceFile, strerror(errno)
);
}
}
/* String search/replace */
char* strRep(char* str, struct searchReplace* sr)
{
char* searchStart = strstr(str, sr->search);
if (searchStart != NULL)
{
if (sr->replaceLen > sr->searchLen)
{
const size_t start = searchStart - str;
str = realloc
(
str,
strlen(str) + sr->replaceLen - sr->searchLen + 1
);
searchStart = str + start;
}
const size_t tailLen = strlen(searchStart + sr->searchLen);
memmove
(
searchStart + sr->replaceLen,
searchStart + sr->searchLen,
tailLen + 1
);
memcpy(searchStart, sr->replace, sr->replaceLen);
}
return str;
}
/* Substitute path components with command-line replacements */
char* substitutePath(char* filePath)
{
if (nReplacements)
{
int i;
for (i = 0; i < nReplacements; i++)
{
filePath = strRep(filePath, &replacements[i]);
}
}
return filePath;
}
/* Print file path to the dependencies file */
void printFile(FILE* file, const char* filePath)
{
fprintf(file, "%s \\\n", filePath);
}
/* The lexer calls yywrap to handle EOF conditions */
int yywrap()
{
/* Close the current file which has just reached EOF */
fclose(yyin);
if (currentFile == nFiles) /* There are no more files in the list */
{
/* Return 1 to inform lex finish now that all files have been read */
return 1;
}
else
{
/* Open the next file on the list */
openFile(files[currentFile++]);
/* Return to the normal state for the next file */
BEGIN(INITIAL);
/* Return 0 to inform lex to continue reading */
return 0;
}
}
/*****************************************************************************/