Towards GPL
[idzebra-moved-to-github.git] / include / zebramap.h
1 /* $Id: zebramap.h,v 1.14 2002-08-02 19:26:55 adam 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 ZEBRAMAP_H
26 #define ZEBRAMAP_H
27
28 #include <yaz/proto.h>
29 #include <res.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 typedef struct zebra_maps *ZebraMaps;
36 ZebraMaps zebra_maps_open (Res res, const char *base);
37
38 void zebra_maps_close (ZebraMaps zm);
39
40 const char **zebra_maps_input (ZebraMaps zms, unsigned reg_id,
41                                const char **from, int len);
42 const char *zebra_maps_output(ZebraMaps, unsigned reg_id, const char **from);
43
44 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
45                      unsigned *reg_id, char **search_type, char *rank_type,
46                      int *complete_flag, int *sort_flag);
47
48 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes,
49                      int *numerical);
50
51 int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id);
52 int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id);
53 int zebra_maps_is_positioned (ZebraMaps zms, unsigned reg_id);
54
55 WRBUF zebra_replace(ZebraMaps zms, unsigned reg_id, const char *ex_list,
56                     const char *input_str, int input_len);
57
58 #ifdef __cplusplus
59 }
60 #endif
61
62 #endif