Added showRecord Group entry
[idzebra-moved-to-github.git] / include / recctrl.h
1 /*
2  * Copyright (C) 1994-1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: recctrl.h,v $
7  * Revision 1.15  1996-06-06 12:08:16  quinn
8  * Added showRecord Group entry
9  *
10  * Revision 1.14  1996/05/09  07:28:49  quinn
11  * Work towards phrases and multiple registers
12  *
13  * Revision 1.13  1996/05/01  13:44:05  adam
14  * Added seek function to the recExtractCtrl and recRetrieveCtrl control
15  * structures. Added end-of-file indicator function and start offset to
16  * recExtractCtrl.
17  *
18  * Revision 1.12  1996/01/17  15:01:25  adam
19  * Prototype changed for reader functions in extract/retrieve. File
20  *  is identified by 'void *' instead of 'int'.
21  *
22  * Revision 1.11  1995/12/04  14:20:54  adam
23  * Extra arg to recType_byName.
24  *
25  * Revision 1.10  1995/10/16  14:03:06  quinn
26  * Changes to support element set names and espec1
27  *
28  * Revision 1.9  1995/10/06  14:37:53  adam
29  * New result set method: r_score.
30  * Local no (sysno) and score is transferred to retrieveCtrl.
31  *
32  * Revision 1.8  1995/10/02  15:43:35  adam
33  * Extract uses file descriptors instead of FILE pointers.
34  *
35  * Revision 1.7  1995/10/02  15:18:09  adam
36  * Minor changes.
37  *
38  * Revision 1.6  1995/10/02  15:05:26  quinn
39  * Added a few fields.
40  *
41  * Revision 1.5  1995/10/02  14:55:52  quinn
42  * *** empty log message ***
43  *
44  * Revision 1.4  1995/09/27  16:17:29  adam
45  * More work on retrieve.
46  *
47  * Revision 1.3  1995/09/27  12:21:25  adam
48  * New function: recType_byName.
49  *
50  * Revision 1.2  1995/09/15  14:45:03  adam
51  * Retrieve control.
52  *
53  * Revision 1.1  1995/09/14  07:48:13  adam
54  * Record control management.
55  *
56  */
57
58 #ifndef RECCTRL_H
59 #define RECCTRL_H
60
61 #include <proto.h>
62 #include <oid.h>
63 #include <odr.h>
64
65 /* single word entity */
66 typedef struct {
67     int  attrSet;
68     int  attrUse;
69     enum {
70         Word_String,
71         Word_Phrase,
72         Word_Numeric
73     } which;
74     union {
75         char *string;
76         int  numeric;
77     } u;
78     int seqno;
79 } RecWord;
80
81 /* Extract record control */
82 struct recExtractCtrl {
83     void      *fh;                    /* File handle and read function     */
84     int       (*readf)(void *fh, char *buf, size_t count);
85     off_t     (*seekf)(void *fh, off_t offset);  /* seek function          */
86     void      (*endf)(void *fh, off_t offset);   /* end of record position */
87     off_t     offset;                            /* start offset           */
88     char      *subType;
89     struct recordGroup *group;
90     void      (*init)(RecWord *p);
91     void      (*add)(const RecWord *p);
92 };
93
94 /* Retrieve record control */
95 struct recRetrieveCtrl {
96     /* Input parameters ... */
97     ODR       odr;                    /* ODR used to create response       */
98     void     *fh;                     /* File descriptor and read function */
99     int       (*readf)(void *fh, char *buf, size_t count);
100     off_t     (*seekf)(void *fh, off_t offset);
101     oid_value input_format;           /* Preferred record syntax           */
102     Z_RecordComposition *comp;        /* formatting instructions           */
103     int       localno;                /* local id of record                */
104     int       score;                  /* score 0-1000 or -1 if none        */
105     char      *subType;
106     
107     /* response */
108     oid_value  output_format;
109     void       *rec_buf;
110     size_t     rec_len;
111     int        diagnostic;
112     char *message;
113 };
114
115 typedef struct recType
116 {
117     char *name;                       /* Name of record type */
118     void (*init)(void);               /* Init function - called once       */
119     int  (*extract)(struct recExtractCtrl *ctrl);     /* Extract proc      */
120     int  (*retrieve)(struct recRetrieveCtrl *ctrl);   /* Retrieve proc     */
121 } *RecType;
122
123 RecType recType_byName (const char *name, char *subType);
124
125 #endif