X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=data1%2Fd1_attset.c;h=17963e91d071226a2919bb006a511165661ac3b0;hp=4e234fa926a2ac25b259d2f8cc4bfbfea93cdcb5;hb=e7cf9381a4b902cb2b91053f80ab7899b7d5bb00;hpb=5437b50633032595afe6f87dc0f989bc92a5aea8 diff --git a/data1/d1_attset.c b/data1/d1_attset.c index 4e234fa..17963e9 100644 --- a/data1/d1_attset.c +++ b/data1/d1_attset.c @@ -1,6 +1,6 @@ -/* $Id: d1_attset.c,v 1.5 2004-11-19 10:26:53 heikki Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: d1_attset.c,v 1.10 2006-05-19 23:45:28 adam Exp $ + Copyright (C) 1995-2006 + Index Data ApS This file is part of the Zebra server. @@ -24,24 +24,24 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include +#include #include -data1_att *data1_getattbyname(data1_handle dh, data1_attset *s, char *name) +data1_att *data1_getattbyname(data1_handle dh, data1_attset *s, const char *name) { data1_att *r; data1_attset_child *c; /* scan local set */ for (r = s->atts; r; r = r->next) - if (!data1_matchstr(r->name, name)) - return r; + if (!data1_matchstr(r->name, name)) + return r; for (c = s->children; c; c = c->next) { - assert (c->child); - /* scan included sets */ - if ((r = data1_getattbyname (dh, c->child, name))) - return r; + assert (c->child); + /* scan included sets */ + if ((r = data1_getattbyname (dh, c->child, name))) + return r; } return 0; } @@ -85,42 +85,24 @@ data1_attset *data1_read_attset(data1_handle dh, const char *file) int num; char *name; data1_att *t; - data1_local_attribute *locals; if (argc < 3) { yaz_log(YLOG_WARN, "%s:%d: Bad # of args to att", file, lineno); continue; } + if (argc > 3) + { + yaz_log(YLOG_WARN, "%s:%d: Local attributes not supported", + file, lineno); + } num = atoi (argv[1]); name = argv[2]; - if (argc == 3) /* no local attributes given */ - { - locals = (data1_local_attribute *) - nmem_malloc(mem, sizeof(*locals)); - locals->local = num; - locals->next = 0; - } - else /* parse the string "local{,local}" */ - { - char *p = argv[3]; - data1_local_attribute **ap = &locals; - do - { - *ap = (data1_local_attribute *) - nmem_malloc(mem, sizeof(**ap)); - (*ap)->local = atoi(p); - (*ap)->next = 0; - ap = &(*ap)->next; - } - while ((p = strchr(p, ',')) && *(++p)); - } t = *attp = (data1_att *)nmem_malloc(mem, sizeof(*t)); t->parent = res; t->name = nmem_strdup(mem, name); t->value = num; - t->locals = locals; t->next = 0; attp = &t->next; } @@ -191,3 +173,11 @@ data1_attset *data1_read_attset(data1_handle dh, const char *file) fclose(f); return res; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +