- Memory cleanups, found with valgrind.
[make.git] / file.c
bloba0e82228b3adabe80ce16f0e8dd82229bc38a042
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 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 2, or (at your option) any later version.
11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along with
16 GNU Make; see the file COPYING. If not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */
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.
73 enter_file similar, but create one if there is none. */
75 struct file *
76 lookup_file (char *name)
78 register struct file *f;
79 struct file file_key;
80 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
81 register char *lname, *ln;
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 register char *n;
94 lname = (char *) malloc (strlen (name) + 1);
95 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
96 *ln = isupper ((unsigned char)*n) ? tolower ((unsigned char)*n) : *n;
97 *ln = '\0';
98 name = lname;
100 # endif
102 while (name[0] == '[' && name[1] == ']' && name[2] != '\0')
103 name += 2;
104 #endif
105 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
107 name += 2;
108 while (*name == '/')
109 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
110 ++name;
113 if (*name == '\0')
114 /* It was all slashes after a dot. */
115 #ifdef VMS
116 name = "[]";
117 #else
118 #ifdef _AMIGA
119 name = "";
120 #else
121 name = "./";
122 #endif /* AMIGA */
123 #endif /* VMS */
125 file_key.hname = name;
126 f = (struct file *) hash_find_item (&files, &file_key);
127 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
128 if (*name != '.')
129 free (lname);
130 #endif
131 return f;
134 struct file *
135 enter_file (char *name)
137 register struct file *f;
138 register struct file *new;
139 register struct file **file_slot;
140 struct file file_key;
141 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
142 char *lname, *ln;
143 #endif
145 assert (*name != '\0');
147 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
148 if (*name != '.')
150 register char *n;
151 lname = (char *) malloc (strlen (name) + 1);
152 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
154 if (isupper ((unsigned char)*n))
155 *ln = tolower ((unsigned char)*n);
156 else
157 *ln = *n;
160 *ln = 0;
161 /* Creates a possible leak, old value of name is unreachable, but I
162 currently don't know how to fix it. */
163 name = lname;
165 #endif
167 file_key.hname = name;
168 file_slot = (struct file **) hash_find_slot (&files, &file_key);
169 f = *file_slot;
170 if (! HASH_VACANT (f) && !f->double_colon)
172 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
173 if (*name != '.')
174 free (lname);
175 #endif
176 return f;
179 new = (struct file *) xmalloc (sizeof (struct file));
180 bzero ((char *) new, sizeof (struct file));
181 new->name = new->hname = name;
182 new->update_status = -1;
184 if (HASH_VACANT (f))
186 new->last = new;
187 hash_insert_at (&files, new, file_slot);
189 else
191 /* There is already a double-colon entry for this file. */
192 new->double_colon = f;
193 f->last->prev = new;
194 f->last = new;
197 return new;
200 /* Rename FILE to NAME. This is not as simple as resetting
201 the `name' member, since it must be put in a new hash bucket,
202 and possibly merged with an existing file called NAME. */
204 void
205 rename_file (struct file *from_file, char *to_hname)
207 rehash_file (from_file, to_hname);
208 while (from_file)
210 from_file->name = from_file->hname;
211 from_file = from_file->prev;
215 /* Rehash FILE to NAME. This is not as simple as resetting
216 the `hname' member, since it must be put in a new hash bucket,
217 and possibly merged with an existing file called NAME. */
219 void
220 rehash_file (struct file *from_file, char *to_hname)
222 struct file file_key;
223 struct file **file_slot;
224 struct file *to_file;
225 struct file *deleted_file;
226 struct file *f;
228 file_key.hname = to_hname;
229 if (0 == file_hash_cmp (from_file, &file_key))
230 return;
232 file_key.hname = from_file->hname;
233 while (from_file->renamed != 0)
234 from_file = from_file->renamed;
235 if (file_hash_cmp (from_file, &file_key))
236 /* hname changed unexpectedly */
237 abort ();
239 deleted_file = hash_delete (&files, from_file);
240 if (deleted_file != from_file)
241 /* from_file isn't the one stored in files */
242 abort ();
244 file_key.hname = to_hname;
245 file_slot = (struct file **) hash_find_slot (&files, &file_key);
246 to_file = *file_slot;
248 from_file->hname = to_hname;
249 for (f = from_file->double_colon; f != 0; f = f->prev)
250 f->hname = to_hname;
252 if (HASH_VACANT (to_file))
253 hash_insert_at (&files, from_file, file_slot);
254 else
256 /* TO_FILE already exists under TO_HNAME.
257 We must retain TO_FILE and merge FROM_FILE into it. */
259 if (from_file->cmds != 0)
261 if (to_file->cmds == 0)
262 to_file->cmds = from_file->cmds;
263 else if (from_file->cmds != to_file->cmds)
265 /* We have two sets of commands. We will go with the
266 one given in the rule explicitly mentioning this name,
267 but give a message to let the user know what's going on. */
268 if (to_file->cmds->fileinfo.filenm != 0)
269 error (&from_file->cmds->fileinfo,
270 _("Commands were specified for file `%s' at %s:%lu,"),
271 from_file->name, to_file->cmds->fileinfo.filenm,
272 to_file->cmds->fileinfo.lineno);
273 else
274 error (&from_file->cmds->fileinfo,
275 _("Commands for file `%s' were found by implicit rule search,"),
276 from_file->name);
277 error (&from_file->cmds->fileinfo,
278 _("but `%s' is now considered the same file as `%s'."),
279 from_file->name, to_hname);
280 error (&from_file->cmds->fileinfo,
281 _("Commands for `%s' will be ignored in favor of those for `%s'."),
282 to_hname, from_file->name);
286 /* Merge the dependencies of the two files. */
288 if (to_file->deps == 0)
289 to_file->deps = from_file->deps;
290 else
292 register struct dep *deps = to_file->deps;
293 while (deps->next != 0)
294 deps = deps->next;
295 deps->next = from_file->deps;
298 merge_variable_set_lists (&to_file->variables, from_file->variables);
300 if (to_file->double_colon && from_file->is_target && !from_file->double_colon)
301 fatal (NILF, _("can't rename single-colon `%s' to double-colon `%s'"),
302 from_file->name, to_hname);
303 if (!to_file->double_colon && from_file->double_colon)
305 if (to_file->is_target)
306 fatal (NILF, _("can't rename double-colon `%s' to single-colon `%s'"),
307 from_file->name, to_hname);
308 else
309 to_file->double_colon = from_file->double_colon;
312 if (from_file->last_mtime > to_file->last_mtime)
313 /* %%% Kludge so -W wins on a file that gets vpathized. */
314 to_file->last_mtime = from_file->last_mtime;
316 to_file->mtime_before_update = from_file->mtime_before_update;
318 #define MERGE(field) to_file->field |= from_file->field
319 MERGE (precious);
320 MERGE (tried_implicit);
321 MERGE (updating);
322 MERGE (updated);
323 MERGE (is_target);
324 MERGE (cmd_target);
325 MERGE (phony);
326 MERGE (ignore_vpath);
327 #undef MERGE
329 from_file->renamed = to_file;
333 /* Remove all nonprecious intermediate files.
334 If SIG is nonzero, this was caused by a fatal signal,
335 meaning that a different message will be printed, and
336 the message will go to stderr rather than stdout. */
338 void
339 remove_intermediates (int sig)
341 register struct file **file_slot;
342 register struct file **file_end;
343 int doneany = 0;
345 /* If there's no way we will ever remove anything anyway, punt early. */
346 if (question_flag || touch_flag || all_secondary)
347 return;
349 if (sig && just_print_flag)
350 return;
352 file_slot = (struct file **) files.ht_vec;
353 file_end = file_slot + files.ht_size;
354 for ( ; file_slot < file_end; file_slot++)
355 if (! HASH_VACANT (*file_slot))
357 register struct file *f = *file_slot;
358 /* Is this file eligible for automatic deletion?
359 Yes, IFF: it's marked intermediate, it's not secondary, it wasn't
360 given on the command-line, and it's either a -include makefile or
361 it's not precious. */
362 if (f->intermediate && (f->dontcare || !f->precious)
363 && !f->secondary && !f->cmd_target)
365 int status;
366 if (f->update_status == -1)
367 /* If nothing would have created this file yet,
368 don't print an "rm" command for it. */
369 continue;
370 if (just_print_flag)
371 status = 0;
372 else
374 status = unlink (f->name);
375 if (status < 0 && errno == ENOENT)
376 continue;
378 if (!f->dontcare)
380 if (sig)
381 error (NILF, _("*** Deleting intermediate file `%s'"), f->name);
382 else
384 if (! doneany)
385 DB (DB_BASIC, (_("Removing intermediate files...\n")));
386 if (!silent_flag)
388 if (! doneany)
390 fputs ("rm ", stdout);
391 doneany = 1;
393 else
394 putchar (' ');
395 fputs (f->name, stdout);
396 fflush (stdout);
399 if (status < 0)
400 perror_with_name ("unlink: ", f->name);
405 if (doneany && !sig)
407 putchar ('\n');
408 fflush (stdout);
412 struct dep *
413 parse_prereqs (char *p)
415 struct dep *new = (struct dep *)
416 multi_glob (parse_file_seq (&p, '|', sizeof (struct dep), 1),
417 sizeof (struct dep));
419 if (*p)
421 /* Files that follow '|' are "order-only" prerequisites that satisfy the
422 dependency by existing: their modification times are irrelevant. */
423 struct dep *ood;
425 ++p;
426 ood = (struct dep *)
427 multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
428 sizeof (struct dep));
430 if (! new)
431 new = ood;
432 else
434 struct dep *dp;
435 for (dp = new; dp->next != NULL; dp = dp->next)
437 dp->next = ood;
440 for (; ood != NULL; ood = ood->next)
441 ood->ignore_mtime = 1;
444 return new;
448 /* Set the intermediate flag. */
450 static void
451 set_intermediate (const void *item)
453 struct file *f = (struct file *) item;
454 f->intermediate = 1;
457 /* Expand and parse each dependency line. */
458 static void
459 expand_deps (struct file *f)
461 struct dep *d;
462 struct dep *old = f->deps;
463 unsigned int last_dep_has_cmds = f->updating;
464 int initialized = 0;
466 f->updating = 0;
467 f->deps = 0;
469 for (d = old; d != 0; d = d->next)
471 struct dep *new, *d1;
472 char *p;
474 if (! d->name)
475 continue;
477 /* Create the dependency list.
478 If we're not doing 2nd expansion, then it's just the name. */
479 if (! d->need_2nd_expansion)
480 p = d->name;
481 else
483 /* If it's from a static pattern rule, convert the patterns into
484 "$*" so they'll expand properly. */
485 if (d->staticpattern)
487 char *o;
488 char *buffer = variable_expand ("");
490 o = subst_expand (buffer, d->name, "%", "$*", 1, 2, 0);
492 free (d->name);
493 d->name = savestring (buffer, o - buffer);
494 d->staticpattern = 0;
497 /* We are going to do second expansion so initialize file variables
498 for the file. */
499 if (!initialized)
501 initialize_file_variables (f, 0);
502 initialized = 1;
505 set_file_variables (f);
507 p = variable_expand_for_file (d->name, f);
510 /* Parse the prerequisites. */
511 new = parse_prereqs (p);
513 /* If this dep list was from a static pattern rule, expand the %s. We
514 use patsubst_expand to translate the prerequisites' patterns into
515 plain prerequisite names. */
516 if (new && d->staticpattern)
518 char *pattern = "%";
519 char *buffer = variable_expand ("");
520 struct dep *dp = new, *dl = 0;
522 while (dp != 0)
524 char *percent = find_percent (dp->name);
525 if (percent)
527 /* We have to handle empty stems specially, because that
528 would be equivalent to $(patsubst %,dp->name,) which
529 will always be empty. */
530 if (f->stem[0] == '\0')
531 /* This needs memmove() in ISO C. */
532 bcopy (percent+1, percent, strlen (percent));
533 else
535 char *o = patsubst_expand (buffer, f->stem, pattern,
536 dp->name, pattern+1,
537 percent+1);
538 if (o == buffer)
539 dp->name[0] = '\0';
540 else
542 free (dp->name);
543 dp->name = savestring (buffer, o - buffer);
547 /* If the name expanded to the empty string, ignore it. */
548 if (dp->name[0] == '\0')
550 struct dep *df = dp;
551 if (dp == new)
552 dp = new = new->next;
553 else
554 dp = dl->next = dp->next;
555 free ((char *)df);
556 continue;
559 dl = dp;
560 dp = dp->next;
564 /* Enter them as files. */
565 for (d1 = new; d1 != 0; d1 = d1->next)
567 d1->file = lookup_file (d1->name);
568 if (d1->file == 0)
569 d1->file = enter_file (d1->name);
570 else
571 free (d1->name);
572 d1->name = 0;
573 d1->staticpattern = 0;
574 d1->need_2nd_expansion = 0;
577 /* Add newly parsed deps to f->deps. If this is the last dependency
578 line and this target has commands then put it in front so the
579 last dependency line (the one with commands) ends up being the
580 first. This is important because people expect $< to hold first
581 prerequisite from the rule with commands. If it is not the last
582 dependency line or the rule does not have commands then link it
583 at the end so it appears in makefile order. */
585 if (new != 0)
587 if (d->next == 0 && last_dep_has_cmds)
589 struct dep **d_ptr;
590 for (d_ptr = &new; *d_ptr; d_ptr = &(*d_ptr)->next)
593 *d_ptr = f->deps;
594 f->deps = new;
596 else
598 struct dep **d_ptr;
599 for (d_ptr = &f->deps; *d_ptr; d_ptr = &(*d_ptr)->next)
602 *d_ptr = new;
607 free_ns_chain ((struct nameseq *) old);
610 /* For each dependency of each file, make the `struct dep' point
611 at the appropriate `struct file' (which may have to be created).
613 Also mark the files depended on by .PRECIOUS, .PHONY, .SILENT,
614 and various other special targets. */
616 void
617 snap_deps (void)
619 struct file *f;
620 struct file *f2;
621 struct dep *d;
622 struct file **file_slot_0;
623 struct file **file_slot;
624 struct file **file_end;
626 /* Perform second expansion and enter each dependency
627 name as a file. */
629 /* Expand .SUFFIXES first; it's dependencies are used for
630 $$* calculation. */
631 for (f = lookup_file (".SUFFIXES"); f != 0; f = f->prev)
632 expand_deps (f);
634 /* We must use hash_dump (), because within this loop
635 we might add new files to the table, possibly causing
636 an in-situ table expansion. */
637 file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
638 file_end = file_slot_0 + files.ht_fill;
639 for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
640 for (f = *file_slot; f != 0; f = f->prev)
642 if (strcmp (f->name, ".SUFFIXES") != 0)
643 expand_deps (f);
645 free (file_slot_0);
647 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
648 for (d = f->deps; d != 0; d = d->next)
649 for (f2 = d->file; f2 != 0; f2 = f2->prev)
650 f2->precious = 1;
652 for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
653 for (d = f->deps; d != 0; d = d->next)
654 for (f2 = d->file; f2 != 0; f2 = f2->prev)
655 f2->low_resolution_time = 1;
657 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
658 for (d = f->deps; d != 0; d = d->next)
659 for (f2 = d->file; f2 != 0; f2 = f2->prev)
661 /* Mark this file as phony nonexistent target. */
662 f2->phony = 1;
663 f2->is_target = 1;
664 f2->last_mtime = NONEXISTENT_MTIME;
665 f2->mtime_before_update = NONEXISTENT_MTIME;
668 for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
670 /* .INTERMEDIATE with deps listed
671 marks those deps as intermediate files. */
672 for (d = f->deps; d != 0; d = d->next)
673 for (f2 = d->file; f2 != 0; f2 = f2->prev)
674 f2->intermediate = 1;
675 /* .INTERMEDIATE with no deps does nothing.
676 Marking all files as intermediates is useless
677 since the goal targets would be deleted after they are built. */
680 for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
682 /* .SECONDARY with deps listed
683 marks those deps as intermediate files
684 in that they don't get rebuilt if not actually needed;
685 but unlike real intermediate files,
686 these are not deleted after make finishes. */
687 if (f->deps)
688 for (d = f->deps; d != 0; d = d->next)
689 for (f2 = d->file; f2 != 0; f2 = f2->prev)
690 f2->intermediate = f2->secondary = 1;
691 /* .SECONDARY with no deps listed marks *all* files that way. */
692 else
694 all_secondary = 1;
695 hash_map (&files, set_intermediate);
699 f = lookup_file (".EXPORT_ALL_VARIABLES");
700 if (f != 0 && f->is_target)
701 export_all_variables = 1;
703 f = lookup_file (".IGNORE");
704 if (f != 0 && f->is_target)
706 if (f->deps == 0)
707 ignore_errors_flag = 1;
708 else
709 for (d = f->deps; d != 0; d = d->next)
710 for (f2 = d->file; f2 != 0; f2 = f2->prev)
711 f2->command_flags |= COMMANDS_NOERROR;
714 f = lookup_file (".SILENT");
715 if (f != 0 && f->is_target)
717 if (f->deps == 0)
718 silent_flag = 1;
719 else
720 for (d = f->deps; d != 0; d = d->next)
721 for (f2 = d->file; f2 != 0; f2 = f2->prev)
722 f2->command_flags |= COMMANDS_SILENT;
725 f = lookup_file (".NOTPARALLEL");
726 if (f != 0 && f->is_target)
727 not_parallel = 1;
729 #ifndef NO_MINUS_C_MINUS_O
730 /* If .POSIX was defined, remove OUTPUT_OPTION to comply. */
731 /* This needs more work: what if the user sets this in the makefile?
732 if (posix_pedantic)
733 define_variable (STRING_SIZE_TUPLE("OUTPUT_OPTION"), "", o_default, 1);
735 #endif
737 /* Remember that we've done this. */
738 snapped_deps = 1;
741 /* Set the `command_state' member of FILE and all its `also_make's. */
743 void
744 set_command_state (struct file *file, enum cmd_state state)
746 struct dep *d;
748 file->command_state = state;
750 for (d = file->also_make; d != 0; d = d->next)
751 d->file->command_state = state;
754 /* Convert an external file timestamp to internal form. */
756 FILE_TIMESTAMP
757 file_timestamp_cons (const char *fname, time_t s, int ns)
759 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
760 FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
761 FILE_TIMESTAMP ts = product + offset;
763 if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
764 && product <= ts && ts <= ORDINARY_MTIME_MAX))
766 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
767 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
768 file_timestamp_sprintf (buf, ts);
769 error (NILF, _("%s: Timestamp out of range; substituting %s"),
770 fname ? fname : _("Current time"), buf);
773 return ts;
776 /* Return the current time as a file timestamp, setting *RESOLUTION to
777 its resolution. */
778 FILE_TIMESTAMP
779 file_timestamp_now (int *resolution)
781 int r;
782 time_t s;
783 int ns;
785 /* Don't bother with high-resolution clocks if file timestamps have
786 only one-second resolution. The code below should work, but it's
787 not worth the hassle of debugging it on hosts where it fails. */
788 #if FILE_TIMESTAMP_HI_RES
789 # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
791 struct timespec timespec;
792 if (clock_gettime (CLOCK_REALTIME, &timespec) == 0)
794 r = 1;
795 s = timespec.tv_sec;
796 ns = timespec.tv_nsec;
797 goto got_time;
800 # endif
801 # if HAVE_GETTIMEOFDAY
803 struct timeval timeval;
804 if (gettimeofday (&timeval, 0) == 0)
806 r = 1000;
807 s = timeval.tv_sec;
808 ns = timeval.tv_usec * 1000;
809 goto got_time;
812 # endif
813 #endif
815 r = 1000000000;
816 s = time ((time_t *) 0);
817 ns = 0;
819 #if FILE_TIMESTAMP_HI_RES
820 got_time:
821 #endif
822 *resolution = r;
823 return file_timestamp_cons (0, s, ns);
826 /* Place into the buffer P a printable representation of the file
827 timestamp TS. */
828 void
829 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
831 time_t t = FILE_TIMESTAMP_S (ts);
832 struct tm *tm = localtime (&t);
834 if (tm)
835 sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
836 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
837 tm->tm_hour, tm->tm_min, tm->tm_sec);
838 else if (t < 0)
839 sprintf (p, "%ld", (long) t);
840 else
841 sprintf (p, "%lu", (unsigned long) t);
842 p += strlen (p);
844 /* Append nanoseconds as a fraction, but remove trailing zeros.
845 We don't know the actual timestamp resolution, since clock_getres
846 applies only to local times, whereas this timestamp might come
847 from a remote filesystem. So removing trailing zeros is the
848 best guess that we can do. */
849 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
850 p += strlen (p) - 1;
851 while (*p == '0')
852 p--;
853 p += *p != '.';
855 *p = '\0';
858 /* Print the data base of files. */
860 static void
861 print_file (const void *item)
863 struct file *f = (struct file *) item;
864 struct dep *d;
865 struct dep *ood = 0;
867 putchar ('\n');
868 if (!f->is_target)
869 puts (_("# Not a target:"));
870 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
872 /* Print all normal dependencies; note any order-only deps. */
873 for (d = f->deps; d != 0; d = d->next)
874 if (! d->ignore_mtime)
875 printf (" %s", dep_name (d));
876 else if (! ood)
877 ood = d;
879 /* Print order-only deps, if we have any. */
880 if (ood)
882 printf (" | %s", dep_name (ood));
883 for (d = ood->next; d != 0; d = d->next)
884 if (d->ignore_mtime)
885 printf (" %s", dep_name (d));
888 putchar ('\n');
890 if (f->precious)
891 puts (_("# Precious file (prerequisite of .PRECIOUS)."));
892 if (f->phony)
893 puts (_("# Phony target (prerequisite of .PHONY)."));
894 if (f->cmd_target)
895 puts (_("# Command-line target."));
896 if (f->dontcare)
897 puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
898 puts (f->tried_implicit
899 ? _("# Implicit rule search has been done.")
900 : _("# Implicit rule search has not been done."));
901 if (f->stem != 0)
902 printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
903 if (f->intermediate)
904 puts (_("# File is an intermediate prerequisite."));
905 if (f->also_make != 0)
907 fputs (_("# Also makes:"), stdout);
908 for (d = f->also_make; d != 0; d = d->next)
909 printf (" %s", dep_name (d));
910 putchar ('\n');
912 if (f->last_mtime == UNKNOWN_MTIME)
913 puts (_("# Modification time never checked."));
914 else if (f->last_mtime == NONEXISTENT_MTIME)
915 puts (_("# File does not exist."));
916 else if (f->last_mtime == OLD_MTIME)
917 puts (_("# File is very old."));
918 else
920 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
921 file_timestamp_sprintf (buf, f->last_mtime);
922 printf (_("# Last modified %s\n"), buf);
924 puts (f->updated
925 ? _("# File has been updated.") : _("# File has not been updated."));
926 switch (f->command_state)
928 case cs_running:
929 puts (_("# Commands currently running (THIS IS A BUG)."));
930 break;
931 case cs_deps_running:
932 puts (_("# Dependencies commands running (THIS IS A BUG)."));
933 break;
934 case cs_not_started:
935 case cs_finished:
936 switch (f->update_status)
938 case -1:
939 break;
940 case 0:
941 puts (_("# Successfully updated."));
942 break;
943 case 1:
944 assert (question_flag);
945 puts (_("# Needs to be updated (-q is set)."));
946 break;
947 case 2:
948 puts (_("# Failed to be updated."));
949 break;
950 default:
951 puts (_("# Invalid value in `update_status' member!"));
952 fflush (stdout);
953 fflush (stderr);
954 abort ();
956 break;
957 default:
958 puts (_("# Invalid value in `command_state' member!"));
959 fflush (stdout);
960 fflush (stderr);
961 abort ();
964 if (f->variables != 0)
965 print_file_variables (f);
967 if (f->cmds != 0)
968 print_commands (f->cmds);
970 if (f->prev)
971 print_file ((const void *) f->prev);
974 void
975 print_file_data_base (void)
977 puts (_("\n# Files"));
979 hash_map (&files, print_file);
981 fputs (_("\n# files hash-table stats:\n# "), stdout);
982 hash_print_stats (&files, stdout);
985 #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
987 char *
988 build_target_list (char *value)
990 static unsigned long last_targ_count = 0;
992 if (files.ht_fill != last_targ_count)
994 unsigned long max = EXPANSION_INCREMENT (strlen (value));
995 unsigned long len;
996 char *p;
997 struct file **fp = (struct file **) files.ht_vec;
998 struct file **end = &fp[files.ht_size];
1000 /* Make sure we have at least MAX bytes in the allocated buffer. */
1001 value = xrealloc (value, max);
1003 p = value;
1004 len = 0;
1005 for (; fp < end; ++fp)
1006 if (!HASH_VACANT (*fp) && (*fp)->is_target)
1008 struct file *f = *fp;
1009 int l = strlen (f->name);
1011 len += l + 1;
1012 if (len > max)
1014 unsigned long off = p - value;
1016 max += EXPANSION_INCREMENT (l + 1);
1017 value = xrealloc (value, max);
1018 p = &value[off];
1021 bcopy (f->name, p, l);
1022 p += l;
1023 *(p++) = ' ';
1025 *(p-1) = '\0';
1027 last_targ_count = files.ht_fill;
1030 return value;
1033 void
1034 init_hash_files (void)
1036 hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
1039 /* EOF */