X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2Fd1_write.c;h=87892706a4427512232896ca3c8baa141d32b0bc;hb=a774858896a9b56c966edbfb70d8eae1c91c4ad1;hp=b63190318496c9830a848de4a27efe7ac00800e6;hpb=cbd030fea600f6fb59fc377dec5efc2c708584bb;p=yaz-moved-to-github.git diff --git a/retrieval/d1_write.c b/retrieval/d1_write.c index b631903..8789270 100644 --- a/retrieval/d1_write.c +++ b/retrieval/d1_write.c @@ -1,34 +1,15 @@ /* - * Copyright (c) 1995-1998, 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.5 1998-06-05 08:57:43 adam - * Fixed problem with function wordlen. - * - * Revision 1.4 1998/05/18 13:07:08 adam - * Changed the way attribute sets are handled by the retriaval module. - * Extended Explain conversion / schema. - * Modified server and client to work with ASN.1 compiled protocol handlers. - * - * Revision 1.3 1997/09/17 12:10:39 adam - * YAZ version 1.4. - * - * 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.13 2002-07-03 10:04:04 adam Exp $ */ #include -#include -#include -#include +#include +#include #define IDSGML_MARGIN 75 @@ -36,7 +17,7 @@ static int wordlen(char *b, int max) { int l = 0; - while (l < max && !isspace(*b)) + while (l < max && !d1_isspace(*b)) l++, b++; return l; } @@ -50,86 +31,132 @@ 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; + + sprintf (line, "%*su.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); + data1_xattr *p; + + sprintf (line, "%*s<", col, ""); + wrbuf_puts (b, line); + 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, ">\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)); - col = 0; } - 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.formatted_text) + { + sprintf(line, "%*s", col, ""); + wrbuf_write(b, line, strlen(line)); + } + if (c->which == DATA1N_comment) + { + wrbuf_write (b, "\n", 4); + } } } return 0; @@ -138,16 +165,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); }