1 /* $Id: d1_marc.c,v 1.10 2005-01-15 19:38:18 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 /* converts data1 tree to ISO2709/MARC record */
31 #include <yaz/marcdisp.h>
32 #include <yaz/readconf.h>
33 #include <yaz/xmalloc.h>
34 #include <yaz/tpath.h>
35 #include <idzebra/data1.h>
37 data1_marctab *data1_read_marctab (data1_handle dh, const char *file)
40 NMEM mem = data1_nmem_get (dh);
41 data1_marctab *res = (data1_marctab *)nmem_malloc(mem, sizeof(*res));
42 char line[512], *argv[50];
46 if (!(f = data1_path_fopen(dh, file, "r")))
48 yaz_log(YLOG_WARN|YLOG_ERRNO, "%s", file);
53 res->reference = VAL_NONE;
55 res->length_data_entry = 4;
56 res->length_starting = 5;
57 res->length_implementation = 0;
58 strcpy(res->future_use, "4");
60 strcpy(res->record_status, "n");
61 strcpy(res->implementation_codes, " ");
62 res->indicator_length = 2;
63 res->identifier_length = 2;
64 res->force_indicator_length = -1;
65 res->force_identifier_length = -1;
66 strcpy(res->user_systems, "z ");
68 while ((argc = readconf_line(f, &lineno, line, 512, argv, 50)))
69 if (!strcmp(*argv, "name"))
73 yaz_log(YLOG_WARN, "%s:%d:Missing arg for %s", file, lineno,
77 res->name = nmem_strdup(mem, argv[1]);
79 else if (!strcmp(*argv, "reference"))
83 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
87 if ((res->reference = oid_getvalbyname(argv[1])) == VAL_NONE)
89 yaz_log(YLOG_WARN, "%s:%d: Unknown tagset reference '%s'",
90 file, lineno, argv[1]);
94 else if (!strcmp(*argv, "length-data-entry"))
98 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
102 res->length_data_entry = atoi(argv[1]);
104 else if (!strcmp(*argv, "length-starting"))
108 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
112 res->length_starting = atoi(argv[1]);
114 else if (!strcmp(*argv, "length-implementation"))
118 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
122 res->length_implementation = atoi(argv[1]);
124 else if (!strcmp(*argv, "future-use"))
128 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
132 strncpy(res->future_use, argv[1], 2);
134 else if (!strcmp(*argv, "force-indicator-length"))
138 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
142 res->force_indicator_length = atoi(argv[1]);
144 else if (!strcmp(*argv, "force-identifier-length"))
148 yaz_log(YLOG_WARN, "%s:%d: Missing arg for %s", file, lineno,
152 res->force_identifier_length = atoi(argv[1]);
155 yaz_log(YLOG_WARN, "%s:%d: Unknown directive '%s'", file, lineno,
164 * Locate some data under this node. This routine should handle variants
167 static char *get_data(data1_node *n, int *len)
173 if (n->which == DATA1N_data)
176 *len = n->u.data.len;
178 for (i = 0; i<*len; i++)
179 if (!d1_isspace(n->u.data.data[i]))
181 while (*len && d1_isspace(n->u.data.data[*len - 1]))
185 return n->u.data.data + i;
187 if (n->which == DATA1N_tag)
189 else if (n->which == DATA1N_data)
199 static void memint (char *p, int val, int len)
207 sprintf (buf, "%08d", val);
208 memcpy (p, buf+8-len, len);
212 /* check for indicator. non MARCXML only */
213 static int is_indicator (data1_marctab *p, data1_node *subf)
215 if (p->indicator_length != 2 ||
216 (subf && subf->which == DATA1N_tag && strlen(subf->u.tag.tag) == 2))
221 static int nodetomarc(data1_handle dh,
222 data1_marctab *p, data1_node *n, int selected,
223 char **buf, int *size)
229 int base_address = 25;
232 data1_node *field, *subf;
235 data1_pr_tree(dh, n, stdout);
237 yaz_log (YLOG_DEBUG, "nodetomarc");
239 memcpy (leader+5, p->record_status, 1);
240 memcpy (leader+6, p->implementation_codes, 4);
241 memint (leader+10, p->indicator_length, 1);
242 memint (leader+11, p->identifier_length, 1);
243 memcpy (leader+17, p->user_systems, 3);
244 memint (leader+20, p->length_data_entry, 1);
245 memint (leader+21, p->length_starting, 1);
246 memint (leader+22, p->length_implementation, 1);
247 memcpy (leader+23, p->future_use, 1);
249 for (field = n->child; field; field = field->next)
251 int control_field = 0; /* 00X fields - usually! */
254 if (field->which != DATA1N_tag)
256 if (selected && !field->u.tag.node_selected)
263 if (!yaz_matchstr(field->u.tag.tag, "mc?"))
265 else if (!strcmp(field->u.tag.tag, "leader"))
268 char *dbuf = get_data(subf, &dlen);
271 if (dbuf && dlen > 0)
272 memcpy (leader, dbuf, dlen);
275 else if (!strcmp(field->u.tag.tag, "controlfield"))
280 else if (!strcmp(field->u.tag.tag, "datafield"))
285 else if (subf->which == DATA1N_data)
296 len += 4 + p->length_data_entry + p->length_starting
297 + p->length_implementation;
298 base_address += 3 + p->length_data_entry + p->length_starting
299 + p->length_implementation;
302 len += p->indicator_length;
304 /* we'll allow no indicator if length is not 2 */
305 /* select when old XML format, since indicator is an element */
306 if (marc_xml == 0 && is_indicator (p, subf))
309 for (; subf; subf = subf->next)
312 len += p->identifier_length;
313 get_data(subf, &dlen);
319 *buf = (char *)xmalloc(*size = len);
320 else if (*size <= len)
321 *buf = (char *)xrealloc(*buf, *size = len);
325 /* we know the base address now */
326 memint (leader+12, base_address, 5);
328 /* copy temp leader to real output buf op */
329 memcpy (op, leader, 24);
333 data_p = base_address;
335 for (field = n->child; field; field = field->next)
337 int control_field = 0;
342 char indicator_data[6];
344 memset (indicator_data, ' ', sizeof(indicator_data)-1);
345 indicator_data[sizeof(indicator_data)-1] = '\0';
347 if (field->which != DATA1N_tag)
350 if (selected && !field->u.tag.node_selected)
357 if (!yaz_matchstr(field->u.tag.tag, "mc?"))
359 else if (!strcmp(field->u.tag.tag, "leader"))
361 else if (!strcmp(field->u.tag.tag, "controlfield"))
366 else if (!strcmp(field->u.tag.tag, "datafield"))
371 else if (subf->which == DATA1N_data)
381 if (marc_xml == 0 && is_indicator (p, subf))
383 strncpy(indicator_data, subf->u.tag.tag, sizeof(indicator_data)-1);
386 else if (marc_xml == 1 && !control_field)
389 for (xa = field->u.tag.attributes; xa; xa = xa->next)
391 if (!strcmp(xa->name, "ind1"))
392 indicator_data[0] = xa->value[0];
393 if (!strcmp(xa->name, "ind2"))
394 indicator_data[1] = xa->value[1];
395 if (!strcmp(xa->name, "ind3"))
396 indicator_data[2] = xa->value[2];
401 memcpy (op + data_p, indicator_data, p->indicator_length);
402 data_p += p->indicator_length;
404 for (; subf; subf = subf->next)
410 const char *identifier = "a";
413 if (subf->which == DATA1N_tag &&
414 !strcmp(subf->u.tag.tag, "subfield"))
417 for (xa = subf->u.tag.attributes; xa; xa = xa->next)
418 if (!strcmp(xa->name, "code"))
419 identifier = xa->value;
422 else if (subf->which != DATA1N_tag)
423 yaz_log(YLOG_WARN, "Malformed fields for marc output.");
425 identifier = subf->u.tag.tag;
426 op[data_p] = ISO2709_IDFS;
427 memcpy (op + data_p+1, identifier, p->identifier_length-1);
428 data_p += p->identifier_length;
430 data = get_data(subf, &dlen);
431 memcpy (op + data_p, data, dlen);
434 op[data_p++] = ISO2709_FS;
439 for (xa = field->u.tag.attributes; xa; xa = xa->next)
440 if (!strcmp(xa->name, "tag"))
444 tag = field->u.tag.tag;
446 if (!tag || strlen(tag) != 3)
448 memcpy (op + entry_p, tag, 3);
451 memint (op + entry_p, data_p - data_0, p->length_data_entry);
452 entry_p += p->length_data_entry;
453 memint (op + entry_p, data_0 - base_address, p->length_starting);
454 entry_p += p->length_starting;
455 entry_p += p->length_implementation;
457 op[entry_p++] = ISO2709_FS;
458 assert (entry_p == base_address);
459 op[data_p++] = ISO2709_RS;
460 assert (data_p == len);
464 char *data1_nodetomarc(data1_handle dh, data1_marctab *p, data1_node *n,
465 int selected, int *len)
468 char **buf = data1_get_map_buf (dh, &size);
470 n = data1_get_root_tag (dh, n);
473 *len = nodetomarc(dh, p, n, selected, buf, size);