X-Git-Url: http://git.indexdata.com/?p=pazpar2-moved-to-github.git;a=blobdiff_plain;f=src%2Fpazpar2_config.h;h=00612a1f95385c9e2d4bba27405de133a3da801f;hp=58eb0e70a3f57eeca574cb41e5906ef39d7e7c9f;hb=HEAD;hpb=95b9c285afaeea1c58bd1a4d4aeede7c5b8c2881 diff --git a/src/pazpar2_config.h b/src/pazpar2_config.h index 58eb0e7..00612a1 100644 --- a/src/pazpar2_config.h +++ b/src/pazpar2_config.h @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2012 Index Data + Copyright (C) Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -24,15 +24,20 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include +#include #include "charsets.h" #include "http.h" #include "database.h" -#include "host.h" enum conf_metadata_type { Metadata_type_generic, // Generic text field - Metadata_type_year, // A number - Metadata_type_date // A number + Metadata_type_year, // year YYYY - YYYY + Metadata_type_date, // date YYYYMMDD - YYYYMMDD + Metadata_type_float, // float number + Metadata_type_skiparticle, + Metadata_type_relevance, + Metadata_type_position, + Metadata_type_retrieval, }; enum conf_metadata_merge { @@ -40,15 +45,8 @@ enum conf_metadata_merge { Metadata_merge_unique, // Include unique elements in merged block Metadata_merge_longest, // Include the longest (strlen) value Metadata_merge_range, // Store value as a range of lowest-highest - Metadata_merge_all // Just include all elements found -}; - -enum conf_sortkey_type { - Metadata_sortkey_relevance, - Metadata_sortkey_numeric, // Standard numerical sorting - Metadata_sortkey_skiparticle, // Skip leading article when sorting - Metadata_sortkey_string, // Flat string - Metadata_sortkey_position // Position + Metadata_merge_all, // Just include all elements found + Metadata_merge_first // All from first target }; // This controls the ability to insert 'static' values from settings into retrieval recs @@ -68,14 +66,12 @@ enum conf_metadata_mergekey { // An array of these structure provides a 'map' against which // discovered metadata elements are matched. It also governs storage, // to minimize number of cycles needed at various tages of processing -struct conf_metadata +struct conf_metadata { char *name; // The field name. Output by normalization stylesheet int brief; // Is this element to be returned in the brief format? int termlist;// Is this field to be treated as a termlist for browsing? - int rank; // Rank factor. 0 means don't use this field for ranking, - // 1 is default - // values >1 give additional significance to a field + const char *rank; int sortkey_offset; // -1 if it's not a sortkey, otherwise index // into service/record_cluster->sortkey array enum conf_metadata_type type; @@ -85,7 +81,8 @@ struct conf_metadata char *facetrule; char *limitmap; // Should be expanded into service-wide default e.g. pz:limitmap:=value setting - char *facetmap; // Should be expanded into service-wide default e.g. pz:facetmap:=value setting + char *limitcluster; + char *icurule; }; @@ -94,7 +91,7 @@ struct conf_metadata struct conf_sortkey { char *name; - enum conf_sortkey_type type; + enum conf_metadata_type type; }; struct conf_server; @@ -111,13 +108,19 @@ struct conf_service int num_sortkeys; struct conf_sortkey *sortkeys; struct setting_dictionary *dictionary; - struct settings *settings; + struct settings_array *settings; struct conf_service *next; char *id; NMEM nmem; int session_timeout; int z3950_session_timeout; int z3950_operation_timeout; + int rank_cluster; + int rank_debug; + double rank_follow; + double rank_lead; + int rank_length; + char *default_sort; int ref_count; /* duplicated from conf_server */ @@ -125,8 +128,10 @@ struct conf_service struct service_xslt *xslt_list; + CCL_bibset ccl_bibset; struct database *databases; struct conf_server *server; + char *xml_node; }; int conf_service_metadata_field_id(struct conf_service *service, const char * name); @@ -136,7 +141,7 @@ int conf_service_sortkey_field_id(struct conf_service *service, const char * nam struct conf_server { char *host; - int port; + char *port; char *proxy_host; int proxy_port; char *myurl; @@ -150,10 +155,9 @@ struct conf_server struct conf_config *config; http_server_t http_server; iochan_man_t iochan_man; - database_hosts_t database_hosts; }; -struct conf_config *config_create(const char *fname, int verbose); +struct conf_config *config_create(const char *fname); void config_destroy(struct conf_config *config); void config_process_events(struct conf_config *config); void info_services(struct conf_server *server, WRBUF w);