Formerly job.c.~110~
[make.git] / file.c
blob39a8bc7a45fdf034304a679049903ba2ca5f40c1
1 /* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
2 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19 #include "make.h"
20 #include "commands.h"
21 #include "dep.h"
22 #include "file.h"
23 #include "variable.h"
26 /* Hash table of files the makefile knows how to make. */
28 #ifndef FILE_BUCKETS
29 #define FILE_BUCKETS 1007
30 #endif
31 static struct file *files[FILE_BUCKETS];
33 /* Number of files with the `intermediate' flag set. */
35 unsigned int num_intermediates = 0;
38 /* Access the hash table of all file records.
39 lookup_file given a name, return the struct file * for that name,
40 or nil if there is none.
41 enter_file similar, but create one if there is none. */
43 struct file *
44 lookup_file (name)
45 char *name;
47 register struct file *f;
48 register char *n;
49 register unsigned int hashval;
51 if (*name == '\0')
52 abort ();
54 /* This is also done in parse_file_seq, so this is redundant
55 for names read from makefiles. It is here for names passed
56 on the command line. */
57 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
59 name += 2;
60 while (*name == '/')
61 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
62 ++name;
65 if (*name == '\0')
66 /* It was all slashes after a dot. */
67 name = "./";
69 hashval = 0;
70 for (n = name; *n != '\0'; ++n)
71 HASH (hashval, *n);
72 hashval %= FILE_BUCKETS;
74 for (f = files[hashval]; f != 0; f = f->next)
75 if (streq (f->name, name))
76 return f;
77 return 0;
80 struct file *
81 enter_file (name)
82 char *name;
84 register struct file *f, *new;
85 register char *n;
86 register unsigned int hashval;
88 if (*name == '\0')
89 abort ();
91 hashval = 0;
92 for (n = name; *n != '\0'; ++n)
93 HASH (hashval, *n);
94 hashval %= FILE_BUCKETS;
96 for (f = files[hashval]; f != 0; f = f->next)
97 if (streq (f->name, name))
98 break;
100 if (f != 0 && !f->double_colon)
101 return f;
103 new = (struct file *) xmalloc (sizeof (struct file));
104 bzero ((char *) new, sizeof (struct file));
105 new->name = name;
106 new->update_status = -1;
108 if (f == 0)
110 /* This is a completely new file. */
111 new->next = files[hashval];
112 files[hashval] = new;
114 else
116 /* There is already a double-colon entry for this file. */
117 while (f->prev != 0)
118 f = f->prev;
119 f->prev = new;
122 return new;
125 /* Rename FILE to NAME. This is not as simple as resetting
126 the `name' member, since it must be put in a new hash bucket,
127 and possibly merged with an existing file called NAME. */
129 void
130 rename_file (file, name)
131 register struct file *file;
132 char *name;
134 char *oldname = file->name;
135 register unsigned int oldhash;
136 register char *n;
138 while (file->renamed != 0)
139 file = file->renamed;
141 /* Find the hash values of the old and new names. */
143 oldhash = 0;
144 for (n = oldname; *n != '\0'; ++n)
145 HASH (oldhash, *n);
147 file_hash_enter (file, name, oldhash, file->name);
150 void
151 file_hash_enter (file, name, oldhash, oldname)
152 register struct file *file;
153 char *name;
154 unsigned int oldhash;
155 char *oldname;
157 unsigned int oldbucket = oldhash % FILE_BUCKETS;
158 register unsigned int newhash, newbucket;
159 struct file *oldfile;
160 register char *n;
161 register struct file *f;
163 newhash = 0;
164 for (n = name; *n != '\0'; ++n)
165 HASH (newhash, *n);
166 newbucket = newhash % FILE_BUCKETS;
168 /* Look for an existing file under the new name. */
170 for (oldfile = files[newbucket]; oldfile != 0; oldfile = oldfile->next)
171 if (streq (oldfile->name, name))
172 break;
174 if (oldhash != 0 && (newbucket != oldbucket || oldfile != 0))
176 /* Remove FILE from its hash bucket. */
178 struct file *lastf = 0;
180 for (f = files[oldbucket]; f != file; f = f->next)
181 lastf = f;
183 if (lastf == 0)
184 files[oldbucket] = f->next;
185 else
186 lastf->next = f->next;
189 /* Give FILE its new name. */
191 for (f = file; f != 0; f = f->prev)
192 f->name = name;
194 if (oldfile == 0)
196 /* There is no existing file with the new name. */
198 if (newbucket != oldbucket)
200 /* Put FILE in its new hash bucket. */
201 file->next = files[newbucket];
202 files[newbucket] = file;
205 else
207 /* There is an existing file with the new name.
208 We must merge FILE into the existing file. */
210 register struct dep *d;
212 if (file->cmds != 0)
214 if (oldfile->cmds == 0)
215 oldfile->cmds = file->cmds;
216 else if (file->cmds != oldfile->cmds)
218 /* We have two sets of commands. We will go with the
219 one given in the rule explicitly mentioning this name,
220 but give a message to let the user know what's going on. */
221 if (oldfile->cmds->filename != 0)
222 makefile_error (file->cmds->filename, file->cmds->lineno,
223 "Commands were specified for \
224 file `%s' at %s:%u,",
225 oldname, oldfile->cmds->filename,
226 oldfile->cmds->lineno);
227 else
228 makefile_error (file->cmds->filename, file->cmds->lineno,
229 "Commands for file `%s' were found by \
230 implicit rule search,",
231 oldname);
232 makefile_error (file->cmds->filename, file->cmds->lineno,
233 "but `%s' is now considered the same file \
234 as `%s'.",
235 oldname, name);
236 makefile_error (file->cmds->filename, file->cmds->lineno,
237 "Commands for `%s' will be ignored \
238 in favor of those for `%s'.",
239 name, oldname);
243 /* Merge the dependencies of the two files. */
245 d = oldfile->deps;
246 if (d == 0)
247 oldfile->deps = file->deps;
248 else
250 while (d->next != 0)
251 d = d->next;
252 d->next = file->deps;
255 merge_variable_set_lists (&oldfile->variables, file->variables);
257 if (oldfile->double_colon && !file->double_colon)
258 fatal ("can't rename single-colon `%s' to double-colon `%s'",
259 oldname, name);
260 if (!oldfile->double_colon && file->double_colon)
261 fatal ("can't rename double-colon `%s' to single-colon `%s'",
262 oldname, name);
264 if (file->last_mtime > oldfile->last_mtime)
265 /* %%% Kludge so -W wins on a file that gets vpathized. */
266 oldfile->last_mtime = file->last_mtime;
268 #define MERGE(field) oldfile->field |= file->field
269 MERGE (precious);
270 MERGE (tried_implicit);
271 MERGE (updating);
272 MERGE (updated);
273 MERGE (is_target);
274 MERGE (cmd_target);
275 MERGE (phony);
276 #undef MERGE
278 file->renamed = oldfile;
282 /* Remove all nonprecious intermediate files.
283 If SIG is nonzero, this was caused by a fatal signal,
284 meaning that a different message will be printed, and
285 the message will go to stderr rather than stdout. */
287 void
288 remove_intermediates (sig)
289 int sig;
291 register int i;
292 register struct file *f;
293 char doneany;
295 if (!sig && just_print_flag)
296 return;
298 doneany = 0;
299 for (i = 0; i < FILE_BUCKETS; ++i)
300 for (f = files[i]; f != 0; f = f->next)
301 if (f->intermediate && (f->dontcare || !f->precious))
303 int status;
304 if (just_print_flag)
305 status = 0;
306 else
308 status = unlink (f->name);
309 if (status < 0 && errno == ENOENT)
310 continue;
312 if (!f->dontcare)
314 if (sig)
315 error ("*** Deleting intermediate file `%s'", f->name);
316 else if (!silent_flag)
318 if (! doneany)
320 fputs ("rm ", stdout);
321 doneany = 1;
323 else
324 putchar (' ');
325 fputs (f->name, stdout);
326 fflush (stdout);
328 if (status < 0)
329 perror_with_name ("unlink: ", f->name);
333 if (doneany && !sig)
335 putchar ('\n');
336 fflush (stdout);
340 /* For each dependency of each file, make the `struct dep' point
341 at the appropriate `struct file' (which may have to be created).
343 Also mark the files depended on by .PRECIOUS and .PHONY. */
345 void
346 snap_deps ()
348 register struct file *f, *f2;
349 register struct dep *d;
350 register int i;
352 /* Enter each dependency name as a file. */
353 for (i = 0; i < FILE_BUCKETS; ++i)
354 for (f = files[i]; f != 0; f = f->next)
355 for (f2 = f; f2 != 0; f2 = f2->prev)
356 for (d = f2->deps; d != 0; d = d->next)
357 if (d->name != 0)
359 d->file = lookup_file (d->name);
360 if (d->file == 0)
361 d->file = enter_file (d->name);
362 else
363 free (d->name);
364 d->name = 0;
367 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
368 for (d = f->deps; d != 0; d = d->next)
369 for (f2 = d->file; f2 != 0; f2 = f2->prev)
370 f2->precious = 1;
372 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
373 for (d = f->deps; d != 0; d = d->next)
374 for (f2 = d->file; f2 != 0; f2 = f2->prev)
376 /* Mark this file as phony and nonexistent. */
377 f2->phony = 1;
378 f2->last_mtime = (time_t) -1;
381 f = lookup_file (".EXPORT_ALL_VARIABLES");
382 if (f != 0 && f->is_target)
383 export_all_variables = 1;
386 /* Print the data base of files. */
388 void
389 print_file_data_base ()
391 register unsigned int i, nfiles, per_bucket;
392 register struct file *file;
393 register struct dep *d;
395 puts ("\n# Files");
397 per_bucket = nfiles = 0;
398 for (i = 0; i < FILE_BUCKETS; ++i)
400 register unsigned int this_bucket = 0;
402 for (file = files[i]; file != 0; file = file->next)
404 register struct file *f;
406 ++this_bucket;
408 for (f = file; f != 0; f = f->prev)
410 putchar ('\n');
411 if (!f->is_target)
412 puts ("# Not a target:");
413 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
415 for (d = f->deps; d != 0; d = d->next)
416 printf (" %s", dep_name (d));
417 putchar ('\n');
419 if (f->precious)
420 puts ("# Precious file (dependency of .PRECIOUS).");
421 if (f->phony)
422 puts ("# Phony target (dependency of .PHONY).");
423 if (f->cmd_target)
424 puts ("# Command-line target.");
425 if (f->dontcare)
426 puts ("# A default or MAKEFILES makefile.");
427 printf ("# Implicit rule search has%s been done.\n",
428 f->tried_implicit ? "" : " not");
429 if (f->stem != 0)
430 printf ("# Implicit/static pattern stem: `%s'\n", f->stem);
431 if (f->intermediate)
432 puts ("# File is an intermediate dependency.");
433 if (f->also_make != 0)
435 fputs ("# Also makes:", stdout);
436 for (d = f->also_make; d != 0; d = d->next)
437 printf (" %s", dep_name (d));
438 putchar ('\n');
440 if (f->last_mtime == (time_t) 0)
441 puts ("# Modification time never checked.");
442 else if (f->last_mtime == (time_t) -1)
443 puts ("# File does not exist.");
444 else
445 printf ("# Last modified %.24s (%ld)\n",
446 ctime (&f->last_mtime), (long int) f->last_mtime);
447 printf ("# File has%s been updated.\n",
448 f->updated ? "" : " not");
449 switch (f->command_state)
451 case cs_running:
452 puts ("# Commands currently running (THIS IS A BUG).");
453 break;
454 case cs_deps_running:
455 puts ("# Dependencies commands running (THIS IS A BUG).");
456 break;
457 case cs_not_started:
458 case cs_finished:
459 switch (f->update_status)
461 case -1:
462 break;
463 case 0:
464 puts ("# Successfully updated.");
465 break;
466 case 1:
467 puts ("# Failed to be updated.");
468 break;
469 default:
470 puts ("# Invalid value in `update_status' member!");
471 fflush (stdout);
472 fflush (stderr);
473 abort ();
475 break;
476 default:
477 puts ("# Invalid value in `command_state' member!");
478 fflush (stdout);
479 fflush (stderr);
480 abort ();
483 if (f->variables != 0)
484 print_file_variables (file);
486 if (f->cmds != 0)
487 print_commands (f->cmds);
491 nfiles += this_bucket;
492 if (this_bucket > per_bucket)
493 per_bucket = this_bucket;
496 if (nfiles == 0)
497 puts ("\n# No files.");
498 else
500 printf ("\n# %u files in %u hash buckets.\n", nfiles, FILE_BUCKETS);
501 #ifndef NO_FLOAT
502 printf ("# average %.1f files per bucket, max %u files in one bucket.\n",
503 ((double) FILE_BUCKETS) / ((double) nfiles) * 100.0, per_bucket);
504 #endif