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