Changed some types in mod_dom.c ; mostly 'xmlChar *' to 'const char *'.
[idzebra-moved-to-github.git] / include / idzebra / recctrl.h
1 /* $Id: recctrl.h,v 1.33 2007-03-14 14:16:14 adam Exp $
2    Copyright (C) 1995-2007
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 #ifndef IDZEBRA_RECCTRL_H
24 #define IDZEBRA_RECCTRL_H
25
26 #include <sys/types.h>
27 #include <yaz/proto.h>
28 #include <yaz/oid.h>
29 #include <yaz/odr.h>
30 #include <idzebra/res.h>
31 #include <idzebra/data1.h>
32 #include <idzebra/snippet.h>
33
34 YAZ_BEGIN_CDECL
35
36 /* 1 */
37 #define ZEBRA_XPATH_ELM_BEGIN "_XPATH_BEGIN"
38
39 /* 2 */
40 #define ZEBRA_XPATH_ELM_END   "_XPATH_END"
41
42 /* 1016 */
43 #define ZEBRA_XPATH_CDATA     "_XPATH_CDATA"
44
45 /* 3 */
46 #define ZEBRA_XPATH_ATTR_NAME       "_XPATH_ATTR_NAME"
47
48 /* 1015 */
49 #define ZEBRA_XPATH_ATTR_CDATA      "_XPATH_ATTR_CDATA"
50
51 /** Indexing token */
52 typedef struct {
53     /** index type ('w', 'p', .. */
54     unsigned index_type;
55     /** index name, e.g. "title" */
56     const char *index_name;
57     /** token char data */
58     const char *term_buf;
59     /** length of term_buf */
60     int  term_len;
61     /** sequence number */
62     zint seqno;
63     /** segment number */
64     zint segment;
65     /** record ID */
66     zint record_id;
67     /** section ID */
68     zint section_id;
69     struct recExtractCtrl *extractCtrl;
70 } RecWord;
71
72 /** \brief record reader stream */
73 struct ZebraRecStream {
74     /** client data */
75     void      *fh;    
76     /** \brief read function */
77     int       (*readf)(struct ZebraRecStream *s, char *buf, size_t count);
78     /** \brief seek function */
79     off_t     (*seekf)(struct ZebraRecStream *s, off_t offset);
80     /** \brief tell function */
81     off_t     (*tellf)(struct ZebraRecStream *s);              
82     /** \brief set and get of record position */
83     off_t     (*endf)(struct ZebraRecStream *s, off_t *offset);   
84     /** \brief close and destroy stream */
85     void      (*destroy)(struct ZebraRecStream *s);
86 };
87
88 enum zebra_recctrl_action_t {
89     action_insert = 1,
90     action_replace,
91     action_delete,
92     action_update  /* insert or replace as needed */
93 };
94
95 /** \brief record extract for indexing */
96 struct recExtractCtrl {
97     struct ZebraRecStream *stream;
98     void      (*init)(struct recExtractCtrl *p, RecWord *w);
99     void      *clientData;
100     void      (*tokenAdd)(RecWord *w);
101     void      (*setStoreData)(struct recExtractCtrl *p, void *buf, size_t size);
102     int       first_record;
103     int       flagShowRecords;
104     int       seqno[256];
105     char      match_criteria[256];
106     zint      staticrank;
107     void      (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid);
108     data1_handle dh;
109     void      *handle;
110     enum zebra_recctrl_action_t action;
111 };
112
113 /* Retrieve record control */
114 struct recRetrieveCtrl {
115     struct ZebraRecStream *stream;
116     /* Input parameters ... */
117     Res       res;                    /* Resource pool                     */
118     ODR       odr;                    /* ODR used to create response       */
119     oid_value input_format;           /* Preferred record syntax           */
120     Z_RecordComposition *comp;        /* formatting instructions           */
121     char      *encoding;              /* preferred character encoding      */
122     zint      localno;                /* local id of record                */
123     int       score;                  /* score 0-1000 or -1 if none        */
124     zint      staticrank;             /* static rank >= 0,  0 if none */
125     int       recordSize;             /* size of record in bytes */
126     char      *fname;                 /* name of file (or NULL if internal) */
127     data1_handle dh;
128     zebra_snippets *hit_snippet;
129     zebra_snippets *doc_snippet;
130     
131     /* response */
132     oid_value  output_format;
133     void       *rec_buf;
134     int        rec_len;
135     int        diagnostic;
136     char       *addinfo;
137 };
138
139 typedef struct recType *RecType;
140
141 struct recType
142 {
143     int version;
144     char *name;                           /* Name of record type */
145     void *(*init)(Res res, RecType recType);  /* Init function - called once */
146     ZEBRA_RES (*config)(void *clientData, Res res, const char *args); /* Config */
147     void (*destroy)(void *clientData);    /* Destroy function */
148     int  (*extract)(void *clientData,
149                     struct recExtractCtrl *ctrl);   /* Extract proc */
150     int  (*retrieve)(void *clientData,
151                      struct recRetrieveCtrl *ctrl); /* Retrieve proc */
152 };
153
154 #define RECCTRL_EXTRACT_OK    0
155 #define RECCTRL_EXTRACT_EOF   1
156 #define RECCTRL_EXTRACT_ERROR_GENERIC 2
157 #define RECCTRL_EXTRACT_ERROR_NO_SUCH_FILTER 3
158 #define RECCTRL_EXTRACT_SKIP  4
159
160 typedef struct recTypeClass *RecTypeClass;
161 typedef struct recTypes *RecTypes;
162
163 YAZ_EXPORT
164 RecTypeClass recTypeClass_create (Res res, NMEM nmem);
165
166 YAZ_EXPORT
167 void recTypeClass_load_modules(RecTypeClass *rts, NMEM nmem,
168                                const char *module_path);
169
170 YAZ_EXPORT
171 RecTypeClass recTypeClass_add_modules(Res res, NMEM nmem,
172                                       const char *module_path);
173
174 YAZ_EXPORT
175 void recTypeClass_destroy(RecTypeClass rtc);
176
177 YAZ_EXPORT
178 void recTypeClass_info(RecTypeClass rtc, void *cd,
179                        void (*cb)(void *cd, const char *s));
180
181 YAZ_EXPORT
182 RecTypes recTypes_init(RecTypeClass rtc, data1_handle dh);
183
184 YAZ_EXPORT
185 void recTypes_destroy(RecTypes recTypes);
186
187 YAZ_EXPORT
188 void recTypes_default_handlers(RecTypes recTypes, Res res);
189
190 YAZ_EXPORT
191 RecType recType_byName(RecTypes rts, Res res, const char *name,
192                        void **clientDataP);
193
194 YAZ_END_CDECL
195
196 #endif
197 /*
198  * Local variables:
199  * c-basic-offset: 4
200  * indent-tabs-mode: nil
201  * End:
202  * vim: shiftwidth=4 tabstop=8 expandtab
203  */
204