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