X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2Fd1_write.c;h=cba4ae9cbece263b36710f0522b42dc7202e0210;hb=32ff7687bdfe5b972d54b1ba4f3078cee011fadf;hp=1e80c6b2400768d85c9970f80ad30356198dbd96;hpb=aeec32da5e13c9f46062d07ac3c16582dbd479c8;p=yaz-moved-to-github.git diff --git a/retrieval/d1_write.c b/retrieval/d1_write.c index 1e80c6b..cba4ae9 100644 --- a/retrieval/d1_write.c +++ b/retrieval/d1_write.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: d1_write.c,v 1.14 2002-07-05 12:42:52 adam Exp $ + * $Id: d1_write.c,v 1.16 2002-07-29 20:04:08 adam Exp $ */ #include @@ -24,10 +24,50 @@ static int wordlen(char *b, int max) return l; } -static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) +static void indent (WRBUF b, int col) +{ + int i; + for (i = 0; i': + wrbuf_puts (b, ">"); + break; + case '<': + wrbuf_puts (b, "<"); + break; +#if 0 + case '&': + wrbuf_puts (b, "&"); + break; +#endif + default: + wrbuf_putc(b, msg[i]); + } + } +} + +static void wrbuf_put_cdata(WRBUF b, const char *msg) +{ + wrbuf_write_cdata (b, msg, strlen(msg)); +} + +static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col, + int pretty_format) { data1_node *c; - char line[1024]; for (c = n->child; c; c = c->next) { @@ -36,25 +76,24 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) if (c->which == DATA1N_preprocess) { data1_xattr *p; - -#if PRETTY_FORMAT - sprintf (line, "%*s", col, ""); - wrbuf_puts (b, line); -#endif + + if (pretty_format) + indent (b, col); wrbuf_puts (b, "u.preprocess.target); + wrbuf_put_cdata (b, c->u.preprocess.target); for (p = c->u.preprocess.attributes; p; p = p->next) { wrbuf_putc (b, ' '); - wrbuf_puts (b, p->name); + wrbuf_put_cdata (b, p->name); wrbuf_putc (b, '='); wrbuf_putc (b, '"'); - wrbuf_puts (b, p->value); + wrbuf_put_cdata (b, p->value); wrbuf_putc (b, '"'); } if (c->child) wrbuf_puts(b, " "); - if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) + if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2, + pretty_format) < 0) return -1; wrbuf_puts (b, "?>\n"); } @@ -65,44 +104,39 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) tag = c->u.tag.tag; if (!data1_matchstr(tag, "wellknown")) /* skip wellknown */ { - if (nodetoidsgml(c, select, b, col) < 0) + if (nodetoidsgml(c, select, b, col, pretty_format) < 0) return -1; } else { data1_xattr *p; -#if PRETTY_FORMAT - sprintf (line, "%*s", col, ""); - wrbuf_puts (b, line); -#endif + if (pretty_format) + indent (b, col); wrbuf_puts (b, "<"); - wrbuf_puts (b, tag); + wrbuf_put_cdata (b, tag); for (p = c->u.tag.attributes; p; p = p->next) { wrbuf_putc (b, ' '); - wrbuf_puts (b, p->name); + wrbuf_put_cdata (b, p->name); wrbuf_putc (b, '='); wrbuf_putc (b, '"'); - wrbuf_puts (b, p->value); + wrbuf_put_cdata (b, p->value); wrbuf_putc (b, '"'); } wrbuf_puts(b, ">"); -#if PRETTY_FORMAT - wrbuf_puts(b, "\n"); -#endif - if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) + if (pretty_format) + wrbuf_puts(b, "\n"); + if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2, + pretty_format) < 0) return -1; -#if PRETTY_FORMAT - sprintf (line, "%*s", col); - wrbuf_puts(b, line); -#endif + if (pretty_format) + indent (b, col); wrbuf_puts(b, ""); -#if PRETTY_FORMAT - wrbuf_puts (b, "\n"); -#endif + if (pretty_format) + wrbuf_puts (b, "\n"); } } else if (c->which == DATA1N_data || c->which == DATA1N_comment) @@ -112,24 +146,16 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) int first = 1; int lcol = col; -#if PRETTY_FORMAT - if (!c->u.data.formatted_text) - { - sprintf(line, "%*s", col, ""); - wrbuf_write(b, line, strlen(line)); - } -#endif + if (pretty_format && !c->u.data.formatted_text) + indent (b, col); if (c->which == DATA1N_comment) - { - wrbuf_write (b, ""); -#if PRETTY_FORMAT - wrbuf_puts(b, "\n"); -#endif + if (pretty_format) + wrbuf_puts(b, "\n"); } } } @@ -200,8 +220,20 @@ char *data1_nodetoidsgml (data1_handle dh, data1_node *n, int select, int *len) wrbuf_rewind(b); - if (nodetoidsgml(n, select, b, 0)) + if (!data1_is_xmlmode (dh)) + { + wrbuf_puts (b, "<"); + wrbuf_puts (b, n->u.root.type); + wrbuf_puts (b, ">\n"); + } + if (nodetoidsgml(n, select, b, 0, 0 /* no pretty format */)) return 0; + if (!data1_is_xmlmode (dh)) + { + wrbuf_puts (b, "u.root.type); + wrbuf_puts (b, ">\n"); + } *len = wrbuf_len(b); return wrbuf_buf(b); }