X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fnormalize_record.c;h=f75a0ee2e3da33b3b0759e5279cf329d11712a5c;hb=29d7b058269704d060ab5a39c9cec515cd8d7d87;hp=5623c339badca04acfaee8f132cd9b0f3f9fe51f;hpb=8c93530f7b60e9125f661654dd47bb623a64b661;p=pazpar2-moved-to-github.git diff --git a/src/normalize_record.c b/src/normalize_record.c index 5623c33..f75a0ee 100644 --- a/src/normalize_record.c +++ b/src/normalize_record.c @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2010 Index Data + Copyright (C) 2006-2011 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 @@ -29,14 +29,15 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "normalize_record.h" #include "pazpar2_config.h" - +#include "service_xslt.h" #include "marcmap.h" #include #include struct normalize_step { struct normalize_step *next; - xsltStylesheet *stylesheet; + xsltStylesheet *stylesheet; /* created by normalize_record */ + xsltStylesheet *stylesheet2; /* external stylesheet (service) */ struct marcmap *marcmap; }; @@ -45,7 +46,7 @@ struct normalize_record_s { NMEM nmem; }; -normalize_record_t normalize_record_create(struct conf_config *conf, +normalize_record_t normalize_record_create(struct conf_service *service, const char *spec) { NMEM nmem = nmem_create(); @@ -54,6 +55,7 @@ normalize_record_t normalize_record_create(struct conf_config *conf, int i, num; int no_errors = 0; char **stylesheets; + struct conf_config *conf = service->server->config; nt->nmem = nmem; @@ -65,9 +67,11 @@ normalize_record_t normalize_record_create(struct conf_config *conf, *m = nmem_malloc(nt->nmem, sizeof(**m)); (*m)->marcmap = NULL; (*m)->stylesheet = NULL; - - // XSLT - if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-4], ".xsl")) + + (*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)))) @@ -77,7 +81,6 @@ normalize_record_t normalize_record_create(struct conf_config *conf, no_errors++; } } - // marcmap else if (!strcmp(&stylesheets[i][strlen(stylesheets[i])-5], ".mmap")) { if (!((*m)->marcmap = marcmap_load(wrbuf_cstr(fname), nt->nmem))) @@ -132,6 +135,8 @@ int normalize_record_transform(normalize_record_t nt, xmlDoc **doc, xmlDoc *ndoc; if (m->stylesheet) ndoc = xsltApplyStylesheet(m->stylesheet, *doc, parms); + else if (m->stylesheet2) + ndoc = xsltApplyStylesheet(m->stylesheet2, *doc, parms); else if (m->marcmap) ndoc = marcmap_apply(m->marcmap, *doc); else