started record constructors. still unfnished, but yet only used in test_relevance.c
[pazpar2-moved-to-github.git] / src / record.h
1 /* $Id: record.h,v 1.2 2007-04-20 14:37: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 RECORD_H
23 #define RECORD_H
24
25
26 struct record;
27 struct client;
28
29
30 union data_types {
31     char *text;
32     struct {
33         int min;
34         int max;
35     } number;
36 };
37
38 struct record_metadata {
39     union data_types data;
40     struct record_metadata *next; // next item of this name
41 };
42
43 struct record {
44     struct client *client;
45     struct record_metadata **metadata; // Array mirrors list of metadata fields in config
46     union data_types **sortkeys;       // Array mirrors list of sortkey fields in config
47     struct record *next;  // Next in cluster of merged records
48 };
49
50
51 struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys);
52
53 struct record_metadata * record_add_metadata_fieldno(NMEM nmem, 
54                                                      struct record * record,
55                                                      int fieldno, 
56                                                      union data_types data);
57
58 struct record_cluster
59 {
60     struct record_metadata **metadata; // Array mirrors list of metadata fields in config
61     union data_types **sortkeys;
62     char *merge_key;
63     int relevance;
64     int *term_frequency_vec;
65     int recid; // Set-specific ID for this record
66     struct record *records;
67 };
68
69
70 #endif // RECORD_H
71
72 /*
73  * Local variables:
74  * c-basic-offset: 4
75  * indent-tabs-mode: nil
76  * End:
77  * vim: shiftwidth=4 tabstop=8 expandtab
78  */