]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/compulsory_tests/depends_exist.c
c283f2a4b11b7b3919c60504ef452b9daded22da
[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 /* FIXME: check this is still true once we reduce features. */
37 static void check_depends_exist(struct manifest *m,
38                                 bool keep,
39                                 unsigned int *timeleft, struct score *score)
40 {
41         unsigned int i;
42         char **deps;
43         char *updir = talloc_strdup(m, m->dir);
44
45         if (strrchr(updir, '/'))
46                 *strrchr(updir, '/') = '\0';
47
48         if (safe_mode)
49                 deps = get_safe_ccan_deps(m, m->dir, true);
50         else
51                 deps = get_deps(m, m->dir, true,
52                                 &m->info_file->compiled[COMPILE_NORMAL]);
53
54         for (i = 0; deps[i]; i++) {
55                 if (!strstarts(deps[i], "ccan/"))
56                         continue;
57
58                 if (!add_dep(m, deps[i], score))
59                         return;
60         }
61
62         /* We may need libtap for testing, unless we're "tap" */
63         if (!streq(m->basename, "tap")
64             && (!list_empty(&m->run_tests) || !list_empty(&m->api_tests))) {
65                 if (!add_dep(m, "ccan/tap", score))
66                         return;
67         }
68
69         score->pass = true;
70         score->score = score->total;
71 }
72
73 struct ccanlint depends_exist = {
74         .key = "depends_exist",
75         .name = "Module's CCAN dependencies can be found",
76         .check = check_depends_exist,
77         .needs = "info_exists"
78 };
79
80 REGISTER_TEST(depends_exist);