2 * Copyright (C) 1995-2005, Index Data ApS
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation, in whole or in part, for any purpose, is hereby granted,
8 * 1. This copyright and permission notice appear in all copies of the
9 * software and its documentation. Notices of copyright or attribution
10 * which appear at the beginning of any file must remain unchanged.
12 * 2. The name of Index Data or the individual authors may not be used to
13 * endorse or promote products derived from this software without specific
14 * prior written permission.
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19 * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
20 * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
21 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
22 * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
26 * $Id: oid.h,v 1.27 2005-06-25 15:46:03 adam Exp $
31 * \brief Header for OID database
33 * More or less protocol-transparent OID database.
34 * We could (and should?) extend this so that the user app can add new
35 * entries to the list at initialization.
40 #include <yaz/yconfig.h>
46 typedef enum oid_proto
56 typedef enum oid_class
77 typedef enum oid_value
235 /* VAL_DYNAMIC must have highest value */
237 VAL_MAX = VAL_DYNAMIC+30
240 typedef struct oident
245 int oidsuffix[OID_SIZE];
249 YAZ_EXPORT int *oid_getoidbyent(struct oident *ent);
250 YAZ_EXPORT int *oid_ent_to_oid(struct oident *ent, int *dst);
251 YAZ_EXPORT struct oident *oid_getentbyoid(int *o);
252 YAZ_EXPORT void oid_oidcpy(int *t, int *s);
253 YAZ_EXPORT void oid_oidcat(int *t, int *s);
254 YAZ_EXPORT int oid_oidcmp(int *o1, int *o2);
255 YAZ_EXPORT int oid_oidlen(int *o);
256 YAZ_EXPORT oid_value oid_getvalbyname(const char *name);
257 YAZ_EXPORT void oid_setprivateoids(oident *list);
258 YAZ_EXPORT struct oident *oid_addent (int *oid, enum oid_proto proto,
259 enum oid_class oclass,
260 const char *desc, int value);
262 YAZ_EXPORT void oid_trav (void (*func)(struct oident *oidinfo, void *vp),
265 YAZ_EXPORT void oid_init(void);
266 YAZ_EXPORT void oid_exit(void);
267 YAZ_EXPORT int *oid_name_to_oid(oid_class oclass, const char *name, int *oid);
268 YAZ_EXPORT char *oid_to_dotstring(const int *oid, char *oidbuf);
269 YAZ_EXPORT char *oid_name_to_dotstring(oid_class oclass, const char *name,
278 * indent-tabs-mode: nil
280 * vim: shiftwidth=4 tabstop=8 expandtab