- Add xcalloc() and call it
[make.git] / file.c
blob4e3bece10600e4623f609bfd017dc5c2e48457e0
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 _("Recipe was 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 _("Recipe for file `%s' was 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 _("Recipe for `%s' will be ignored in favor of the one 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 parse_file_seq (&p, sizeof (struct dep), '|', NULL, 0);
420 if (*p)
422 /* Files that follow '|' are "order-only" prerequisites that satisfy the
423 dependency by existing: their modification times are irrelevant. */
424 struct dep *ood;
426 ++p;
427 ood = (struct dep *)
428 parse_file_seq (&p, sizeof (struct dep), '\0', NULL, 0);
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;
447 /* Set the intermediate flag. */
449 static void
450 set_intermediate (const void *item)
452 struct file *f = (struct file *) item;
453 f->intermediate = 1;
456 /* Expand and parse each dependency line. */
457 static void
458 expand_deps (struct file *f)
460 struct dep *d;
461 struct dep *old = f->deps;
462 const char *file_stem = f->stem;
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. We will
479 still need to massage it though. */
480 if (! d->need_2nd_expansion)
482 p = variable_expand ("");
483 variable_buffer_output (p, d->name, strlen (d->name) + 1);
484 p = variable_buffer;
486 else
488 /* If it's from a static pattern rule, convert the patterns into
489 "$*" so they'll expand properly. */
490 if (d->staticpattern)
492 char *o;
493 char *buffer = variable_expand ("");
495 o = subst_expand (buffer, d->name, "%", "$*", 1, 2, 0);
497 d->name = strcache_add_len (variable_buffer,
498 o - variable_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 /* Remember that we've done this. Once we start snapping deps we can no
640 longer define new targets. */
641 snapped_deps = 1;
643 /* Perform second expansion and enter each dependency name as a file. */
645 /* Expand .SUFFIXES first; it's dependencies are used for $$* calculation. */
646 for (f = lookup_file (".SUFFIXES"); f != 0; f = f->prev)
647 expand_deps (f);
649 /* For every target that's not .SUFFIXES, expand its dependencies.
650 We must use hash_dump (), because within this loop we might add new files
651 to the table, possibly causing an in-situ table expansion. */
652 file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
653 file_end = file_slot_0 + files.ht_fill;
654 for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
655 for (f = *file_slot; f != 0; f = f->prev)
656 if (strcmp (f->name, ".SUFFIXES") != 0)
657 expand_deps (f);
658 free (file_slot_0);
660 /* Now manage all the special targets. */
662 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
663 for (d = f->deps; d != 0; d = d->next)
664 for (f2 = d->file; f2 != 0; f2 = f2->prev)
665 f2->precious = 1;
667 for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
668 for (d = f->deps; d != 0; d = d->next)
669 for (f2 = d->file; f2 != 0; f2 = f2->prev)
670 f2->low_resolution_time = 1;
672 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
673 for (d = f->deps; d != 0; d = d->next)
674 for (f2 = d->file; f2 != 0; f2 = f2->prev)
676 /* Mark this file as phony nonexistent target. */
677 f2->phony = 1;
678 f2->is_target = 1;
679 f2->last_mtime = NONEXISTENT_MTIME;
680 f2->mtime_before_update = NONEXISTENT_MTIME;
683 for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
684 /* Mark .INTERMEDIATE deps as intermediate files. */
685 for (d = f->deps; d != 0; d = d->next)
686 for (f2 = d->file; f2 != 0; f2 = f2->prev)
687 f2->intermediate = 1;
688 /* .INTERMEDIATE with no deps does nothing.
689 Marking all files as intermediates is useless since the goal targets
690 would be deleted after they are built. */
692 for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
693 /* Mark .SECONDARY deps as both intermediate and secondary. */
694 if (f->deps)
695 for (d = f->deps; d != 0; d = d->next)
696 for (f2 = d->file; f2 != 0; f2 = f2->prev)
697 f2->intermediate = f2->secondary = 1;
698 /* .SECONDARY with no deps listed marks *all* files that way. */
699 else
701 all_secondary = 1;
702 hash_map (&files, set_intermediate);
705 f = lookup_file (".EXPORT_ALL_VARIABLES");
706 if (f != 0 && f->is_target)
707 export_all_variables = 1;
709 f = lookup_file (".IGNORE");
710 if (f != 0 && f->is_target)
712 if (f->deps == 0)
713 ignore_errors_flag = 1;
714 else
715 for (d = f->deps; d != 0; d = d->next)
716 for (f2 = d->file; f2 != 0; f2 = f2->prev)
717 f2->command_flags |= COMMANDS_NOERROR;
720 f = lookup_file (".SILENT");
721 if (f != 0 && f->is_target)
723 if (f->deps == 0)
724 silent_flag = 1;
725 else
726 for (d = f->deps; d != 0; d = d->next)
727 for (f2 = d->file; f2 != 0; f2 = f2->prev)
728 f2->command_flags |= COMMANDS_SILENT;
731 f = lookup_file (".NOTPARALLEL");
732 if (f != 0 && f->is_target)
733 not_parallel = 1;
735 #ifndef NO_MINUS_C_MINUS_O
736 /* If .POSIX was defined, remove OUTPUT_OPTION to comply. */
737 /* This needs more work: what if the user sets this in the makefile?
738 if (posix_pedantic)
739 define_variable (STRING_SIZE_TUPLE("OUTPUT_OPTION"), "", o_default, 1);
741 #endif
744 /* Set the `command_state' member of FILE and all its `also_make's. */
746 void
747 set_command_state (struct file *file, enum cmd_state state)
749 struct dep *d;
751 file->command_state = state;
753 for (d = file->also_make; d != 0; d = d->next)
754 d->file->command_state = state;
757 /* Convert an external file timestamp to internal form. */
759 FILE_TIMESTAMP
760 file_timestamp_cons (const char *fname, time_t s, int ns)
762 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
763 FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
764 FILE_TIMESTAMP ts = product + offset;
766 if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
767 && product <= ts && ts <= ORDINARY_MTIME_MAX))
769 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
770 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
771 file_timestamp_sprintf (buf, ts);
772 error (NILF, _("%s: Timestamp out of range; substituting %s"),
773 fname ? fname : _("Current time"), buf);
776 return ts;
779 /* Return the current time as a file timestamp, setting *RESOLUTION to
780 its resolution. */
781 FILE_TIMESTAMP
782 file_timestamp_now (int *resolution)
784 int r;
785 time_t s;
786 int ns;
788 /* Don't bother with high-resolution clocks if file timestamps have
789 only one-second resolution. The code below should work, but it's
790 not worth the hassle of debugging it on hosts where it fails. */
791 #if FILE_TIMESTAMP_HI_RES
792 # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
794 struct timespec timespec;
795 if (clock_gettime (CLOCK_REALTIME, &timespec) == 0)
797 r = 1;
798 s = timespec.tv_sec;
799 ns = timespec.tv_nsec;
800 goto got_time;
803 # endif
804 # if HAVE_GETTIMEOFDAY
806 struct timeval timeval;
807 if (gettimeofday (&timeval, 0) == 0)
809 r = 1000;
810 s = timeval.tv_sec;
811 ns = timeval.tv_usec * 1000;
812 goto got_time;
815 # endif
816 #endif
818 r = 1000000000;
819 s = time ((time_t *) 0);
820 ns = 0;
822 #if FILE_TIMESTAMP_HI_RES
823 got_time:
824 #endif
825 *resolution = r;
826 return file_timestamp_cons (0, s, ns);
829 /* Place into the buffer P a printable representation of the file
830 timestamp TS. */
831 void
832 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
834 time_t t = FILE_TIMESTAMP_S (ts);
835 struct tm *tm = localtime (&t);
837 if (tm)
838 sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
839 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
840 tm->tm_hour, tm->tm_min, tm->tm_sec);
841 else if (t < 0)
842 sprintf (p, "%ld", (long) t);
843 else
844 sprintf (p, "%lu", (unsigned long) t);
845 p += strlen (p);
847 /* Append nanoseconds as a fraction, but remove trailing zeros. We don't
848 know the actual timestamp resolution, since clock_getres applies only to
849 local times, whereas this timestamp might come from a remote filesystem.
850 So removing trailing zeros is the best guess that we can do. */
851 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
852 p += strlen (p) - 1;
853 while (*p == '0')
854 p--;
855 p += *p != '.';
857 *p = '\0';
860 /* Print the data base of files. */
862 static void
863 print_file (const void *item)
865 const struct file *f = item;
866 struct dep *d;
867 struct dep *ood = 0;
869 putchar ('\n');
870 if (!f->is_target)
871 puts (_("# Not a target:"));
872 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
874 /* Print all normal dependencies; note any order-only deps. */
875 for (d = f->deps; d != 0; d = d->next)
876 if (! d->ignore_mtime)
877 printf (" %s", dep_name (d));
878 else if (! ood)
879 ood = d;
881 /* Print order-only deps, if we have any. */
882 if (ood)
884 printf (" | %s", dep_name (ood));
885 for (d = ood->next; d != 0; d = d->next)
886 if (d->ignore_mtime)
887 printf (" %s", dep_name (d));
890 putchar ('\n');
892 if (f->precious)
893 puts (_("# Precious file (prerequisite of .PRECIOUS)."));
894 if (f->phony)
895 puts (_("# Phony target (prerequisite of .PHONY)."));
896 if (f->cmd_target)
897 puts (_("# Command line target."));
898 if (f->dontcare)
899 puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
900 puts (f->tried_implicit
901 ? _("# Implicit rule search has been done.")
902 : _("# Implicit rule search has not been done."));
903 if (f->stem != 0)
904 printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
905 if (f->intermediate)
906 puts (_("# File is an intermediate prerequisite."));
907 if (f->also_make != 0)
909 fputs (_("# Also makes:"), stdout);
910 for (d = f->also_make; d != 0; d = d->next)
911 printf (" %s", dep_name (d));
912 putchar ('\n');
914 if (f->last_mtime == UNKNOWN_MTIME)
915 puts (_("# Modification time never checked."));
916 else if (f->last_mtime == NONEXISTENT_MTIME)
917 puts (_("# File does not exist."));
918 else if (f->last_mtime == OLD_MTIME)
919 puts (_("# File is very old."));
920 else
922 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
923 file_timestamp_sprintf (buf, f->last_mtime);
924 printf (_("# Last modified %s\n"), buf);
926 puts (f->updated
927 ? _("# File has been updated.") : _("# File has not been updated."));
928 switch (f->command_state)
930 case cs_running:
931 puts (_("# Recipe currently running (THIS IS A BUG)."));
932 break;
933 case cs_deps_running:
934 puts (_("# Dependencies recipe running (THIS IS A BUG)."));
935 break;
936 case cs_not_started:
937 case cs_finished:
938 switch (f->update_status)
940 case -1:
941 break;
942 case 0:
943 puts (_("# Successfully updated."));
944 break;
945 case 1:
946 assert (question_flag);
947 puts (_("# Needs to be updated (-q is set)."));
948 break;
949 case 2:
950 puts (_("# Failed to be updated."));
951 break;
952 default:
953 puts (_("# Invalid value in `update_status' member!"));
954 fflush (stdout);
955 fflush (stderr);
956 abort ();
958 break;
959 default:
960 puts (_("# Invalid value in `command_state' member!"));
961 fflush (stdout);
962 fflush (stderr);
963 abort ();
966 if (f->variables != 0)
967 print_file_variables (f);
969 if (f->cmds != 0)
970 print_commands (f->cmds);
972 if (f->prev)
973 print_file ((const void *) f->prev);
976 void
977 print_file_data_base (void)
979 puts (_("\n# Files"));
981 hash_map (&files, print_file);
983 fputs (_("\n# files hash-table stats:\n# "), stdout);
984 hash_print_stats (&files, stdout);
987 /* Verify the integrity of the data base of files. */
989 #define VERIFY_CACHED(_p,_n) \
990 do{\
991 if (_p->_n && _p->_n[0] && !strcache_iscached (_p->_n)) \
992 printf ("%s: Field %s not cached: %s\n", _p->name, # _n, _p->_n); \
993 }while(0)
995 static void
996 verify_file (const void *item)
998 const struct file *f = item;
999 const struct dep *d;
1001 VERIFY_CACHED (f, name);
1002 VERIFY_CACHED (f, hname);
1003 VERIFY_CACHED (f, vpath);
1004 VERIFY_CACHED (f, stem);
1006 /* Check the deps. */
1007 for (d = f->deps; d != 0; d = d->next)
1009 VERIFY_CACHED (d, name);
1010 VERIFY_CACHED (d, stem);
1014 void
1015 verify_file_data_base (void)
1017 hash_map (&files, verify_file);
1020 #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
1022 char *
1023 build_target_list (char *value)
1025 static unsigned long last_targ_count = 0;
1027 if (files.ht_fill != last_targ_count)
1029 unsigned long max = EXPANSION_INCREMENT (strlen (value));
1030 unsigned long len;
1031 char *p;
1032 struct file **fp = (struct file **) files.ht_vec;
1033 struct file **end = &fp[files.ht_size];
1035 /* Make sure we have at least MAX bytes in the allocated buffer. */
1036 value = xrealloc (value, max);
1038 p = value;
1039 len = 0;
1040 for (; fp < end; ++fp)
1041 if (!HASH_VACANT (*fp) && (*fp)->is_target)
1043 struct file *f = *fp;
1044 int l = strlen (f->name);
1046 len += l + 1;
1047 if (len > max)
1049 unsigned long off = p - value;
1051 max += EXPANSION_INCREMENT (l + 1);
1052 value = xrealloc (value, max);
1053 p = &value[off];
1056 memcpy (p, f->name, l);
1057 p += l;
1058 *(p++) = ' ';
1060 *(p-1) = '\0';
1062 last_targ_count = files.ht_fill;
1065 return value;
1068 void
1069 init_hash_files (void)
1071 hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
1074 /* EOF */