From: Mike Taylor Date: Mon, 13 Aug 2007 16:46:47 +0000 (+0000) Subject: Add code to compile CCL qualifiers if specified using . X-Git-Tag: YAZ.3.0.10~13 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=4f8aff36e000a9d90227fd30d9f9dc63e8ffad40 Add code to compile CCL qualifiers if specified using . --- diff --git a/src/statserv.c b/src/statserv.c index 7d108d7..731bce5 100644 --- a/src/statserv.c +++ b/src/statserv.c @@ -5,7 +5,7 @@ * NT threaded server code by * Chas Woodfield, Fretwell Downing Informatics. * - * $Id: statserv.c,v 1.49 2007-05-06 20:12:20 adam Exp $ + * $Id: statserv.c,v 1.50 2007-08-13 16:46:47 mike Exp $ */ /** @@ -219,6 +219,7 @@ static struct gfs_server * gfs_server_new(void) n->host = 0; n->listen_ref = 0; n->cql_transform = 0; + n->ccl_transform = 0; n->server_node_ptr = 0; n->directory = 0; n->docpath = 0; @@ -416,6 +417,20 @@ static void xml_config_read(void) nmem_dup_xml_content(gfs_nmem, ptr->children) ); } + else if (!strcmp((const char *) ptr->name, "ccl2rpn")) + { + char *name; + FILE *f; + + name = nmem_dup_xml_content(gfs_nmem, ptr->children); + if ((f = fopen(name, "r")) == 0) { + yaz_log(YLOG_FATAL, "can't open CCL file '%s'", name); + exit(1); + } + gfs->ccl_transform = ccl_qual_mk(); + ccl_qual_file (gfs->ccl_transform, f); + fclose(f); + } else if (!strcmp((const char *) ptr->name, "directory")) { gfs->directory =