17963e91d071226a2919bb006a511165661ac3b0
[idzebra-moved-to-github.git] / data1 / d1_attset.c
1 /* $Id: d1_attset.c,v 1.10 2006-05-19 23:45:28 adam Exp $
2    Copyright (C) 1995-2006
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23 #include <stdio.h>
24 #include <assert.h>
25 #include <stdlib.h>
26
27 #include <yaz/log.h>
28 #include <idzebra/data1.h>
29
30 data1_att *data1_getattbyname(data1_handle dh, data1_attset *s, const char *name)
31 {
32     data1_att *r;
33     data1_attset_child *c;
34     
35     /* scan local set */
36     for (r = s->atts; r; r = r->next)
37         if (!data1_matchstr(r->name, name))
38             return r;
39     for (c = s->children; c; c = c->next)
40     {
41         assert (c->child);
42         /* scan included sets */
43         if ((r = data1_getattbyname (dh, c->child, name)))
44             return r;
45     }
46     return 0;
47 }
48
49 data1_attset *data1_empty_attset(data1_handle dh)
50 {
51     NMEM mem = data1_nmem_get (dh);
52     data1_attset *res = (data1_attset*) nmem_malloc(mem,sizeof(*res));
53
54     res->name = 0;
55     res->reference = VAL_NONE;
56     res->atts = 0;
57     res->children = 0;
58     res->next = 0;
59     return res;
60 }
61
62 data1_attset *data1_read_attset(data1_handle dh, const char *file)
63 {
64     data1_attset *res = 0;
65     data1_attset_child **childp;
66     data1_att **attp;
67     FILE *f;
68     NMEM mem = data1_nmem_get (dh);
69     int lineno = 0;
70     int argc;
71     char *argv[50], line[512];
72
73     if (!(f = data1_path_fopen(dh, file, "r")))
74         return NULL;
75     res = data1_empty_attset (dh);
76
77     childp = &res->children;
78     attp = &res->atts;
79
80     while ((argc = readconf_line(f, &lineno, line, 512, argv, 50)))
81     {
82         char *cmd = argv[0];
83         if (!strcmp(cmd, "att"))
84         {
85             int num;
86             char *name;
87             data1_att *t;
88             
89             if (argc < 3)
90             {
91                 yaz_log(YLOG_WARN, "%s:%d: Bad # of args to att", file, lineno);
92                 continue;
93             }
94             if (argc > 3)
95             {
96                 yaz_log(YLOG_WARN, "%s:%d: Local attributes not supported",
97                         file, lineno);
98             }
99             num = atoi (argv[1]);
100             name = argv[2];
101             
102             t = *attp = (data1_att *)nmem_malloc(mem, sizeof(*t));
103             t->parent = res;
104             t->name = nmem_strdup(mem, name);
105             t->value = num;
106             t->next = 0;
107             attp = &t->next;
108         }
109         else if (!strcmp(cmd, "name"))
110         {
111             if (argc != 2)
112             {
113                 yaz_log(YLOG_WARN, "%s:%d: Bad # of args to name", file, lineno);
114                 continue;
115             }
116         }
117         else if (!strcmp(cmd, "reference"))
118         {
119             char *name;
120
121             if (argc != 2)
122             {
123                 yaz_log(YLOG_WARN, "%s:%d: Bad # of args to reference",
124                         file, lineno);
125                 continue;
126             }
127             name = argv[1];
128             if ((res->reference = oid_getvalbyname(name)) == VAL_NONE)
129             {
130                 yaz_log(YLOG_WARN, "%s:%d: Unknown reference oid '%s'",
131                         file, lineno, name);
132                 fclose(f);
133                 return 0;
134             }
135         }
136         else if (!strcmp(cmd, "ordinal"))
137         {
138             yaz_log (YLOG_WARN, "%s:%d: Directive ordinal ignored",
139                      file, lineno);
140         }
141         else if (!strcmp(cmd, "include"))
142         {
143             char *name;
144             data1_attset *attset;
145
146             if (argc != 2)
147             {
148                 yaz_log(YLOG_WARN, "%s:%d: Bad # of args to include",
149                         file, lineno);
150                 continue;
151             }
152             name = argv[1];
153
154             if (!(attset = data1_get_attset (dh, name)))
155             {
156                 yaz_log(YLOG_WARN, "%s:%d: Include of attset %s failed",
157                         file, lineno, name);
158                 continue;
159                 
160             }
161             *childp = (data1_attset_child *)
162                 nmem_malloc (mem, sizeof(**childp));
163             (*childp)->child = attset;
164             (*childp)->next = 0;
165             childp = &(*childp)->next;
166         }
167         else
168         {
169             yaz_log(YLOG_WARN, "%s:%d: Unknown directive '%s'",
170                     file, lineno, cmd);
171         }
172     }
173     fclose(f);
174     return res;
175 }
176 /*
177  * Local variables:
178  * c-basic-offset: 4
179  * indent-tabs-mode: nil
180  * End:
181  * vim: shiftwidth=4 tabstop=8 expandtab
182  */
183