X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fnormalize_record.c;h=92ef3d0aef3b34f6574604b4139ebcdaeb911ff0;hb=70a80d7e26ed2257d4b5a683bfa2a4a93e2fdb4c;hp=f75a0ee2e3da33b3b0759e5279cf329d11712a5c;hpb=31babd0a7a0d4ee7091cfb740205ab6fe1c89ae5;p=pazpar2-moved-to-github.git diff --git a/src/normalize_record.c b/src/normalize_record.c index f75a0ee..92ef3d0 100644 --- a/src/normalize_record.c +++ b/src/normalize_record.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2011 Index Data + Copyright (C) 2006-2013 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 @@ -52,52 +52,79 @@ normalize_record_t normalize_record_create(struct conf_service *service, NMEM nmem = nmem_create(); normalize_record_t nt = nmem_malloc(nmem, sizeof(*nt)); struct normalize_step **m = &nt->steps; - int i, num; int no_errors = 0; - char **stylesheets; - struct conf_config *conf = service->server->config; + int embed = 0; + + if (*spec == '<') + embed = 1; nt->nmem = nmem; - nmem_strsplit(nt->nmem, ",", spec, &stylesheets, &num); - for (i = 0; i < num; i++) + if (embed) { - WRBUF fname = conf_get_fname(conf, stylesheets[i]); - - *m = nmem_malloc(nt->nmem, sizeof(**m)); - (*m)->marcmap = NULL; - (*m)->stylesheet = NULL; - - (*m)->stylesheet2 = service_xslt_get(service, stylesheets[i]); - if ((*m)->stylesheet2) - ; - else if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-4], ".xsl")) - { - if (!((*m)->stylesheet = - xsltParseStylesheetFile((xmlChar *) wrbuf_cstr(fname)))) - { - yaz_log(YLOG_FATAL|YLOG_ERRNO, "Unable to load stylesheet: %s", - stylesheets[i]); + xmlDoc *xsp_doc = xmlParseMemory(spec, strlen(spec)); + + if (!xsp_doc) + no_errors++; + { + *m = nmem_malloc(nt->nmem, sizeof(**m)); + (*m)->marcmap = NULL; + (*m)->stylesheet = NULL; + (*m)->stylesheet2 = NULL; + + + (*m)->stylesheet = xsltParseStylesheetDoc(xsp_doc); + if (!(*m)->stylesheet) no_errors++; - } + m = &(*m)->next; } - else if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-5], ".mmap")) + } + else + { + struct conf_config *conf = service->server->config; + int i, num; + char **stylesheets; + nmem_strsplit(nt->nmem, ",", spec, &stylesheets, &num); + + for (i = 0; i < num; i++) { - if (!((*m)->marcmap = marcmap_load(wrbuf_cstr(fname), nt->nmem))) + WRBUF fname = conf_get_fname(conf, stylesheets[i]); + + *m = nmem_malloc(nt->nmem, sizeof(**m)); + (*m)->marcmap = NULL; + (*m)->stylesheet = NULL; + + (*m)->stylesheet2 = service_xslt_get(service, stylesheets[i]); + if ((*m)->stylesheet2) + ; + else if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-4], ".xsl")) + { + if (!((*m)->stylesheet = + xsltParseStylesheetFile((xmlChar *) wrbuf_cstr(fname)))) + { + yaz_log(YLOG_FATAL|YLOG_ERRNO, "Unable to load stylesheet: %s", + stylesheets[i]); + no_errors++; + } + } + else if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-5], ".mmap")) + { + if (!((*m)->marcmap = marcmap_load(wrbuf_cstr(fname), nt->nmem))) + { + yaz_log(YLOG_FATAL|YLOG_ERRNO, "Unable to load marcmap: %s", + stylesheets[i]); + no_errors++; + } + } + else { - yaz_log(YLOG_FATAL|YLOG_ERRNO, "Unable to load marcmap: %s", - stylesheets[i]); + yaz_log(YLOG_FATAL, "Cannot handle stylesheet: %s", stylesheets[i]); no_errors++; } - } - else - { - yaz_log(YLOG_FATAL, "Cannot handle stylesheet: %s", stylesheets[i]); - no_errors++; - } - wrbuf_destroy(fname); - m = &(*m)->next; + wrbuf_destroy(fname); + m = &(*m)->next; + } } *m = 0; /* terminate list of steps */ @@ -143,7 +170,7 @@ int normalize_record_transform(normalize_record_t nt, xmlDoc **doc, ndoc = 0; xmlFreeDoc(*doc); *doc = 0; - + if (ndoc) root = xmlDocGetRootElement(ndoc); @@ -151,6 +178,12 @@ int normalize_record_transform(normalize_record_t nt, xmlDoc **doc, *doc = ndoc; else { + if (!ndoc) + yaz_log(YLOG_WARN, "XSLT produced no document"); + else if (!root) + yaz_log(YLOG_WARN, "XSLT produced XML with no root node"); + else if (!root->children) + yaz_log(YLOG_WARN, "XSLT produced XML with no root children nodes"); if (ndoc) xmlFreeDoc(ndoc); return -1;