New metadata type, float, for metadata score PAZ-908
[pazpar2-moved-to-github.git] / src / record.h
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2013 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 RECORD_H
21 #define RECORD_H
22
23
24 struct client;
25 struct conf_service;
26
27 union data_types {
28     struct {
29         const char *disp;
30         const char *sort;
31         const char *snippet;
32     } text;
33     struct {
34         int min;
35         int max;
36     } number;
37     double fnumber;
38 };
39
40
41 struct record_metadata_attr {
42     char *name;
43     char *value;
44     struct record_metadata_attr *next;
45 };
46
47 struct record_metadata {
48     union data_types data;
49     // next item of this name
50     struct record_metadata *next;
51     struct record_metadata_attr *attributes;
52 };
53
54 union data_types * data_types_assign(NMEM nmem,
55                                      union data_types ** data1,
56                                      union data_types data2);
57
58
59 struct record {
60     struct client *client;
61     // Array mirrors list of metadata fields in config
62     struct record_metadata **metadata;
63     // Array mirrors list of sortkey fields in config
64     union data_types **sortkeys;
65     // Next in cluster of merged records
66     struct record *next;
67     // client result set position;
68     int position;
69     // checksum
70     unsigned checksum;
71 };
72
73
74 struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys,
75                               struct client *client, int position);
76
77 struct record_metadata * record_metadata_create(NMEM nmem);
78
79 int record_compare(struct record *r1, struct record *r2, struct conf_service *service);
80
81 struct record_cluster
82 {
83     // Array mirrors list of metadata fields in config
84     struct record_metadata **metadata;
85     union data_types **sortkeys;
86     // char *merge_key;
87     struct record_metadata_attr *merge_keys;
88
89     int relevance_score;
90     int *term_frequency_vec;
91     float *term_frequency_vecf;
92     // Set-specific ID for this record
93     char *recid;
94     WRBUF relevance_explain1;
95     WRBUF relevance_explain2;
96     struct record *records;
97     struct record_cluster *sorted_next;
98     struct reclist_sortparms *sort_parms;
99 };
100
101 #endif // RECORD_H
102
103 /*
104  * Local variables:
105  * c-basic-offset: 4
106  * c-file-style: "Stroustrup"
107  * indent-tabs-mode: nil
108  * End:
109  * vim: shiftwidth=4 tabstop=8 expandtab
110  */
111