X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2Fd1_write.c;h=1e80c6b2400768d85c9970f80ad30356198dbd96;hb=3422548c2ce84dce9283e9649588f82cc0cb5774;hp=51f2ff37c234d41755b4884bcd70e67d55444f5a;hpb=a9950f112b740bd1b6a2ccf20a584995608d26d6;p=yaz-moved-to-github.git diff --git a/retrieval/d1_write.c b/retrieval/d1_write.c index 51f2ff3..1e80c6b 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.10 2002-04-15 09:06:30 adam Exp $ + * $Id: d1_write.c,v 1.14 2002-07-05 12:42:52 adam Exp $ */ #include @@ -13,6 +13,8 @@ #define IDSGML_MARGIN 75 +#define PRETTY_FORMAT 0 + static int wordlen(char *b, int max) { int l = 0; @@ -31,7 +33,32 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) { char *tag; - if (c->which == DATA1N_tag) + if (c->which == DATA1N_preprocess) + { + data1_xattr *p; + +#if PRETTY_FORMAT + sprintf (line, "%*s", col, ""); + wrbuf_puts (b, line); +#endif + wrbuf_puts (b, "u.preprocess.target); + for (p = c->u.preprocess.attributes; p; p = p->next) + { + wrbuf_putc (b, ' '); + wrbuf_puts (b, p->name); + wrbuf_putc (b, '='); + wrbuf_putc (b, '"'); + wrbuf_puts (b, p->value); + wrbuf_putc (b, '"'); + } + if (c->child) + wrbuf_puts(b, " "); + if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) + return -1; + wrbuf_puts (b, "?>\n"); + } + else if (c->which == DATA1N_tag) { if (select && c->u.tag.node_selected) continue; @@ -43,13 +70,14 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) } else { -#if DATA1_USING_XATTR data1_xattr *p; -#endif - sprintf (line, "%*s<", col, ""); + +#if PRETTY_FORMAT + sprintf (line, "%*s", col, ""); wrbuf_puts (b, line); +#endif + wrbuf_puts (b, "<"); wrbuf_puts (b, tag); -#if DATA1_USING_XATTR for (p = c->u.tag.attributes; p; p = p->next) { wrbuf_putc (b, ' '); @@ -59,65 +87,108 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) wrbuf_puts (b, p->value); wrbuf_putc (b, '"'); } + wrbuf_puts(b, ">"); +#if PRETTY_FORMAT + wrbuf_puts(b, "\n"); #endif - wrbuf_puts(b, ">\n"); if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) return -1; - sprintf (line, "%*s\n", col, "", tag); - wrbuf_write(b, line, strlen(line)); +#if PRETTY_FORMAT + sprintf (line, "%*s", col); + wrbuf_puts(b, line); +#endif + wrbuf_puts(b, ""); +#if PRETTY_FORMAT + wrbuf_puts (b, "\n"); +#endif } } - else if (c->which == DATA1N_data) + else if (c->which == DATA1N_data || c->which == DATA1N_comment) { char *p = c->u.data.data; int l = c->u.data.len; int first = 1; int lcol = col; - sprintf(line, "%*s", col, ""); - wrbuf_write(b, line, strlen(line)); +#if PRETTY_FORMAT + if (!c->u.data.formatted_text) + { + sprintf(line, "%*s", col, ""); + wrbuf_write(b, line, strlen(line)); + } +#endif + if (c->which == DATA1N_comment) + { + wrbuf_write (b, ""); +#if PRETTY_FORMAT + wrbuf_puts(b, "\n"); +#endif + } } } return 0; @@ -126,16 +197,11 @@ static int nodetoidsgml(data1_node *n, int select, WRBUF b, int col) char *data1_nodetoidsgml (data1_handle dh, data1_node *n, int select, int *len) { WRBUF b = data1_get_wrbuf (dh); - char line[1024]; wrbuf_rewind(b); - sprintf(line, "<%s>\n", n->u.root.type); - wrbuf_write(b, line, strlen(line)); if (nodetoidsgml(n, select, b, 0)) return 0; - sprintf(line, "\n", n->u.root.type); - wrbuf_write(b, line, strlen(line)); *len = wrbuf_len(b); return wrbuf_buf(b); }