1 | /* Definition of target file data structures 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.
|
---|
6 |
|
---|
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.
|
---|
10 |
|
---|
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.
|
---|
14 |
|
---|
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. */
|
---|
18 |
|
---|
19 |
|
---|
20 | /* Structure that represents the info on one file
|
---|
21 | that the makefile says how to make.
|
---|
22 | All of these are chained together through `next'. */
|
---|
23 |
|
---|
24 | #include "hash.h"
|
---|
25 |
|
---|
26 | struct file
|
---|
27 | {
|
---|
28 | const char *name;
|
---|
29 | const char *hname; /* Hashed filename */
|
---|
30 | const char *vpath; /* VPATH/vpath pathname */
|
---|
31 | struct dep *deps; /* all dependencies, including duplicates */
|
---|
32 | struct commands *cmds; /* Commands to execute for this target. */
|
---|
33 | int command_flags; /* Flags OR'd in for cmds; see commands.h. */
|
---|
34 | const char *stem; /* Implicit stem, if an implicit
|
---|
35 | rule has been used */
|
---|
36 | struct dep *also_make; /* Targets that are made by making this. */
|
---|
37 | FILE_TIMESTAMP last_mtime; /* File's modtime, if already known. */
|
---|
38 | FILE_TIMESTAMP mtime_before_update; /* File's modtime before any updating
|
---|
39 | has been performed. */
|
---|
40 | struct file *prev; /* Previous entry for same file name;
|
---|
41 | used when there are multiple double-colon
|
---|
42 | entries for the same file. */
|
---|
43 | struct file *last; /* Last entry for the same file name. */
|
---|
44 |
|
---|
45 | /* File that this file was renamed to. After any time that a
|
---|
46 | file could be renamed, call `check_renamed' (below). */
|
---|
47 | struct file *renamed;
|
---|
48 |
|
---|
49 | /* List of variable sets used for this file. */
|
---|
50 | struct variable_set_list *variables;
|
---|
51 |
|
---|
52 | /* Pattern-specific variable reference for this target, or null if there
|
---|
53 | isn't one. Also see the pat_searched flag, below. */
|
---|
54 | struct variable_set_list *pat_variables;
|
---|
55 |
|
---|
56 | /* Immediate dependent that caused this target to be remade,
|
---|
57 | or nil if there isn't one. */
|
---|
58 | struct file *parent;
|
---|
59 |
|
---|
60 | /* For a double-colon entry, this is the first double-colon entry for
|
---|
61 | the same file. Otherwise this is null. */
|
---|
62 | struct file *double_colon;
|
---|
63 |
|
---|
64 | #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
|
---|
65 | /* For a target of an explicit multi target rule, this points to the
|
---|
66 | primary target. Otherwise this is null. */
|
---|
67 | struct file *multi_head;
|
---|
68 | /* Pointer to next target of an explicit multi target rule. */
|
---|
69 | struct file *multi_next;
|
---|
70 | #endif
|
---|
71 |
|
---|
72 | short int update_status; /* Status of the last attempt to update,
|
---|
73 | or -1 if none has been made. */
|
---|
74 |
|
---|
75 | enum cmd_state /* State of the commands. */
|
---|
76 | { /* Note: It is important that cs_not_started be zero. */
|
---|
77 | cs_not_started, /* Not yet started. */
|
---|
78 | cs_deps_running, /* Dep commands running. */
|
---|
79 | cs_running, /* Commands running. */
|
---|
80 | cs_finished /* Commands finished. */
|
---|
81 | } command_state ENUM_BITFIELD (2);
|
---|
82 |
|
---|
83 | unsigned int precious:1; /* Non-0 means don't delete file on quit */
|
---|
84 | unsigned int low_resolution_time:1; /* Nonzero if this file's time stamp
|
---|
85 | has only one-second resolution. */
|
---|
86 | unsigned int tried_implicit:1; /* Nonzero if have searched
|
---|
87 | for implicit rule for making
|
---|
88 | this file; don't search again. */
|
---|
89 | unsigned int updating:1; /* Nonzero while updating deps of this file */
|
---|
90 | unsigned int updated:1; /* Nonzero if this file has been remade. */
|
---|
91 | unsigned int is_target:1; /* Nonzero if file is described as target. */
|
---|
92 | unsigned int cmd_target:1; /* Nonzero if file was given on cmd line. */
|
---|
93 | unsigned int phony:1; /* Nonzero if this is a phony file
|
---|
94 | i.e., a prerequisite of .PHONY. */
|
---|
95 | unsigned int intermediate:1;/* Nonzero if this is an intermediate file. */
|
---|
96 | unsigned int secondary:1; /* Nonzero means remove_intermediates should
|
---|
97 | not delete it. */
|
---|
98 | unsigned int dontcare:1; /* Nonzero if no complaint is to be made if
|
---|
99 | this target cannot be remade. */
|
---|
100 | unsigned int ignore_vpath:1;/* Nonzero if we threw out VPATH name. */
|
---|
101 | unsigned int pat_searched:1;/* Nonzero if we already searched for
|
---|
102 | pattern-specific variables. */
|
---|
103 | unsigned int considered:1; /* equal to 'considered' if file has been
|
---|
104 | considered on current scan of goal chain */
|
---|
105 | #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
|
---|
106 | unsigned int multi_maybe:1; /* Nonzero if this file isn't always updated
|
---|
107 | by the explicit multi target rule. */
|
---|
108 | #endif
|
---|
109 |
|
---|
110 | };
|
---|
111 |
|
---|
112 |
|
---|
113 | extern struct file *default_goal_file, *suffix_file, *default_file;
|
---|
114 | extern char **default_goal_name;
|
---|
115 |
|
---|
116 |
|
---|
117 | struct file *lookup_file (const char *name);
|
---|
118 | struct file *enter_file (const char *name);
|
---|
119 | struct dep *parse_prereqs (char *prereqs);
|
---|
120 | void remove_intermediates (int sig);
|
---|
121 | void snap_deps (void);
|
---|
122 | void rename_file (struct file *file, const char *name);
|
---|
123 | void rehash_file (struct file *file, const char *name);
|
---|
124 | void set_command_state (struct file *file, enum cmd_state state);
|
---|
125 | void notice_finished_file (struct file *file);
|
---|
126 | void init_hash_files (void);
|
---|
127 | char *build_target_list (char *old_list);
|
---|
128 |
|
---|
129 | #if FILE_TIMESTAMP_HI_RES
|
---|
130 | # define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
|
---|
131 | file_timestamp_cons (fname, (st).st_mtime, (st).st_mtim.ST_MTIM_NSEC)
|
---|
132 | #else
|
---|
133 | # define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
|
---|
134 | file_timestamp_cons (fname, (st).st_mtime, 0)
|
---|
135 | #endif
|
---|
136 |
|
---|
137 | /* If FILE_TIMESTAMP is 64 bits (or more), use nanosecond resolution.
|
---|
138 | (Multiply by 2**30 instead of by 10**9 to save time at the cost of
|
---|
139 | slightly decreasing the number of available timestamps.) With
|
---|
140 | 64-bit FILE_TIMESTAMP, this stops working on 2514-05-30 01:53:04
|
---|
141 | UTC, but by then uintmax_t should be larger than 64 bits. */
|
---|
142 | #define FILE_TIMESTAMPS_PER_S (FILE_TIMESTAMP_HI_RES ? 1000000000 : 1)
|
---|
143 | #define FILE_TIMESTAMP_LO_BITS (FILE_TIMESTAMP_HI_RES ? 30 : 0)
|
---|
144 |
|
---|
145 | #define FILE_TIMESTAMP_S(ts) (((ts) - ORDINARY_MTIME_MIN) \
|
---|
146 | >> FILE_TIMESTAMP_LO_BITS)
|
---|
147 | #define FILE_TIMESTAMP_NS(ts) ((int) (((ts) - ORDINARY_MTIME_MIN) \
|
---|
148 | & ((1 << FILE_TIMESTAMP_LO_BITS) - 1)))
|
---|
149 |
|
---|
150 | /* Upper bound on length of string "YYYY-MM-DD HH:MM:SS.NNNNNNNNN"
|
---|
151 | representing a file timestamp. The upper bound is not necessarily 19,
|
---|
152 | since the year might be less than -999 or greater than 9999.
|
---|
153 |
|
---|
154 | Subtract one for the sign bit if in case file timestamps can be negative;
|
---|
155 | subtract FLOOR_LOG2_SECONDS_PER_YEAR to yield an upper bound on how many
|
---|
156 | file timestamp bits might affect the year;
|
---|
157 | 302 / 1000 is log10 (2) rounded up;
|
---|
158 | add one for integer division truncation;
|
---|
159 | add one more for a minus sign if file timestamps can be negative;
|
---|
160 | add 4 to allow for any 4-digit epoch year (e.g. 1970);
|
---|
161 | add 25 to allow for "-MM-DD HH:MM:SS.NNNNNNNNN". */
|
---|
162 | #define FLOOR_LOG2_SECONDS_PER_YEAR 24
|
---|
163 | #define FILE_TIMESTAMP_PRINT_LEN_BOUND \
|
---|
164 | (((sizeof (FILE_TIMESTAMP) * CHAR_BIT - 1 - FLOOR_LOG2_SECONDS_PER_YEAR) \
|
---|
165 | * 302 / 1000) \
|
---|
166 | + 1 + 1 + 4 + 25)
|
---|
167 |
|
---|
168 | FILE_TIMESTAMP file_timestamp_cons (char const *, time_t, int);
|
---|
169 | FILE_TIMESTAMP file_timestamp_now (int *);
|
---|
170 | void file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts);
|
---|
171 |
|
---|
172 | /* Return the mtime of file F (a struct file *), caching it.
|
---|
173 | The value is NONEXISTENT_MTIME if the file does not exist. */
|
---|
174 | #define file_mtime(f) file_mtime_1 ((f), 1)
|
---|
175 | /* Return the mtime of file F (a struct file *), caching it.
|
---|
176 | Don't search using vpath for the file--if it doesn't actually exist,
|
---|
177 | we don't find it.
|
---|
178 | The value is NONEXISTENT_MTIME if the file does not exist. */
|
---|
179 | #define file_mtime_no_search(f) file_mtime_1 ((f), 0)
|
---|
180 | FILE_TIMESTAMP f_mtime (struct file *file, int search);
|
---|
181 | #define file_mtime_1(f, v) \
|
---|
182 | ((f)->last_mtime == UNKNOWN_MTIME ? f_mtime ((f), v) : (f)->last_mtime)
|
---|
183 |
|
---|
184 | /* Special timestamp values. */
|
---|
185 |
|
---|
186 | /* The file's timestamp is not yet known. */
|
---|
187 | #define UNKNOWN_MTIME 0
|
---|
188 |
|
---|
189 | /* The file does not exist. */
|
---|
190 | #define NONEXISTENT_MTIME 1
|
---|
191 |
|
---|
192 | /* The file does not exist, and we assume that it is older than any
|
---|
193 | actual file. */
|
---|
194 | #define OLD_MTIME 2
|
---|
195 |
|
---|
196 | /* The smallest and largest ordinary timestamps. */
|
---|
197 | #define ORDINARY_MTIME_MIN (OLD_MTIME + 1)
|
---|
198 | #define ORDINARY_MTIME_MAX ((FILE_TIMESTAMP_S (NEW_MTIME) \
|
---|
199 | << FILE_TIMESTAMP_LO_BITS) \
|
---|
200 | + ORDINARY_MTIME_MIN + (FILE_TIMESTAMPS_PER_S - 1)) /* bird: MSC overflow fix */
|
---|
201 |
|
---|
202 | /* Modtime value to use for `infinitely new'. We used to get the current time
|
---|
203 | from the system and use that whenever we wanted `new'. But that causes
|
---|
204 | trouble when the machine running make and the machine holding a file have
|
---|
205 | different ideas about what time it is; and can also lose for `force'
|
---|
206 | targets, which need to be considered newer than anything that depends on
|
---|
207 | them, even if said dependents' modtimes are in the future. */
|
---|
208 | #define NEW_MTIME INTEGER_TYPE_MAXIMUM (FILE_TIMESTAMP)
|
---|
209 |
|
---|
210 | #define check_renamed(file) \
|
---|
211 | while ((file)->renamed != 0) (file) = (file)->renamed /* No ; here. */
|
---|
212 |
|
---|
213 | /* Have we snapped deps yet? */
|
---|
214 | extern int snapped_deps;
|
---|