1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2009 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
40 struct record_metadata_attr {
43 struct record_metadata_attr *next;
46 struct record_metadata {
47 union data_types data;
48 // next item of this name
49 struct record_metadata *next;
50 struct record_metadata_attr *attributes;
53 union data_types * data_types_assign(NMEM nmem,
54 union data_types ** data1,
55 union data_types data2);
59 struct client *client;
60 // Array mirrors list of metadata fields in config
61 struct record_metadata **metadata;
62 // Array mirrors list of sortkey fields in config
63 union data_types **sortkeys;
64 // Next in cluster of merged records
66 // client result set position;
71 struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys,
72 struct client *client, int position);
74 struct record_metadata * record_metadata_create(NMEM nmem);
76 struct record_metadata * record_metadata_insert(NMEM nmem,
77 struct record_metadata ** rmd,
78 union data_types data);
81 struct record_metadata * record_add_metadata_field_id(NMEM nmem,
82 struct record * record,
84 union data_types data);
87 struct record_metadata * record_add_metadata(NMEM nmem,
88 struct record * record,
89 struct conf_service * service,
91 union data_types data);
94 union data_types * record_assign_sortkey_field_id(NMEM nmem,
95 struct record * record,
97 union data_types data);
100 union data_types * record_assign_sortkey(NMEM nmem,
101 struct record * record,
102 struct conf_service * service,
104 union data_types data);
109 struct record_cluster
111 // Array mirrors list of metadata fields in config
112 struct record_metadata **metadata;
113 union data_types **sortkeys;
116 int *term_frequency_vec;
117 int *term_frequency_vec_tmp;
118 float *term_frequency_vecf;
119 // Set-specific ID for this record
121 struct record *records;
132 * c-file-style: "Stroustrup"
133 * indent-tabs-mode: nil
135 * vim: shiftwidth=4 tabstop=8 expandtab