]> git.ozlabs.org Git - ccan/blob - tools/depends.c
ccanlint: Understand Creative Commons Zero license.
[ccan] / tools / depends.c
1 #include <ccan/str/str.h>
2 #include <ccan/talloc/talloc.h>
3 #include <ccan/grab_file/grab_file.h>
4 #include <ccan/str_talloc/str_talloc.h>
5 #include <ccan/read_write_all/read_write_all.h>
6 #include <ccan/compiler/compiler.h>
7 #include "tools.h"
8 #include <sys/types.h>
9 #include <sys/stat.h>
10 #include <fcntl.h>
11 #include <err.h>
12 #include <stdbool.h>
13 #include <unistd.h>
14 #include <errno.h>
15
16 static char ** PRINTF_FMT(2, 3)
17 lines_from_cmd(const void *ctx, const char *format, ...)
18 {
19         va_list ap;
20         char *cmd, *buffer;
21         FILE *p;
22
23         va_start(ap, format);
24         cmd = talloc_vasprintf(ctx, format, ap);
25         va_end(ap);
26
27         p = popen(cmd, "r");
28         if (!p)
29                 err(1, "Executing '%s'", cmd);
30
31         buffer = grab_fd(ctx, fileno(p), NULL);
32         if (!buffer)
33                 err(1, "Reading from '%s'", cmd);
34         pclose(p);
35
36         return strsplit(ctx, buffer, "\n");
37 }
38
39 /* Be careful about trying to compile over running programs (parallel make).
40  * temp_file helps here. */
41 char *compile_info(const void *ctx, const char *dir)
42 {
43         char *info_c_file, *info, *ccandir, *compiled, *output;
44         size_t len;
45         int fd;
46
47         /* Copy it to a file with proper .c suffix. */
48         info = grab_file(ctx, talloc_asprintf(ctx, "%s/_info", dir), &len);
49         if (!info)
50                 return NULL;
51
52         info_c_file = temp_file(ctx, ".c", "_info");
53         fd = open(info_c_file, O_WRONLY|O_CREAT|O_EXCL, 0600);
54         if (fd < 0)
55                 return NULL;
56         if (!write_all(fd, info, len))
57                 return NULL;
58
59         if (close(fd) != 0)
60                 return NULL;
61
62         ccandir = talloc_dirname(ctx, dir);
63         if (strrchr(ccandir, '/'))
64                 *strrchr(ccandir, '/') = '\0';
65
66         compiled = temp_file(ctx, "", "info");
67         if (compile_and_link(ctx, info_c_file, ccandir, "",
68                              CCAN_COMPILER, CCAN_CFLAGS " -I.", "",
69                              compiled, &output))
70                 return compiled;
71         return NULL;
72 }
73
74 static char **get_one_deps(const void *ctx, const char *dir,
75                            char *(*get_info)(const void *ctx, const char *dir))
76 {
77         char **deps, *cmd;
78         char *infofile = get_info(ctx, dir);
79
80         if (!infofile)
81                 return NULL;
82
83         cmd = talloc_asprintf(ctx, "%s depends", infofile);
84         deps = lines_from_cmd(cmd, "%s", cmd);
85         if (!deps)
86                 err(1, "Could not run '%s'", cmd);
87         return deps;
88 }
89
90 /* Make copy of src, replacing "from" with "to". */
91 static char *replace(const void *ctx, const char *src,
92                      const char *from, const char *to)
93 {
94         char *ret = talloc_strdup(ctx, "");
95         unsigned int rlen, len, add;
96
97         rlen = len = 0;
98         for (;;) {
99                 const char *next = strstr(src+len, from);
100                 if (!next)
101                         add = strlen(src+len) + 1;
102                 else
103                         add = next - (src+len);
104
105                 ret = talloc_realloc(ctx, ret, char, rlen + add + strlen(to)+1);
106                 memcpy(ret+rlen, src+len, add);
107                 if (!next)
108                         return ret;
109                 len += add;
110                 rlen += add;
111                 strcpy(ret+rlen, to);
112                 rlen += strlen(to);
113                 len += strlen(from);
114         }
115 }
116
117 /* This is a terrible hack.  We scan for ccan/ strings. */
118 static char **get_one_safe_deps(const void *ctx,
119                                 const char *dir,
120                                 char *(*unused)(const void *, const char *))
121 {
122         char **deps, **lines, *raw, *fname;
123         unsigned int i, n;
124
125         fname = talloc_asprintf(ctx, "%s/_info", dir);
126         raw = grab_file(fname, fname, NULL);
127         if (!raw)
128                 errx(1, "Could not open %s", fname);
129
130         /* Replace \n by actual line breaks, and split it. */
131         lines = strsplit(raw, replace(raw, raw, "\\n", "\n"), "\n");
132
133         deps = talloc_array(ctx, char *, talloc_array_length(lines));
134
135         for (n = i = 0; lines[i]; i++) {
136                 char *str;
137                 unsigned int len;
138
139                 /* Ignore lines starting with # (e.g. #include) */
140                 if (lines[i][0] == '#')
141                         continue;
142
143                 /* Start of line, or after ". */
144                 if (strstarts(lines[i], "ccan/"))
145                         str = lines[i];
146                 else {
147                         str = strstr(lines[i], "\"ccan/");
148                         if (!str)
149                                 continue;
150                         str++;
151                 }
152                 
153                 len = strspn(str, "/abcdefghijklmnopqrstuvxwyz12345678980_");
154                 if (len == 5)
155                         continue;
156                 deps[n++] = talloc_strndup(deps, str, len);
157         }
158         deps[n] = NULL;
159         talloc_free(fname);
160
161         /* Make sure talloc_array_length() works */
162         return talloc_realloc(NULL, deps, char *, n + 1);
163 }
164
165 static bool have_dep(char **deps, const char *dep)
166 {
167         unsigned int i;
168
169         for (i = 0; deps[i]; i++)
170                 if (streq(deps[i], dep))
171                         return true;
172         return false;
173 }
174
175
176
177 /* Gets all the dependencies, recursively. */
178 static char **
179 get_all_deps(const void *ctx, const char *dir,
180              char *(*get_info)(const void *ctx, const char *dir),
181              char **(*get_one)(const void *, const char *,
182                                char *(*get_info)(const void *, const char *)))
183 {
184         char **deps;
185         unsigned int i;
186
187         deps = get_one(ctx, dir, get_info);
188         for (i = 0; i < talloc_array_length(deps)-1; i++) {
189                 char **newdeps;
190                 unsigned int j;
191                 char *subdir;
192
193                 if (!strstarts(deps[i], "ccan/"))
194                         continue;
195
196                 subdir = talloc_asprintf(ctx, "%s/%s",
197                                          talloc_dirname(ctx, dir),
198                                          deps[i] + strlen("ccan/"));
199                 newdeps = get_one(ctx, subdir, get_info);
200
201                 /* Should be short, so brute-force out dups. */
202                 for (j = 0; j < talloc_array_length(newdeps)-1; j++) {
203                         unsigned int num;
204
205                         if (have_dep(deps, newdeps[j]))
206                                 continue;
207
208                         num = talloc_array_length(deps)-1;
209                         deps = talloc_realloc(NULL, deps, char *, num + 2);
210                         deps[num] = newdeps[j];
211                         deps[num+1] = NULL;
212                 }
213         }
214         return deps;
215 }
216
217 /* Can return NULL: _info may not support 'libs'. */
218 static char **get_one_libs(const void *ctx, const char *dir,
219                            char *(*get_info)(const void *ctx, const char *dir))
220 {
221         char *cmd, **lines;
222
223         cmd = talloc_asprintf(ctx, "%s libs", get_info(ctx, dir));
224         lines = lines_from_cmd(cmd, "%s", cmd);
225         /* Strip final NULL. */
226         if (lines)
227                 lines = talloc_realloc(NULL, lines, char *,
228                                        talloc_array_length(lines)-1);
229         return lines;
230 }
231
232 char **get_libs(const void *ctx, const char *dir, bool recurse,
233                 char *(*get_info)(const void *ctx, const char *dir))
234 {
235         char **deps, **libs;
236         unsigned int i, len;
237
238         libs = get_one_libs(ctx, dir, get_info);
239         len = talloc_array_length(libs);
240
241         if (recurse) {
242                 deps = get_deps(ctx, dir, true, get_info);
243                 for (i = 0; deps[i]; i++) {
244                         char **newlibs, *subdir;
245                         size_t newlen;
246
247                         if (!strstarts(deps[i], "ccan/"))
248                                 continue;
249
250                         subdir = talloc_asprintf(ctx, "%s/%s",
251                                                  talloc_dirname(ctx, dir),
252                                                  deps[i] + strlen("ccan/"));
253
254                         newlibs = get_one_libs(ctx, subdir, get_info);
255                         newlen = talloc_array_length(newlibs);
256                         libs = talloc_realloc(ctx, libs, char *, len + newlen);
257                         memcpy(&libs[len], newlibs,
258                                sizeof(newlibs[0])*newlen);
259                         len += newlen;
260                 }
261         }
262
263         /* Append NULL entry. */
264         libs = talloc_realloc(ctx, libs, char *, len + 1);
265         libs[len] = NULL;
266         return libs;
267 }
268
269 /* FIXME: This is O(n^2), which is dumb. */
270 static char **uniquify_deps(char **deps)
271 {
272         unsigned int i, j, num;
273
274         if (!deps)
275                 return NULL;
276
277         num = talloc_array_length(deps) - 1;
278         for (i = 0; i < num; i++) {
279                 for (j = i + 1; j < num; j++) {
280                         if (streq(deps[i], deps[j])) {
281                                 memmove(&deps[j], &deps[j+1],
282                                         (num - j - 1) * sizeof(char *));
283                                 num--;
284                         }
285                 }
286         }
287         deps[num] = NULL;
288         /* Make sure talloc_array_length() works */
289         return talloc_realloc(NULL, deps, char *, num + 1);
290 }
291
292 char **get_deps(const void *ctx, const char *dir, bool recurse,
293                 char *(*get_info)(const void *ctx, const char *dir))
294 {
295         char **ret;
296
297         if (!recurse) {
298                 ret = get_one_deps(ctx, dir, get_info);
299         } else
300                 ret = get_all_deps(ctx, dir, get_info, get_one_deps);
301
302         return uniquify_deps(ret);
303 }
304
305 char **get_safe_ccan_deps(const void *ctx, const char *dir,
306                           bool recurse)
307 {
308         char **ret;
309         if (!recurse) {
310                 ret = get_one_safe_deps(ctx, dir, NULL);
311         } else {
312                 ret = get_all_deps(ctx, dir, NULL, get_one_safe_deps);
313         }
314         return uniquify_deps(ret);
315 }