Happy new year
[idzebra-moved-to-github.git] / index / isam_methods.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2009 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #include <stdlib.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <assert.h>
24
25 #include "index.h"
26
27
28 ISAMS_M *key_isams_m (Res res, ISAMS_M *me)
29 {
30     isams_getmethod (me);
31
32     me->compare_item = key_compare;
33     me->log_item = key_logdump_txt;
34
35     me->codec.start = iscz1_start;
36     me->codec.decode = iscz1_decode;
37     me->codec.encode = iscz1_encode;
38     me->codec.stop = iscz1_stop;
39     me->codec.reset = iscz1_reset;
40
41     me->debug = atoi(res_get_def (res, "isamsDebug", "0"));
42
43     return me;
44 }
45
46 ISAMC_M *key_isamc_m (Res res, ISAMC_M *me)
47 {
48     isamc_getmethod (me);
49
50     me->compare_item = key_compare;
51     me->log_item = key_logdump_txt;
52
53     me->codec.start = iscz1_start;
54     me->codec.decode = iscz1_decode;
55     me->codec.encode = iscz1_encode;
56     me->codec.stop = iscz1_stop;
57     me->codec.reset = iscz1_reset;
58
59     me->debug = atoi(res_get_def (res, "isamcDebug", "0"));
60
61     return me;
62 }
63
64
65 /*
66  * Local variables:
67  * c-basic-offset: 4
68  * indent-tabs-mode: nil
69  * End:
70  * vim: shiftwidth=4 tabstop=8 expandtab
71  */
72