]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/depends_accurate.c
ccanlint: make depends_accurate test more accurate.
[ccan] / tools / ccanlint / tests / depends_accurate.c
index 943fa350e09b3a8d6bc8ffc10c990f3e12e4a8d7..986fb3bcc398df429e3b09d05cd081dc22e9d039 100644 (file)
@@ -2,6 +2,7 @@
 #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 <string.h>
 #include <ctype.h>
 
-static char *strip_spaces(const void *ctx, char *line)
-{
-       char *p = talloc_strdup(ctx, line);
-       unsigned int i, j;
-
-       for (i = 0, j = 0; p[i]; i++) {
-               if (!isspace(p[i]))
-                       p[j++] = p[i];
-       }
-       p[j] = '\0';
-       return p;
-}
-
 static bool has_dep(struct manifest *m, const char *depname)
 {
        struct manifest *i;
@@ -44,7 +32,6 @@ static bool has_dep(struct manifest *m, const char *depname)
 }
 
 static void check_depends_accurate(struct manifest *m,
-                                  bool keep,
                                   unsigned int *timeleft, struct score *score)
 {
        struct list_head *list;
@@ -58,38 +45,41 @@ static void check_depends_accurate(struct manifest *m,
                list_for_each(list, f, list) {
                        unsigned int i;
                        char **lines = get_ccan_file_lines(f);
+                       struct line_info *li = get_ccan_line_info(f);
 
                        for (i = 0; lines[i]; i++) {
-                               char *p;
-                               if (lines[i][strspn(lines[i], " \t")] != '#')
-                                       continue;
-                               p = strip_spaces(f, lines[i]);
-                               if (!strstarts(p, "#include<ccan/")
-                                   && !strstarts(p, "#include\"ccan/"))
+                               char *mod;
+                               if (!strreg(f, lines[i],
+                                           "^[ \t]*#[ \t]*include[ \t]*[<\"]"
+                                           "ccan/+([^/]+)/", &mod))
                                        continue;
-                               p += strlen("#include\"ccan/");
-                               if (!strchr(strchr(p, '/') + 1, '/'))
-                                       continue;
-                               *strchr(strchr(p, '/') + 1, '/') = '\0';
-                               if (has_dep(m, p))
+
+                               if (has_dep(m, mod))
                                        continue;
-                               score->error = "Includes a ccan module"
-                                       " not listed in _info";
-                               score_file_error(score, f, i+1, lines[i]);
+
+                               /* 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);
+                               }
                        }
                }
        }
 
        if (!score->error) {
-               score->pass = true;
                score->score = score->total;
+               score->pass = true;
        }
 }
 
 struct ccanlint depends_accurate = {
-       .key = "depends-accurate",
-       .name = "Module's CCAN dependencies are the only ccan files #included",
+       .key = "depends_accurate",
+       .name = "Module's CCAN dependencies are the only CCAN files #included",
        .check = check_depends_accurate,
+       .needs = "depends_exist"
 };
 
-REGISTER_TEST(depends_accurate, &depends_exist, NULL);
+REGISTER_TEST(depends_accurate);