client counting (for debugging)
[pazpar2-moved-to-github.git] / src / normalize_record.c
index c7706e5..6a2ab5e 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Pazpar2.
-   Copyright (C) 2006-2009 Index Data
+   Copyright (C) 2006-2010 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
@@ -42,31 +42,20 @@ struct normalize_step {
 
 struct normalize_record_s {
     struct normalize_step *steps;
-    char *spec;
     NMEM nmem;
 };
 
-const char *normalize_record_get_spec(normalize_record_t nt)
-{
-    if (nt)
-        return nt->spec;
-    return 0;
-}
-
 normalize_record_t normalize_record_create(struct conf_service *service,
                                            const char *spec)
 {
-    normalize_record_t nt = xmalloc(sizeof(*nt));
-    struct normalize_step **m;
+    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;
 
-    nt->nmem = nmem_create();
-
-    nt->spec = nmem_strdup(nt->nmem, spec);
-
-    m = &nt->steps;
+    nt->nmem = nmem;
 
     nmem_strsplit(nt->nmem, ",", spec, &stylesheets, &num);
     for (i = 0; i < num; i++)
@@ -128,8 +117,6 @@ void normalize_record_destroy(normalize_record_t nt)
                 xsltFreeStylesheet(m->stylesheet);
         }
         nmem_destroy(nt->nmem);
-
-        xfree(nt);
     }
 }
 
@@ -137,30 +124,32 @@ int normalize_record_transform(normalize_record_t nt, xmlDoc **doc,
     const char **parms)
 {
     struct normalize_step *m;
-    for (m = nt->steps; m; m = m->next)
-    {
-        xmlNodePtr root = 0;
-        xmlDoc *new;
-        if (m->stylesheet)
-        {
-            new = xsltApplyStylesheet(m->stylesheet, *doc, parms);
-        }
-        else if (m->marcmap)
-        {
-            new = marcmap_apply(m->marcmap, *doc);
-        }
-        
-        root = xmlDocGetRootElement(new);
-        
-        if (!new || !root || !root->children)
-        {
-            if (new)
-                xmlFreeDoc(new);
-            xmlFreeDoc(*doc);
-            return -1;
-        }
-        xmlFreeDoc(*doc);
-        *doc = new;
+    if (nt) {
+       for (m = nt->steps; m; m = m->next)
+       {
+           xmlNodePtr root = 0;
+           xmlDoc *new;
+           if (m->stylesheet)
+           {
+               new = xsltApplyStylesheet(m->stylesheet, *doc, parms);
+           }
+           else if (m->marcmap)
+           {
+               new = marcmap_apply(m->marcmap, *doc);
+           }
+
+           root = xmlDocGetRootElement(new);
+           
+           xmlFreeDoc(*doc);
+           if (!new || !root || !root->children)
+           {
+               if (new)
+                   xmlFreeDoc(new);
+                *doc = 0;
+               return -1;
+           }
+           *doc = new;
+       }
     }
     return 0;
 }