Remove unused code
[pazpar2-moved-to-github.git] / src / reclists.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2009 Index Data
3
4 Pazpar2 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 Pazpar2 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 #ifndef RECLISTS_H
21 #define RECLISTS_H
22
23 #include "pazpar2_config.h"
24 #include "record.h"
25
26 struct reclist;
27
28 // This is a recipe for sorting. First node in list has highest priority
29 struct reclist_sortparms
30 {
31     int offset;
32     enum conf_sortkey_type type;
33     int increasing;
34     struct reclist_sortparms *next;
35 };
36
37 struct reclist *reclist_create(NMEM, int numrecs);
38 struct record_cluster *reclist_insert( struct reclist *tl,
39                                        struct conf_service *service,
40                                        struct record  *record,
41                                        char *merge_key, int *total);
42 void reclist_sort(struct reclist *l, struct reclist_sortparms *parms);
43 struct record_cluster *reclist_read_record(struct reclist *l);
44 void reclist_rewind(struct reclist *l);
45 struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms,
46     struct conf_service *service);
47
48 int reclist_get_num_records(struct reclist *l);
49 struct record_cluster *reclist_get_cluster(struct reclist *l, int i);
50
51 #endif
52
53 /*
54  * Local variables:
55  * c-basic-offset: 4
56  * c-file-style: "Stroustrup"
57  * indent-tabs-mode: nil
58  * End:
59  * vim: shiftwidth=4 tabstop=8 expandtab
60  */
61