| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- #include <tools/ccanlint/ccanlint.h>
- #include <tools/tools.h>
- #include <ccan/talloc/talloc.h>
- #include <ccan/str/str.h>
- #include <ccan/str_talloc/str_talloc.h>
- #include <ccan/foreach/foreach.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <limits.h>
- #include <errno.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <err.h>
- #include <string.h>
- #include <ctype.h>
- static bool has_dep(struct manifest *m, char **deps, bool *used,
- const char *depname)
- {
- unsigned int i;
- /* We can include ourselves, of course. */
- if (streq(depname + strlen("ccan/"), m->modname))
- return true;
- for (i = 0; deps[i]; i++) {
- if (streq(deps[i], depname)) {
- used[i] = true;
- return true;
- }
- }
- return false;
- }
- static bool check_dep_includes(struct manifest *m,
- char **deps, bool *used,
- struct score *score,
- struct ccan_file *f)
- {
- unsigned int i;
- char **lines = get_ccan_file_lines(f);
- struct line_info *li = get_ccan_line_info(f);
- bool ok = true;
- for (i = 0; lines[i]; i++) {
- char *mod;
- if (!strreg(f, lines[i],
- "^[ \t]*#[ \t]*include[ \t]*[<\"]"
- "(ccan/+.+)/+[^/]+.h", &mod))
- continue;
- if (has_dep(m, deps, used, mod))
- continue;
- /* FIXME: we can't be sure about
- * conditional includes, so don't
- * complain. */
- if (!li[i].cond) {
- score_file_error(score, f, i+1,
- "%s not listed in _info", mod);
- ok = false;
- }
- }
- return ok;
- }
- static void check_depends_accurate(struct manifest *m,
- unsigned int *timeleft, struct score *score)
- {
- struct list_head *list;
- unsigned int i, core_deps, test_deps;
- char **deps, **tdeps;
- bool *used;
- bool ok = true;
- /* Get the *direct* dependencies. */
- if (safe_mode) {
- deps = get_safe_ccan_deps(m, m->dir, "depends", false);
- tdeps = get_safe_ccan_deps(m, m->dir, "testdepends", false);
- } else {
- deps = get_deps(m, m->dir, "depends", false,
- get_or_compile_info);
- tdeps = get_deps(m, m->dir, "testdepends", false,
- get_or_compile_info);
- }
- core_deps = talloc_array_length(deps) - 1;
- test_deps = talloc_array_length(tdeps) - 1;
- used = talloc_zero_array(m, bool, core_deps + test_deps + 1);
- foreach_ptr(list, &m->c_files, &m->h_files) {
- struct ccan_file *f;
- list_for_each(list, f, list)
- ok &= check_dep_includes(m, deps, used, score, f);
- }
- for (i = 0; i < core_deps; i++) {
- if (!used[i])
- score_file_error(score, m->info_file, 0,
- "%s is an unused dependency",
- deps[i]);
- }
- /* Now append test dependencies to deps. */
- deps = talloc_realloc(NULL, deps, char *,
- (core_deps + test_deps + 1) * sizeof(char *));
- memcpy(&deps[core_deps], tdeps, test_deps * sizeof(char *));
- /* ccan/tap is given a free pass. */
- deps[core_deps + test_deps] = (char *)"ccan/tap";
- deps[core_deps + test_deps + 1] = NULL;
- foreach_ptr(list, &m->run_tests, &m->api_tests,
- &m->compile_ok_tests, &m->compile_fail_tests,
- &m->other_test_c_files) {
- struct ccan_file *f;
- list_for_each(list, f, list)
- ok &= check_dep_includes(m, deps, used, score, f);
- }
- for (i = core_deps; i < test_deps; i++) {
- if (!used[i])
- score_file_error(score, m->info_file, 0,
- "%s is an unused test dependency",
- deps[i]);
- }
- if (!score->error)
- score->score = score->total;
- /* We don't count unused dependencies as an error (yet!) */
- score->pass = ok;
- }
- struct ccanlint depends_accurate = {
- .key = "depends_accurate",
- .name = "Module's CCAN dependencies are the only CCAN files #included",
- .check = check_depends_accurate,
- .needs = "depends_exist test_depends_exist"
- };
- REGISTER_TEST(depends_accurate);
|