1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* Trailing whitespace test. Almost embarrassing, but trivial. */
#include <tools/ccanlint/ccanlint.h>
#include <ccan/foreach/foreach.h>
#include <ccan/str/str.h>
#include <ccan/tal/str/str.h>
/* FIXME: only print full analysis if verbose >= 2. */
static char *get_trailing_whitespace(const tal_t *ctx, const char *line)
{
const char *e = strchr(line, 0);
while (e>line && (e[-1]==' ' || e[-1]=='\t'))
e--;
if (*e == 0)
return NULL; //there were no trailing spaces
if (e == line)
return NULL; //the line only consists of spaces
if (strlen(line) > 20)
return tal_fmt(ctx, "...'%s'", line + strlen(line) - 20);
return tal_fmt(ctx, "'%s'", line);
}
static void check_trailing_whitespace(struct manifest *m,
unsigned int *timeleft,
struct score *score)
{
struct list_head *list;
struct ccan_file *f;
unsigned int i;
/* We don't fail ccanlint for this. */
score->pass = true;
foreach_ptr(list, &m->c_files, &m->h_files) {
list_for_each(list, f, list) {
char **lines = get_ccan_file_lines(f);
for (i = 0; f->lines[i]; i++) {
char *err = get_trailing_whitespace(score,
lines[i]);
if (err)
score_file_error(score, f, i+1,
"%s", err);
}
}
}
if (!score->error) {
score->score = score->total;
}
}
struct ccanlint no_trailing_whitespace = {
.key = "no_trailing_whitespace",
.name = "Module's source code has no trailing whitespace",
.check = check_trailing_whitespace,
.needs = "info_exists"
};
REGISTER_TEST(no_trailing_whitespace);
|