Improved installation. Updated for inclusion of YAZ header files.
[idzebra-moved-to-github.git] / include / zebramap.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: zebramap.h,v $
7  * Revision 1.10  1999-11-30 13:48:03  adam
8  * Improved installation. Updated for inclusion of YAZ header files.
9  *
10  * Revision 1.9  1999/09/07 07:19:21  adam
11  * Work on character mapping. Implemented replace rules.
12  *
13  * Revision 1.8  1999/02/12 13:29:21  adam
14  * Implemented position-flag for registers.
15  *
16  * Revision 1.7  1999/02/02 14:50:46  adam
17  * Updated WIN32 code specific sections. Changed header.
18  *
19  * Revision 1.6  1998/06/23 15:33:33  adam
20  * Added feature to specify sort criteria in query (type 7 specifies
21  * sort flags).
22  *
23  * Revision 1.5  1998/03/05 08:39:26  adam
24  * Minor changes to zebramap data structures. Changed query
25  * mapping rules.
26  *
27  * Revision 1.4  1998/02/10 12:03:05  adam
28  * Implemented Sort.
29  *
30  * Revision 1.3  1997/11/18 10:05:08  adam
31  * Changed character map facility so that admin can specify character
32  * mapping files for each register type, w, p, etc.
33  *
34  * Revision 1.2  1997/10/29 12:02:47  adam
35  * Added missing prototype.
36  *
37  * Revision 1.1  1997/10/27 14:33:04  adam
38  * Moved towards generic character mapping depending on "structure"
39  * field in abstract syntax file. Fixed a few memory leaks. Fixed
40  * bug with negative integers when doing searches with relational
41  * operators.
42  *
43  */
44
45 #ifndef ZEBRAMAP_H
46 #define ZEBRAMAP_H
47
48 #include <yaz/proto.h>
49 #include <res.h>
50
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54
55 typedef struct zebra_maps *ZebraMaps;
56 ZebraMaps zebra_maps_open (Res res);
57
58 void zebra_maps_close (ZebraMaps zm);
59
60 const char **zebra_maps_input (ZebraMaps zms, unsigned reg_id,
61                                const char **from, int len);
62 const char *zebra_maps_output(ZebraMaps, unsigned reg_id, const char **from);
63
64 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
65                      unsigned *reg_id, char **search_type, char **rank_type,
66                      int *complete_flag, int *sort_flag);
67
68 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes);
69
70 int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id);
71 int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id);
72 int zebra_maps_is_positioned (ZebraMaps zms, unsigned reg_id);
73
74 WRBUF zebra_replace(ZebraMaps zms, unsigned reg_id, const char *ex_list,
75                     const char *input_str, int input_len);
76
77 #ifdef __cplusplus
78 }
79 #endif
80
81 #endif