Defined log level bits app2 and app3
[yaz-moved-to-github.git] / util / oid.c
1 /*
2  * Copyright (c) 1995-2003, Index Data
3  * See the file LICENSE for details.
4  *
5  * $Id: oid.c,v 1.60 2003-04-03 21:01:28 mike Exp $
6  */
7
8 /*
9  * More or less protocol-transparent OID database.
10  * We could (and should?) extend this so that the user app can add new
11  * entries to the list at initialization.
12  */
13 #if HAVE_CONFIG_H
14 #include <config.h>
15 #endif
16
17 #include <stdlib.h>
18 #include <string.h>
19 #include <ctype.h>
20
21 #include <yaz/oid.h>
22 #include <yaz/yaz-util.h>
23
24 static int z3950_prefix[] = { 1, 2, 840, 10003, -1 };
25 static int sr_prefix[]    = { 1, 0, 10163, -1 };
26
27 struct oident_list {
28     struct oident oident;
29     struct oident_list *next;
30 };
31
32 static struct oident_list *oident_table = NULL;
33 static int oid_value_dynamic = VAL_DYNAMIC;
34 static int oid_init_flag = 0;
35 static NMEM_MUTEX oid_mutex = 0;
36 static NMEM oid_nmem = 0;
37
38 /*
39  * OID database
40  */
41 static oident standard_oids[] =
42 {
43     /* General definitions */
44     {PROTO_GENERAL, CLASS_TRANSYN, VAL_BER,          {2,1,1,-1},
45      "BER" },
46     {PROTO_GENERAL, CLASS_TRANSYN, VAL_ISO2709,      {1,0,2709,1,1,-1},
47      "ISO2709"},
48     {PROTO_GENERAL, CLASS_GENERAL, VAL_ISO_ILL_1,    {1,0,10161,2,1,-1},
49      "ISOILL-1"},
50     /* Z39.50v3 definitions */
51     {PROTO_Z3950,   CLASS_ABSYN,   VAL_APDU,         {2,1,-1},
52      "Z-APDU"},    
53     {PROTO_Z3950,   CLASS_APPCTX,  VAL_BASIC_CTX,    {1,1,-1},
54      "Z-BASIC"},
55     {PROTO_Z3950,   CLASS_ATTSET,  VAL_BIB1,         {3,1,-1},
56      "Bib-1"},
57     {PROTO_Z3950,   CLASS_ATTSET,  VAL_EXP1,         {3,2,-1},
58      "Exp-1"},
59     {PROTO_Z3950,   CLASS_ATTSET,  VAL_EXT1,         {3,3,-1},
60      "Ext-1"},
61     {PROTO_Z3950,   CLASS_ATTSET,  VAL_CCL1,         {3,4,-1},
62      "CCL-1"},
63     {PROTO_Z3950,   CLASS_ATTSET,  VAL_GILS,         {3,5,-1},
64      "GILS-attset"},
65     {PROTO_Z3950,   CLASS_ATTSET,  VAL_GILS,         {3,5,-1},
66      "GILS"},
67     {PROTO_Z3950,   CLASS_ATTSET,  VAL_STAS,         {3,6,-1},
68      "STAS-attset"},
69     {PROTO_Z3950,   CLASS_ATTSET,  VAL_COLLECT1,     {3,7,-1},
70      "Collections-attset"},
71     {PROTO_Z3950,   CLASS_ATTSET,  VAL_CIMI1,        {3,8,-1},
72      "CIMI-attset"},
73     {PROTO_Z3950,   CLASS_ATTSET,  VAL_GEO,          {3,9,-1},
74      "Geo-attset"},
75
76     {PROTO_Z3950,   CLASS_ATTSET,  VAL_ZBIG,         {3,10,-1},
77      "ZBIG"},
78     {PROTO_Z3950,   CLASS_ATTSET,  VAL_UTIL,         {3,11,-1},
79      "Util"},
80     {PROTO_Z3950,   CLASS_ATTSET,  VAL_XD1,          {3,12,-1},
81      "XD-1"},
82     {PROTO_Z3950,   CLASS_ATTSET,  VAL_ZTHES,        {3,13,-1},
83      "Zthes"},
84     {PROTO_Z3950,   CLASS_ATTSET,  VAL_FIN1,         {3,14,-1},
85      "Fin-1"},
86     {PROTO_Z3950,   CLASS_ATTSET,  VAL_DAN1,         {3,15,-1},
87      "Dan-1"},
88     {PROTO_Z3950,   CLASS_ATTSET,  VAL_HOLDINGS,     {3,16,-1},
89      "Holdings"},
90     {PROTO_Z3950,   CLASS_ATTSET,  VAL_USMARC,       {3,17,-1},
91      "MARC"},
92     {PROTO_Z3950,   CLASS_ATTSET,  VAL_BIB2,         {3,18,-1},
93      "Bib-2"},
94     {PROTO_Z3950,   CLASS_ATTSET,  VAL_ZEEREX,       {3,19,-1},
95      "ZeeRex"},
96 #if 0  /* This is the spawn of Satan.  Use Zthes-1 instead */
97     {PROTO_Z3950,   CLASS_ATTSET,  VAL_THESAURUS,    {3,1000,81,1,-1},     
98      "Thesaurus-attset"},
99 #endif /*0*/
100     {PROTO_Z3950,   CLASS_ATTSET,  VAL_IDXPATH,      {3,1000,81,2,-1},
101      "IDXPATH"},
102     {PROTO_Z3950,   CLASS_DIAGSET, VAL_BIB1,         {4,1,-1},
103      "Bib-1"},
104     {PROTO_Z3950,   CLASS_DIAGSET, VAL_DIAG1,        {4,2,-1},
105      "Diag-1"},
106     {PROTO_Z3950,   CLASS_DIAGSET, VAL_DIAG_ES,      {4,3,-1},
107      "Diag-ES"},
108     {PROTO_Z3950,   CLASS_DIAGSET, VAL_DIAG_GENERAL, {4,3,-1},
109      "Diag-General"},
110     {PROTO_Z3950,   CLASS_RECSYN,  VAL_UNIMARC,      {5,1,-1},
111      "Unimarc"},
112     {PROTO_Z3950,   CLASS_RECSYN,  VAL_INTERMARC,    {5,2,-1},
113      "Intermarc"},
114     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CCF,          {5,3,-1},
115      "CCF"},
116     {PROTO_Z3950,   CLASS_RECSYN,  VAL_USMARC,       {5,10,-1},
117      "USmarc"},
118     {PROTO_Z3950,   CLASS_RECSYN,  VAL_UKMARC,       {5,11,-1},
119      "UKmarc"},
120     {PROTO_Z3950,   CLASS_RECSYN,  VAL_NORMARC,      {5,12,-1},
121      "Normarc"},
122     {PROTO_Z3950,   CLASS_RECSYN,  VAL_LIBRISMARC,   {5,13,-1},
123      "Librismarc"},
124     {PROTO_Z3950,   CLASS_RECSYN,  VAL_DANMARC,      {5,14,-1},
125      "Danmarc"},
126     {PROTO_Z3950,   CLASS_RECSYN,  VAL_FINMARC,      {5,15,-1},
127      "Finmarc"},
128     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MAB,          {5,16,-1},
129      "MAB"},
130     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CANMARC,      {5,17,-1},
131      "Canmarc"},
132     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SBN,          {5,18,-1},
133      "SBN"},
134     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PICAMARC,     {5,19,-1},
135      "Picamarc"},
136     {PROTO_Z3950,   CLASS_RECSYN,  VAL_AUSMARC,      {5,20,-1},
137      "Ausmarc"},
138     {PROTO_Z3950,   CLASS_RECSYN,  VAL_IBERMARC,     {5,21,-1},
139      "Ibermarc"},
140     {PROTO_Z3950,   CLASS_RECSYN,  VAL_CATMARC,      {5,22,-1},
141      "Carmarc"},
142     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MALMARC,      {5,23,-1},
143      "Malmarc"},
144     {PROTO_Z3950,   CLASS_RECSYN,  VAL_JPMARC,       {5,24,-1},
145      "JPmarc"},
146     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SWEMARC,      {5,25,-1},
147      "SWEmarc"},
148     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SIGLEMARC,    {5,26,-1},
149      "SIGLEmarc"},
150     {PROTO_Z3950,   CLASS_RECSYN,  VAL_ISDSMARC,     {5,27,-1},
151      "ISDSmarc"},
152     {PROTO_Z3950,   CLASS_RECSYN,  VAL_RUSMARC,      {5,28,-1},
153      "RUSmarc"},
154     {PROTO_Z3950,   CLASS_RECSYN,  VAL_HUNMARC,      {5,29,-1},
155      "Hunmarc"},
156     {PROTO_Z3950,   CLASS_RECSYN,  VAL_EXPLAIN,      {5,100,-1},
157      "Explain"},
158     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SUTRS,        {5,101,-1},
159      "SUTRS"},
160     {PROTO_Z3950,   CLASS_RECSYN,  VAL_OPAC,         {5,102,-1},
161      "OPAC"},
162     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SUMMARY,      {5,103,-1},
163      "Summary"},
164     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GRS0,         {5,104,-1},
165      "GRS-0"},
166     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GRS1,         {5,105,-1},
167      "GRS-1"},
168     {PROTO_Z3950,   CLASS_RECSYN,  VAL_EXTENDED,     {5,106,-1},
169      "Extended"},
170     {PROTO_Z3950,   CLASS_RECSYN,  VAL_FRAGMENT,     {5,107,-1},
171      "Fragment"},
172     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PDF,          {5,109,1,-1},
173      "pdf"},
174     {PROTO_Z3950,   CLASS_RECSYN,  VAL_POSTSCRIPT,   {5,109,2,-1},
175      "postscript"},
176     {PROTO_Z3950,   CLASS_RECSYN,  VAL_HTML,         {5,109,3,-1},
177      "html"},
178     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TIFF,         {5,109,4,-1},
179      "tiff"},
180     {PROTO_Z3950,   CLASS_RECSYN,  VAL_GIF,          {5,109,5,-1},
181      "gif"},
182     {PROTO_Z3950,   CLASS_RECSYN,  VAL_JPEG,         {5,109,6,-1},
183      "jpeg"},
184     {PROTO_Z3950,   CLASS_RECSYN,  VAL_PNG,          {5,109,7,-1},
185      "png"},
186     {PROTO_Z3950,   CLASS_RECSYN,  VAL_MPEG,         {5,109,8,-1},
187      "mpeg"},
188     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SGML,         {5,109,9,-1},
189      "sgml"},
190
191     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TIFFB,        {5,110,1,-1},
192      "tiff-b"},
193     {PROTO_Z3950,   CLASS_RECSYN,  VAL_WAV,          {5,110,2,-1},
194      "wav"},
195
196     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SQLRS,        {5,111,-1},
197      "SQL-RS"},
198     {PROTO_Z3950,   CLASS_RECSYN,  VAL_SOIF,         {5,1000,81,2,-1},
199      "SOIF" },
200     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TEXT_XML,     {5,109,10,-1},
201      "text-XML" },
202     {PROTO_Z3950,   CLASS_RECSYN,  VAL_TEXT_XML,     {5,109,10,-1},
203      "XML" },
204     {PROTO_Z3950,   CLASS_RECSYN,  VAL_APPLICATION_XML, {5,109,11,-1},
205      "application-XML" },
206     {PROTO_Z3950,   CLASS_RESFORM, VAL_RESOURCE1,    {7,1,-1},
207      "Resource-1"},
208     {PROTO_Z3950,   CLASS_RESFORM, VAL_RESOURCE2,    {7,2,-1},
209      "Resource-2"},
210     {PROTO_Z3950,   CLASS_RESFORM, VAL_UNIVERSE_REPORT, {7,1000,81,1,-1},
211      "UNIverse-Resource-Report"},
212
213     {PROTO_Z3950,   CLASS_ACCFORM, VAL_PROMPT1,      {8,1,-1},
214      "Prompt-1"},
215     {PROTO_Z3950,   CLASS_ACCFORM, VAL_DES1,         {8,2,-1},
216      "Des-1"},
217     {PROTO_Z3950,   CLASS_ACCFORM, VAL_KRB1,         {8,3,-1},
218      "Krb-1"},
219     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PRESSET,      {9,1,-1},
220      "Pers. set"},
221     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PQUERY,       {9,2,-1},
222      "Pers. query"},
223     {PROTO_Z3950,   CLASS_EXTSERV, VAL_PCQUERY,      {9,3,-1},
224      "Per'd query"},
225     {PROTO_Z3950,   CLASS_EXTSERV, VAL_ITEMORDER,    {9,4,-1},
226      "Item order"},
227     {PROTO_Z3950,   CLASS_EXTSERV, VAL_DBUPDATE0,    {9,5,1,-1},
228      "DB. Update (old version)"},
229     {PROTO_Z3950,   CLASS_EXTSERV, VAL_DBUPDATE,     {9,5,1,1,-1},
230      "DB. Update"},
231     {PROTO_Z3950,   CLASS_EXTSERV, VAL_EXPORTSPEC,   {9,6,-1},
232      "exp. spec."},
233     {PROTO_Z3950,   CLASS_EXTSERV, VAL_EXPORTINV,    {9,7,-1},
234      "exp. inv."},
235     {PROTO_Z3950,   CLASS_EXTSERV, VAL_ADMINSERVICE, {9,81,1,-1},
236      "Admin"},
237     {PROTO_Z3950,   CLASS_USERINFO,VAL_SEARCHRES1,   {10,1,-1},
238      "searchResult-1"},
239     {PROTO_Z3950,   CLASS_USERINFO,VAL_CHARLANG,     {10,2,-1},
240      "CharSetandLanguageNegotiation"},
241     {PROTO_Z3950,   CLASS_USERINFO,VAL_USERINFO1,    {10,3,-1},
242      "UserInfo-1"},
243     {PROTO_Z3950,   CLASS_USERINFO,VAL_MULTISRCH1,   {10,4,-1},
244      "MultipleSearchTerms-1"},
245     {PROTO_Z3950,   CLASS_USERINFO,VAL_MULTISRCH2,   {10,5,-1},
246      "MultipleSearchTerms-2"},
247     {PROTO_Z3950,   CLASS_USERINFO,VAL_DATETIME,     {10,6,-1},
248      "DateTime"},
249     {PROTO_Z3950,   CLASS_USERINFO,VAL_PROXY,        {10,1000,81,1,-1},
250      "Proxy" },
251     {PROTO_Z3950,   CLASS_USERINFO,VAL_COOKIE,       {10,1000,81,2,-1},
252      "Cookie" },
253     {PROTO_Z3950,   CLASS_USERINFO,VAL_CLIENT_IP,    {10,1000,81,3,-1},
254      "Client-IP" },
255     {PROTO_Z3950,   CLASS_ELEMSPEC,VAL_ESPEC1,       {11,1,-1},
256      "Espec-1"},
257     {PROTO_Z3950,   CLASS_VARSET,  VAL_VAR1,         {12,1,-1},
258      "Variant-1"},
259     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_WAIS,         {13,1,-1},
260      "WAIS-schema"},
261     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_GILS,         {13,2,-1},
262      "GILS-schema"},
263     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_COLLECT1,     {13,3,-1},
264      "Collections-schema"},
265     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_GEO,          {13,4,-1},
266      "Geo-schema"},
267     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_CIMI1,        {13,5,-1},
268      "CIMI-schema"},
269     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_UPDATEES,     {13,6,-1},
270      "Update ES"},
271     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_HOLDINGS,     {13,7,-1},
272      "Holdings"},
273     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_ZTHES,        {13,8,-1},
274      "Zthes"},
275     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_THESAURUS,    {13,1000,81,1,-1},
276      "thesaurus-schema"},
277     {PROTO_Z3950,   CLASS_SCHEMA,  VAL_EXPLAIN,      {13,1000,81,2,-1},
278      "Explain-schema"},
279     {PROTO_Z3950,   CLASS_TAGSET,  VAL_SETM,         {14,1,-1},
280      "TagsetM"},
281     {PROTO_Z3950,   CLASS_TAGSET,  VAL_SETG,         {14,2,-1},
282      "TagsetG"},
283     {PROTO_Z3950,   CLASS_TAGSET,  VAL_STAS,         {14,3,-1},
284      "STAS-tagset"},
285     {PROTO_Z3950,   CLASS_TAGSET,  VAL_GILS,         {14,4,-1},
286      "GILS-tagset"},
287     {PROTO_Z3950,   CLASS_TAGSET,  VAL_COLLECT1,     {14,5,-1},
288      "Collections-tagset"},
289     {PROTO_Z3950,   CLASS_TAGSET,  VAL_CIMI1,        {14,6,-1},
290      "CIMI-tagset"},
291     {PROTO_Z3950,   CLASS_TAGSET,  VAL_THESAURUS,    {14,1000,81,1,-1},
292      "thesaurus-tagset"},       /* What is this Satan-spawn doing here? */
293     {PROTO_Z3950,   CLASS_TAGSET,  VAL_EXPLAIN,      {14,1000,81,2,-1},
294      "Explain-tagset"},
295     {PROTO_Z3950,   CLASS_TAGSET,  VAL_ZTHES,        {14,8,-1},
296      "Zthes-tagset"},
297     {PROTO_Z3950,   CLASS_NEGOT,   VAL_CHARNEG3,     {15,3,-1},
298      "CharSetandLanguageNegotiation-3"},
299     {PROTO_Z3950,   CLASS_USERINFO,VAL_CQL,          {16, 2, -1},
300      "CQL"},
301     {PROTO_GENERAL, CLASS_GENERAL, VAL_UCS2,    {1,0,10646,1,0,2,-1},
302      "UCS-2"},
303     {PROTO_GENERAL, CLASS_GENERAL, VAL_UCS4,    {1,0,10646,1,0,4,-1},
304      "UCS-4"},
305     {PROTO_GENERAL, CLASS_GENERAL, VAL_UTF16,   {1,0,10646,1,0,5,-1},
306      "UTF-16"},
307     {PROTO_GENERAL, CLASS_GENERAL, VAL_UTF8,    {1,0,10646,1,0,8,-1},
308      "UTF-8"},
309     {PROTO_NOP,     CLASS_NOP,     VAL_NOP,       {-1},        0          }
310 };
311
312 /* OID utilities */
313
314 void oid_oidcpy(int *t, int *s)
315 {
316     while ((*(t++) = *(s++)) > -1);
317 }
318
319 void oid_oidcat(int *t, int *s)
320 {
321     while (*t > -1)
322         t++;
323     while ((*(t++) = *(s++)) > -1);
324 }
325
326 int oid_oidcmp(int *o1, int *o2)
327 {
328     while (*o1 == *o2 && *o1 > -1)
329     {
330         o1++;
331         o2++;
332     }
333     if (*o1 == *o2)
334         return 0;
335     else if (*o1 > *o2)
336         return 1;
337     else
338         return -1;
339 }
340
341 int oid_oidlen(int *o)
342 {
343     int len = 0;
344
345     while (*(o++) >= 0)
346         len++;
347     return len;
348 }
349
350
351 static int match_prefix(int *look, int *prefix)
352 {
353     int len;
354
355     for (len = 0; *look == *prefix; look++, prefix++, len++);
356     if (*prefix < 0) /* did we reach the end of the prefix? */
357         return len;
358     return 0;
359 }
360
361 void oid_transfer (struct oident *oident)
362 {
363     while (*oident->oidsuffix >= 0)
364     {
365         oid_addent (oident->oidsuffix, oident->proto,
366                     oident->oclass,
367                     oident->desc, oident->value);
368         oident++;
369     }
370 }
371
372 void oid_init (void)
373 {
374     if (oid_init_flag == 0)
375     {
376         /* oid_transfer is thread safe, so there's nothing wrong in having
377            two threads calling it simultaniously. On the other hand
378            no thread may exit oid_init before all OID's bave been
379            transferred - which is why checked is set after oid_transfer... 
380         */
381         nmem_mutex_create (&oid_mutex);
382         nmem_mutex_enter (oid_mutex);
383         if (!oid_nmem)
384             oid_nmem = nmem_create ();
385         nmem_mutex_leave (oid_mutex);
386         oid_transfer (standard_oids);
387         oid_init_flag = 1;
388     }
389 }
390
391 void oid_exit (void)
392 {
393     if (oid_init_flag)
394     {
395         oid_init_flag = 0;
396         nmem_mutex_destroy (&oid_mutex);
397         nmem_destroy (oid_nmem);
398         oid_nmem = 0;
399     }
400 }
401
402 static struct oident *oid_getentbyoid_x(int *o)
403 {
404     enum oid_proto proto;
405     int prelen;
406     struct oident_list *ol;
407     
408     /* determine protocol type */
409     if ((prelen = match_prefix(o, z3950_prefix)) != 0)
410         proto = PROTO_Z3950;
411     else if ((prelen = match_prefix(o, sr_prefix)) != 0)
412         proto = PROTO_SR;
413     else
414         proto = PROTO_GENERAL;
415     for (ol = oident_table; ol; ol = ol->next)
416     {
417         struct oident *p = &ol->oident;
418         if (p->proto == proto && !oid_oidcmp(o + prelen, p->oidsuffix))
419             return p;
420         if (p->proto == PROTO_GENERAL && !oid_oidcmp (o, p->oidsuffix))
421             return p;
422     }
423     return 0;
424 }
425
426 /*
427  * To query, fill out proto, class, and value of the ent parameter.
428  */
429 int *oid_ent_to_oid(struct oident *ent, int *ret)
430 {
431     struct oident_list *ol;
432     
433     oid_init ();
434     for (ol = oident_table; ol; ol = ol->next)
435     {
436         struct oident *p = &ol->oident;
437         if (ent->value == p->value &&
438             (p->proto == PROTO_GENERAL || (ent->proto == p->proto &&  
439             (ent->oclass == p->oclass || ent->oclass == CLASS_GENERAL))))
440         {
441             if (p->proto == PROTO_Z3950)
442                 oid_oidcpy(ret, z3950_prefix);
443             else if (p->proto == PROTO_SR)
444                 oid_oidcpy(ret, sr_prefix);
445             else
446                 ret[0] = -1;
447             oid_oidcat(ret, p->oidsuffix);
448             ent->desc = p->desc;
449             return ret;
450         }
451     }
452     ret[0] = -1;
453     return 0;
454 }
455
456 /*
457  * To query, fill out proto, class, and value of the ent parameter.
458  */
459 int *oid_getoidbyent(struct oident *ent)
460 {
461     static int ret[OID_SIZE];
462
463     return oid_ent_to_oid (ent, ret);
464 }
465
466 struct oident *oid_addent (int *oid, enum oid_proto proto,
467                            enum oid_class oclass,
468                            const char *desc, int value)
469 {
470     struct oident *oident = 0;
471
472     nmem_mutex_enter (oid_mutex);
473     if (!oident)
474     {
475         char desc_str[200];
476         struct oident_list *oident_list;
477         oident_list = (struct oident_list *)
478             nmem_malloc (oid_nmem, sizeof(*oident_list));
479         oident = &oident_list->oident;
480         oident->proto = proto;
481         oident->oclass = oclass;
482
483         if (!desc)
484         {
485             int i;
486
487             sprintf (desc_str, "%d", *oid);
488             for (i = 1; i < 12 && oid[i] >= 0; i++)
489                 sprintf (desc_str+strlen(desc_str), ".%d", oid[i]);
490             desc = desc_str;
491         }
492         oident->desc = nmem_strdup (oid_nmem, desc);
493         if (value == VAL_DYNAMIC)
494             oident->value = (enum oid_value) (++oid_value_dynamic);
495         else
496             oident->value = (enum oid_value) value;
497         oid_oidcpy (oident->oidsuffix, oid);
498         oident_list->next = oident_table;
499         oident_table = oident_list;
500     }
501     nmem_mutex_leave (oid_mutex);
502     return oident;
503 }
504
505 struct oident *oid_getentbyoid(int *oid)
506 {
507     struct oident *oident;
508
509     if (!oid)
510         return 0;
511     oid_init ();
512     oident = oid_getentbyoid_x (oid);
513     if (!oident)
514         oident = oid_addent (oid, PROTO_GENERAL, CLASS_GENERAL,
515                              NULL, VAL_DYNAMIC);
516     return oident;
517 }
518
519 static oid_value oid_getval_raw(const char *name)
520 {
521     int val = 0, i = 0, oid[OID_SIZE];
522     struct oident *oident;
523     
524     while (isdigit (*name))
525     {
526         val = val*10 + (*name - '0');
527         name++;
528         if (*name == '.')
529         {
530             if (i < OID_SIZE-1)
531                 oid[i++] = val;
532             val = 0;
533             name++;
534         }
535     }
536     oid[i] = val;
537     oid[i+1] = -1;
538     oident = oid_getentbyoid_x (oid);
539     if (!oident)
540         oident = oid_addent (oid, PROTO_GENERAL, CLASS_GENERAL, NULL,
541                          VAL_DYNAMIC);
542     return oident->value;
543 }
544
545 oid_value oid_getvalbyname(const char *name)
546 {
547     struct oident_list *ol;
548
549     oid_init ();
550     if (isdigit (*name))
551         return oid_getval_raw (name);
552     for (ol = oident_table; ol; ol = ol->next)
553         if (!yaz_matchstr(ol->oident.desc, name))
554         {
555             return ol->oident.value;
556         }
557     return VAL_NONE;
558 }
559
560 void oid_setprivateoids(oident *list)
561 {
562     oid_transfer (list);
563 }
564
565 void oid_trav (void (*func)(struct oident *oidinfo, void *vp), void *vp)
566 {
567     struct oident_list *ol;
568
569     oid_init ();
570     for (ol = oident_table; ol; ol = ol->next)
571         (*func)(&ol->oident, vp);
572 }