Added OtherInfo private OID proxy.
[yaz-moved-to-github.git] / include / oid.h
1 /*
2  * Copyright (c) 1995-1998, Index Data.
3  *
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,
6  * provided that:
7  *
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.
11  *
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.
15  *
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
24  * OF THIS SOFTWARE.
25  *
26  * $Log: oid.h,v $
27  * Revision 1.30  1999-04-09 12:16:11  adam
28  * Added OtherInfo private OID proxy.
29  *
30  * Revision 1.29  1998/12/03 11:33:04  adam
31  * Added OID's for XML.
32  *
33  * Revision 1.28  1998/10/13 16:01:52  adam
34  * Implemented support for dynamic object identifiers.
35  * Function oid_getvalbyname now accepts raw OID's as well as traditional
36  * names.
37  *
38  * Revision 1.27  1998/05/18 13:06:58  adam
39  * Changed the way attribute sets are handled by the retriaval module.
40  * Extended Explain conversion / schema.
41  * Modified server and client to work with ASN.1 compiled protocol handlers.
42  *
43  * Revision 1.26  1998/03/20 14:46:06  adam
44  * Added UNIverse Resource Reports.
45  *
46  * Revision 1.25  1998/02/10 15:31:52  adam
47  * Implemented date and time structure. Changed the Update Extended
48  * Service.
49  *
50  * Revision 1.24  1997/09/29 13:18:59  adam
51  * Added function, oid_ent_to_oid, to replace the function
52  * oid_getoidbyent, which is not thread safe.
53  *
54  * Revision 1.23  1997/09/01 08:49:50  adam
55  * New windows NT/95 port using MSV5.0. To export DLL functions the
56  * YAZ_EXPORT modifier was added. Defined in yconfig.h.
57  *
58  * Revision 1.22  1997/08/19 08:45:13  quinn
59  * Added Thesaurus
60  *
61  * Revision 1.21  1997/08/19 08:43:49  quinn
62  * Housekeeping
63  *
64  * Revision 1.19  1997/07/28 12:34:42  adam
65  * Added new OID entries (RVDM).
66  *
67  * Revision 1.18  1997/05/14 06:53:42  adam
68  * C++ support.
69  *
70  * Revision 1.17  1997/05/02 08:39:27  quinn
71  * Support for private OID table added. Thanks to Ronald van der Meer
72  *
73  * Revision 1.16  1997/04/30 08:52:08  quinn
74  * Null
75  *
76  * Revision 1.15  1996/10/09  15:54:57  quinn
77  * Added SearchInfoReport
78  *
79  * Revision 1.14  1996/10/07  15:29:17  quinn
80  * Added SOIF support
81  *
82  * Revision 1.13  1996/02/20  17:57:53  adam
83  * Added const to oid_getvalbyname.
84  *
85  * Revision 1.12  1996/02/20  12:52:37  quinn
86  * Various
87  *
88  * Revision 1.11  1996/01/02  08:57:30  quinn
89  * Changed enums in the ASN.1 .h files to #defines. Changed oident.class to oclass
90  *
91  * Revision 1.10  1995/11/13  09:27:31  quinn
92  * Fiddling with the variant stuff.
93  *
94  * Revision 1.9  1995/10/12  10:34:45  quinn
95  * Added Espec-1.
96  *
97  * Revision 1.8  1995/10/10  16:27:08  quinn
98  * *** empty log message ***
99  *
100  * Revision 1.7  1995/09/29  17:12:05  quinn
101  * Smallish
102  *
103  * Revision 1.6  1995/09/27  15:02:48  quinn
104  * Modified function heads & prototypes.
105  *
106  * Revision 1.5  1995/09/12  11:31:46  quinn
107  * Added some oids.
108  *
109  * Revision 1.4  1995/06/27  13:20:32  quinn
110  * Added SUTRS support
111  *
112  * Revision 1.3  1995/05/29  08:11:33  quinn
113  * Moved oid from odr/asn to util.
114  *
115  * Revision 1.2  1995/05/16  08:50:35  quinn
116  * License, documentation, and memory fixes
117  *
118  * Revision 1.1  1995/03/30  09:39:41  quinn
119  * Moved .h files to include directory
120  *
121  * Revision 1.1  1995/03/27  08:32:13  quinn
122  * Added OID database
123  *
124  *
125  */
126
127 #ifndef OID_H
128 #define OID_H
129
130 #include <yconfig.h>
131
132 #ifdef __cplusplus
133 extern "C" {
134 #endif
135
136 #define OID_SIZE 20
137     
138 typedef enum oid_proto
139 {
140     PROTO_NOP=0,
141     PROTO_Z3950,
142     PROTO_SR,
143     PROTO_GENERAL,
144     PROTO_WAIS
145 } oid_proto;
146
147 typedef enum oid_class
148 {
149     CLASS_NOP=0,
150     CLASS_APPCTX,
151     CLASS_ABSYN,
152     CLASS_ATTSET,
153     CLASS_TRANSYN,
154     CLASS_DIAGSET,
155     CLASS_RECSYN,
156     CLASS_RESFORM,
157     CLASS_ACCFORM,
158     CLASS_EXTSERV,
159     CLASS_USERINFO,
160     CLASS_ELEMSPEC,
161     CLASS_VARSET,
162     CLASS_SCHEMA,
163     CLASS_TAGSET,
164     CLASS_GENERAL
165 } oid_class;
166
167 typedef enum oid_value
168 {
169     VAL_NOP=0,
170     VAL_APDU,
171     VAL_BER,
172     VAL_BASIC_CTX,
173     VAL_BIB1,
174     VAL_EXP1,
175     VAL_EXT1,
176     VAL_CCL1,
177     VAL_GILS,
178     VAL_WAIS,
179     VAL_STAS,
180     VAL_COLLECT1,
181     VAL_CIMI1,
182     VAL_GEO,
183     VAL_DIAG1,
184     VAL_ISO2709,
185     VAL_UNIMARC,
186     VAL_INTERMARC,
187     VAL_CCF,
188     VAL_USMARC,
189     VAL_UKMARC,
190     VAL_NORMARC,
191     VAL_LIBRISMARC,
192     VAL_DANMARC,
193     VAL_FINMARC,
194     VAL_MAB,
195     VAL_CANMARC,
196     VAL_SBN,
197     VAL_PICAMARC,
198     VAL_AUSMARC,
199     VAL_IBERMARC,
200     VAL_CATMARC,
201     VAL_MALMARC,
202     VAL_EXPLAIN,
203     VAL_SUTRS,
204     VAL_OPAC,
205     VAL_SUMMARY,
206     VAL_GRS0,
207     VAL_GRS1,
208     VAL_EXTENDED,
209     VAL_FRAGMENT,
210     VAL_RESOURCE1,
211     VAL_RESOURCE2,
212     VAL_PROMPT1,
213     VAL_DES1,
214     VAL_KRB1,
215     VAL_PRESSET,
216     VAL_PQUERY,
217     VAL_PCQUERY,
218     VAL_ITEMORDER,
219     VAL_DBUPDATE,
220     VAL_EXPORTSPEC,
221     VAL_EXPORTINV,
222     VAL_NONE,
223     VAL_SETM,
224     VAL_SETG,
225     VAL_VAR1,
226     VAL_ESPEC1,
227     VAL_SOIF,
228     VAL_SEARCHRES1,
229     VAL_THESAURUS,
230     VAL_CHARLANG,
231     VAL_USERINFO1,
232     VAL_MULTISRCH1,
233     VAL_MULTISRCH2,
234     VAL_DATETIME,
235     VAL_SQLRS,
236     VAL_PDF,
237     VAL_POSTSCRIPT,
238     VAL_HTML,
239     VAL_TIFF,
240     VAL_GIF,
241     VAL_JPEG,
242     VAL_PNG,
243     VAL_MPEG,
244     VAL_SGML,
245     VAL_TIFFB,
246     VAL_WAV,
247     VAL_UPDATEES,
248     VAL_TEXT_XML,
249     VAL_APPLICATION_XML,
250     VAL_UNIVERSE_REPORT,
251     VAL_PROXY,
252 /* add new types here... */
253
254 /* VAL_DYNAMIC must have highest value */
255     VAL_DYNAMIC
256 } oid_value;
257
258 typedef struct oident
259 {
260     oid_proto proto;
261     oid_class oclass;
262     oid_value value;
263     int oidsuffix[OID_SIZE];
264     char *desc;
265 } oident;
266
267 YAZ_EXPORT int *oid_getoidbyent(struct oident *ent);
268 YAZ_EXPORT int *oid_ent_to_oid(struct oident *ent, int *dst);
269 YAZ_EXPORT struct oident *oid_getentbyoid(int *o);
270 YAZ_EXPORT void oid_oidcpy(int *t, int *s);
271 YAZ_EXPORT void oid_oidcat(int *t, int *s);
272 YAZ_EXPORT int oid_oidcmp(int *o1, int *o2);
273 YAZ_EXPORT int oid_oidlen(int *o);
274 YAZ_EXPORT oid_value oid_getvalbyname(const char *name);
275 YAZ_EXPORT void oid_setprivateoids(oident *list);
276 YAZ_EXPORT struct oident *oid_addent (int *oid, int proto, int oclass,
277                                       const char *desc, int value);
278
279 #ifdef __cplusplus
280 }
281 #endif
282
283 #endif