Fix Savannah bug #20452.
[make.git] / file.c
blob303f192437c2b14bebe433d13c8993486138ab0a
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);
486 p = variable_buffer;
488 else
490 /* If it's from a static pattern rule, convert the patterns into
491 "$*" so they'll expand properly. */
492 if (d->staticpattern)
494 char *o;
495 char *buffer = variable_expand ("");
497 o = subst_expand (buffer, d->name, "%", "$*", 1, 2, 0);
499 d->name = strcache_add_len (variable_buffer,
500 o - variable_buffer);
501 d->staticpattern = 0; /* Clear staticpattern so that we don't
502 re-expand %s below. */
505 /* We are going to do second expansion so initialize file variables
506 for the file. Since the stem for static pattern rules comes from
507 individual dep lines, we will temporarily set f->stem to d->stem.
509 if (!initialized)
511 initialize_file_variables (f, 0);
512 initialized = 1;
515 if (d->stem != 0)
516 f->stem = d->stem;
518 set_file_variables (f);
520 p = variable_expand_for_file (d->name, f);
522 if (d->stem != 0)
523 f->stem = file_stem;
526 /* Parse the prerequisites. */
527 new = parse_prereqs (p);
529 /* If this dep list was from a static pattern rule, expand the %s. We
530 use patsubst_expand to translate the prerequisites' patterns into
531 plain prerequisite names. */
532 if (new && d->staticpattern)
534 const char *pattern = "%";
535 char *buffer = variable_expand ("");
536 struct dep *dp = new, *dl = 0;
538 while (dp != 0)
540 char *percent;
541 int nl = strlen (dp->name) + 1;
542 char *nm = alloca (nl);
543 memcpy (nm, dp->name, nl);
544 percent = find_percent (nm);
545 if (percent)
547 char *o;
549 /* We have to handle empty stems specially, because that
550 would be equivalent to $(patsubst %,dp->name,) which
551 will always be empty. */
552 if (d->stem[0] == '\0')
554 memmove (percent, percent+1, strlen (percent));
555 o = variable_buffer_output (buffer, nm, strlen (nm) + 1);
557 else
558 o = patsubst_expand_pat (buffer, d->stem, pattern, nm,
559 pattern+1, percent+1);
561 /* If the name expanded to the empty string, ignore it. */
562 if (buffer[0] == '\0')
564 struct dep *df = dp;
565 if (dp == new)
566 dp = new = new->next;
567 else
568 dp = dl->next = dp->next;
569 free_dep (df);
570 continue;
573 /* Save the name. */
574 dp->name = strcache_add_len (buffer, o - buffer);
576 dl = dp;
577 dp = dp->next;
581 /* Enter them as files. */
582 for (d1 = new; d1 != 0; d1 = d1->next)
584 d1->file = lookup_file (d1->name);
585 if (d1->file == 0)
586 d1->file = enter_file (d1->name);
587 d1->name = 0;
588 d1->staticpattern = 0;
589 d1->need_2nd_expansion = 0;
592 /* Add newly parsed deps to f->deps. If this is the last dependency
593 line and this target has commands then put it in front so the
594 last dependency line (the one with commands) ends up being the
595 first. This is important because people expect $< to hold first
596 prerequisite from the rule with commands. If it is not the last
597 dependency line or the rule does not have commands then link it
598 at the end so it appears in makefile order. */
600 if (new != 0)
602 if (d->next == 0 && last_dep_has_cmds)
604 struct dep **d_ptr;
605 for (d_ptr = &new; *d_ptr; d_ptr = &(*d_ptr)->next)
608 *d_ptr = f->deps;
609 f->deps = new;
611 else
613 struct dep **d_ptr;
614 for (d_ptr = &f->deps; *d_ptr; d_ptr = &(*d_ptr)->next)
617 *d_ptr = new;
622 free_dep_chain (old);
625 /* For each dependency of each file, make the `struct dep' point
626 at the appropriate `struct file' (which may have to be created).
628 Also mark the files depended on by .PRECIOUS, .PHONY, .SILENT,
629 and various other special targets. */
631 void
632 snap_deps (void)
634 struct file *f;
635 struct file *f2;
636 struct dep *d;
637 struct file **file_slot_0;
638 struct file **file_slot;
639 struct file **file_end;
641 /* Perform second expansion and enter each dependency name as a file. */
643 /* Expand .SUFFIXES first; it's dependencies are used for $$* calculation. */
644 for (f = lookup_file (".SUFFIXES"); f != 0; f = f->prev)
645 expand_deps (f);
647 /* For every target that's not .SUFFIXES, expand its dependencies.
648 We must use hash_dump (), because within this loop we might add new files
649 to the table, possibly causing an in-situ table expansion. */
650 file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
651 file_end = file_slot_0 + files.ht_fill;
652 for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
653 for (f = *file_slot; f != 0; f = f->prev)
654 if (strcmp (f->name, ".SUFFIXES") != 0)
655 expand_deps (f);
656 free (file_slot_0);
658 /* Now manage all the special targets. */
660 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
661 for (d = f->deps; d != 0; d = d->next)
662 for (f2 = d->file; f2 != 0; f2 = f2->prev)
663 f2->precious = 1;
665 for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
666 for (d = f->deps; d != 0; d = d->next)
667 for (f2 = d->file; f2 != 0; f2 = f2->prev)
668 f2->low_resolution_time = 1;
670 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
671 for (d = f->deps; d != 0; d = d->next)
672 for (f2 = d->file; f2 != 0; f2 = f2->prev)
674 /* Mark this file as phony nonexistent target. */
675 f2->phony = 1;
676 f2->is_target = 1;
677 f2->last_mtime = NONEXISTENT_MTIME;
678 f2->mtime_before_update = NONEXISTENT_MTIME;
681 for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
682 /* Mark .INTERMEDIATE deps as intermediate files. */
683 for (d = f->deps; d != 0; d = d->next)
684 for (f2 = d->file; f2 != 0; f2 = f2->prev)
685 f2->intermediate = 1;
686 /* .INTERMEDIATE with no deps does nothing.
687 Marking all files as intermediates is useless since the goal targets
688 would be deleted after they are built. */
690 for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
691 /* Mark .SECONDARY deps as both intermediate and secondary. */
692 if (f->deps)
693 for (d = f->deps; d != 0; d = d->next)
694 for (f2 = d->file; f2 != 0; f2 = f2->prev)
695 f2->intermediate = f2->secondary = 1;
696 /* .SECONDARY with no deps listed marks *all* files that way. */
697 else
699 all_secondary = 1;
700 hash_map (&files, set_intermediate);
703 f = lookup_file (".EXPORT_ALL_VARIABLES");
704 if (f != 0 && f->is_target)
705 export_all_variables = 1;
707 f = lookup_file (".IGNORE");
708 if (f != 0 && f->is_target)
710 if (f->deps == 0)
711 ignore_errors_flag = 1;
712 else
713 for (d = f->deps; d != 0; d = d->next)
714 for (f2 = d->file; f2 != 0; f2 = f2->prev)
715 f2->command_flags |= COMMANDS_NOERROR;
718 f = lookup_file (".SILENT");
719 if (f != 0 && f->is_target)
721 if (f->deps == 0)
722 silent_flag = 1;
723 else
724 for (d = f->deps; d != 0; d = d->next)
725 for (f2 = d->file; f2 != 0; f2 = f2->prev)
726 f2->command_flags |= COMMANDS_SILENT;
729 f = lookup_file (".NOTPARALLEL");
730 if (f != 0 && f->is_target)
731 not_parallel = 1;
733 #ifndef NO_MINUS_C_MINUS_O
734 /* If .POSIX was defined, remove OUTPUT_OPTION to comply. */
735 /* This needs more work: what if the user sets this in the makefile?
736 if (posix_pedantic)
737 define_variable (STRING_SIZE_TUPLE("OUTPUT_OPTION"), "", o_default, 1);
739 #endif
741 /* Remember that we've done this. */
742 snapped_deps = 1;
745 /* Set the `command_state' member of FILE and all its `also_make's. */
747 void
748 set_command_state (struct file *file, enum cmd_state state)
750 struct dep *d;
752 file->command_state = state;
754 for (d = file->also_make; d != 0; d = d->next)
755 d->file->command_state = state;
758 /* Convert an external file timestamp to internal form. */
760 FILE_TIMESTAMP
761 file_timestamp_cons (const char *fname, time_t s, int ns)
763 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
764 FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
765 FILE_TIMESTAMP ts = product + offset;
767 if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
768 && product <= ts && ts <= ORDINARY_MTIME_MAX))
770 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
771 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
772 file_timestamp_sprintf (buf, ts);
773 error (NILF, _("%s: Timestamp out of range; substituting %s"),
774 fname ? fname : _("Current time"), buf);
777 return ts;
780 /* Return the current time as a file timestamp, setting *RESOLUTION to
781 its resolution. */
782 FILE_TIMESTAMP
783 file_timestamp_now (int *resolution)
785 int r;
786 time_t s;
787 int ns;
789 /* Don't bother with high-resolution clocks if file timestamps have
790 only one-second resolution. The code below should work, but it's
791 not worth the hassle of debugging it on hosts where it fails. */
792 #if FILE_TIMESTAMP_HI_RES
793 # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
795 struct timespec timespec;
796 if (clock_gettime (CLOCK_REALTIME, &timespec) == 0)
798 r = 1;
799 s = timespec.tv_sec;
800 ns = timespec.tv_nsec;
801 goto got_time;
804 # endif
805 # if HAVE_GETTIMEOFDAY
807 struct timeval timeval;
808 if (gettimeofday (&timeval, 0) == 0)
810 r = 1000;
811 s = timeval.tv_sec;
812 ns = timeval.tv_usec * 1000;
813 goto got_time;
816 # endif
817 #endif
819 r = 1000000000;
820 s = time ((time_t *) 0);
821 ns = 0;
823 #if FILE_TIMESTAMP_HI_RES
824 got_time:
825 #endif
826 *resolution = r;
827 return file_timestamp_cons (0, s, ns);
830 /* Place into the buffer P a printable representation of the file
831 timestamp TS. */
832 void
833 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
835 time_t t = FILE_TIMESTAMP_S (ts);
836 struct tm *tm = localtime (&t);
838 if (tm)
839 sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
840 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
841 tm->tm_hour, tm->tm_min, tm->tm_sec);
842 else if (t < 0)
843 sprintf (p, "%ld", (long) t);
844 else
845 sprintf (p, "%lu", (unsigned long) t);
846 p += strlen (p);
848 /* Append nanoseconds as a fraction, but remove trailing zeros. We don't
849 know the actual timestamp resolution, since clock_getres applies only to
850 local times, whereas this timestamp might come from a remote filesystem.
851 So removing trailing zeros is the best guess that we can do. */
852 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
853 p += strlen (p) - 1;
854 while (*p == '0')
855 p--;
856 p += *p != '.';
858 *p = '\0';
861 /* Print the data base of files. */
863 static void
864 print_file (const void *item)
866 const struct file *f = item;
867 struct dep *d;
868 struct dep *ood = 0;
870 putchar ('\n');
871 if (!f->is_target)
872 puts (_("# Not a target:"));
873 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
875 /* Print all normal dependencies; note any order-only deps. */
876 for (d = f->deps; d != 0; d = d->next)
877 if (! d->ignore_mtime)
878 printf (" %s", dep_name (d));
879 else if (! ood)
880 ood = d;
882 /* Print order-only deps, if we have any. */
883 if (ood)
885 printf (" | %s", dep_name (ood));
886 for (d = ood->next; d != 0; d = d->next)
887 if (d->ignore_mtime)
888 printf (" %s", dep_name (d));
891 putchar ('\n');
893 if (f->precious)
894 puts (_("# Precious file (prerequisite of .PRECIOUS)."));
895 if (f->phony)
896 puts (_("# Phony target (prerequisite of .PHONY)."));
897 if (f->cmd_target)
898 puts (_("# Command-line target."));
899 if (f->dontcare)
900 puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
901 puts (f->tried_implicit
902 ? _("# Implicit rule search has been done.")
903 : _("# Implicit rule search has not been done."));
904 if (f->stem != 0)
905 printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
906 if (f->intermediate)
907 puts (_("# File is an intermediate prerequisite."));
908 if (f->also_make != 0)
910 fputs (_("# Also makes:"), stdout);
911 for (d = f->also_make; d != 0; d = d->next)
912 printf (" %s", dep_name (d));
913 putchar ('\n');
915 if (f->last_mtime == UNKNOWN_MTIME)
916 puts (_("# Modification time never checked."));
917 else if (f->last_mtime == NONEXISTENT_MTIME)
918 puts (_("# File does not exist."));
919 else if (f->last_mtime == OLD_MTIME)
920 puts (_("# File is very old."));
921 else
923 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
924 file_timestamp_sprintf (buf, f->last_mtime);
925 printf (_("# Last modified %s\n"), buf);
927 puts (f->updated
928 ? _("# File has been updated.") : _("# File has not been updated."));
929 switch (f->command_state)
931 case cs_running:
932 puts (_("# Commands currently running (THIS IS A BUG)."));
933 break;
934 case cs_deps_running:
935 puts (_("# Dependencies commands running (THIS IS A BUG)."));
936 break;
937 case cs_not_started:
938 case cs_finished:
939 switch (f->update_status)
941 case -1:
942 break;
943 case 0:
944 puts (_("# Successfully updated."));
945 break;
946 case 1:
947 assert (question_flag);
948 puts (_("# Needs to be updated (-q is set)."));
949 break;
950 case 2:
951 puts (_("# Failed to be updated."));
952 break;
953 default:
954 puts (_("# Invalid value in `update_status' member!"));
955 fflush (stdout);
956 fflush (stderr);
957 abort ();
959 break;
960 default:
961 puts (_("# Invalid value in `command_state' member!"));
962 fflush (stdout);
963 fflush (stderr);
964 abort ();
967 if (f->variables != 0)
968 print_file_variables (f);
970 if (f->cmds != 0)
971 print_commands (f->cmds);
973 if (f->prev)
974 print_file ((const void *) f->prev);
977 void
978 print_file_data_base (void)
980 puts (_("\n# Files"));
982 hash_map (&files, print_file);
984 fputs (_("\n# files hash-table stats:\n# "), stdout);
985 hash_print_stats (&files, stdout);
988 /* Verify the integrity of the data base of files. */
990 #define VERIFY_CACHED(_p,_n) \
991 do{\
992 if (_p->_n && _p->_n[0] && !strcache_iscached (_p->_n)) \
993 printf ("%s: Field %s not cached: %s\n", _p->name, # _n, _p->_n); \
994 }while(0)
996 static void
997 verify_file (const void *item)
999 const struct file *f = item;
1000 const struct dep *d;
1002 VERIFY_CACHED (f, name);
1003 VERIFY_CACHED (f, hname);
1004 VERIFY_CACHED (f, vpath);
1005 VERIFY_CACHED (f, stem);
1007 /* Check the deps. */
1008 for (d = f->deps; d != 0; d = d->next)
1010 VERIFY_CACHED (d, name);
1011 VERIFY_CACHED (d, stem);
1015 void
1016 verify_file_data_base (void)
1018 hash_map (&files, verify_file);
1021 #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
1023 char *
1024 build_target_list (char *value)
1026 static unsigned long last_targ_count = 0;
1028 if (files.ht_fill != last_targ_count)
1030 unsigned long max = EXPANSION_INCREMENT (strlen (value));
1031 unsigned long len;
1032 char *p;
1033 struct file **fp = (struct file **) files.ht_vec;
1034 struct file **end = &fp[files.ht_size];
1036 /* Make sure we have at least MAX bytes in the allocated buffer. */
1037 value = xrealloc (value, max);
1039 p = value;
1040 len = 0;
1041 for (; fp < end; ++fp)
1042 if (!HASH_VACANT (*fp) && (*fp)->is_target)
1044 struct file *f = *fp;
1045 int l = strlen (f->name);
1047 len += l + 1;
1048 if (len > max)
1050 unsigned long off = p - value;
1052 max += EXPANSION_INCREMENT (l + 1);
1053 value = xrealloc (value, max);
1054 p = &value[off];
1057 memcpy (p, f->name, l);
1058 p += l;
1059 *(p++) = ' ';
1061 *(p-1) = '\0';
1063 last_targ_count = files.ht_fill;
1066 return value;
1069 void
1070 init_hash_files (void)
1072 hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
1075 /* EOF */