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