]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/ccanlint.h
ccanlint: use traversal to trim tests we want to skip.
[ccan] / tools / ccanlint / ccanlint.h
1 #ifndef CCAN_LINT_H
2 #define CCAN_LINT_H
3 #include "config.h"
4 #include <ccan/list/list.h>
5 #include <ccan/dgraph/dgraph.h>
6 #include <stdbool.h>
7 #include "../doc_extract.h"
8 #include "licenses.h"
9
10 #define REGISTER_TEST(name, ...) extern struct ccanlint name
11
12 /* 0 == Describe failed tests.
13    1 == Describe results for partial failures.
14    2 == One line per test, plus details of failures.
15
16    Mainly for debugging ccanlint:
17    3 == Describe every object built.
18    4 == Describe every action. */
19 extern int verbose;
20
21 enum compile_type {
22         COMPILE_NORMAL,
23         COMPILE_NOFEAT,
24         COMPILE_COVERAGE,
25         COMPILE_TYPES
26 };
27
28 struct manifest {
29         char *dir;
30         /* The module name, ie. final element of dir name */
31         char *basename;
32         struct ccan_file *info_file;
33
34         /* Linked off deps. */
35         struct list_node list;
36         /* Where our final compiled output is */
37         char *compiled[COMPILE_TYPES];
38
39         struct list_head c_files;
40         struct list_head h_files;
41
42         struct list_head run_tests;
43         struct list_head api_tests;
44         struct list_head compile_ok_tests;
45         struct list_head compile_fail_tests;
46         struct list_head other_test_c_files;
47         struct list_head other_test_files;
48
49         struct list_head other_files;
50         struct list_head examples;
51         struct list_head mangled_examples;
52
53         /* From tests/check_depends_exist.c */
54         struct list_head deps;
55
56         /* From tests/license_exists.c */
57         enum license license;
58 };
59
60 /* Get the manifest for a given directory. */
61 struct manifest *get_manifest(const void *ctx, const char *dir);
62
63 /* Error in a particular file: stored off score->per_file_errors. */
64 struct file_error {
65         struct list_node list;
66         struct ccan_file *file;
67         unsigned int line;
68 };
69
70 /* The score for an individual test. */
71 struct score {
72         /* Starts as false: if not set to true, ccanlint exits non-zero.
73          * Thus it is usually set for compilation or other serious failures. */
74         bool pass;
75         /* Starts at 0 and 1 respectively. */
76         unsigned int score, total;
77         /* The error message to print. */
78         char *error;
79         /* Per file errors, set by score_file_error() */
80         struct list_head per_file_errors;
81 };
82
83 struct ccanlint {
84         /* More concise unique name of test. */
85         const char *key;
86
87         /* Unique name of test */
88         const char *name;
89
90         /* Can we run this test?  Return string explaining why, if not. */
91         const char *(*can_run)(struct manifest *m);
92
93         /* Should we stop immediately if test fails? */
94         bool compulsory;
95
96         /* keep is set if you should keep the results.
97          * If timeleft is set to 0, means it timed out.
98          * score is the result, and a talloc context freed after all our
99          * depends are done. */
100         void (*check)(struct manifest *m,
101                       bool keep, unsigned int *timeleft, struct score *score);
102
103         /* Can we do something about it? (NULL if not) */
104         void (*handle)(struct manifest *m, struct score *score);
105
106         /* Options from _info. */
107         char **options;
108         /* If not set, we'll give an error if they try to set options. */
109         bool takes_options;
110
111         /* Space-separated list of dependency keys. */
112         const char *needs;
113
114         /* Internal use fields: */
115         /* We are a node in a dependency graph. */
116         struct dgraph_node node;
117         /* Did we skip a dependency?  If so, must skip this, too. */
118         const char *skip;
119         /* Did the user want to keep these results? */
120         bool keep_results;
121         /* Have we already run this? */
122         bool done;
123 };
124
125 /* Ask the user a yes/no question: the answer is NO if there's an error. */
126 bool ask(const char *question);
127
128 enum line_info_type {
129         PREPROC_LINE, /* Line starts with # */
130         CODE_LINE, /* Code (ie. not pure comment). */
131         DOC_LINE, /* Line with kernel-doc-style comment. */
132         COMMENT_LINE, /* (pure) comment line */
133 };
134
135 /* So far, only do simple #ifdef/#ifndef/#if defined/#if !defined tests,
136  * and #if <SYMBOL>/#if !<SYMBOL> */
137 struct pp_conditions {
138         /* We're inside another ifdef? */
139         struct pp_conditions *parent;
140
141         enum {
142                 PP_COND_IF,
143                 PP_COND_IFDEF,
144                 PP_COND_UNKNOWN,
145         } type;
146
147         bool inverse;
148         const char *symbol;
149 };
150
151 /* Preprocessor information about each line. */
152 struct line_info {
153         enum line_info_type type;
154
155         /* Is this actually a continuation of line above? (which ends in \) */
156         bool continued;
157
158         /* Conditions for this line to be compiled. */
159         struct pp_conditions *cond;
160 };
161
162 struct ccan_file {
163         struct list_node list;
164
165         /* Name (usually, within m->dir). */
166         char *name;
167
168         /* Full path name. */
169         char *fullname;
170
171         /* Pristine version of the original file.
172          * Use get_ccan_file_contents to fill this. */
173         const char *contents;
174         size_t contents_size;
175
176         /* Use get_ccan_file_lines / get_ccan_line_info to fill these. */
177         unsigned int num_lines;
178         char **lines;
179         struct line_info *line_info;
180
181         struct list_head *doc_sections;
182
183         /* If this file gets compiled (eg. .C file to .o file), result here. */
184         char *compiled[COMPILE_TYPES];
185
186         /* Filename containing output from valgrind. */
187         char *valgrind_log;
188
189         /* Leak output from valgrind. */
190         char *leak_info;
191
192         /* Simplified stream (lowercase letters and single spaces) */
193         char *simplified;
194 };
195
196 /* A new ccan_file, with the given name (talloc_steal onto returned value). */
197 struct ccan_file *new_ccan_file(const void *ctx, const char *dir, char *name);
198
199 /* Use this rather than accessing f->contents directly: loads on demand. */
200 const char *get_ccan_file_contents(struct ccan_file *f);
201
202 /* Use this rather than accessing f->lines directly: loads on demand. */
203 char **get_ccan_file_lines(struct ccan_file *f);
204
205 /* Use this rather than accessing f->lines directly: loads on demand. */
206 struct line_info *get_ccan_line_info(struct ccan_file *f);
207
208 /* Use this rather than accessing f->simplified directly: loads on demand. */
209 const char *get_ccan_simplified(struct ccan_file *f);
210
211 enum line_compiled {
212         NOT_COMPILED,
213         COMPILED,
214         MAYBE_COMPILED,
215 };
216
217 /* Simple evaluator.  If symbols are set this way, is this condition true?
218  * NULL values mean undefined, NULL symbol terminates. */
219 enum line_compiled get_ccan_line_pp(struct pp_conditions *cond,
220                                     const char *symbol,
221                                     const unsigned int *value, ...);
222
223 /* Get token if it's equal to token. */
224 bool get_token(const char **line, const char *token);
225 /* Talloc copy of symbol token, or NULL.  Increment line. */
226 char *get_symbol_token(void *ctx, const char **line);
227
228 /* Similarly for ->doc_sections */
229 struct list_head *get_ccan_file_docs(struct ccan_file *f);
230
231 /* Get NULL-terminated array options for this file for this test */
232 char **per_file_options(const struct ccanlint *test, struct ccan_file *f);
233
234 /* Append message about this file (and line, if non-zero) to the score->error */
235 void score_file_error(struct score *, struct ccan_file *f, unsigned line,
236                       const char *errorfmt, ...);
237
238 /* Start a command in the background. */
239 void run_command_async(const void *ctx, unsigned int time_ms,
240                        const char *fmt, ...);
241
242 /* Async version of compile_and_link. */
243 void compile_and_link_async(const void *ctx, unsigned int time_ms,
244                             const char *cfile, const char *ccandir,
245                             const char *objs, const char *compiler,
246                             const char *cflags,
247                             const char *libs, const char *outfile);
248
249 /* Get results of a command, returning ctx (and free it). */
250 void *collect_command(bool *ok, char **output);
251
252 /* Normal tests. */
253 extern struct ccanlint trailing_whitespace;
254
255 /* Dependencies */
256 struct dependent {
257         struct list_node node;
258         struct ccanlint *dependent;
259 };
260
261 /* Is this test excluded (cmdline or _info). */
262 bool is_excluded(const char *name);
263
264 /* Called to add options from _info, once it's located. */
265 void add_info_options(struct ccan_file *info);
266
267 /* Are we happy to compile stuff, or just non-intrusive tests? */
268 extern bool safe_mode;
269
270 /* Where is the ccan dir?  Available after first manifest. */
271 extern const char *ccan_dir;
272
273 /* Compiler and CFLAGS, from config.h if available. */
274 extern const char *compiler, *cflags;
275
276 /* Contents of config.h (or NULL if not found) */
277 extern const char *config_header;
278
279 #endif /* CCAN_LINT_H */