2019-05-09 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / libcpp / mkdeps.c
blob96cc49b9cc1720544c56e38210d48c78136011a2
1 /* Dependency generator for Makefile fragments.
2 Copyright (C) 2000-2019 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
8 later version.
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! */
23 #include "config.h"
24 #include "system.h"
25 #include "mkdeps.h"
27 /* Not set up to just include std::vector et al, here's a simple
28 implementation. */
30 /* Keep this structure local to this file, so clients don't find it
31 easy to start making assumptions. */
32 struct mkdeps
34 public:
35 /* T has trivial cctor & dtor. */
36 template <typename T>
37 class vec
39 private:
40 T *ary;
41 unsigned num;
42 unsigned alloc;
44 public:
45 vec ()
46 : ary (NULL), num (0), alloc (0)
48 ~vec ()
50 XDELETEVEC (ary);
53 public:
54 unsigned size () const
56 return num;
58 const T &operator[] (unsigned ix) const
60 return ary[ix];
62 void push (const T &elt)
64 if (num == alloc)
66 alloc = alloc ? alloc * 2 : 16;
67 ary = XRESIZEVEC (T, ary, alloc);
69 ary[num++] = elt;
72 struct velt
74 const char *str;
75 size_t len;
78 mkdeps ()
79 : quote_lwm (0)
82 ~mkdeps ()
84 unsigned int i;
86 for (i = targets.size (); i--;)
87 free (const_cast <char *> (targets[i]));
88 for (i = deps.size (); i--;)
89 free (const_cast <char *> (deps[i]));
90 for (i = vpath.size (); i--;)
91 XDELETEVEC (vpath[i].str);
94 public:
95 vec<const char *> targets;
96 vec<const char *> deps;
97 vec<velt> vpath;
99 public:
100 unsigned short quote_lwm;
103 /* Apply Make quoting to STR, TRAIL etc. Note that it's not possible
104 to quote all such characters - e.g. \n, %, *, ?, [, \ (in some
105 contexts), and ~ are not properly handled. It isn't possible to
106 get this right in any current version of Make. (??? Still true?
107 Old comment referred to 3.76.1.) */
109 static const char *
110 munge (const char *str, const char *trail = NULL, ...)
112 static unsigned alloc;
113 static char *buf;
114 unsigned dst = 0;
115 va_list args;
116 if (trail)
117 va_start (args, trail);
119 for (bool first = true; str; first = false)
121 unsigned slashes = 0;
122 char c;
123 for (const char *probe = str; (c = *probe++);)
125 if (alloc < dst + 4 + slashes)
127 alloc = alloc * 2 + 32;
128 buf = XRESIZEVEC (char, buf, alloc);
131 switch (c)
133 case '\\':
134 slashes++;
135 break;
137 case '$':
138 buf[dst++] = '$';
139 goto def;
141 case ' ':
142 case '\t':
143 /* GNU make uses a weird quoting scheme for white space.
144 A space or tab preceded by 2N+1 backslashes
145 represents N backslashes followed by space; a space
146 or tab preceded by 2N backslashes represents N
147 backslashes at the end of a file name; and
148 backslashes in other contexts should not be
149 doubled. */
150 while (slashes--)
151 buf[dst++] = '\\';
152 /* FALLTHROUGH */
154 case '#':
155 case ':':
156 buf[dst++] = '\\';
157 /* FALLTHROUGH */
159 default:
160 def:
161 slashes = 0;
162 break;
165 buf[dst++] = c;
168 if (first)
169 str = trail;
170 else
171 str = va_arg (args, const char *);
173 if (trail)
174 va_end (args);
176 buf[dst] = 0;
177 return buf;
180 /* If T begins with any of the partial pathnames listed in d->vpathv,
181 then advance T to point beyond that pathname. */
182 static const char *
183 apply_vpath (struct mkdeps *d, const char *t)
185 if (unsigned len = d->vpath.size ())
186 for (unsigned i = len; i--;)
188 if (!filename_ncmp (d->vpath[i].str, t, d->vpath[i].len))
190 const char *p = t + d->vpath[i].len;
191 if (!IS_DIR_SEPARATOR (*p))
192 goto not_this_one;
194 /* Do not simplify $(vpath)/../whatever. ??? Might not
195 be necessary. */
196 if (p[1] == '.' && p[2] == '.' && IS_DIR_SEPARATOR (p[3]))
197 goto not_this_one;
199 /* found a match */
200 t = t + d->vpath[i].len + 1;
201 break;
203 not_this_one:;
206 /* Remove leading ./ in any case. */
207 while (t[0] == '.' && IS_DIR_SEPARATOR (t[1]))
209 t += 2;
210 /* If we removed a leading ./, then also remove any /s after the
211 first. */
212 while (IS_DIR_SEPARATOR (t[0]))
213 ++t;
216 return t;
219 /* Public routines. */
221 struct mkdeps *
222 deps_init (void)
224 return new mkdeps ();
227 void
228 deps_free (struct mkdeps *d)
230 delete d;
233 /* Adds a target T. We make a copy, so it need not be a permanent
234 string. QUOTE is true if the string should be quoted. */
235 void
236 deps_add_target (struct mkdeps *d, const char *t, int quote)
238 t = apply_vpath (d, t);
239 if (!quote)
241 gcc_assert (d->quote_lwm == d->targets.size ());
242 d->quote_lwm++;
245 d->targets.push (xstrdup (t));
248 /* Sets the default target if none has been given already. An empty
249 string as the default target in interpreted as stdin. The string
250 is quoted for MAKE. */
251 void
252 deps_add_default_target (struct mkdeps *d, const char *tgt)
254 /* Only if we have no targets. */
255 if (d->targets.size ())
256 return;
258 if (tgt[0] == '\0')
259 deps_add_target (d, "-", 1);
260 else
262 #ifndef TARGET_OBJECT_SUFFIX
263 # define TARGET_OBJECT_SUFFIX ".o"
264 #endif
265 const char *start = lbasename (tgt);
266 char *o = (char *) alloca (strlen (start)
267 + strlen (TARGET_OBJECT_SUFFIX) + 1);
268 char *suffix;
270 strcpy (o, start);
272 suffix = strrchr (o, '.');
273 if (!suffix)
274 suffix = o + strlen (o);
275 strcpy (suffix, TARGET_OBJECT_SUFFIX);
277 deps_add_target (d, o, 1);
281 void
282 deps_add_dep (struct mkdeps *d, const char *t)
284 gcc_assert (*t);
286 t = apply_vpath (d, t);
288 d->deps.push (xstrdup (t));
291 void
292 deps_add_vpath (struct mkdeps *d, const char *vpath)
294 const char *elem, *p;
296 for (elem = vpath; *elem; elem = p)
298 for (p = elem; *p && *p != ':'; p++)
299 continue;
300 mkdeps::velt elt;
301 elt.len = p - elem;
302 char *str = XNEWVEC (char, elt.len + 1);
303 elt.str = str;
304 memcpy (str, elem, elt.len);
305 str[elt.len] = '\0';
306 if (*p == ':')
307 p++;
309 d->vpath.push (elt);
313 /* Write NAME, with a leading space to FP, a Makefile. Advance COL as
314 appropriate, wrap at COLMAX, returning new column number. Iff
315 QUOTE apply quoting. Append TRAIL. */
317 static unsigned
318 make_write_name (const char *name, FILE *fp, unsigned col, unsigned colmax,
319 bool quote = true, const char *trail = NULL)
321 if (quote)
322 name = munge (name, trail, NULL);
323 unsigned size = strlen (name);
325 if (col)
327 if (colmax && col + size> colmax)
329 fputs (" \\\n", fp);
330 col = 0;
332 col++;
333 fputs (" ", fp);
336 col += size;
337 fputs (name, fp);
339 return col;
342 /* Write all the names in VEC via make_write_name. */
344 static unsigned
345 make_write_vec (const mkdeps::vec<const char *> &vec, FILE *fp,
346 unsigned col, unsigned colmax, unsigned quote_lwm = 0,
347 const char *trail = NULL)
349 for (unsigned ix = 0; ix != vec.size (); ix++)
350 col = make_write_name (vec[ix], fp, col, colmax, ix >= quote_lwm, trail);
351 return col;
354 /* Write the dependencies to a Makefile. If PHONY is true, add
355 .PHONY targets for all the dependencies too. */
357 static void
358 make_write (const struct mkdeps *d, FILE *fp, bool phony, unsigned int colmax)
360 unsigned column = 0;
361 if (colmax && colmax < 34)
362 colmax = 34;
364 if (d->deps.size ())
366 column = make_write_vec (d->targets, fp, 0, colmax, d->quote_lwm);
367 fputs (":", fp);
368 column++;
369 column = make_write_vec (d->deps, fp, column, colmax);
370 fputs ("\n", fp);
371 if (phony)
372 for (unsigned i = 1; i < d->deps.size (); i++)
373 fprintf (fp, "%s:\n", munge (d->deps[i]));
377 /* Write out dependencies according to the selected format (which is
378 only Make at the moment). */
380 void
381 deps_write (const struct mkdeps *d, FILE *fp, bool phony, unsigned int colmax)
383 make_write (d, fp, phony, colmax);
386 /* Write out a deps buffer to a file, in a form that can be read back
387 with deps_restore. Returns nonzero on error, in which case the
388 error number will be in errno. */
391 deps_save (struct mkdeps *deps, FILE *f)
393 unsigned int i;
394 size_t size;
396 /* The cppreader structure contains makefile dependences. Write out this
397 structure. */
399 /* The number of dependences. */
400 size = deps->deps.size ();
401 if (fwrite (&size, sizeof (size), 1, f) != 1)
402 return -1;
404 /* The length of each dependence followed by the string. */
405 for (i = 0; i < deps->deps.size (); i++)
407 size = strlen (deps->deps[i]);
408 if (fwrite (&size, sizeof (size), 1, f) != 1)
409 return -1;
410 if (fwrite (deps->deps[i], size, 1, f) != 1)
411 return -1;
414 return 0;
417 /* Read back dependency information written with deps_save into
418 the deps sizefer. The third argument may be NULL, in which case
419 the dependency information is just skipped, or it may be a filename,
420 in which case that filename is skipped. */
423 deps_restore (struct mkdeps *deps, FILE *fd, const char *self)
425 size_t size;
426 char *buf = NULL;
427 size_t buf_size = 0;
429 /* Number of dependences. */
430 if (fread (&size, sizeof (size), 1, fd) != 1)
431 return -1;
433 /* The length of each dependence string, followed by the string. */
434 for (unsigned i = size; i--;)
436 /* Read in # bytes in string. */
437 if (fread (&size, sizeof (size), 1, fd) != 1)
438 return -1;
440 if (size >= buf_size)
442 buf_size = size + 512;
443 buf = XRESIZEVEC (char, buf, buf_size);
445 if (fread (buf, 1, size, fd) != size)
447 XDELETEVEC (buf);
448 return -1;
450 buf[size] = 0;
452 /* Generate makefile dependencies from .pch if -nopch-deps. */
453 if (self != NULL && filename_cmp (buf, self) != 0)
454 deps_add_dep (deps, buf);
457 XDELETEVEC (buf);
458 return 0;