Bug fix. Bug introduced by previous commit.
[yaz-moved-to-github.git] / util / oid.c
1 /*
2  * Copyright (c) 1995-1998, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: oid.c,v $
7  * Revision 1.28  1998-10-13 16:01:53  adam
8  * Implemented support for dynamic object identifiers.
9  * Function oid_getvalbyname now accepts raw OID's as well as traditional
10  * names.
11  *
12  * Revision 1.27  1998/05/18 10:10:02  adam
13  * Added Explain-schema and Explain-tagset to OID database.
14  *
15  * Revision 1.26  1998/03/20 14:46:06  adam
16  * Added UNIverse Resource Reports.
17  *
18  * Revision 1.25  1998/02/10 15:32:03  adam
19  * Added new Object Identifiers.
20  *
21  * Revision 1.24  1997/09/29 13:19:00  adam
22  * Added function, oid_ent_to_oid, to replace the function
23  * oid_getoidbyent, which is not thread safe.
24  *
25  * Revision 1.23  1997/09/09 10:10:19  adam
26  * Another MSV5.0 port. Changed projects to include proper
27  * library/include paths.
28  * Server starts server in test-mode when no options are given.
29  *
30  * Revision 1.22  1997/08/29 13:34:58  quinn
31  * Added thesaurus oids
32  *
33  * Revision 1.21  1997/08/19 08:46:05  quinn
34  * Added Thesaurus OID
35  *
36  * Revision 1.20  1997/07/28 12:34:43  adam
37  * Added new OID entries (RVDM).
38  *
39  * Revision 1.19  1997/05/02 08:39:41  quinn
40  * Support for private OID table added. Thanks to Ronald van der Meer
41  *
42  * Revision 1.18  1997/04/30 08:52:12  quinn
43  * Null
44  *
45  * Revision 1.17  1996/10/10  12:35:23  quinn
46  * Added Update extended service.
47  *
48  * Revision 1.16  1996/10/09  15:55:02  quinn
49  * Added SearchInfoReport
50  *
51  * Revision 1.15  1996/10/07  15:29:43  quinn
52  * Added SOIF support
53  *
54  * Revision 1.14  1996/02/20  17:58:28  adam
55  * Added const to oid_getvalbyname.
56  *
57  * Revision 1.13  1996/02/20  16:37:33  quinn
58  * Using yaz_matchstr in oid_getvalbyname
59  *
60  * Revision 1.12  1996/01/02  08:57:53  quinn
61  * Changed enums in the ASN.1 .h files to #defines. Changed oident.class to oclass
62  *
63  * Revision 1.11  1995/12/13  16:03:35  quinn
64  * *** empty log message ***
65  *
66  * Revision 1.10  1995/11/28  09:30:44  quinn
67  * Work.
68  *
69  * Revision 1.9  1995/11/13  09:27:53  quinn
70  * Fiddling with the variant stuff.
71  *
72  * Revision 1.8  1995/10/12  10:34:56  quinn
73  * Added Espec-1.
74  *
75  * Revision 1.7  1995/10/10  16:27:12  quinn
76  * *** empty log message ***
77  *
78  * Revision 1.6  1995/09/29  17:12:35  quinn
79  * Smallish
80  *
81  * Revision 1.5  1995/09/29  17:01:51  quinn
82  * More Windows work
83  *
84  * Revision 1.4  1995/09/27  15:03:03  quinn
85  * Modified function heads & prototypes.
86  *
87  * Revision 1.3  1995/09/12  11:32:06  quinn
88  * Added a looker-upper by name.
89  *
90  * Revision 1.2  1995/08/21  09:11:16  quinn
91  * Smallish fixes to suppport new formats.
92  *
93  * Revision 1.1  1995/05/29  08:17:13  quinn
94  * iMoved oid to util to support comstack.
95  *
96  * Revision 1.5  1995/05/22  11:30:16  quinn
97  * Adding Z39.50-1992 stuff to proto.c. Adding zget.c
98  *
99  * Revision 1.4  1995/05/16  08:50:22  quinn
100  * License, documentation, and memory fixes
101  *
102  * Revision 1.3  1995/04/11  11:52:02  quinn
103  * Fixed possible buf in proto.c
104  *
105  * Revision 1.2  1995/03/29  15:39:38  quinn
106  * Adding some resource control elements, and a null-check to getentbyoid
107  *
108  * Revision 1.1  1995/03/27  08:32:12  quinn
109  * Added OID database
110  *
111  *
112  */
113
114 /*
115  * More or less protocol-transparent OID database.
116  * We could (and should?) extend this so that the user app can add new
117  * entries to the list at initialization.
118  */
119
120 #include <stdlib.h>
121 #include <ctype.h>
122
123 #include <oid.h>
124 #include <yaz-util.h>
125
126 static int z3950_prefix[] = { 1, 2, 840, 10003, -1 };
127 static int sr_prefix[]    = { 1, 0, 10163, -1 };
128
129 struct oident_list {
130     struct oident oident;
131     struct oident_list *next;
132 };
133
134 static struct oident_list *oident_table = NULL;
135 static int oid_value_dynamic = VAL_DYNAMIC;
136
137 /*
138  * OID database
139  */
140 static oident oids[] =
141 {
142     /* General definitions */
143     {PROTO_GENERAL, CLASS_TRANSYN, VAL_BER,       {2,1,1,-1},  "BER"         },
144     {PROTO_GENERAL, CLASS_TRANSYN, VAL_ISO2709,   {1,0,2709,1,1,-1},"ISO2709"},
145
146     /* Z39.50v3 definitions */
147     {PROTO_Z3950,   CLASS_ABSYN,   VAL_APDU,      {2,1,-1},    "Z-APDU"      },
148
149     {PROTO_Z3950,   CLASS_APPCTX,  VAL_BASIC_CTX, {1,1,-1},    "Z-BASIC"     },
150
151     {PROTO_Z3950,   CLASS_ATTSET,  VAL_BIB1,      {3,1,-1},    "Bib-1"       },
152     {PROTO_Z3950,   CLASS_ATTSET,  VAL_EXP1,      {3,2,-1},    "Exp-1"       },
153     {PROTO_Z3950,   CLASS_ATTSET,  VAL_EXT1,      {3,3,-1},    "Ext-1"       },
154     {PROTO_Z3950,   CLASS_ATTSET,  VAL_CCL1,      {3,4,-1},    "CCL-1"       },
155     {PROTO_Z3950,   CLASS_ATTSET,  VAL_GILS,      {3,5,-1},    "GILS-attset" },
156     {PROTO_Z3950,   CLASS_ATTSET,  VAL_STAS,      {3,6,-1},    "STAS-attset" },
157     {PROTO_Z3950,   CLASS_ATTSET,  VAL_COLLECT1,  {3,7,-1},    "Collections-attset"},
158     {PROTO_Z3950,   CLASS_ATTSET,  VAL_CIMI1,     {3,8,-1},    "CIMI-attset"},
159     {PROTO_Z3950,   CLASS_ATTSET,  VAL_GEO,       {3,9,-1},    "Geo-attset"},
160     {PROTO_Z3950,   CLASS_ATTSET,  VAL_THESAURUS, {3,1000,81,1,-1},"Thesaurus-attset"},
161     {PROTO_Z3950,   CLASS_DIAGSET, VAL_BIB1,      {4,1,-1},    "Bib-1"       },
162     {PROTO_Z3950,   CLASS_DIAGSET, VAL_DIAG1,     {4,2,-1},    "Diag-1"      },
163
164     {PROTO_Z3950,   CLASS_RECSYN,  VAL_UNIMARC,   {5,1,-1},    "Unimarc"     },
165     {PROTO_Z3950,   CLASS_RECSYN,  VAL_INTERMARC, {5,2,-1},    "Intermarc"   },
166     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CCF,       {5,3,-1},    "CCF"         },
167     {PROTO_Z3950,   CLASS_RECSYN,  VAL_USMARC,    {5,10,-1},   "USmarc"      },
168     {PROTO_Z3950,   CLASS_RECSYN,  VAL_UKMARC,    {5,11,-1},   "UKmarc"      },
169     {PROTO_Z3950,   CLASS_RECSYN,  VAL_NORMARC,   {5,12,-1},   "Normarc"     },
170     {PROTO_Z3950,   CLASS_RECSYN,  VAL_LIBRISMARC,{5,13,-1},   "Librismarc"  },
171     {PROTO_Z3950,   CLASS_RECSYN,  VAL_DANMARC,   {5,14,-1},   "Danmarc"     },
172     {PROTO_Z3950,   CLASS_RECSYN,  VAL_FINMARC,   {5,15,-1},   "Finmarc"     },
173     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MAB,       {5,16,-1},   "MAB"         },
174     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CANMARC,   {5,17,-1},   "Canmarc"     },
175     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SBN,       {5,18,-1},   "SBN"         },
176     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PICAMARC,  {5,19,-1},   "Picamarc"    },
177     {PROTO_Z3950,   CLASS_RECSYN,  VAL_AUSMARC,   {5,20,-1},   "Ausmarc"     },
178     {PROTO_Z3950,   CLASS_RECSYN,  VAL_IBERMARC,  {5,21,-1},   "Ibermarc"    },
179     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CATMARC,   {5,22,-1},   "Carmarc"     },
180     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MALMARC,   {5,23,-1},   "Malmarc"     },
181     {PROTO_Z3950,   CLASS_RECSYN,  VAL_EXPLAIN,   {5,100,-1},  "Explain"     },
182     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SUTRS,     {5,101,-1},  "SUTRS"       },
183     {PROTO_Z3950,   CLASS_RECSYN,  VAL_OPAC,      {5,102,-1},  "OPAC"        },
184     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SUMMARY,   {5,103,-1},  "Summary"     },
185     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GRS0,      {5,104,-1},  "GRS-0"       },
186     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GRS1,      {5,105,-1},  "GRS-1"       },
187     {PROTO_Z3950,   CLASS_RECSYN,  VAL_EXTENDED,  {5,106,-1},  "Extended"    },
188     {PROTO_Z3950,   CLASS_RECSYN,  VAL_FRAGMENT,  {5,107,-1},  "Fragment"    },
189
190     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PDF,       {5,109,1,-1},"pdf"         },
191     {PROTO_Z3950,   CLASS_RECSYN,  VAL_POSTSCRIPT,{5,109,2,-1},"postscript"  },
192     {PROTO_Z3950,   CLASS_RECSYN,  VAL_HTML,      {5,109,3,-1},"html"        },
193     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TIFF,      {5,109,4,-1},"tiff"        },
194     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GIF,       {5,109,5,-1},"gif"         },
195     {PROTO_Z3950,   CLASS_RECSYN,  VAL_JPEG,      {5,109,6,-1},"jpeg"        },
196     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PNG,       {5,109,7,-1},"png"         },
197     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MPEG,      {5,109,8,-1},"mpeg"        },
198     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SGML,      {5,109,9,-1},"sgml"        },
199
200     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TIFFB,     {5,110,1,-1},"tiff-b"      },
201     {PROTO_Z3950,   CLASS_RECSYN,  VAL_WAV,       {5,110,2,-1},"wav"         },
202
203     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SQLRS,     {5,111,-1},  "SQL-RS"      },
204 #if 0
205     {PROTO_Z3950,   CLASS_RECSYN,  VAL_ID_SGML,   {5,1000,81,1,-1},"ID-SGML" },
206 #endif
207     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SOIF,      {5,1000,81,2,-1},"SOIF" },
208
209     {PROTO_Z3950,   CLASS_RESFORM, VAL_RESOURCE1, {7,1,-1},    "Resource-1"  },
210     {PROTO_Z3950,   CLASS_RESFORM, VAL_RESOURCE2, {7,2,-1},    "Resource-2"  },
211     {PROTO_Z3950,   CLASS_RESFORM, VAL_UNIVERSE_REPORT,  {7,1000,81,1,-1}, "UNIverse-Resource-Report"},
212
213     {PROTO_Z3950,   CLASS_ACCFORM, VAL_PROMPT1,   {8,1,-1},    "Prompt-1"    },
214     {PROTO_Z3950,   CLASS_ACCFORM, VAL_DES1,      {8,2,-1},    "Des-1"       },
215     {PROTO_Z3950,   CLASS_ACCFORM, VAL_KRB1,      {8,3,-1},    "Krb-1"       },
216     
217     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PRESSET,   {9,1,-1},    "Pers. set"   },
218     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PQUERY,    {9,2,-1},    "Pers. query" },
219     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PCQUERY,   {9,3,-1},    "Per'd query" },
220     {PROTO_Z3950,   CLASS_EXTSERV, VAL_ITEMORDER, {9,4,-1},    "Item order"  },
221     {PROTO_Z3950,   CLASS_EXTSERV, VAL_DBUPDATE,  {9,5,-1},    "DB. Update"  },
222     {PROTO_Z3950,   CLASS_EXTSERV, VAL_EXPORTSPEC,{9,6,-1},    "exp. spec."  },
223     {PROTO_Z3950,   CLASS_EXTSERV, VAL_EXPORTINV, {9,7,-1},    "exp. inv."   },
224
225     {PROTO_Z3950,   CLASS_USERINFO,VAL_SEARCHRES1,{10,1,-1},   "searchResult-1"},
226     {PROTO_Z3950,   CLASS_USERINFO,VAL_CHARLANG,  {10,2,-1},   "CharSetandLanguageNegotiation"},
227     {PROTO_Z3950,   CLASS_USERINFO,VAL_USERINFO1, {10,3,-1},   "UserInfo-1"},
228     {PROTO_Z3950,   CLASS_USERINFO,VAL_MULTISRCH1,{10,4,-1},   "MultipleSearchTerms-1"},
229     {PROTO_Z3950,   CLASS_USERINFO,VAL_MULTISRCH2,{10,5,-1},   "MultipleSearchTerms-2"},
230     {PROTO_Z3950,   CLASS_USERINFO,VAL_DATETIME,  {10,6,-1},   "DateTime"},
231
232     {PROTO_Z3950,   CLASS_ELEMSPEC,VAL_ESPEC1,    {11,1,-1},   "Espec-1"     },
233
234     {PROTO_Z3950,   CLASS_VARSET,  VAL_VAR1,      {12,1,-1},   "Variant-1"   },
235
236     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_WAIS,      {13,1,-1},   "WAIS-schema" },
237     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_GILS,      {13,2,-1},   "GILS-schema" },
238     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_COLLECT1,  {13,3,-1},   "Collections-schema" },
239     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_GEO,       {13,4,-1},   "Geo-schema" },
240     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_CIMI1,     {13,5,-1},   "CIMI-schema" },
241     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_UPDATEES,  {13,6,-1},   "Update ES" },
242     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_THESAURUS, {13,1000,81,1,-1}, "thesaurus-schema"},
243     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_EXPLAIN,   {13,1000,81,2,-1}, "Explain-schema"},
244     {PROTO_Z3950,   CLASS_TAGSET,  VAL_SETM,      {14,1,-1},   "TagsetM"     },
245     {PROTO_Z3950,   CLASS_TAGSET,  VAL_SETG,      {14,2,-1},   "TagsetG"     },
246     {PROTO_Z3950,   CLASS_TAGSET,  VAL_STAS,      {14,3,-1},   "STAS-tagset" },
247     {PROTO_Z3950,   CLASS_TAGSET,  VAL_GILS,      {14,4,-1},   "GILS-tagset" },
248     {PROTO_Z3950,   CLASS_TAGSET,  VAL_COLLECT1,  {14,5,-1},   "Collections-tagset"},
249     {PROTO_Z3950,   CLASS_TAGSET,  VAL_CIMI1,     {14,6,-1},   "CIMI-tagset" },
250     {PROTO_Z3950,   CLASS_TAGSET,  VAL_THESAURUS, {14,1000,81,1,-1}, "thesaurus-tagset"},
251     {PROTO_Z3950,   CLASS_TAGSET,  VAL_EXPLAIN,   {14,1000,81,2,-1}, "Explain-tagset"},
252     
253
254     /* SR definitions. Note that some of them aren't defined by the
255         standard (yet), but are borrowed from Z3950v3 */
256     {PROTO_SR,      CLASS_ABSYN,   VAL_APDU,      {2,1,-1},    "SR-APDU"     },
257
258     {PROTO_SR,      CLASS_APPCTX,  VAL_BASIC_CTX, {1,1,-1},    "SR-BASIC"    },
259
260     {PROTO_SR,      CLASS_ATTSET,  VAL_BIB1,      {3,1,-1},    "Bib-1"       },
261     {PROTO_SR,      CLASS_ATTSET,  VAL_EXP1,      {3,2,-1},    "Exp-1"       },
262     {PROTO_SR,      CLASS_ATTSET,  VAL_EXT1,      {3,3,-1},    "Ext-1"       },
263     {PROTO_SR,      CLASS_ATTSET,  VAL_CCL1,      {3,4,-1},    "CCL-1"       },
264     {PROTO_SR,      CLASS_ATTSET,  VAL_GILS,      {3,5,-1},    "GILS"        },
265     {PROTO_SR,      CLASS_ATTSET,  VAL_STAS,      {3,6,-1},    "STAS",       },
266     {PROTO_SR,      CLASS_ATTSET,  VAL_COLLECT1,  {3,7,-1},    "Collections-attset"},
267     {PROTO_SR,      CLASS_ATTSET,  VAL_CIMI1,     {3,8,-1},    "CIMI-attset"},
268     {PROTO_SR,      CLASS_ATTSET,  VAL_GEO,       {3,9,-1},    "Geo-attset"},
269
270     {PROTO_SR,      CLASS_DIAGSET, VAL_BIB1,      {4,1,-1},    "Bib-1"       },
271     {PROTO_SR,      CLASS_DIAGSET, VAL_DIAG1,     {4,2,-1},    "Diag-1"      },
272
273     {PROTO_SR,      CLASS_RECSYN,  VAL_UNIMARC,   {5,1,-1},    "Unimarc"     },
274     {PROTO_SR,      CLASS_RECSYN,  VAL_INTERMARC, {5,2,-1},    "Intermarc"   },
275     {PROTO_SR,      CLASS_RECSYN,  VAL_CCF,       {5,3,-1},    "CCF"        },
276     {PROTO_SR,      CLASS_RECSYN,  VAL_USMARC,    {5,10,-1},   "USmarc"      },
277     {PROTO_SR,      CLASS_RECSYN,  VAL_UKMARC,    {5,11,-1},   "UKmarc"      },
278     {PROTO_SR,      CLASS_RECSYN,  VAL_NORMARC,   {5,12,-1},   "Normarc"     },
279     {PROTO_SR,      CLASS_RECSYN,  VAL_LIBRISMARC,{5,13,-1},   "Librismarc"  },
280     {PROTO_SR,      CLASS_RECSYN,  VAL_DANMARC,   {5,14,-1},   "Danmarc"     },
281     {PROTO_SR,      CLASS_RECSYN,  VAL_FINMARC,   {5,15,-1},   "Finmarc"     },
282     {PROTO_SR,      CLASS_RECSYN,  VAL_MAB,       {5,16,-1},   "MAB"         },
283     {PROTO_SR,      CLASS_RECSYN,  VAL_CANMARC,   {5,17,-1},   "Canmarc"     },
284     {PROTO_SR,      CLASS_RECSYN,  VAL_MAB,       {5,16,-1},   "MAB"         },
285     {PROTO_SR,      CLASS_RECSYN,  VAL_CANMARC,   {5,17,-1},   "Canmarc"     },
286     {PROTO_SR,      CLASS_RECSYN,  VAL_SBN,       {5,18,-1},   "SBN"         },
287     {PROTO_SR,      CLASS_RECSYN,  VAL_PICAMARC,  {5,19,-1},   "Picamarc"    },
288     {PROTO_SR,      CLASS_RECSYN,  VAL_AUSMARC,   {5,20,-1},   "Ausmarc"     },
289     {PROTO_SR,      CLASS_RECSYN,  VAL_IBERMARC,  {5,21,-1},   "Ibermarc"    },
290     {PROTO_SR,      CLASS_RECSYN,  VAL_CATMARC,   {5,22,-1},   "Catmarc"     },
291     {PROTO_SR,      CLASS_RECSYN,  VAL_MALMARC,   {5,23,-1},   "Malmarc"     },
292     {PROTO_SR,      CLASS_RECSYN,  VAL_EXPLAIN,   {5,100,-1},  "Explain"     },
293     {PROTO_SR,      CLASS_RECSYN,  VAL_SUTRS,     {5,101,-1},  "SUTRS"       },
294     {PROTO_SR,      CLASS_RECSYN,  VAL_OPAC,      {5,102,-1},  "OPAC"        },
295     {PROTO_SR,      CLASS_RECSYN,  VAL_SUMMARY,   {5,103,-1},  "Summary"     },
296     {PROTO_SR,      CLASS_RECSYN,  VAL_GRS0,      {5,104,-1},  "GRS-0"       },
297     {PROTO_SR,      CLASS_RECSYN,  VAL_GRS1,      {5,105,-1},  "GRS-1"       },
298     {PROTO_SR,      CLASS_RECSYN,  VAL_EXTENDED,  {5,106,-1},  "Extended"    },
299     {PROTO_SR,      CLASS_RECSYN,  VAL_FRAGMENT,  {5,107,-1},  "Fragment"    },
300
301     {PROTO_SR,      CLASS_RESFORM, VAL_RESOURCE1, {7,1,-1},    "Resource-1"  },
302     {PROTO_SR,      CLASS_RESFORM, VAL_RESOURCE2, {7,2,-1},    "Resource-2"  },
303
304     {PROTO_SR,      CLASS_ACCFORM, VAL_PROMPT1,   {8,1,-1},    "Prompt-1"    },
305     {PROTO_SR,      CLASS_ACCFORM, VAL_DES1,      {8,2,-1},    "Des-1"       },
306     {PROTO_SR,      CLASS_ACCFORM, VAL_KRB1,      {8,3,-1},    "Krb-1"       },
307
308     {PROTO_SR,      CLASS_EXTSERV, VAL_PRESSET,   {9,1,-1},    "Pers. set"   },
309     {PROTO_SR,      CLASS_EXTSERV, VAL_PQUERY,    {9,2,-1},    "Pers. query" },
310     {PROTO_SR,      CLASS_EXTSERV, VAL_PCQUERY,   {9,3,-1},    "Per'd query" },
311     {PROTO_SR,      CLASS_EXTSERV, VAL_ITEMORDER, {9,4,-1},    "Item order"  },
312     {PROTO_SR,      CLASS_EXTSERV, VAL_DBUPDATE,  {9,5,-1},    "DB. Update"  },
313     {PROTO_SR,      CLASS_EXTSERV, VAL_EXPORTSPEC,{9,6,-1},    "exp. spec."  },
314     {PROTO_SR,      CLASS_EXTSERV, VAL_EXPORTINV, {9,7,-1},    "exp. inv."   },
315
316     {PROTO_SR,      CLASS_ELEMSPEC,VAL_ESPEC1,    {11,1,-1},   "Espec-1"     },
317
318     {PROTO_SR,      CLASS_VARSET,  VAL_VAR1,      {12,1,-1},   "Variant-1"   },
319
320     {PROTO_SR,      CLASS_SCHEMA,  VAL_WAIS,      {13,1,-1},   "WAIS-schema" },
321     {PROTO_SR,      CLASS_SCHEMA,  VAL_GILS,      {13,2,-1},   "GILS-schema" },
322     {PROTO_SR,      CLASS_SCHEMA,  VAL_COLLECT1,  {13,3,-1},   "Collections-schema" },
323     {PROTO_SR,      CLASS_SCHEMA,  VAL_GEO,       {13,4,-1},   "Geo-schema" },
324     {PROTO_SR,      CLASS_SCHEMA,  VAL_CIMI1,     {13,5,-1},   "CIMI-schema" },
325
326     {PROTO_SR,      CLASS_TAGSET,  VAL_SETM,      {14,1,-1},   "TagsetM"     },
327     {PROTO_SR,      CLASS_TAGSET,  VAL_SETG,      {14,2,-1},   "TagsetG"     },
328
329     {PROTO_SR,      CLASS_TAGSET,  VAL_STAS,      {14,3,-1},   "STAS-tagset" },
330     {PROTO_SR,      CLASS_TAGSET,  VAL_GILS,      {14,4,-1},   "GILS-tagset" },
331     {PROTO_SR,      CLASS_TAGSET,  VAL_COLLECT1,  {14,5,-1},   "Collections-tagset"},
332     {PROTO_SR,      CLASS_TAGSET,  VAL_CIMI1,     {14,6,-1},   "CIMI-tagset" },
333
334     {PROTO_NOP,     CLASS_NOP,     VAL_NOP,       {-1},        0          }
335 };
336
337 /* OID utilities */
338
339 void oid_oidcpy(int *t, int *s)
340 {
341     while ((*(t++) = *(s++)) > -1);
342 }
343
344 void oid_oidcat(int *t, int *s)
345 {
346     while (*t > -1)
347         t++;
348     while ((*(t++) = *(s++)) > -1);
349 }
350
351 int oid_oidcmp(int *o1, int *o2)
352 {
353     while (*o1 == *o2 && *o1 > -1)
354     {
355         o1++;
356         o2++;
357     }
358     if (*o1 == *o2)
359         return 0;
360     else if (*o1 > *o2)
361         return 1;
362     else
363         return -1;
364 }
365
366 int oid_oidlen(int *o)
367 {
368     int len = 0;
369
370     while (*(o++) >= 0)
371         len++;
372     return len;
373 }
374
375
376 static int match_prefix(int *look, int *prefix)
377 {
378     int len;
379
380     for (len = 0; *look == *prefix; look++, prefix++, len++);
381     if (*prefix < 0) /* did we reach the end of the prefix? */
382         return len;
383     return 0;
384 }
385
386 void oid_transfer (struct oident *oident)
387 {
388     while (*oident->oidsuffix >= 0)
389     {
390         oid_addent (oident->oidsuffix, oident->proto,
391                     oident->oclass,
392                     oident->desc, oident->value);
393         oident++;
394     }
395 }
396
397 static void oid_init (void)
398 {
399     static int checked = 0;
400     
401     if (checked)
402         return;
403     oid_transfer (oids);
404     checked = 1;
405 }
406
407
408 static struct oident *oid_getentbyoid_x(int *o)
409 {
410     enum oid_proto proto;
411     int prelen;
412     struct oident_list *ol;
413     
414     /* determine protocol type */
415     if (!o)
416         return 0;
417     if ((prelen = match_prefix(o, z3950_prefix)) != 0)
418         proto = PROTO_Z3950;
419     else if ((prelen = match_prefix(o, sr_prefix)) != 0)
420         proto = PROTO_SR;
421     else
422         proto = PROTO_GENERAL;
423     for (ol = oident_table; ol; ol = ol->next)
424     {
425         struct oident *p = &ol->oident;
426         if (p->proto == proto && !oid_oidcmp(o + prelen, p->oidsuffix))
427             return p;
428         if (p->proto == PROTO_GENERAL && !oid_oidcmp (o, p->oidsuffix))
429             return p;
430     }
431     return 0;
432 }
433
434 /*
435  * To query, fill out proto, class, and value of the ent parameter.
436  */
437 int *oid_ent_to_oid(struct oident *ent, int *ret)
438 {
439     struct oident_list *ol;
440     
441     oid_init ();
442     for (ol = oident_table; ol; ol = ol->next)
443     {
444         struct oident *p = &ol->oident;
445         if ((ent->proto == p->proto || p->proto == PROTO_GENERAL) &&
446             (ent->oclass == p->oclass || p->oclass == CLASS_GENERAL) &&
447             ent->value == p->value)
448         {
449             if (p->proto == PROTO_Z3950)
450                 oid_oidcpy(ret, z3950_prefix);
451             else if (p->proto == PROTO_SR)
452                 oid_oidcpy(ret, sr_prefix);
453             else
454                 ret[0] = -1;
455             oid_oidcat(ret, p->oidsuffix);
456             ent->desc = p->desc;
457             return ret;
458         }
459     }
460     ret[0] = -1;
461     return 0;
462 }
463
464 /*
465  * To query, fill out proto, class, and value of the ent parameter.
466  */
467 int *oid_getoidbyent(struct oident *ent)
468 {
469     static int ret[OID_SIZE];
470
471     return oid_ent_to_oid (ent, ret);
472 }
473
474 struct oident *oid_addent (int *oid, int proto, int oclass,
475                            const char *desc, int value)
476 {
477     struct oident *oident;
478
479     nmem_critical_enter ();
480     oident = oid_getentbyoid_x (oid);
481     if (!oident)
482     {
483         char desc_str[200];
484         struct oident_list *oident_list;
485         oident_list = (struct oident_list *) malloc (sizeof(*oident_list));
486         oident = &oident_list->oident;
487         oident->proto = proto;
488         oident->oclass = oclass;
489
490         if (!desc)
491         {
492             int i;
493
494             sprintf (desc_str, "%d", *oid);
495             for (i = 1; oid[i] >= 0; i++)
496                 sprintf (desc_str+strlen(desc_str), ".%d", oid[i]);
497             desc = desc_str;
498         }
499         oident->desc = (char *) malloc (strlen(desc)+1);
500         strcpy (oident->desc, desc);
501         if (value == VAL_DYNAMIC)
502             oident->value = ++oid_value_dynamic;
503         else
504             oident->value = value;
505         oid_oidcpy (oident->oidsuffix, oid);
506         oident_list->next = oident_table;
507         oident_table = oident_list;
508     }
509     nmem_critical_leave ();
510     return oident;
511 }
512
513 struct oident *oid_getentbyoid(int *oid)
514 {
515     struct oident *oident;
516     oid_init ();
517     oident = oid_getentbyoid_x (oid);
518     if (!oident)
519         oident = oid_addent (oid, PROTO_GENERAL, CLASS_GENERAL,
520                              NULL, VAL_DYNAMIC);
521     return oident;
522 }
523
524 static oid_value oid_getval_raw(const char *name)
525 {
526     int val = 0, i = 0, oid[OID_SIZE];
527     struct oident *oident;
528     
529     while (isdigit (*name))
530     {
531         val = val*10 + (*name - '0');
532         name++;
533         if (*name == '.')
534         {
535             if (i < OID_SIZE-1)
536                 oid[i++] = val;
537             val = 0;
538             name++;
539         }
540     }
541     oid[i] = val;
542     oid[i+1] = -1;
543     oident = oid_addent (oid, PROTO_GENERAL, CLASS_GENERAL, NULL,
544                          VAL_DYNAMIC);
545     return oident->value;
546 }
547
548 oid_value oid_getvalbyname(const char *name)
549 {
550     struct oident_list *ol;
551
552     oid_init ();
553     if (isdigit (*name))
554         return oid_getval_raw (name);
555     for (ol = oident_table; ol; ol = ol->next)
556         if (!yaz_matchstr(ol->oident.desc, name))
557         {
558             return ol->oident.value;
559         }
560     return VAL_NONE;
561 }
562
563 void oid_setprivateoids(oident *list)
564 {
565     oid_transfer (list);
566 }