1 /* $Id: zebramap.h,v 1.19 2006-08-15 14:28:32 adam Exp $
2 Copyright (C) 1995-2006
5 This file is part of the Zebra server.
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
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
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
26 #include <yaz/proto.h>
27 #include <idzebra/res.h>
31 typedef struct zebra_maps *ZebraMaps;
34 ZebraMaps zebra_maps_open (Res res, const char *base_path,
35 const char *profile_path);
37 ZEBRA_RES zebra_maps_read_file(ZebraMaps zms, const char *fname);
40 void zebra_maps_close (ZebraMaps zm);
43 const char **zebra_maps_input (ZebraMaps zms, unsigned reg_id,
44 const char **from, int len, int first);
47 const char **zebra_maps_search (ZebraMaps zms, unsigned reg_id,
48 const char **from, int len, int *q_map_match);
51 const char *zebra_maps_output(ZebraMaps, unsigned reg_id, const char **from);
54 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
55 unsigned *reg_id, char **search_type, char *rank_type,
56 int *complete_flag, int *sort_flag);
59 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes,
63 int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id);
66 int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id);
69 int zebra_maps_is_alwaysmatches (ZebraMaps zms, unsigned reg_id);
72 int zebra_maps_is_positioned (ZebraMaps zms, unsigned reg_id);
75 WRBUF zebra_replace(ZebraMaps zms, unsigned reg_id, const char *ex_list,
76 const char *input_str, int input_len);
84 * indent-tabs-mode: nil
86 * vim: shiftwidth=4 tabstop=8 expandtab