removed global parameters from reclist_insert()
[pazpar2-moved-to-github.git] / src / reclists.h
1 /* $Id: reclists.h,v 1.6 2007-04-16 13:22:17 marc Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #ifndef RECLISTS_H
23 #define RECLISTS_H
24
25 #include "config.h"
26
27 struct reclist
28 {
29     struct reclist_bucket **hashtable;
30     int hashtable_size;
31     int hashmask;
32
33     struct record_cluster **flatlist;
34     int flatlist_size;
35     int num_records;
36     int pointer;
37
38     NMEM nmem;
39 };
40
41 // This is a recipe for sorting. First node in list has highest priority
42 struct reclist_sortparms
43 {
44     int offset;
45     enum conf_sortkey_type type;
46     int increasing;
47     struct reclist_sortparms *next;
48 };
49
50 struct reclist *reclist_create(NMEM, int numrecs);
51 struct record_cluster *reclist_insert( struct conf_service *service,
52                                        struct reclist *tl, 
53                                        struct record  *record,
54                                        char *merge_key, int *total);
55 void reclist_sort(struct reclist *l, struct reclist_sortparms *parms);
56 struct record_cluster *reclist_read_record(struct reclist *l);
57 void reclist_rewind(struct reclist *l);
58 struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms);
59
60 #endif
61
62 /*
63  * Local variables:
64  * c-basic-offset: 4
65  * indent-tabs-mode: nil
66  * End:
67  * vim: shiftwidth=4 tabstop=8 expandtab
68  */