]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/tests/examples_exist.c
c42a2e4e9ff27c5f183b498e798c3ae10a1e238f
[ccan] / tools / ccanlint / tests / examples_exist.c
1 #include <tools/ccanlint/ccanlint.h>
2 #include <tools/tools.h>
3 #include <ccan/str/str.h>
4 #include <ccan/tal/path/path.h>
5 #include <ccan/take/take.h>
6 #include <ccan/cast/cast.h>
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <limits.h>
12 #include <errno.h>
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <err.h>
16 #include <string.h>
17 #include <ctype.h>
18
19 /* Creates and adds an example file. */
20 static char *add_example(struct manifest *m, struct ccan_file *source,
21                          struct doc_section *example)
22 {
23         char *name, *linemarker;
24         unsigned int i;
25         int fd;
26         struct ccan_file *f;
27
28         name = tal_fmt(m, "example-%s-%s",
29                        source->name, example->function);
30         /* example->function == 'struct foo' */
31         while (strchr(name, ' '))
32                 *strchr(name, ' ') = '_';
33
34         name = temp_file(m, ".c", take(name));
35         f = new_ccan_file(m, take(path_dirname(m, name)),
36                           take(path_basename(m, name)));
37         tal_steal(f, name);
38         list_add_tail(&m->examples, &f->list);
39
40         fd = open(f->fullname, O_WRONLY | O_CREAT | O_EXCL, 0600);
41         if (fd < 0)
42                 return tal_fmt(m, "Creating temporary file %s: %s",
43                                f->fullname, strerror(errno));
44
45         /* Add #line to demark where we are from, so errors are correct! */
46         linemarker = tal_fmt(f, "#line %i \"%s\"\n",
47                              example->srcline+2, source->fullname);
48         write(fd, linemarker, strlen(linemarker));
49
50         for (i = 0; i < example->num_lines; i++) {
51                 if (write(fd, example->lines[i], strlen(example->lines[i]))
52                     != strlen(example->lines[i])
53                     || write(fd, "\n", 1) != 1) {
54                         close(fd);
55                         return cast_const(char *,
56                                           "Failure writing to temporary file");
57                 }
58         }
59         close(fd);
60         return NULL;
61 }
62
63 /* FIXME: We should have one example per function in header. */
64 static void extract_examples(struct manifest *m,
65                              unsigned int *timeleft,
66                              struct score *score)
67 {
68         struct ccan_file *f, *mainh = NULL; /* gcc complains uninitialized */
69         struct doc_section *d;
70         bool have_info_example = false, have_header_example = false;
71
72         score->total = 2;
73         list_for_each(get_ccan_file_docs(m->info_file), d, list) {
74                 if (streq(d->type, "example")) {
75                         score->error = add_example(m, m->info_file, d);
76                         if (score->error)
77                                 return;
78                         have_info_example = true;
79                 }
80         }
81
82         /* Check all headers for examples. */
83         list_for_each(&m->h_files, f, list) {
84                 if (strstarts(f->name, m->basename)
85                     && strlen(f->name) == strlen(m->basename) + 2)
86                         mainh = f;
87
88                 list_for_each(get_ccan_file_docs(f), d, list) {
89                         if (streq(d->type, "example")) {
90                                 score->error = add_example(m, f, d);
91                                 if (score->error)
92                                         return;
93                                 have_header_example = true;
94                         }
95                 }
96         }
97
98         /* We don't fail ccanlint for this. */
99         score->pass = true;
100         if (have_info_example && have_header_example) {
101                 score->score = score->total;
102                 return;
103         }
104
105         if (!have_info_example)
106                 score_file_error(score, m->info_file, 0, "No Example: section");
107         if (!have_header_example)
108                 score_file_error(score, mainh, 0, "No Example: section");
109
110         score->score = have_info_example + have_header_example;
111 }
112
113 struct ccanlint examples_exist = {
114         .key = "examples_exist",
115         .name = "_info and main header file have Example: sections",
116         .check = extract_examples,
117         .needs = "info_exists main_header_exists"
118 };
119
120 REGISTER_TEST(examples_exist);