]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/compulsory_tests/depends_exist.c
ccanlint: score_file_error() takes printf-format
[ccan] / tools / ccanlint / compulsory_tests / depends_exist.c
1 #include <tools/ccanlint/ccanlint.h>
2 #include <tools/tools.h>
3 #include <ccan/talloc/talloc.h>
4 #include <ccan/str/str.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <limits.h>
10 #include <errno.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <err.h>
14 #include <string.h>
15 #include <ctype.h>
16
17 static bool add_dep(struct manifest *m, const char *dep, struct score *score)
18 {
19         struct stat st;
20         struct manifest *subm;
21         char *dir = talloc_asprintf(m, "%s/%s", ccan_dir, dep);
22
23         /* FIXME: get_manifest has a tendency to exit. */
24         if (stat(dir, &st) != 0) {
25                 score->error
26                         = talloc_asprintf(m,
27                                           "Could not stat dependency %s: %s",
28                                           dir, strerror(errno));
29                 return false;
30         }
31         subm = get_manifest(m, dir);
32         list_add_tail(&m->deps, &subm->list);
33         return true;
34 }
35
36 static void check_depends_exist(struct manifest *m,
37                                 bool keep,
38                                 unsigned int *timeleft, struct score *score)
39 {
40         unsigned int i;
41         char **deps;
42         char *updir = talloc_strdup(m, m->dir);
43
44         *strrchr(updir, '/') = '\0';
45
46         if (safe_mode)
47                 deps = get_safe_ccan_deps(m, m->dir, true,
48                                           &m->info_file->compiled);
49         else
50                 deps = get_deps(m, m->dir, true, &m->info_file->compiled);
51
52         for (i = 0; deps[i]; i++) {
53                 if (!strstarts(deps[i], "ccan/"))
54                         continue;
55
56                 if (!add_dep(m, deps[i], score))
57                         return;
58         }
59
60         /* We may need libtap for testing, unless we're "tap" */
61         if (!streq(m->basename, "tap")
62             && (!list_empty(&m->run_tests) || !list_empty(&m->api_tests))) {
63                 if (!add_dep(m, "ccan/tap", score))
64                         return;
65         }
66
67         score->pass = true;
68         score->score = score->total;
69 }
70
71 struct ccanlint depends_exist = {
72         .key = "depends_exist",
73         .name = "Module's CCAN dependencies can be found",
74         .check = check_depends_exist,
75         .needs = "info_exists"
76 };
77
78 REGISTER_TEST(depends_exist);