1 /* Dependency generator for Makefile fragments.
2 Copyright (C) 2000-2020 Free Software Foundation, Inc.
3 Contributed by Zack Weinberg, Mar 2000
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 3, or (at your option) any
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING3. If not see
17 <http://www.gnu.org/licenses/>.
19 In other words, you are welcome to use, share and improve this program.
20 You are forbidden to forbid anyone else to use, share and improve
21 what you give them. Help stamp out software-hoarding! */
27 /* Not set up to just include std::vector et al, here's a simple
30 /* Keep this structure local to this file, so clients don't find it
31 easy to start making assumptions. */
35 /* T has trivial cctor & dtor. */
46 : ary (NULL
), num (0), alloc (0)
54 unsigned size () const
58 const T
&operator[] (unsigned ix
) const
62 T
&operator[] (unsigned ix
)
66 void push (const T
&elt
)
70 alloc
= alloc
? alloc
* 2 : 16;
71 ary
= XRESIZEVEC (T
, ary
, alloc
);
90 for (i
= targets
.size (); i
--;)
91 free (const_cast <char *> (targets
[i
]));
92 for (i
= deps
.size (); i
--;)
93 free (const_cast <char *> (deps
[i
]));
94 for (i
= vpath
.size (); i
--;)
95 XDELETEVEC (vpath
[i
].str
);
99 vec
<const char *> targets
;
100 vec
<const char *> deps
;
104 unsigned short quote_lwm
;
107 /* Apply Make quoting to STR, TRAIL etc. Note that it's not possible
108 to quote all such characters - e.g. \n, %, *, ?, [, \ (in some
109 contexts), and ~ are not properly handled. It isn't possible to
110 get this right in any current version of Make. (??? Still true?
111 Old comment referred to 3.76.1.) */
114 munge (const char *str
, const char *trail
= NULL
, ...)
116 static unsigned alloc
;
121 va_start (args
, trail
);
123 for (bool first
= true; str
; first
= false)
125 unsigned slashes
= 0;
127 for (const char *probe
= str
; (c
= *probe
++);)
129 if (alloc
< dst
+ 4 + slashes
)
131 alloc
= alloc
* 2 + 32;
132 buf
= XRESIZEVEC (char, buf
, alloc
);
147 /* GNU make uses a weird quoting scheme for white space.
148 A space or tab preceded by 2N+1 backslashes
149 represents N backslashes followed by space; a space
150 or tab preceded by 2N backslashes represents N
151 backslashes at the end of a file name; and
152 backslashes in other contexts should not be
175 str
= va_arg (args
, const char *);
184 /* If T begins with any of the partial pathnames listed in d->vpathv,
185 then advance T to point beyond that pathname. */
187 apply_vpath (class mkdeps
*d
, const char *t
)
189 if (unsigned len
= d
->vpath
.size ())
190 for (unsigned i
= len
; i
--;)
192 if (!filename_ncmp (d
->vpath
[i
].str
, t
, d
->vpath
[i
].len
))
194 const char *p
= t
+ d
->vpath
[i
].len
;
195 if (!IS_DIR_SEPARATOR (*p
))
198 /* Do not simplify $(vpath)/../whatever. ??? Might not
200 if (p
[1] == '.' && p
[2] == '.' && IS_DIR_SEPARATOR (p
[3]))
204 t
= t
+ d
->vpath
[i
].len
+ 1;
210 /* Remove leading ./ in any case. */
211 while (t
[0] == '.' && IS_DIR_SEPARATOR (t
[1]))
214 /* If we removed a leading ./, then also remove any /s after the
216 while (IS_DIR_SEPARATOR (t
[0]))
223 /* Public routines. */
228 return new mkdeps ();
232 deps_free (class mkdeps
*d
)
237 /* Adds a target T. We make a copy, so it need not be a permanent
238 string. QUOTE is true if the string should be quoted. */
240 deps_add_target (class mkdeps
*d
, const char *t
, int quote
)
242 t
= xstrdup (apply_vpath (d
, t
));
246 /* Sometimes unquoted items are added after quoted ones.
247 Swap out the lowest quoted. */
248 if (d
->quote_lwm
!= d
->targets
.size ())
250 const char *lowest
= d
->targets
[d
->quote_lwm
];
251 d
->targets
[d
->quote_lwm
] = t
;
260 /* Sets the default target if none has been given already. An empty
261 string as the default target in interpreted as stdin. The string
262 is quoted for MAKE. */
264 deps_add_default_target (class mkdeps
*d
, const char *tgt
)
266 /* Only if we have no targets. */
267 if (d
->targets
.size ())
271 d
->targets
.push (xstrdup ("-"));
274 #ifndef TARGET_OBJECT_SUFFIX
275 # define TARGET_OBJECT_SUFFIX ".o"
277 const char *start
= lbasename (tgt
);
278 char *o
= (char *) alloca (strlen (start
)
279 + strlen (TARGET_OBJECT_SUFFIX
) + 1);
284 suffix
= strrchr (o
, '.');
286 suffix
= o
+ strlen (o
);
287 strcpy (suffix
, TARGET_OBJECT_SUFFIX
);
289 deps_add_target (d
, o
, 1);
294 deps_add_dep (class mkdeps
*d
, const char *t
)
298 t
= apply_vpath (d
, t
);
300 d
->deps
.push (xstrdup (t
));
304 deps_add_vpath (class mkdeps
*d
, const char *vpath
)
306 const char *elem
, *p
;
308 for (elem
= vpath
; *elem
; elem
= p
)
310 for (p
= elem
; *p
&& *p
!= ':'; p
++)
314 char *str
= XNEWVEC (char, elt
.len
+ 1);
316 memcpy (str
, elem
, elt
.len
);
325 /* Write NAME, with a leading space to FP, a Makefile. Advance COL as
326 appropriate, wrap at COLMAX, returning new column number. Iff
327 QUOTE apply quoting. Append TRAIL. */
330 make_write_name (const char *name
, FILE *fp
, unsigned col
, unsigned colmax
,
331 bool quote
= true, const char *trail
= NULL
)
334 name
= munge (name
, trail
, NULL
);
335 unsigned size
= strlen (name
);
339 if (colmax
&& col
+ size
> colmax
)
354 /* Write all the names in VEC via make_write_name. */
357 make_write_vec (const mkdeps::vec
<const char *> &vec
, FILE *fp
,
358 unsigned col
, unsigned colmax
, unsigned quote_lwm
= 0,
359 const char *trail
= NULL
)
361 for (unsigned ix
= 0; ix
!= vec
.size (); ix
++)
362 col
= make_write_name (vec
[ix
], fp
, col
, colmax
, ix
>= quote_lwm
, trail
);
366 /* Write the dependencies to a Makefile. If PHONY is true, add
367 .PHONY targets for all the dependencies too. */
370 make_write (const class mkdeps
*d
, FILE *fp
, bool phony
, unsigned int colmax
)
373 if (colmax
&& colmax
< 34)
378 column
= make_write_vec (d
->targets
, fp
, 0, colmax
, d
->quote_lwm
);
381 make_write_vec (d
->deps
, fp
, column
, colmax
);
384 for (unsigned i
= 1; i
< d
->deps
.size (); i
++)
385 fprintf (fp
, "%s:\n", munge (d
->deps
[i
]));
389 /* Write out dependencies according to the selected format (which is
390 only Make at the moment). */
393 deps_write (const class mkdeps
*d
, FILE *fp
, bool phony
, unsigned int colmax
)
395 make_write (d
, fp
, phony
, colmax
);
398 /* Write out a deps buffer to a file, in a form that can be read back
399 with deps_restore. Returns nonzero on error, in which case the
400 error number will be in errno. */
403 deps_save (class mkdeps
*deps
, FILE *f
)
408 /* The cppreader structure contains makefile dependences. Write out this
411 /* The number of dependences. */
412 size
= deps
->deps
.size ();
413 if (fwrite (&size
, sizeof (size
), 1, f
) != 1)
416 /* The length of each dependence followed by the string. */
417 for (i
= 0; i
< deps
->deps
.size (); i
++)
419 size
= strlen (deps
->deps
[i
]);
420 if (fwrite (&size
, sizeof (size
), 1, f
) != 1)
422 if (fwrite (deps
->deps
[i
], size
, 1, f
) != 1)
429 /* Read back dependency information written with deps_save into
430 the deps sizefer. The third argument may be NULL, in which case
431 the dependency information is just skipped, or it may be a filename,
432 in which case that filename is skipped. */
435 deps_restore (class mkdeps
*deps
, FILE *fd
, const char *self
)
441 /* Number of dependences. */
442 if (fread (&size
, sizeof (size
), 1, fd
) != 1)
445 /* The length of each dependence string, followed by the string. */
446 for (unsigned i
= size
; i
--;)
448 /* Read in # bytes in string. */
449 if (fread (&size
, sizeof (size
), 1, fd
) != 1)
452 if (size
>= buf_size
)
454 buf_size
= size
+ 512;
455 buf
= XRESIZEVEC (char, buf
, buf_size
);
457 if (fread (buf
, 1, size
, fd
) != size
)
464 /* Generate makefile dependencies from .pch if -nopch-deps. */
465 if (self
!= NULL
&& filename_cmp (buf
, self
) != 0)
466 deps_add_dep (deps
, buf
);