* Update to GPLv3
[make.git] / file.c
blob96aad1d2b31c4059be92e1d0aa31e7930ce11fba
1 /* Target file management for GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
4 Foundation, Inc.
5 This file is part of GNU Make.
7 GNU Make is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 3 of the License, or (at your option) any later
10 version.
12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along with
17 this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "make.h"
21 #include <assert.h>
23 #include "dep.h"
24 #include "filedef.h"
25 #include "job.h"
26 #include "commands.h"
27 #include "variable.h"
28 #include "debug.h"
29 #include "hash.h"
32 /* Remember whether snap_deps has been invoked: we need this to be sure we
33 don't add new rules (via $(eval ...)) afterwards. In the future it would
34 be nice to support this, but it means we'd need to re-run snap_deps() or
35 at least its functionality... it might mean changing snap_deps() to be run
36 per-file, so we can invoke it after the eval... or remembering which files
37 in the hash have been snapped (a new boolean flag?) and having snap_deps()
38 only work on files which have not yet been snapped. */
39 int snapped_deps = 0;
41 /* Hash table of files the makefile knows how to make. */
43 static unsigned long
44 file_hash_1 (const void *key)
46 return_ISTRING_HASH_1 (((struct file const *) key)->hname);
49 static unsigned long
50 file_hash_2 (const void *key)
52 return_ISTRING_HASH_2 (((struct file const *) key)->hname);
55 static int
56 file_hash_cmp (const void *x, const void *y)
58 return_ISTRING_COMPARE (((struct file const *) x)->hname,
59 ((struct file const *) y)->hname);
62 #ifndef FILE_BUCKETS
63 #define FILE_BUCKETS 1007
64 #endif
65 static struct hash_table files;
67 /* Whether or not .SECONDARY with no prerequisites was given. */
68 static int all_secondary = 0;
70 /* Access the hash table of all file records.
71 lookup_file given a name, return the struct file * for that name,
72 or nil if there is none.
75 struct file *
76 lookup_file (const char *name)
78 struct file *f;
79 struct file file_key;
80 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
81 char *lname;
82 #endif
84 assert (*name != '\0');
86 /* This is also done in parse_file_seq, so this is redundant
87 for names read from makefiles. It is here for names passed
88 on the command line. */
89 #ifdef VMS
90 # ifndef WANT_CASE_SENSITIVE_TARGETS
91 if (*name != '.')
93 const char *n;
94 char *ln;
95 lname = xstrdup (name);
96 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
97 *ln = isupper ((unsigned char)*n) ? tolower ((unsigned char)*n) : *n;
98 *ln = '\0';
99 name = lname;
101 # endif
103 while (name[0] == '[' && name[1] == ']' && name[2] != '\0')
104 name += 2;
105 #endif
106 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
108 name += 2;
109 while (*name == '/')
110 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
111 ++name;
114 if (*name == '\0')
115 /* It was all slashes after a dot. */
116 #if defined(VMS)
117 name = "[]";
118 #elif defined(_AMIGA)
119 name = "";
120 #else
121 name = "./";
122 #endif
124 file_key.hname = name;
125 f = hash_find_item (&files, &file_key);
126 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
127 if (*name != '.')
128 free (lname);
129 #endif
131 return f;
134 /* Look up a file record for file NAME and return it.
135 Create a new record if one doesn't exist. NAME will be stored in the
136 new record so it should be constant or in the strcache etc.
139 struct file *
140 enter_file (const char *name)
142 struct file *f;
143 struct file *new;
144 struct file **file_slot;
145 struct file file_key;
147 assert (*name != '\0');
148 assert (strcache_iscached (name));
150 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
151 if (*name != '.')
153 const char *n;
154 char *lname, *ln;
155 lname = xstrdup (name);
156 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
157 if (isupper ((unsigned char)*n))
158 *ln = tolower ((unsigned char)*n);
159 else
160 *ln = *n;
162 *ln = '\0';
163 name = strcache_add (lname);
164 free (lname);
166 #endif
168 file_key.hname = name;
169 file_slot = (struct file **) hash_find_slot (&files, &file_key);
170 f = *file_slot;
171 if (! HASH_VACANT (f) && !f->double_colon)
172 return f;
174 new = xmalloc (sizeof (struct file));
175 memset (new, '\0', sizeof (struct file));
176 new->name = new->hname = name;
177 new->update_status = -1;
179 if (HASH_VACANT (f))
181 new->last = new;
182 hash_insert_at (&files, new, file_slot);
184 else
186 /* There is already a double-colon entry for this file. */
187 new->double_colon = f;
188 f->last->prev = new;
189 f->last = new;
192 return new;
195 /* Rehash FILE to NAME. This is not as simple as resetting
196 the `hname' member, since it must be put in a new hash bucket,
197 and possibly merged with an existing file called NAME. */
199 void
200 rehash_file (struct file *from_file, const char *to_hname)
202 struct file file_key;
203 struct file **file_slot;
204 struct file *to_file;
205 struct file *deleted_file;
206 struct file *f;
208 /* If it's already that name, we're done. */
209 file_key.hname = to_hname;
210 if (! file_hash_cmp (from_file, &file_key))
211 return;
213 /* Find the end of the renamed list for the "from" file. */
214 file_key.hname = from_file->hname;
215 while (from_file->renamed != 0)
216 from_file = from_file->renamed;
217 if (file_hash_cmp (from_file, &file_key))
218 /* hname changed unexpectedly!! */
219 abort ();
221 /* Remove the "from" file from the hash. */
222 deleted_file = hash_delete (&files, from_file);
223 if (deleted_file != from_file)
224 /* from_file isn't the one stored in files */
225 abort ();
227 /* Find where the newly renamed file will go in the hash. */
228 file_key.hname = to_hname;
229 file_slot = (struct file **) hash_find_slot (&files, &file_key);
230 to_file = *file_slot;
232 /* Change the hash name for this file. */
233 from_file->hname = to_hname;
234 for (f = from_file->double_colon; f != 0; f = f->prev)
235 f->hname = to_hname;
237 /* If the new name doesn't exist yet just set it to the renamed file. */
238 if (HASH_VACANT (to_file))
240 hash_insert_at (&files, from_file, file_slot);
241 return;
244 /* TO_FILE already exists under TO_HNAME.
245 We must retain TO_FILE and merge FROM_FILE into it. */
247 if (from_file->cmds != 0)
249 if (to_file->cmds == 0)
250 to_file->cmds = from_file->cmds;
251 else if (from_file->cmds != to_file->cmds)
253 /* We have two sets of commands. We will go with the
254 one given in the rule explicitly mentioning this name,
255 but give a message to let the user know what's going on. */
256 if (to_file->cmds->fileinfo.filenm != 0)
257 error (&from_file->cmds->fileinfo,
258 _("Commands were specified for file `%s' at %s:%lu,"),
259 from_file->name, to_file->cmds->fileinfo.filenm,
260 to_file->cmds->fileinfo.lineno);
261 else
262 error (&from_file->cmds->fileinfo,
263 _("Commands for file `%s' were found by implicit rule search,"),
264 from_file->name);
265 error (&from_file->cmds->fileinfo,
266 _("but `%s' is now considered the same file as `%s'."),
267 from_file->name, to_hname);
268 error (&from_file->cmds->fileinfo,
269 _("Commands for `%s' will be ignored in favor of those for `%s'."),
270 to_hname, from_file->name);
274 /* Merge the dependencies of the two files. */
276 if (to_file->deps == 0)
277 to_file->deps = from_file->deps;
278 else
280 struct dep *deps = to_file->deps;
281 while (deps->next != 0)
282 deps = deps->next;
283 deps->next = from_file->deps;
286 merge_variable_set_lists (&to_file->variables, from_file->variables);
288 if (to_file->double_colon && from_file->is_target && !from_file->double_colon)
289 fatal (NILF, _("can't rename single-colon `%s' to double-colon `%s'"),
290 from_file->name, to_hname);
291 if (!to_file->double_colon && from_file->double_colon)
293 if (to_file->is_target)
294 fatal (NILF, _("can't rename double-colon `%s' to single-colon `%s'"),
295 from_file->name, to_hname);
296 else
297 to_file->double_colon = from_file->double_colon;
300 if (from_file->last_mtime > to_file->last_mtime)
301 /* %%% Kludge so -W wins on a file that gets vpathized. */
302 to_file->last_mtime = from_file->last_mtime;
304 to_file->mtime_before_update = from_file->mtime_before_update;
306 #define MERGE(field) to_file->field |= from_file->field
307 MERGE (precious);
308 MERGE (tried_implicit);
309 MERGE (updating);
310 MERGE (updated);
311 MERGE (is_target);
312 MERGE (cmd_target);
313 MERGE (phony);
314 MERGE (ignore_vpath);
315 #undef MERGE
317 from_file->renamed = to_file;
320 /* Rename FILE to NAME. This is not as simple as resetting
321 the `name' member, since it must be put in a new hash bucket,
322 and possibly merged with an existing file called NAME. */
324 void
325 rename_file (struct file *from_file, const char *to_hname)
327 rehash_file (from_file, to_hname);
328 while (from_file)
330 from_file->name = from_file->hname;
331 from_file = from_file->prev;
335 /* Remove all nonprecious intermediate files.
336 If SIG is nonzero, this was caused by a fatal signal,
337 meaning that a different message will be printed, and
338 the message will go to stderr rather than stdout. */
340 void
341 remove_intermediates (int sig)
343 struct file **file_slot;
344 struct file **file_end;
345 int doneany = 0;
347 /* If there's no way we will ever remove anything anyway, punt early. */
348 if (question_flag || touch_flag || all_secondary)
349 return;
351 if (sig && just_print_flag)
352 return;
354 file_slot = (struct file **) files.ht_vec;
355 file_end = file_slot + files.ht_size;
356 for ( ; file_slot < file_end; file_slot++)
357 if (! HASH_VACANT (*file_slot))
359 struct file *f = *file_slot;
360 /* Is this file eligible for automatic deletion?
361 Yes, IFF: it's marked intermediate, it's not secondary, it wasn't
362 given on the command-line, and it's either a -include makefile or
363 it's not precious. */
364 if (f->intermediate && (f->dontcare || !f->precious)
365 && !f->secondary && !f->cmd_target)
367 int status;
368 if (f->update_status == -1)
369 /* If nothing would have created this file yet,
370 don't print an "rm" command for it. */
371 continue;
372 if (just_print_flag)
373 status = 0;
374 else
376 status = unlink (f->name);
377 if (status < 0 && errno == ENOENT)
378 continue;
380 if (!f->dontcare)
382 if (sig)
383 error (NILF, _("*** Deleting intermediate file `%s'"), f->name);
384 else
386 if (! doneany)
387 DB (DB_BASIC, (_("Removing intermediate files...\n")));
388 if (!silent_flag)
390 if (! doneany)
392 fputs ("rm ", stdout);
393 doneany = 1;
395 else
396 putchar (' ');
397 fputs (f->name, stdout);
398 fflush (stdout);
401 if (status < 0)
402 perror_with_name ("unlink: ", f->name);
407 if (doneany && !sig)
409 putchar ('\n');
410 fflush (stdout);
414 struct dep *
415 parse_prereqs (char *p)
417 struct dep *new = (struct dep *)
418 multi_glob (parse_file_seq (&p, '|', sizeof (struct dep), 1),
419 sizeof (struct dep));
421 if (*p)
423 /* Files that follow '|' are "order-only" prerequisites that satisfy the
424 dependency by existing: their modification times are irrelevant. */
425 struct dep *ood;
427 ++p;
428 ood = (struct dep *)
429 multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
430 sizeof (struct dep));
432 if (! new)
433 new = ood;
434 else
436 struct dep *dp;
437 for (dp = new; dp->next != NULL; dp = dp->next)
439 dp->next = ood;
442 for (; ood != NULL; ood = ood->next)
443 ood->ignore_mtime = 1;
446 return new;
449 /* Set the intermediate flag. */
451 static void
452 set_intermediate (const void *item)
454 struct file *f = (struct file *) item;
455 f->intermediate = 1;
458 /* Expand and parse each dependency line. */
459 static void
460 expand_deps (struct file *f)
462 struct dep *d;
463 struct dep *old = f->deps;
464 const char *file_stem = f->stem;
465 unsigned int last_dep_has_cmds = f->updating;
466 int initialized = 0;
468 f->updating = 0;
469 f->deps = 0;
471 for (d = old; d != 0; d = d->next)
473 struct dep *new, *d1;
474 char *p;
476 if (! d->name)
477 continue;
479 /* Create the dependency list.
480 If we're not doing 2nd expansion, then it's just the name. We will
481 still need to massage it though. */
482 if (! d->need_2nd_expansion)
484 p = variable_expand ("");
485 variable_buffer_output (p, d->name, strlen (d->name) + 1);
487 else
489 /* If it's from a static pattern rule, convert the patterns into
490 "$*" so they'll expand properly. */
491 if (d->staticpattern)
493 char *o;
494 char *buffer = variable_expand ("");
496 o = subst_expand (buffer, d->name, "%", "$*", 1, 2, 0);
498 d->name = strcache_add_len (buffer, o - buffer);
499 d->staticpattern = 0; /* Clear staticpattern so that we don't
500 re-expand %s below. */
503 /* We are going to do second expansion so initialize file variables
504 for the file. Since the stem for static pattern rules comes from
505 individual dep lines, we will temporarily set f->stem to d->stem.
507 if (!initialized)
509 initialize_file_variables (f, 0);
510 initialized = 1;
513 if (d->stem != 0)
514 f->stem = d->stem;
516 set_file_variables (f);
518 p = variable_expand_for_file (d->name, f);
520 if (d->stem != 0)
521 f->stem = file_stem;
524 /* Parse the prerequisites. */
525 new = parse_prereqs (p);
527 /* If this dep list was from a static pattern rule, expand the %s. We
528 use patsubst_expand to translate the prerequisites' patterns into
529 plain prerequisite names. */
530 if (new && d->staticpattern)
532 const char *pattern = "%";
533 char *buffer = variable_expand ("");
534 struct dep *dp = new, *dl = 0;
536 while (dp != 0)
538 char *percent;
539 int nl = strlen (dp->name) + 1;
540 char *nm = alloca (nl);
541 memcpy (nm, dp->name, nl);
542 percent = find_percent (nm);
543 if (percent)
545 char *o;
547 /* We have to handle empty stems specially, because that
548 would be equivalent to $(patsubst %,dp->name,) which
549 will always be empty. */
550 if (d->stem[0] == '\0')
552 memmove (percent, percent+1, strlen (percent));
553 o = variable_buffer_output (buffer, nm, strlen (nm) + 1);
555 else
556 o = patsubst_expand_pat (buffer, d->stem, pattern, nm,
557 pattern+1, percent+1);
559 /* If the name expanded to the empty string, ignore it. */
560 if (buffer[0] == '\0')
562 struct dep *df = dp;
563 if (dp == new)
564 dp = new = new->next;
565 else
566 dp = dl->next = dp->next;
567 free_dep (df);
568 continue;
571 /* Save the name. */
572 dp->name = strcache_add_len (buffer, o - buffer);
574 dl = dp;
575 dp = dp->next;
579 /* Enter them as files. */
580 for (d1 = new; d1 != 0; d1 = d1->next)
582 d1->file = lookup_file (d1->name);
583 if (d1->file == 0)
584 d1->file = enter_file (d1->name);
585 d1->name = 0;
586 d1->staticpattern = 0;
587 d1->need_2nd_expansion = 0;
590 /* Add newly parsed deps to f->deps. If this is the last dependency
591 line and this target has commands then put it in front so the
592 last dependency line (the one with commands) ends up being the
593 first. This is important because people expect $< to hold first
594 prerequisite from the rule with commands. If it is not the last
595 dependency line or the rule does not have commands then link it
596 at the end so it appears in makefile order. */
598 if (new != 0)
600 if (d->next == 0 && last_dep_has_cmds)
602 struct dep **d_ptr;
603 for (d_ptr = &new; *d_ptr; d_ptr = &(*d_ptr)->next)
606 *d_ptr = f->deps;
607 f->deps = new;
609 else
611 struct dep **d_ptr;
612 for (d_ptr = &f->deps; *d_ptr; d_ptr = &(*d_ptr)->next)
615 *d_ptr = new;
620 free_dep_chain (old);
623 /* For each dependency of each file, make the `struct dep' point
624 at the appropriate `struct file' (which may have to be created).
626 Also mark the files depended on by .PRECIOUS, .PHONY, .SILENT,
627 and various other special targets. */
629 void
630 snap_deps (void)
632 struct file *f;
633 struct file *f2;
634 struct dep *d;
635 struct file **file_slot_0;
636 struct file **file_slot;
637 struct file **file_end;
639 /* Perform second expansion and enter each dependency name as a file. */
641 /* Expand .SUFFIXES first; it's dependencies are used for $$* calculation. */
642 for (f = lookup_file (".SUFFIXES"); f != 0; f = f->prev)
643 expand_deps (f);
645 /* For every target that's not .SUFFIXES, expand its dependencies.
646 We must use hash_dump (), because within this loop we might add new files
647 to the table, possibly causing an in-situ table expansion. */
648 file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
649 file_end = file_slot_0 + files.ht_fill;
650 for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
651 for (f = *file_slot; f != 0; f = f->prev)
652 if (strcmp (f->name, ".SUFFIXES") != 0)
653 expand_deps (f);
654 free (file_slot_0);
656 /* Now manage all the special targets. */
658 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
659 for (d = f->deps; d != 0; d = d->next)
660 for (f2 = d->file; f2 != 0; f2 = f2->prev)
661 f2->precious = 1;
663 for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
664 for (d = f->deps; d != 0; d = d->next)
665 for (f2 = d->file; f2 != 0; f2 = f2->prev)
666 f2->low_resolution_time = 1;
668 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
669 for (d = f->deps; d != 0; d = d->next)
670 for (f2 = d->file; f2 != 0; f2 = f2->prev)
672 /* Mark this file as phony nonexistent target. */
673 f2->phony = 1;
674 f2->is_target = 1;
675 f2->last_mtime = NONEXISTENT_MTIME;
676 f2->mtime_before_update = NONEXISTENT_MTIME;
679 for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
680 /* Mark .INTERMEDIATE deps as intermediate files. */
681 for (d = f->deps; d != 0; d = d->next)
682 for (f2 = d->file; f2 != 0; f2 = f2->prev)
683 f2->intermediate = 1;
684 /* .INTERMEDIATE with no deps does nothing.
685 Marking all files as intermediates is useless since the goal targets
686 would be deleted after they are built. */
688 for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
689 /* Mark .SECONDARY deps as both intermediate and secondary. */
690 if (f->deps)
691 for (d = f->deps; d != 0; d = d->next)
692 for (f2 = d->file; f2 != 0; f2 = f2->prev)
693 f2->intermediate = f2->secondary = 1;
694 /* .SECONDARY with no deps listed marks *all* files that way. */
695 else
697 all_secondary = 1;
698 hash_map (&files, set_intermediate);
701 f = lookup_file (".EXPORT_ALL_VARIABLES");
702 if (f != 0 && f->is_target)
703 export_all_variables = 1;
705 f = lookup_file (".IGNORE");
706 if (f != 0 && f->is_target)
708 if (f->deps == 0)
709 ignore_errors_flag = 1;
710 else
711 for (d = f->deps; d != 0; d = d->next)
712 for (f2 = d->file; f2 != 0; f2 = f2->prev)
713 f2->command_flags |= COMMANDS_NOERROR;
716 f = lookup_file (".SILENT");
717 if (f != 0 && f->is_target)
719 if (f->deps == 0)
720 silent_flag = 1;
721 else
722 for (d = f->deps; d != 0; d = d->next)
723 for (f2 = d->file; f2 != 0; f2 = f2->prev)
724 f2->command_flags |= COMMANDS_SILENT;
727 f = lookup_file (".NOTPARALLEL");
728 if (f != 0 && f->is_target)
729 not_parallel = 1;
731 #ifndef NO_MINUS_C_MINUS_O
732 /* If .POSIX was defined, remove OUTPUT_OPTION to comply. */
733 /* This needs more work: what if the user sets this in the makefile?
734 if (posix_pedantic)
735 define_variable (STRING_SIZE_TUPLE("OUTPUT_OPTION"), "", o_default, 1);
737 #endif
739 /* Remember that we've done this. */
740 snapped_deps = 1;
743 /* Set the `command_state' member of FILE and all its `also_make's. */
745 void
746 set_command_state (struct file *file, enum cmd_state state)
748 struct dep *d;
750 file->command_state = state;
752 for (d = file->also_make; d != 0; d = d->next)
753 d->file->command_state = state;
756 /* Convert an external file timestamp to internal form. */
758 FILE_TIMESTAMP
759 file_timestamp_cons (const char *fname, time_t s, int ns)
761 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
762 FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
763 FILE_TIMESTAMP ts = product + offset;
765 if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
766 && product <= ts && ts <= ORDINARY_MTIME_MAX))
768 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
769 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
770 file_timestamp_sprintf (buf, ts);
771 error (NILF, _("%s: Timestamp out of range; substituting %s"),
772 fname ? fname : _("Current time"), buf);
775 return ts;
778 /* Return the current time as a file timestamp, setting *RESOLUTION to
779 its resolution. */
780 FILE_TIMESTAMP
781 file_timestamp_now (int *resolution)
783 int r;
784 time_t s;
785 int ns;
787 /* Don't bother with high-resolution clocks if file timestamps have
788 only one-second resolution. The code below should work, but it's
789 not worth the hassle of debugging it on hosts where it fails. */
790 #if FILE_TIMESTAMP_HI_RES
791 # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
793 struct timespec timespec;
794 if (clock_gettime (CLOCK_REALTIME, &timespec) == 0)
796 r = 1;
797 s = timespec.tv_sec;
798 ns = timespec.tv_nsec;
799 goto got_time;
802 # endif
803 # if HAVE_GETTIMEOFDAY
805 struct timeval timeval;
806 if (gettimeofday (&timeval, 0) == 0)
808 r = 1000;
809 s = timeval.tv_sec;
810 ns = timeval.tv_usec * 1000;
811 goto got_time;
814 # endif
815 #endif
817 r = 1000000000;
818 s = time ((time_t *) 0);
819 ns = 0;
821 #if FILE_TIMESTAMP_HI_RES
822 got_time:
823 #endif
824 *resolution = r;
825 return file_timestamp_cons (0, s, ns);
828 /* Place into the buffer P a printable representation of the file
829 timestamp TS. */
830 void
831 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
833 time_t t = FILE_TIMESTAMP_S (ts);
834 struct tm *tm = localtime (&t);
836 if (tm)
837 sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
838 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
839 tm->tm_hour, tm->tm_min, tm->tm_sec);
840 else if (t < 0)
841 sprintf (p, "%ld", (long) t);
842 else
843 sprintf (p, "%lu", (unsigned long) t);
844 p += strlen (p);
846 /* Append nanoseconds as a fraction, but remove trailing zeros. We don't
847 know the actual timestamp resolution, since clock_getres applies only to
848 local times, whereas this timestamp might come from a remote filesystem.
849 So removing trailing zeros is the best guess that we can do. */
850 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
851 p += strlen (p) - 1;
852 while (*p == '0')
853 p--;
854 p += *p != '.';
856 *p = '\0';
859 /* Print the data base of files. */
861 static void
862 print_file (const void *item)
864 const struct file *f = item;
865 struct dep *d;
866 struct dep *ood = 0;
868 putchar ('\n');
869 if (!f->is_target)
870 puts (_("# Not a target:"));
871 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
873 /* Print all normal dependencies; note any order-only deps. */
874 for (d = f->deps; d != 0; d = d->next)
875 if (! d->ignore_mtime)
876 printf (" %s", dep_name (d));
877 else if (! ood)
878 ood = d;
880 /* Print order-only deps, if we have any. */
881 if (ood)
883 printf (" | %s", dep_name (ood));
884 for (d = ood->next; d != 0; d = d->next)
885 if (d->ignore_mtime)
886 printf (" %s", dep_name (d));
889 putchar ('\n');
891 if (f->precious)
892 puts (_("# Precious file (prerequisite of .PRECIOUS)."));
893 if (f->phony)
894 puts (_("# Phony target (prerequisite of .PHONY)."));
895 if (f->cmd_target)
896 puts (_("# Command-line target."));
897 if (f->dontcare)
898 puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
899 puts (f->tried_implicit
900 ? _("# Implicit rule search has been done.")
901 : _("# Implicit rule search has not been done."));
902 if (f->stem != 0)
903 printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
904 if (f->intermediate)
905 puts (_("# File is an intermediate prerequisite."));
906 if (f->also_make != 0)
908 fputs (_("# Also makes:"), stdout);
909 for (d = f->also_make; d != 0; d = d->next)
910 printf (" %s", dep_name (d));
911 putchar ('\n');
913 if (f->last_mtime == UNKNOWN_MTIME)
914 puts (_("# Modification time never checked."));
915 else if (f->last_mtime == NONEXISTENT_MTIME)
916 puts (_("# File does not exist."));
917 else if (f->last_mtime == OLD_MTIME)
918 puts (_("# File is very old."));
919 else
921 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
922 file_timestamp_sprintf (buf, f->last_mtime);
923 printf (_("# Last modified %s\n"), buf);
925 puts (f->updated
926 ? _("# File has been updated.") : _("# File has not been updated."));
927 switch (f->command_state)
929 case cs_running:
930 puts (_("# Commands currently running (THIS IS A BUG)."));
931 break;
932 case cs_deps_running:
933 puts (_("# Dependencies commands running (THIS IS A BUG)."));
934 break;
935 case cs_not_started:
936 case cs_finished:
937 switch (f->update_status)
939 case -1:
940 break;
941 case 0:
942 puts (_("# Successfully updated."));
943 break;
944 case 1:
945 assert (question_flag);
946 puts (_("# Needs to be updated (-q is set)."));
947 break;
948 case 2:
949 puts (_("# Failed to be updated."));
950 break;
951 default:
952 puts (_("# Invalid value in `update_status' member!"));
953 fflush (stdout);
954 fflush (stderr);
955 abort ();
957 break;
958 default:
959 puts (_("# Invalid value in `command_state' member!"));
960 fflush (stdout);
961 fflush (stderr);
962 abort ();
965 if (f->variables != 0)
966 print_file_variables (f);
968 if (f->cmds != 0)
969 print_commands (f->cmds);
971 if (f->prev)
972 print_file ((const void *) f->prev);
975 void
976 print_file_data_base (void)
978 puts (_("\n# Files"));
980 hash_map (&files, print_file);
982 fputs (_("\n# files hash-table stats:\n# "), stdout);
983 hash_print_stats (&files, stdout);
986 /* Verify the integrity of the data base of files. */
988 #define VERIFY_CACHED(_p,_n) \
989 do{\
990 if (_p->_n && _p->_n[0] && !strcache_iscached (_p->_n)) \
991 printf ("%s: Field %s not cached: %s\n", _p->name, # _n, _p->_n); \
992 }while(0)
994 static void
995 verify_file (const void *item)
997 const struct file *f = item;
998 const struct dep *d;
1000 VERIFY_CACHED (f, name);
1001 VERIFY_CACHED (f, hname);
1002 VERIFY_CACHED (f, vpath);
1003 VERIFY_CACHED (f, stem);
1005 /* Check the deps. */
1006 for (d = f->deps; d != 0; d = d->next)
1008 VERIFY_CACHED (d, name);
1009 VERIFY_CACHED (d, stem);
1013 void
1014 verify_file_data_base (void)
1016 hash_map (&files, verify_file);
1019 #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
1021 char *
1022 build_target_list (char *value)
1024 static unsigned long last_targ_count = 0;
1026 if (files.ht_fill != last_targ_count)
1028 unsigned long max = EXPANSION_INCREMENT (strlen (value));
1029 unsigned long len;
1030 char *p;
1031 struct file **fp = (struct file **) files.ht_vec;
1032 struct file **end = &fp[files.ht_size];
1034 /* Make sure we have at least MAX bytes in the allocated buffer. */
1035 value = xrealloc (value, max);
1037 p = value;
1038 len = 0;
1039 for (; fp < end; ++fp)
1040 if (!HASH_VACANT (*fp) && (*fp)->is_target)
1042 struct file *f = *fp;
1043 int l = strlen (f->name);
1045 len += l + 1;
1046 if (len > max)
1048 unsigned long off = p - value;
1050 max += EXPANSION_INCREMENT (l + 1);
1051 value = xrealloc (value, max);
1052 p = &value[off];
1055 memcpy (p, f->name, l);
1056 p += l;
1057 *(p++) = ' ';
1059 *(p-1) = '\0';
1061 last_targ_count = files.ht_fill;
1064 return value;
1067 void
1068 init_hash_files (void)
1070 hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
1073 /* EOF */