1 /* $Id: zebramap.h,v 1.5 2006-03-28 12:39:07 adam Exp $
2 Copyright (C) 1995-2005
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 Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
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_positioned (ZebraMaps zms, unsigned reg_id);
72 WRBUF zebra_replace(ZebraMaps zms, unsigned reg_id, const char *ex_list,
73 const char *input_str, int input_len);