Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / index / attribute.c
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: attribute.c,v $
7  * Revision 1.10  1999-02-02 14:50:49  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.9  1998/05/20 10:12:14  adam
11  * Implemented automatic EXPLAIN database maintenance.
12  * Modified Zebra to work with ASN.1 compiled version of YAZ.
13  *
14  * Revision 1.8  1998/03/05 08:45:11  adam
15  * New result set model and modular ranking system. Moved towards
16  * descent server API. System information stored as "SGML" records.
17  *
18  * Revision 1.7  1997/10/29 12:05:01  adam
19  * Server produces diagnostic "Unsupported Attribute Set" when appropriate.
20  *
21  * Revision 1.6  1997/09/17 12:19:11  adam
22  * Zebra version corresponds to YAZ version 1.4.
23  * Changed Zebra server so that it doesn't depend on global common_resource.
24  *
25  * Revision 1.5  1997/09/05 15:30:08  adam
26  * Changed prototype for chr_map_input - added const.
27  * Added support for C++, headers uses extern "C" for public definitions.
28  *
29  * Revision 1.4  1996/10/29 14:06:48  adam
30  * Include zebrautl.h instead of alexutil.h.
31  *
32  * Revision 1.3  1996/05/09 07:28:54  quinn
33  * Work towards phrases and multiple registers
34  *
35  * Revision 1.2  1995/11/15  19:13:07  adam
36  * Work on record management.
37  *
38  *
39  * This interface is used by other modules (the Z-server in particular)
40  * to normalize the attributes given in queries.
41  */
42
43 #include <stdio.h>
44
45 #include <log.h>
46 #include <res.h>
47 #include <zebrautl.h>
48 #include "zserver.h"
49
50 static data1_att *getatt(data1_attset *p, int att)
51 {
52     data1_att *a;
53     data1_attset_child *c;
54
55     /* scan local set */
56     for (a = p->atts; a; a = a->next)
57         if (a->value == att)
58             return a;
59     /* scan included sets */
60     for (c = p->children; c; c = c->next)
61         if ((a = getatt(c->child, att)))
62             return a;
63     return 0;
64 }
65
66 int att_getentbyatt(ZebraHandle zi, attent *res, oid_value set, int att)
67 {
68     data1_att *r;
69     data1_attset *p;
70
71     if (!(p = data1_attset_search_id (zi->dh, set)))
72     {
73         zebraExplain_loadAttsets (zi->dh, zi->res);
74         p = data1_attset_search_id (zi->dh, set);
75     }
76     if (!p)
77         return -2;
78     if (!(r = getatt(p, att)))
79         return -1;
80     res->attset_ordinal = r->parent->reference;
81     res->local_attributes = r->locals;
82     return 0;
83 }