Commit aba65f26 authored by Rusty Russell's avatar Rusty Russell

ccanlint: more heuristics for compiling examples.

Try to glue consecutive examples together if all else fails (works well for
ccan/alloc/alloc.h).  This means we should put examples into list in order.
parent 15a9d29c
...@@ -18,7 +18,7 @@ static const char *can_run(struct manifest *m) ...@@ -18,7 +18,7 @@ static const char *can_run(struct manifest *m)
static char *obj_list(const struct manifest *m) static char *obj_list(const struct manifest *m)
{ {
char *list; char *list = talloc_strdup(m, "");
struct ccan_file *i; struct ccan_file *i;
/* Object files for this module. */ /* Object files for this module. */
...@@ -107,12 +107,51 @@ static void strip_leading_whitespace(char **lines, unsigned prefix_len) ...@@ -107,12 +107,51 @@ static void strip_leading_whitespace(char **lines, unsigned prefix_len)
unsigned int i; unsigned int i;
for (i = 0; lines[i]; i++) for (i = 0; lines[i]; i++)
lines[i] += prefix_len; if (strlen(lines[i]) >= prefix_len)
lines[i] += prefix_len;
} }
static char *mangle(struct manifest *m, struct ccan_file *example) /* Examples will often build on prior ones. Try combining them. */
static char **combine(char **lines, char **prev)
{
unsigned int i, lines_total, prev_total, count;
char **ret;
if (!prev)
return NULL;
/* If it looks internal, put prev at start. */
if (lines[0]
&& isblank(lines[0][0])
&& looks_internal(lines[0] + strspn(lines[0], " \t"))) {
count = 0;
} else {
/* Try inserting in first elided position */
for (count = 0; lines[count]; count++) {
if (strcmp(lines[count], "...") == 0)
break;
}
if (!lines[count])
return NULL;
count++;
}
for (i = 0; lines[i]; i++);
lines_total = i;
for (i = 0; prev[i]; i++);
prev_total = i;
ret = talloc_array(lines, char *, lines_total + prev_total + 1);
memcpy(ret, lines, count * sizeof(ret[0]));
memcpy(ret + count, prev, prev_total * sizeof(ret[0]));
memcpy(ret + count + prev_total, lines + count,
(lines_total - count + 1) * sizeof(ret[0]));
return ret;
}
static char *mangle(struct manifest *m, char **lines)
{ {
char **lines = get_ccan_file_lines(example);
char *ret, *use_funcs = NULL; char *ret, *use_funcs = NULL;
bool in_function = false, fake_function = false, has_main = false; bool in_function = false, fake_function = false, has_main = false;
unsigned int i; unsigned int i;
...@@ -133,7 +172,7 @@ static char *mangle(struct manifest *m, struct ccan_file *example) ...@@ -133,7 +172,7 @@ static char *mangle(struct manifest *m, struct ccan_file *example)
"#include <ccan/%s/%s.h>\n", "#include <ccan/%s/%s.h>\n",
m->basename, m->basename); m->basename, m->basename);
ret = talloc_asprintf_append(ret, "/* Useful dummmy functions. */\n" ret = talloc_asprintf_append(ret, "/* Useful dummy functions. */\n"
"int somefunc(void);\n" "int somefunc(void);\n"
"int somefunc(void) { return 0; }\n"); "int somefunc(void) { return 0; }\n");
...@@ -179,6 +218,7 @@ static char *mangle(struct manifest *m, struct ccan_file *example) ...@@ -179,6 +218,7 @@ static char *mangle(struct manifest *m, struct ccan_file *example)
&& isblank(lines[i+1][0])) { && isblank(lines[i+1][0])) {
/* This implies we start a function here. */ /* This implies we start a function here. */
ret = start_main(ret); ret = start_main(ret);
has_main = true;
fake_function = true; fake_function = true;
in_function = true; in_function = true;
} }
...@@ -213,7 +253,9 @@ static char *mangle(struct manifest *m, struct ccan_file *example) ...@@ -213,7 +253,9 @@ static char *mangle(struct manifest *m, struct ccan_file *example)
} }
static struct ccan_file *mangle_example(struct manifest *m, static struct ccan_file *mangle_example(struct manifest *m,
struct ccan_file *example, bool keep) struct ccan_file *example,
char **lines,
bool keep)
{ {
char *name, *contents; char *name, *contents;
int fd; int fd;
...@@ -231,7 +273,7 @@ static struct ccan_file *mangle_example(struct manifest *m, ...@@ -231,7 +273,7 @@ static struct ccan_file *mangle_example(struct manifest *m,
if (fd < 0) if (fd < 0)
return NULL; return NULL;
contents = mangle(m, example); contents = mangle(m, lines);
if (write(fd, contents, strlen(contents)) != strlen(contents)) { if (write(fd, contents, strlen(contents)) != strlen(contents)) {
close(fd); close(fd);
return NULL; return NULL;
...@@ -245,6 +287,8 @@ static void *build_examples(struct manifest *m, bool keep, ...@@ -245,6 +287,8 @@ static void *build_examples(struct manifest *m, bool keep,
{ {
struct ccan_file *i; struct ccan_file *i;
struct score *score = talloc(m, struct score); struct score *score = talloc(m, struct score);
struct ccan_file *mangle;
char **prev = NULL;
score->score = 0; score->score = 0;
score->errors = NULL; score->errors = NULL;
...@@ -254,26 +298,49 @@ static void *build_examples(struct manifest *m, bool keep, ...@@ -254,26 +298,49 @@ static void *build_examples(struct manifest *m, bool keep,
examples_compile.total_score++; examples_compile.total_score++;
ret = compile(score, m, i, keep); ret = compile(score, m, i, keep);
if (!ret) if (!ret) {
prev = get_ccan_file_lines(i);
score->score++; score->score++;
else { continue;
struct ccan_file *mangle = mangle_example(m, i, keep); }
talloc_free(ret);
mangle = mangle_example(m, i, get_ccan_file_lines(i), keep);
ret = compile(score, m, mangle, keep);
if (!ret) {
prev = get_ccan_file_lines(i);
score->score++;
continue;
}
/* Try combining with previous (successful) example... */
prev = combine(get_ccan_file_lines(i), prev);
if (prev) {
talloc_free(ret); talloc_free(ret);
/* We're going to replace this failure. */
if (keep)
unlink(mangle->fullname);
talloc_free(mangle);
mangle = mangle_example(m, i, prev, keep);
ret = compile(score, m, mangle, keep); ret = compile(score, m, mangle, keep);
if (!ret) if (!ret) {
score->score++; score->score++;
else { continue;
if (!score->errors)
score->errors = ret;
else {
score->errors
= talloc_append_string(score->errors,
ret);
talloc_free(ret);
}
} }
} }
if (!score->errors)
score->errors = ret;
else {
score->errors = talloc_append_string(score->errors,
ret);
talloc_free(ret);
}
/* This didn't work, so not a candidate for combining. */
talloc_free(prev);
prev = NULL;
} }
return score; return score;
} }
......
...@@ -32,7 +32,7 @@ static char *add_example(struct manifest *m, struct ccan_file *source, ...@@ -32,7 +32,7 @@ static char *add_example(struct manifest *m, struct ccan_file *source,
example->function)); example->function));
f = new_ccan_file(m, talloc_dirname(m, name), talloc_basename(m, name)); f = new_ccan_file(m, talloc_dirname(m, name), talloc_basename(m, name));
talloc_steal(f, name); talloc_steal(f, name);
list_add(&m->examples, &f->list); list_add_tail(&m->examples, &f->list);
fd = open(f->fullname, O_WRONLY | O_CREAT | O_EXCL, 0600); fd = open(f->fullname, O_WRONLY | O_CREAT | O_EXCL, 0600);
if (fd < 0) if (fd < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment