Fix memory handling of quries in result sets
[idzebra-moved-to-github.git] / include / zebraapi.h
1 /* $Id: zebraapi.h,v 1.7 2003-06-18 11:46:33 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003
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 Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23 #ifndef ZEBRAAPI_H
24 #define ZEBRAAPI_H
25
26 #include <yaz/odr.h>
27 #include <yaz/oid.h>
28 #include <yaz/proto.h>
29 #include <zebraver.h>
30
31 /* Fixme! Compare string (ignore case) */
32 #ifdef WIN32
33 #define STRCASECMP      stricmp
34 #else
35 #define STRCASECMP      strcasecmp
36 #endif
37
38 YAZ_BEGIN_CDECL
39
40 struct recordGroup {
41     char  *groupName;
42     char  *databaseName;
43     char  *path;
44     char  *recordId;
45     char  *recordType;
46     int   flagStoreData;
47     int   flagStoreKeys;
48     int   flagRw;
49     int   fileVerboseLimit;
50     int   databaseNamePath;
51     int   explainDatabase;
52     int   followLinks;
53 };
54
55 typedef struct {
56   int processed;
57   int inserted;
58   int updated;
59   int deleted;
60   long utime;
61   long stime;
62 } ZebraTransactionStatus;
63
64 /* Retrieval Record Descriptor */
65 typedef struct {
66     int errCode;         /* non-zero if error when fetching this */
67     char *errString;     /* error string */
68     int position;        /* position of record in result set (1,2,..) */
69     char *buf;           /* record buffer (void pointer really) */
70     int len;             /* length */
71     oid_value format;    /* record syntax */
72     char *base; 
73     int  sysno;
74     int  score;
75 } ZebraRetrievalRecord;
76
77 /* Scan Term Descriptor */
78 typedef struct {
79     int occurrences;     /* scan term occurrences */
80     char *term;          /* scan term string */
81 } ZebraScanEntry;
82
83 typedef struct zebra_session *ZebraHandle;
84 typedef struct zebra_service *ZebraService;
85
86
87 /******
88  * Starting and stopping 
89  */
90
91 /* Start Zebra using file 'configName' (usually zebra.cfg) */
92 /* There should be exactly one ZebraService */
93 YAZ_EXPORT ZebraService zebra_start (const char *configName);
94
95 /* Close the whole Zebra */
96 YAZ_EXPORT void zebra_stop (ZebraService zs);
97
98
99 /* Open a ZebraHandle */
100 /* There should be one handle for each thred doing something */
101 /* with zebra, be that searching or indexing. In simple apps */
102 /* one handle is sufficient */
103 YAZ_EXPORT ZebraHandle zebra_open (ZebraService zs);
104
105 /* Close handle */
106 YAZ_EXPORT void zebra_close (ZebraHandle zh);
107
108 /*********
109  * Error handling 
110  */
111
112 /* last error code */
113 YAZ_EXPORT int zebra_errCode (ZebraHandle zh);
114
115 /* string representatio of above */
116 YAZ_EXPORT const char *zebra_errString (ZebraHandle zh);
117
118 /* extra information associated with error */
119 YAZ_EXPORT char *zebra_errAdd (ZebraHandle zh);
120
121 /* get the result code and addinfo from zh */
122 YAZ_EXPORT void zebra_result (ZebraHandle zh, int *code, char **addinfo);
123 /* FIXME - why is this needed?? -H */
124
125
126 /**************
127  * Searching 
128  */
129
130 /* Search using PQF Query */
131 YAZ_EXPORT int zebra_search_PQF (ZebraHandle zh, const char *pqf_query,
132                                  const char *setname);
133
134 /* Search using RPN Query */
135 YAZ_EXPORT void zebra_search_RPN (ZebraHandle zh, ODR o, Z_RPNQuery *query,
136                                   const char *setname, int *hits);
137
138 /* Retrieve record(s) */
139 YAZ_EXPORT void zebra_records_retrieve (ZebraHandle zh, ODR stream,
140                        const char *setname, Z_RecordComposition *comp,
141                        oid_value input_format,
142                        int num_recs, ZebraRetrievalRecord *recs);
143
144 /* Delete Result Set(s) */
145 YAZ_EXPORT int zebra_deleleResultSet(ZebraHandle zh, int function,
146                                      int num_setnames, char **setnames,
147                                      int *statuses);
148
149
150 /* Browse */
151 YAZ_EXPORT void zebra_scan (ZebraHandle zh, ODR stream,
152                             Z_AttributesPlusTerm *zapt,
153                             oid_value attributeset,
154                             int *position, int *num_entries,
155                             ZebraScanEntry **list,
156                             int *is_partial);
157
158    
159           
160 /*********
161  * Other 
162  */
163                       
164 /* do authentication */
165 YAZ_EXPORT int zebra_auth (ZebraHandle zh, const char *user, const char *pass);
166
167 /* Character normalisation on specific register .
168    This routine is subject to change - do not use. */
169 YAZ_EXPORT int zebra_string_norm (ZebraHandle zh, unsigned reg_id,
170                                   const char *input_str, int input_len,
171                                   char *output_str, int output_len);
172
173
174 /******
175  * Admin 
176  */                   
177           
178 YAZ_EXPORT void zebra_create_database (ZebraHandle zh, const char *db);
179
180
181 YAZ_EXPORT void zebra_admin_shutdown (ZebraHandle zh);
182 YAZ_EXPORT void zebra_admin_start (ZebraHandle zh);
183
184 YAZ_EXPORT void zebra_shutdown (ZebraService zs);
185
186 YAZ_EXPORT void zebra_admin_import_begin (ZebraHandle zh, const char *database,
187                                           const char *record_type);
188
189 YAZ_EXPORT void zebra_admin_import_segment (ZebraHandle zh,
190                                             Z_Segment *segment);
191
192 void zebra_admin_import_end (ZebraHandle zh);
193
194 int zebra_admin_exchange_record (ZebraHandle zh,
195                                  const char *database,
196                                  const char *rec_buf,
197                                  size_t rec_len,
198                                  const char *recid_buf, size_t recid_len,
199                                  int action);
200
201 int zebra_begin_trans (ZebraHandle zh, int rw);
202 int zebra_end_trans (ZebraHandle zh);
203 int zebra_end_transaction (ZebraHandle zh, ZebraTransactionStatus *stat);
204
205 int zebra_commit (ZebraHandle zh);
206 int zebra_clean (ZebraHandle zh);
207
208 int zebra_init (ZebraHandle zh);
209 int zebra_compact (ZebraHandle zh);
210 void zebra_repository_update (ZebraHandle zh);
211 void zebra_repository_delete (ZebraHandle zh);
212 void zebra_repository_show (ZebraHandle zh);
213 int zebra_record_insert (ZebraHandle zh, const char *buf, int len);
214
215 YAZ_EXPORT void zebra_set_group (ZebraHandle zh, struct recordGroup *rg);
216
217
218 YAZ_EXPORT int zebra_resultSetTerms (ZebraHandle zh, const char *setname, 
219                                      int no, int *count, 
220                                      int *type, char *out, size_t *len);
221
222 YAZ_EXPORT void zebra_sort (ZebraHandle zh, ODR stream,
223                             int num_input_setnames,
224                             const char **input_setnames,
225                             const char *output_setname,
226                             Z_SortKeySpecList *sort_sequence,
227                             int *sort_status);
228
229
230 YAZ_EXPORT
231 int zebra_select_databases (ZebraHandle zh, int num_bases, 
232                             const char **basenames);
233
234 YAZ_EXPORT
235 int zebra_select_database (ZebraHandle zh, const char *basename);
236
237 YAZ_EXPORT
238 void zebra_shadow_enable (ZebraHandle zh, int value);
239
240 YAZ_EXPORT
241 void zebra_register_statistics (ZebraHandle zh, int dumpdict);
242
243 YAZ_EXPORT
244 int zebra_record_encoding (ZebraHandle zh, const char *encoding);
245
246 /* Resources */
247 YAZ_EXPORT
248 void zebra_set_resource(ZebraHandle zh, const char *name, const char *value);
249 YAZ_EXPORT
250 const char *zebra_get_resource(ZebraHandle zh, 
251                 const char *name, const char *defaultvalue);
252
253
254 YAZ_END_CDECL                                 
255 #endif