📄 d1_soif.c
字号:
/* $Id: d1_soif.c,v 1.2 2002/10/22 13:19:50 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data ApsThis file is part of the Zebra server.Zebra is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the FreeSoftware Foundation; either version 2, or (at your option) any laterversion.Zebra is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY orFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licensefor more details.You should have received a copy of the GNU General Public Licensealong with Zebra; see the file LICENSE.zebra. If not, write to theFree Software Foundation, 59 Temple Place - Suite 330, Boston, MA02111-1307, USA.*//* * This module generates SOIF (Simple Object Interchange Format) records * from d1-nodes. nested elements are flattened out, depth first, by * concatenating the tag names at each level. */#include <yaz/wrbuf.h>#include <data1.h>static int nodetoelement(data1_node *n, int select, char *prefix, WRBUF b){ data1_node *c; char tmp[1024]; for (c = n->child; c; c = c->next) { char *tag; 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 */ else tag = c->u.tag.tag; /* local string tag */ if (*prefix) sprintf(tmp, "%s-%s", prefix, tag); else strcpy(tmp, tag); if (nodetoelement(c, select, tmp, b) < 0) return 0; } else if (c->which == DATA1N_data) { char *p = c->u.data.data; int l = c->u.data.len; wrbuf_write(b, prefix, strlen(prefix)); sprintf(tmp, "{%d}:\t", l); wrbuf_write(b, tmp, strlen(tmp)); wrbuf_write(b, p, l); wrbuf_putc(b, '\n'); } } return 0;}char *data1_nodetosoif (data1_handle dh, data1_node *n, int select, int *len){ WRBUF b = data1_get_wrbuf (dh); char buf[128]; wrbuf_rewind(b); if (n->which != DATA1N_root) return 0; sprintf(buf, "@%s{\n", n->u.root.type); wrbuf_write(b, buf, strlen(buf)); if (nodetoelement(n, select, "", b)) return 0; wrbuf_write(b, "}\n", 2); *len = wrbuf_len(b); return wrbuf_buf(b);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -