X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2Fd1_write.c;h=1e80c6b2400768d85c9970f80ad30356198dbd96;hb=0a39dcf0b6b38833a59e3deae198ef204cfee003;hp=66e8b26be9d76d73671db2d7ff3e44bae3839ec7;hpb=8916c5245235fa1229f8a23ba7ebb1500e98b818;p=yaz-moved-to-github.git diff --git a/retrieval/d1_write.c b/retrieval/d1_write.c index 66e8b26..1e80c6b 100644 --- a/retrieval/d1_write.c +++ b/retrieval/d1_write.c @@ -1,31 +1,25 @@ /* - * Copyright (c) 1995, Index Data. + * Copyright (c) 1995-2002, Index Data. * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Log: d1_write.c,v $ - * Revision 1.2 1995-12-13 17:14:27 quinn - * *** empty log message *** - * - * Revision 1.1 1995/12/13 15:38:43 quinn - * Added SGML-output filter. - * - * + * $Id: d1_write.c,v 1.14 2002-07-05 12:42:52 adam Exp $ */ #include -#include -#include -#include +#include +#include #define IDSGML_MARGIN 75 -static int wordlen(char *b) +#define PRETTY_FORMAT 0 + +static int wordlen(char *b, int max) { int l = 0; - while (*b && !isspace(*b)) + while (l < max && !d1_isspace(*b)) l++, b++; return l; } @@ -39,103 +33,175 @@ 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; - if (c->u.tag.element && c->u.tag.element->tag) - tag = c->u.tag.element->tag->names->name; /* first name */ + tag = c->u.tag.tag; + if (!data1_matchstr(tag, "wellknown")) /* skip wellknown */ + { + if (nodetoidsgml(c, select, b, col) < 0) + return -1; + } else - tag = c->u.tag.tag; /* local string tag */ - if (data1_matchstr(tag, "wellknown")) /* skip wellknown */ { - sprintf(line, "<%s>\n", tag); - wrbuf_write(b, line, strlen(line)); - col = 0; + data1_xattr *p; + +#if PRETTY_FORMAT + sprintf (line, "%*s", col, ""); + wrbuf_puts (b, line); +#endif + wrbuf_puts (b, "<"); + wrbuf_puts (b, tag); + for (p = c->u.tag.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, '"'); + } + wrbuf_puts(b, ">"); +#if PRETTY_FORMAT + wrbuf_puts(b, "\n"); +#endif + if (nodetoidsgml(c, select, b, (col > 40) ? 40 : col+2) < 0) + return -1; +#if PRETTY_FORMAT + sprintf (line, "%*s", col); + wrbuf_puts(b, line); +#endif + wrbuf_puts(b, ""); +#if PRETTY_FORMAT + wrbuf_puts (b, "\n"); +#endif } - if (nodetoidsgml(c, select, b, col) < 0) - return -1; - wrbuf_write(b, "\n", 4); - col = 0; } - 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; - if (c->u.data.what == DATA1I_text) - { - while (l) - { - int wlen; - - while (l && isspace(*p)) - p++, l--; - if (!l) - break; - /* break if we'll cross margin and word is not too long */ - if (col + (wlen = wordlen(p)) > IDSGML_MARGIN && wlen < - IDSGML_MARGIN) - { - sprintf(line, "\n"); - col = 0; - wrbuf_write(b, line, strlen(line)); - first = 1; - } - if (!first) - { - wrbuf_putc(b, ' '); - col++; - } - while (l && !isspace(*p)) - { -#if 0 - if (col > NTOBUF_MARGIN) - { - wrbuf_putc(b, '='); - wrbuf_putc(b, '\n'); - sprintf(line, "%*s", indent * NTOBUF_INDENT, ""); - wrbuf_write(b, line, strlen(line)); - col = indent * NTOBUF_INDENT; - } +#if PRETTY_FORMAT + if (!c->u.data.formatted_text) + { + sprintf(line, "%*s", col, ""); + wrbuf_write(b, line, strlen(line)); + } #endif - wrbuf_putc(b, *p); - p++; - l--; - col++; - } - first = 0; - } - wrbuf_write(b, "\n", 1); - col = 0; - } - else if (c->u.data.what == DATA1I_num) + if (c->which == DATA1N_comment) + { + wrbuf_write (b, ""); +#if PRETTY_FORMAT + wrbuf_puts(b, "\n"); +#endif + } } } return 0; } -char *data1_nodetoidsgml(data1_node *n, int select, int *len) +char *data1_nodetoidsgml (data1_handle dh, data1_node *n, int select, int *len) { - static WRBUF b = 0; - char line[1024]; - - if (!b) - b = wrbuf_alloc(); - else - wrbuf_rewind(b); + WRBUF b = data1_get_wrbuf (dh); + + 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); }