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