From ea3f2a9d6b2f96cfd2acdfba1b0c4fb46091c67f Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Sun, 1 Jul 2012 21:29:44 -0300 Subject: [PATCH] tools/: add error reporting to text2edit --- tools/ant-txt/ant-txt.c | 5 ++- tools/libtxt/edit.c | 75 +++++++++++++++++++++++++---------------- tools/libtxt/libtxt.h | 2 +- tools/libtxt/util.h | 7 +--- 4 files changed, 50 insertions(+), 39 deletions(-) diff --git a/tools/ant-txt/ant-txt.c b/tools/ant-txt/ant-txt.c index bdd95f0..fd65744 100644 --- a/tools/ant-txt/ant-txt.c +++ b/tools/ant-txt/ant-txt.c @@ -57,10 +57,9 @@ int main(int argc, char **argv) (*last)->type = edit_nl; last = &(*last)->next; } - *last = text2edit(argv[i]); + *last = text2edit(argv[i], &err); if (!*last) { - fprintf(stderr, "\"%s\": compilation failed\n", - argv[i]); + fprintf(stderr, "\"%s\": %s\n", argv[i], err); return 1; } } diff --git a/tools/libtxt/edit.c b/tools/libtxt/edit.c index ce24af9..4e023f9 100644 --- a/tools/libtxt/edit.c +++ b/tools/libtxt/edit.c @@ -200,17 +200,17 @@ static void add_string(struct edit ***last, const char *start, size_t len) } -static int parse_coord(struct edit *e, const char *s, +static const char *parse_coord(struct edit *e, const char *s, enum edit_type off, enum edit_type pos) { char *end; - if (!*s) - return 0; - e->u.n = strtoul(s+1, &end, 0); + if (!s[2]) + return alloc_sprintf("incomplete %c tag", s[1]); + e->u.n = strtoul(s+3, &end, 0); if (*end != '>') - return 0; - switch (*s) { + return alloc_sprintf("invalid number in %c tag", s[1]); + switch (s[2]) { case '-': e->u.n = -e->u.n; /* fall through */ @@ -221,17 +221,17 @@ static int parse_coord(struct edit *e, const char *s, e->type = pos; break; default: - return 0; + return + alloc_sprintf("unrecognized positioning %c%c", s[1], s[2]); } - return 1; + return NULL; } -struct edit *text2edit(const char *s) +static const char *parse_edit(struct edit **edits, const char *s) { - struct edit *edits = NULL, *e; - struct edit **last = &edits; - const char *start; + struct edit *e; + const char *start, *err; int have_text = 0; char *end; @@ -240,7 +240,7 @@ struct edit *text2edit(const char *s) if (*s != '<' && *s != '\n') continue; if (s != start) { - add_string(&last, start, s-start); + add_string(&edits, start, s-start); have_text = 1; } start = s+1; @@ -251,8 +251,8 @@ struct edit *text2edit(const char *s) e = alloc_type(struct edit); e->type = edit_nl; /* pick something without data */ e->next = NULL; - *last = e; - last = &e->next; + *edits = e; + edits = &e->next; if (*s == '\n') { have_text = 0; @@ -261,49 +261,66 @@ struct edit *text2edit(const char *s) end = strchr(s, '>'); if (!end) - goto fail; + return alloc_sprintf("< without >"); switch (s[1]) { case 'F': if (strncmp(s, "type = edit_font; e->u.s = alloc_string_n(s+6, end-s-6); break; case 'I': if (strncmp(s, "type = edit_img; e->u.s = alloc_string_n(s+5, end-s-5); break; case 'S': if (strncmp(s, "type = edit_spc; e->u.n = strtoul(s+5, &end, 0); if (*end != '>') - goto fail; + return + alloc_sprintf("invalid number in SPC tag"); break; case 'X': - if (!parse_coord(e, s+2, edit_xoff, edit_xpos)) - goto fail; + err = parse_coord(e, s, edit_xoff, edit_xpos); + if (err) + return err; break; case 'Y': - if (!parse_coord(e, s+2, edit_yoff, edit_ypos)) - goto fail; + err = parse_coord(e, s, edit_yoff, edit_ypos); + if (err) + return err; break; default: - goto fail; + goto fail_tag; } s = end; start = s+1; } if (s != start) - add_string(&last, start, s-start); - return edits; + add_string(&edits, start, s-start); + return NULL; -fail: - free_edit(e); +fail_tag: + return alloc_sprintf("unrecognized tag in %.*s", end-s+1, s); +} + + +struct edit *text2edit(const char *s, const char **error) +{ + struct edit *edits = NULL; + const char *err; + + err = parse_edit(&edits, s); + if (!err) + return edits; + if (error) + *error = err; + free_edit(edits); return NULL; } diff --git a/tools/libtxt/libtxt.h b/tools/libtxt/libtxt.h index 532136b..d405ca5 100644 --- a/tools/libtxt/libtxt.h +++ b/tools/libtxt/libtxt.h @@ -68,7 +68,7 @@ int draw_char(void *canvas, int width, int height, const struct font *font, char c, int x, int y); int char_height(const struct font *font, char c); -struct edit *text2edit(const char *s); +struct edit *text2edit(const char *s, const char **error); char *edit2text(const struct edit *e); void free_edit(struct edit *e); diff --git a/tools/libtxt/util.h b/tools/libtxt/util.h index 0c418b4..4548cfb 100644 --- a/tools/libtxt/util.h +++ b/tools/libtxt/util.h @@ -32,12 +32,7 @@ static inline void *alloc_size(size_t size) #define alloc_type(t) ((t *) alloc_size(sizeof(t))) -/* - * @@@ __attribute__((used)) is an ugly wait to get rid of the "unused - * function" warning. (The "unused" attribute doesn't do the trick.) - */ - -static const char * __attribute__((used)) alloc_sprintf(const char *fmt, ...) +static const char *alloc_sprintf(const char *fmt, ...) { va_list ap; char *tmp, *res;