Fixed bug regarding pointer conversion that showed up on OSF V5.
[idzebra-moved-to-github.git] / include / recctrl.h
1 /*
2  * Copyright (C) 1994-1998, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: recctrl.h,v $
7  * Revision 1.33  2000-02-25 13:24:49  adam
8  * Fixed bug regarding pointer conversion that showed up on OSF V5.
9  *
10  * Revision 1.32  1999/11/30 13:48:03  adam
11  * Improved installation. Updated for inclusion of YAZ header files.
12  *
13  * Revision 1.31  1999/09/07 07:19:21  adam
14  * Work on character mapping. Implemented replace rules.
15  *
16  * Revision 1.30  1999/05/21 12:00:17  adam
17  * Better diagnostics for extraction process.
18  *
19  * Revision 1.29  1999/05/20 12:57:18  adam
20  * Implemented TCL filter. Updated recctrl system.
21  *
22  * Revision 1.28  1999/03/02 16:15:42  quinn
23  * Added "tagsysno" and "tagrank" directives to zebra.cfg.
24  *
25  * Revision 1.27  1998/10/16 08:14:28  adam
26  * Updated record control system.
27  *
28  * Revision 1.26  1998/05/20 10:12:12  adam
29  * Implemented automatic EXPLAIN database maintenance.
30  * Modified Zebra to work with ASN.1 compiled version of YAZ.
31  *
32  * Revision 1.25  1998/03/11 11:19:04  adam
33  * Changed the way sequence numbers are generated.
34  *
35  * Revision 1.24  1998/03/05 08:38:46  adam
36  * New member recordSize in recRetrieveCtrl.
37  *
38  * Revision 1.23  1998/02/10 12:03:05  adam
39  * Implemented Sort.
40  *
41  * Revision 1.22  1997/10/27 14:33:04  adam
42  * Moved towards generic character mapping depending on "structure"
43  * field in abstract syntax file. Fixed a few memory leaks. Fixed
44  * bug with negative integers when doing searches with relational
45  * operators.
46  *
47  * Revision 1.21  1997/09/18 08:59:19  adam
48  * Extra generic handle for the character mapping routines.
49  *
50  * Revision 1.20  1997/09/17 12:19:10  adam
51  * Zebra version corresponds to YAZ version 1.4.
52  * Changed Zebra server so that it doesn't depend on global common_resource.
53  *
54  * Revision 1.19  1997/09/05 15:30:02  adam
55  * Changed prototype for chr_map_input - added const.
56  * Added support for C++, headers uses extern "C" for public definitions.
57  *
58  * Revision 1.18  1997/09/04 13:56:15  adam
59  * Added new filter grs.marc.<syntax> where <syntax> refers to
60  * abstract syntax. New method tellf in extract/retrieve control
61  * block.
62  *
63  * Revision 1.17  1997/04/30 08:56:04  quinn
64  * null
65  *
66  * Revision 1.16  1996/10/11  10:56:25  adam
67  * New module recctrl. Used to manage records (extract/retrieval).
68  * All record types are accessed by means of definitions in recctrl.h.
69  *
70  * Revision 1.15  1996/06/06 12:08:16  quinn
71  * Added showRecord Group entry
72  *
73  * Revision 1.14  1996/05/09  07:28:49  quinn
74  * Work towards phrases and multiple registers
75  *
76  * Revision 1.13  1996/05/01  13:44:05  adam
77  * Added seek function to the recExtractCtrl and recRetrieveCtrl control
78  * structures. Added end-of-file indicator function and start offset to
79  * recExtractCtrl.
80  *
81  * Revision 1.12  1996/01/17  15:01:25  adam
82  * Prototype changed for reader functions in extract/retrieve. File
83  *  is identified by 'void *' instead of 'int'.
84  *
85  * Revision 1.11  1995/12/04  14:20:54  adam
86  * Extra arg to recType_byName.
87  *
88  * Revision 1.10  1995/10/16  14:03:06  quinn
89  * Changes to support element set names and espec1
90  *
91  * Revision 1.9  1995/10/06  14:37:53  adam
92  * New result set method: r_score.
93  * Local no (sysno) and score is transferred to retrieveCtrl.
94  *
95  * Revision 1.8  1995/10/02  15:43:35  adam
96  * Extract uses file descriptors instead of FILE pointers.
97  *
98  * Revision 1.7  1995/10/02  15:18:09  adam
99  * Minor changes.
100  *
101  * Revision 1.6  1995/10/02  15:05:26  quinn
102  * Added a few fields.
103  *
104  * Revision 1.5  1995/10/02  14:55:52  quinn
105  * *** empty log message ***
106  *
107  * Revision 1.4  1995/09/27  16:17:29  adam
108  * More work on retrieve.
109  *
110  * Revision 1.3  1995/09/27  12:21:25  adam
111  * New function: recType_byName.
112  *
113  * Revision 1.2  1995/09/15  14:45:03  adam
114  * Retrieve control.
115  *
116  * Revision 1.1  1995/09/14  07:48:13  adam
117  * Record control management.
118  *
119  */
120
121 #ifndef RECCTRL_H
122 #define RECCTRL_H
123
124 #include <yaz/proto.h>
125 #include <yaz/oid.h>
126 #include <yaz/odr.h>
127 #include <yaz/data1.h>
128 #include <zebramap.h>
129
130 #ifdef __cplusplus
131 extern "C" {
132 #endif
133
134 /* single word entity */
135 typedef struct {
136     int  attrSet;
137     int  attrUse;
138     unsigned reg_type;
139     char *string;
140     int  length;
141     int  *seqnos;
142     ZebraMaps zebra_maps;
143     struct recExtractCtrl *extractCtrl;
144 } RecWord;
145
146 /* Extract record control */
147 struct recExtractCtrl {
148     void      *fh;                    /* File handle and read function     */
149     int       (*readf)(void *fh, char *buf, size_t count);
150     off_t     (*seekf)(void *fh, off_t offset);  /* seek function          */
151     off_t     (*tellf)(void *fh);                /* tell function          */
152     void      (*endf)(void *fh, off_t offset);   /* end of record position */
153     off_t     offset;                            /* start offset           */
154     char      *subType;
155     void      (*init)(struct recExtractCtrl *p, RecWord *w);
156     void      *clientData;
157     void      (*tokenAdd)(RecWord *w);
158     ZebraMaps zebra_maps;
159     int       flagShowRecords;
160     int       seqno[256];
161     void      (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid);
162     data1_handle dh;
163 };
164
165 /* Retrieve record control */
166 struct recRetrieveCtrl {
167     /* Input parameters ... */
168     Res       res;                    /* Resource pool                     */
169     ODR       odr;                    /* ODR used to create response       */
170     void     *fh;                     /* File descriptor and read function */
171     int       (*readf)(void *fh, char *buf, size_t count);
172     off_t     (*seekf)(void *fh, off_t offset);
173     off_t     (*tellf)(void *fh);
174     oid_value input_format;           /* Preferred record syntax           */
175     Z_RecordComposition *comp;        /* formatting instructions           */
176     int       localno;                /* local id of record                */
177     int       score;                  /* score 0-1000 or -1 if none        */
178     int       recordSize;             /* size of record in bytes */
179     char      *subType;
180     data1_handle dh;
181     
182     /* response */
183     oid_value  output_format;
184     void       *rec_buf;
185     int        rec_len;
186     int        diagnostic;
187     char *message;
188 };
189
190 typedef struct recType *RecType;
191
192 struct recType
193 {
194     char *name;                           /* Name of record type */
195     void *(*init)(RecType recType);       /* Init function - called once */
196     void (*destroy)(void *clientData);    /* Destroy function */
197     int  (*extract)(void *clientData,
198                     struct recExtractCtrl *ctrl);   /* Extract proc */
199     int  (*retrieve)(void *clientData,
200                      struct recRetrieveCtrl *ctrl); /* Retrieve proc */
201 };
202
203 #define RECCTRL_EXTRACT_OK    0
204 #define RECCTRL_EXTRACT_EOF   1
205 #define RECCTRL_EXTRACT_ERROR 2
206
207 typedef struct recTypes *RecTypes;
208
209 RecTypes recTypes_init (data1_handle dh);
210 void recTypes_destroy (RecTypes recTypes);
211 void recTypes_default_handlers (RecTypes recTypes);
212
213 RecType recType_byName (RecTypes rts, const char *name, char *subType,
214                         void **clientDataP);
215
216 int grs_extract_tree(struct recExtractCtrl *p, data1_node *n);
217
218 #ifdef __cplusplus
219 }
220 #endif
221
222 #endif