X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fconfig.c;h=de471522cdbba76c7726a1dd44022f4fe7007bf2;hb=cf54154bcc2312c9009ec34b737aaea431b1b831;hp=e99991eb718ec6c5fadd55aaebdb3fc2930da381;hpb=bdf63c9b34f8a40edec11d50dc71454c0b8daf32;p=pazpar2-moved-to-github.git diff --git a/src/config.c b/src/config.c index e99991e..de47152 100644 --- a/src/config.c +++ b/src/config.c @@ -1,4 +1,4 @@ -/* $Id: config.c,v 1.8 2007-01-10 10:04:23 adam Exp $ */ +/* $Id: config.c,v 1.10 2007-01-12 15:08:44 quinn Exp $ */ #include @@ -30,16 +30,27 @@ static struct conf_service *parse_service(xmlNode *node) { xmlNode *n; struct conf_service *r = nmem_malloc(nmem, sizeof(struct conf_service)); - int num_metadata = 0; int md_node = 0; + r->num_sortkeys = r->num_metadata = 0; // Allocate array of conf metadata structs, if necessary for (n = node->children; n; n = n->next) if (n->type == XML_ELEMENT_NODE && !strcmp(n->name, "metadata")) - num_metadata++; - if (num_metadata) - r->metadata = nmem_malloc(nmem, sizeof(struct conf_metadata) * num_metadata); - r->num_metadata = num_metadata; + { + xmlChar *sortkey = xmlGetProp(n, "sortkey"); + r->num_metadata++; + if (sortkey && strcmp(sortkey, "no")) + r->num_sortkeys++; + xmlFree(sortkey); + } + if (r->num_metadata) + r->metadata = nmem_malloc(nmem, sizeof(struct conf_metadata) * r->num_metadata); + else + r->metadata = 0; + if (r->num_sortkeys) + r->sortkeys = nmem_malloc(nmem, sizeof(struct conf_sortkey) * r->num_sortkeys); + else + r->sortkeys = 0; for (n = node->children; n; n = n->next) { @@ -421,7 +432,7 @@ int read_config(const char *fname) yaz_log(YLOG_FATAL, "Failed to read %s", fname); exit(1); } - if ((p = rindex(fname, '/'))) + if ((p = strrchr(fname, '/'))) { int len = p - fname; strncpy(confdir, fname, len);