X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=src%2Fpazpar2_config.h;h=acaba3443949c741b46b6e4ad10916bc18e4c22f;hb=ed45a02021c7c5b380aa74acb49b01bdeb974d6e;hp=6c4b33e8ff74173e28042cff4984067fd1880546;hpb=f7247294488509fca6dc8e0d32f63cd8ae51b555;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2_config.h b/src/pazpar2_config.h index 6c4b33e..acaba34 100644 --- a/src/pazpar2_config.h +++ b/src/pazpar2_config.h @@ -20,9 +20,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #ifndef PAZPAR2_CONFIG_H #define PAZPAR2_CONFIG_H -#include -#include -#include +#include "normalize_cache.h" #include #include "charsets.h" @@ -58,7 +56,8 @@ enum conf_setting_type { enum conf_metadata_mergekey { Metadata_mergekey_no, - Metadata_mergekey_yes + Metadata_mergekey_optional, + Metadata_mergekey_required }; // Describes known metadata elements and how they are to be manipulated @@ -90,6 +89,8 @@ struct conf_sortkey enum conf_sortkey_type type; }; +struct conf_server; + // It is conceivable that there will eventually be several 'services' // offered from one server, with separate configuration -- possibly // more than one services associated with the same port. For now, @@ -107,8 +108,9 @@ struct conf_service NMEM nmem; int session_timeout; int z3950_session_timeout; - int z3950_connect_timeout; - + int z3950_operation_timeout; + + int ref_count; /* duplicated from conf_server */ pp2_charset_t relevance_pct; pp2_charset_t sort_pct; @@ -116,13 +118,9 @@ struct conf_service struct database *databases; struct conf_targetprofiles *targetprofiles; - struct conf_config *config; + struct conf_server *server; }; -struct conf_service * conf_service_create(struct conf_config *config, - int num_metadata, int num_sortkeys, - const char *service_id); - int conf_service_metadata_field_id(struct conf_service *service, const char * name); int conf_service_sortkey_field_id(struct conf_service *service, const char * name); @@ -143,6 +141,7 @@ struct conf_server pp2_charset_t mergekey_pct; struct conf_service *service; struct conf_server *next; + struct conf_config *config; }; struct conf_targetprofiles @@ -155,20 +154,23 @@ struct conf_targetprofiles struct conf_config *config_create(const char *fname, int verbose); void config_destroy(struct conf_config *config); -xsltStylesheet *conf_load_stylesheet(struct conf_config *config, - const char *fname); - void config_start_databases(struct conf_config *config); struct conf_service *locate_service(struct conf_server *server, const char *service_id); +struct conf_service *service_create(struct conf_server *server, + xmlNode *node); +void service_incref(struct conf_service *service); +void service_destroy(struct conf_service *service); int config_start_listeners(struct conf_config *conf, const char *listener_override); void config_stop_listeners(struct conf_config *conf); +WRBUF conf_get_fname(struct conf_service *service, const char *fname); + #endif /*