1 /* This file is part of Pazpar2.
2 Copyright (C) Index Data
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
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
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
23 #include "pazpar2_config.h"
25 #include "relevance.h"
29 // This is a recipe for sorting. First node in list has highest priority
30 struct reclist_sortparms
33 enum conf_metadata_type type;
36 struct reclist_sortparms *next;
39 struct reclist *reclist_create(NMEM);
40 void reclist_destroy(struct reclist *l);
41 void reclist_limit(struct reclist *l, struct session *session, int lazy);
42 struct record_cluster *reclist_insert(struct reclist *tl,
44 struct conf_service *service,
45 struct record *record,
46 struct record_metadata_attr *merge_keys,
48 void reclist_sort(struct reclist *l, struct reclist_sortparms *parms);
49 struct record_cluster *reclist_read_record(struct reclist *l);
50 void reclist_enter(struct reclist *l);
51 void reclist_leave(struct reclist *l);
52 void reclist_rewind(struct reclist *l);
53 struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms,
54 struct conf_service *service);
56 int reclist_get_num_records(struct reclist *l);
57 struct record_cluster *reclist_get_cluster(struct reclist *l, int i);
58 int reclist_sortparms_cmp(struct reclist_sortparms *sort1, struct reclist_sortparms *sort2);
65 * c-file-style: "Stroustrup"
66 * indent-tabs-mode: nil
68 * vim: shiftwidth=4 tabstop=8 expandtab