]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/compulsory_tests/check_depends_exist.c
4a77d7e0e41ccd788f3d662090ad6fe94e7ffa11
[ccan] / tools / ccanlint / compulsory_tests / check_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 char *add_dep(char *sofar, struct manifest *m, const char *dep)
18 {
19         struct stat st;
20         struct ccan_file *f;
21
22         f = new_ccan_file(m, ccan_dir, talloc_strdup(m, dep));
23         if (stat(f->fullname, &st) != 0) {
24                 return talloc_asprintf_append(sofar,
25                                               "ccan/%s: expected it in"
26                                               " directory %s\n",
27                                               dep, f->fullname);
28         }
29
30         list_add_tail(&m->dep_dirs, &f->list);
31         return sofar;
32 }
33
34 static void *check_depends_exist(struct manifest *m, unsigned int *timeleft)
35 {
36         unsigned int i;
37         char *report = NULL;
38         char **deps;
39         char *updir = talloc_strdup(m, m->dir);
40
41         *strrchr(updir, '/') = '\0';
42
43         if (safe_mode)
44                 deps = get_safe_ccan_deps(m, m->dir, true,
45                                           &m->info_file->compiled);
46         else
47                 deps = get_deps(m, m->dir, true, &m->info_file->compiled);
48
49         for (i = 0; deps[i]; i++) {
50                 if (!strstarts(deps[i], "ccan/"))
51                         continue;
52
53                 report = add_dep(report, m, deps[i]);
54         }
55         return report;
56 }
57
58 static const char *describe_depends_exist(struct manifest *m,
59                                           void *check_result)
60 {
61         return talloc_asprintf(check_result,
62                                "The following dependencies are are expected:\n"
63                                "%s", (char *)check_result);
64 }
65
66 struct ccanlint depends_exist = {
67         .key = "depends-exist",
68         .name = "Module's CCAN dependencies are present",
69         .total_score = 1,
70         .check = check_depends_exist,
71         .describe = describe_depends_exist,
72 };
73
74 REGISTER_TEST(depends_exist, NULL);