1 /* $Id: config.h,v 1.18 2007-04-19 11:57:53 marc Exp $
2 Copyright (c) 2006-2007, Index Data.
4 This file is part of Pazpar2.
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
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
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
25 #include <libxslt/xslt.h>
26 #include <libxslt/transform.h>
27 #include <libxslt/xsltutils.h>
29 enum conf_sortkey_type
31 Metadata_sortkey_relevance,
32 Metadata_sortkey_numeric, // Standard numerical sorting
33 Metadata_sortkey_skiparticle, // Skip leading article when sorting
34 Metadata_sortkey_string // Flat string
37 enum conf_metadata_type
39 Metadata_type_generic, // Generic text field
40 Metadata_type_number, // A number
41 Metadata_type_year // A number
44 enum conf_metadata_merge
46 Metadata_merge_no, // Don't merge
47 Metadata_merge_unique, // Include unique elements in merged block
48 Metadata_merge_longest, // Include the longest (strlen) value
49 Metadata_merge_range, // Store value as a range of lowest-highest
50 Metadata_merge_all // Just include all elements found
54 // Describes known metadata elements and how they are to be manipulated
55 // An array of these structure provides a 'map' against which
56 // discovered metadata elements are matched. It also governs storage,
57 // to minimize number of cycles needed at various tages of processing
60 char *name; // The field name. Output by normalization stylesheet
61 int brief; // Is this element to be returned in the brief format?
62 int termlist;// Is this field to be treated as a termlist for browsing?
63 int rank; // Rank factor. 0 means don't use this field for ranking,
65 // values >1 give additional significance to a field
66 int sortkey_offset; // -1 if it's not a sortkey, otherwise index
67 // into service/record_cluster->sortkey array
68 enum conf_metadata_type type;
69 enum conf_metadata_merge merge;
73 struct conf_metadata * conf_metadata_create(NMEM nmem,
75 enum conf_metadata_type type,
76 enum conf_metadata_merge merge,
87 enum conf_sortkey_type type;
90 // It is conceivable that there will eventually be several 'services'
91 // offered from one server, with separate configuration -- possibly
92 // more than one services associated with the same port. For now,
93 // however, only a single service is possible.
97 struct conf_metadata *metadata;
99 struct conf_sortkey *sortkeys;
102 struct conf_service * conf_service_create(NMEM nmem);
104 struct conf_metadata* conf_service_add_metadata(NMEM nmem,
105 struct conf_service *service,
107 enum conf_metadata_type type,
108 enum conf_metadata_merge merge,
125 struct conf_service *service;
126 struct conf_server *next;
129 struct conf_targetprofiles
139 struct conf_server *servers;
140 struct conf_targetprofiles *targetprofiles;
143 #ifndef CONFIG_NOEXTERNS
145 extern struct conf_config *config;
149 int read_config(const char *fname);
150 xsltStylesheet *conf_load_stylesheet(const char *fname);
157 * indent-tabs-mode: nil
159 * vim: shiftwidth=4 tabstop=8 expandtab