1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2009 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 \brief MARC map implementation
28 #include <libxml/parser.h>
29 #include <libxml/tree.h>
36 struct marcmap *marcmap_load(char *filename, NMEM nmem) {
38 struct marcmap *mmhead;
51 fp = fopen(filename, "r");
53 while ((c = getc(fp) ) != EOF)
55 // allocate some space
60 mm->next = nmem_malloc(nmem, sizeof(struct marcmap));
65 { mm = nmem_malloc(nmem, sizeof(struct marcmap));
70 // whitespace saves and moves on
71 if (c == ' ' || c == '\n' || c == '\t')
81 mm->field = nmem_malloc(nmem, len * sizeof(char));
82 strncpy(mm->field, buf, len);
85 // second, marc subfield, just a char
88 mm->subfield = buf[len-2];
90 // third, pz fieldname
93 mm->pz = nmem_malloc(nmem, len * sizeof(char));
94 strncpy(mm->pz, buf, len);
97 // new line, new record
119 xmlDoc *marcmap_apply(struct marcmap *marcmap, xmlDoc *xml_in)
127 xmlNodePtr xml_out_root;
129 xmlNodePtr meta_node;
130 struct marchash *marchash;
131 struct marcfield *field;
132 struct marcsubfield *subfield;
133 struct marcmap *mmcur;
135 xml_out = xmlNewDoc(BAD_CAST "1.0");
136 xml_out_root = xmlNewNode(NULL, BAD_CAST "record");
137 xmlDocSetRootElement(xml_out, xml_out_root);
138 ns_pz = xmlNewNs(xml_out_root, BAD_CAST "http://www.indexdata.com/pazpar2/1.0", BAD_CAST "pz");
139 nmem = nmem_create();
140 rec_node = xmlDocGetRootElement(xml_in);
141 marchash = marchash_create(nmem);
142 marchash_ingest_marcxml(marchash, rec_node);
145 while (mmcur != NULL)
147 if (field = marchash_get_field(marchash, mmcur->field, NULL))
151 if ((mmcur->subfield == '$') && (s = field->val))
153 meta_node = xmlNewChild(xml_out_root, ns_pz, BAD_CAST "metadata", s);
154 xmlSetProp(meta_node, BAD_CAST "type", mmcur->pz);
156 // catenate all subfields
157 else if ((mmcur->subfield == '*') && (s = marchash_catenate_subfields(field, " ", nmem)))
159 meta_node = xmlNewChild(xml_out_root, ns_pz, BAD_CAST "metadata", s);
160 xmlSetProp(meta_node, BAD_CAST "type", mmcur->pz);
163 else if (mmcur->subfield)
165 if (subfield = marchash_get_subfield(mmcur->subfield, field, NULL))
167 if (s = subfield->val)
169 meta_node = xmlNewChild(xml_out_root, ns_pz, BAD_CAST "metadata", s);
170 xmlSetProp(meta_node, BAD_CAST "type", mmcur->pz);
172 while (subfield = marchash_get_subfield(mmcur->subfield, field, subfield));
176 while (field = marchash_get_field(marchash, mmcur->field, field));
180 // hard coded mappings
183 if ((field = marchash_get_field(marchash, "245", NULL)) && (subfield = marchash_get_subfield('h', field, NULL)))
185 strncpy(medium, subfield->val, 32);
187 else if ((field = marchash_get_field(marchash, "900", NULL)) && (subfield = marchash_get_subfield('a', field, NULL)))
188 strcpy(medium, "electronic resource");
189 else if ((field = marchash_get_field(marchash, "900", NULL)) && (subfield = marchash_get_subfield('b', field, NULL)))
190 strcpy(medium, "electronic resource");
191 else if ((field = marchash_get_field(marchash, "773", NULL)) && (subfield = marchash_get_subfield('t', field, NULL)))
192 strcpy(medium, "article");
194 strcpy(medium, "book");
196 meta_node = xmlNewChild(xml_out_root, ns_pz, BAD_CAST "metadata", BAD_CAST medium);
197 xmlSetProp(meta_node, BAD_CAST "type", BAD_CAST "medium");
200 memset(mergekey, 0, 1024);
201 strcpy(mergekey, "title ");
202 if ((field = marchash_get_field(marchash, "245", NULL)) && (subfield = marchash_get_subfield('a', field, NULL)))
203 strncat(mergekey, subfield->val, 1023 - strlen(mergekey));
204 strncat(mergekey, " author ", 1023 - strlen(mergekey));
205 if ((field = marchash_get_field(marchash, "245", NULL)) && (subfield = marchash_get_subfield('a', field, NULL)))
206 strncat(mergekey, subfield->val, 1023 - strlen(mergekey));
207 strncat(mergekey, " medium ", 1023 - strlen(mergekey));
208 strncat(mergekey, medium, 1023 - strlen(mergekey));
210 xmlSetProp(xml_out_root, BAD_CAST "mergekey", BAD_CAST mergekey);
219 * c-file-style: "Stroustrup"
220 * indent-tabs-mode: nil
222 * vim: shiftwidth=4 tabstop=8 expandtab