New filter grs.marcxml.
[idzebra-moved-to-github.git] / recctrl / xmlread.c
1 /* $Id: xmlread.c,v 1.8 2003-08-21 10:29:00 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
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
10 version.
11
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
15 for more details.
16
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
20 02111-1307, USA.
21 */
22
23 #if HAVE_EXPAT_H
24
25 #include <assert.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #if HAVE_ICONV_H
29 #include <errno.h>
30 #include <iconv.h>
31 #endif
32
33 #include <yaz/log.h>
34
35 #include "grsread.h"
36
37 #include <yaz/xmalloc.h>
38 #include <yaz/log.h>
39 #include <data1.h>
40
41 #include <expat.h>
42
43 #define XML_CHUNK 1024
44
45 struct user_info {
46     data1_node *d1_stack[256];
47     int level;
48     data1_handle dh;
49     NMEM nmem;
50     int loglevel;
51 };
52
53 static void cb_start (void *user, const char *el, const char **attr)
54 {
55     struct user_info *ui = (struct user_info*) user;
56     if (ui->level == 1)
57         data1_set_root (ui->dh, ui->d1_stack[0], ui->nmem, el);
58     ui->d1_stack[ui->level] = data1_mk_tag (ui->dh, ui->nmem, el, attr,
59                                                 ui->d1_stack[ui->level-1]);
60     ui->level++;
61     yaz_log (ui->loglevel, "cb_start %s", el);
62 }
63
64 static void cb_end (void *user, const char *el)
65 {
66     struct user_info *ui = (struct user_info*) user;
67
68     ui->level--;
69     yaz_log (ui->loglevel, "cb_end %s", el);
70 }
71
72 static void cb_chardata (void *user, const char *s, int len)
73 {
74     struct user_info *ui = (struct user_info*) user;
75 #if 0
76     yaz_log (ui->loglevel, "cb_chardata %.*s", len, s);
77 #endif
78     ui->d1_stack[ui->level] = data1_mk_text_n (ui->dh, ui->nmem, s, len,
79                                                    ui->d1_stack[ui->level -1]);
80 }
81
82 static void cb_decl (void *user, const char *version, const char*encoding,
83                      int standalone)
84 {
85     struct user_info *ui = (struct user_info*) user;
86     const char *attr_list[7];
87
88     attr_list[0] = "version";
89     attr_list[1] = version;
90
91     attr_list[2] = "encoding";
92     attr_list[3] = "UTF-8"; /* encoding */
93
94     attr_list[4] = "standalone";
95     attr_list[5] = standalone  ? "yes" : "no";
96
97     attr_list[6] = 0;
98     
99     data1_mk_preprocess (ui->dh, ui->nmem, "xml", attr_list,
100                              ui->d1_stack[ui->level-1]);
101     yaz_log (ui->loglevel, "decl version=%s encoding=%s",
102              version ? version : "null",
103              encoding ? encoding : "null");
104 }
105     
106 static void cb_processing (void *user, const char *target,
107                            const char *data)
108 {
109     struct user_info *ui = (struct user_info*) user;
110     data1_node *res =
111         data1_mk_preprocess (ui->dh, ui->nmem, target, 0,
112                              ui->d1_stack[ui->level-1]);
113     data1_mk_text_nf (ui->dh, ui->nmem, data, strlen(data), res);
114     
115     yaz_log (ui->loglevel, "decl processing target=%s data=%s",
116              target ? target : "null",
117              data ? data : "null");
118     
119     
120 }
121
122 static void cb_comment (void *user, const char *data)
123 {
124     struct user_info *ui = (struct user_info*) user;
125     yaz_log (ui->loglevel, "decl comment data=%s", data ? data : "null");
126     data1_mk_comment (ui->dh, ui->nmem, data, ui->d1_stack[ui->level-1]);
127 }
128
129 static void cb_doctype_start (void *userData, const char *doctypeName,
130                               const char *sysid, const char *pubid,
131                               int has_internal_subset)
132 {
133     struct user_info *ui = (struct user_info*) userData;
134     yaz_log (ui->loglevel, "doctype start doctype=%s sysid=%s pubid=%s",
135              doctypeName, sysid, pubid);
136 }
137
138 static void cb_doctype_end (void *userData)
139 {
140     struct user_info *ui = (struct user_info*) userData;
141     yaz_log (ui->loglevel, "doctype end");
142 }
143
144
145 static void cb_entity_decl (void *userData, const char *entityName,
146                             int is_parameter_entity,
147                             const char *value, int value_length,
148                             const char *base, const char *systemId,
149                             const char *publicId, const char *notationName)
150 {
151     struct user_info *ui = (struct user_info*) userData;
152     yaz_log (ui->loglevel,
153              "entity decl %s is_para_entry=%d value=%.*s base=%s systemId=%s"
154              " publicId=%s notationName=%s",
155              entityName, is_parameter_entity, value_length, value,
156              base, systemId, publicId, notationName);
157     
158 }
159
160 static int cb_external_entity (XML_Parser pparser,
161                                const char *context,
162                                const char *base,
163                                const char *systemId,
164                                const char *publicId)
165 {
166     struct user_info *ui = (struct user_info*) XML_GetUserData(pparser);
167     FILE *inf;
168     int done = 0;
169     XML_Parser parser;
170
171     yaz_log (ui->loglevel,
172              "external entity context=%s base=%s systemid=%s publicid=%s",
173              context, base, systemId, publicId);
174     if (!systemId)
175         return 1;
176
177     if (!(inf = fopen (systemId, "rb")))
178     {
179         yaz_log (LOG_WARN|LOG_ERRNO, "fopen %s", systemId);
180         return 0;
181     }
182
183     parser = XML_ExternalEntityParserCreate (pparser, "", 0);
184     while (!done)
185     {
186         int r;
187         void *buf = XML_GetBuffer (parser, XML_CHUNK);
188         if (!buf)
189         {
190             yaz_log (LOG_WARN, "XML_GetBuffer fail");
191             break;
192         }
193         r = fread (buf, 1, XML_CHUNK, inf);
194         if (r == 0)
195         {
196             if (ferror(inf))
197             {
198                 yaz_log (LOG_WARN|LOG_ERRNO, "fread %s", systemId);
199                 break;
200             }
201             done = 1;
202         }
203         if (!XML_ParseBuffer (parser, r, done))
204         {
205             yaz_log (LOG_WARN, "%s:%d:%d:XML error: %s",
206                      systemId,
207                      XML_GetCurrentLineNumber(parser),
208                      XML_GetCurrentColumnNumber(parser),
209                      XML_ErrorString(XML_GetErrorCode(parser)));
210         }
211     }
212     fclose (inf);
213     XML_ParserFree (parser);
214     return done;
215 }
216
217
218 #if HAVE_ICONV_H
219 static int cb_encoding_convert (void *data, const char *s)
220 {
221     iconv_t t = (iconv_t) data;
222     size_t ret;
223     size_t outleft = 2;
224     char outbuf_[2], *outbuf = outbuf_;
225     size_t inleft = 4;
226     char *inbuf = (char *) s;
227     unsigned short code;
228
229 #if 1
230     yaz_log(LOG_LOG, "------------------------- cb_encoding_convert --- ");
231 #endif
232     ret = iconv (t, &inbuf, &inleft, &outbuf, &outleft);
233     if (ret == (size_t) (-1) && errno != E2BIG)
234     {
235         iconv (t, 0, 0, 0, 0);
236         return -1;
237     }
238     if (outleft != 0)
239         return -1;
240     memcpy (&code, outbuf_, sizeof(short));
241     return code;
242 }
243
244 static void cb_encoding_release (void *data)
245 {
246     iconv_t t = (iconv_t) data;
247     iconv_close (t);
248 }
249
250 static int cb_encoding_handler (void *userData, const char *name,
251                                 XML_Encoding *info)
252 {
253     int i = 0;
254     int no_ok = 0;
255     struct user_info *ui = (struct user_info*) userData;
256
257     iconv_t t = iconv_open ("UNICODE", name);
258     if (t == (iconv_t) (-1))
259         return 0;
260    
261     info->data = 0;  /* signal that multibyte is not in use */
262     yaz_log (ui->loglevel, "Encoding handler of %s", name);
263     for (i = 0; i<256; i++)
264     {
265         size_t ret;
266         char outbuf_[5];
267         char inbuf_[5];
268         char *inbuf = inbuf_;
269         char *outbuf = outbuf_;
270         size_t inleft = 1;
271         size_t outleft = 2;
272         inbuf_[0] = i;
273
274         iconv (t, 0, 0, 0, 0);  /* reset iconv */
275
276         ret = iconv(t, &inbuf, &inleft, &outbuf, &outleft);
277         if (ret == (size_t) (-1))
278         {
279             if (errno == EILSEQ)
280             {
281                 yaz_log (ui->loglevel, "Encoding %d: invalid sequence", i);
282                 info->map[i] = -1;  /* invalid sequence */
283             }
284             if (errno == EINVAL)
285             {                       /* multi byte input */
286                 int len = 2;
287                 int j = 0;
288                 info->map[i] = -1;
289                 
290                 while (len <= 4)
291                 {
292                     char sbuf[80];
293                     int k;
294                     inbuf = inbuf_;
295                     inleft = len;
296                     outbuf = outbuf_;
297                     outleft = 2;
298
299                     inbuf_[len-1] = j;
300                     iconv (t, 0,0,0,0);
301
302                     assert (i >= 0 && i<255);
303
304                     *sbuf = 0;
305                     for (k = 0; k<len; k++)
306                     {
307                         sprintf (sbuf+strlen(sbuf), "%d ", inbuf_[k]&255);
308                     }
309                     ret = iconv (t, &inbuf, &inleft, &outbuf, &outleft);
310                     if (ret == (size_t) (-1))
311                     {
312                         if (errno == EILSEQ || errno == E2BIG)
313                         {
314                             j++;
315                             if (j > 255)
316                                 break;
317                         }
318                         else if (errno == EINVAL)
319                         {
320                             len++;
321                             j = 7;
322                         }
323                     }
324                     else if (outleft == 0)
325                     {
326                         info->map[i] = -len;
327                         info->data = t;  /* signal that multibyte is in use */
328                         break;
329                     }
330                     else
331                     {
332                         break;
333                     }
334                 }
335                 if (info->map[i] < -1)
336                     yaz_log (ui->loglevel, "Encoding %d: multibyte input %d",
337                              i, -info->map[i]);
338                 else
339                     yaz_log (ui->loglevel, "Encoding %d: multibyte input failed",
340                              i);
341             }
342             if (errno == E2BIG)
343             {
344                 info->map[i] = -1;  /* no room for output */
345                 if (i != 0)
346                     yaz_log (LOG_WARN, "Encoding %d: no room for output",
347                              i);
348             }
349         }
350         else if (outleft == 0)
351         {
352             unsigned short code;
353             memcpy (&code, outbuf_, sizeof(short));
354             info->map[i] = code;
355             no_ok++;
356         }
357         else
358         {   /* should never happen */
359             info->map[i] = -1;
360             yaz_log (LOG_DEBUG, "Encoding %d: bad state", i);
361         }
362     }
363     if (info->data)
364     {   /* at least one multi byte */
365         info->convert = cb_encoding_convert;
366         info->release = cb_encoding_release;
367     }
368     else
369     {
370         /* no multi byte - we no longer need iconv handler */
371         iconv_close(t);
372         info->convert = 0;
373         info->release = 0;
374     }
375     if (!no_ok)
376         return 0;
377     return 1;
378 }
379 /* HAVE_ICONV_H */
380 #endif
381
382 static void cb_ns_start(void *userData, const char *prefix, const char *uri)
383 {
384     struct user_info *ui = (struct user_info*) userData;
385     if (prefix && uri)
386         yaz_log(ui->loglevel, "cb_ns_start %s %s", prefix, uri);
387 }
388
389 static void cb_ns_end(void *userData, const char *prefix)
390 {
391     struct user_info *ui = (struct user_info*) userData;
392     if (prefix)
393         yaz_log(ui->loglevel, "cb_ns_end %s", prefix);
394 }
395 data1_node *zebra_read_xml (data1_handle dh,
396                             int (*rf)(void *, char *, size_t), void *fh,
397                             NMEM m)
398 {
399     XML_Parser parser;
400     struct user_info uinfo;
401     int done = 0;
402
403     uinfo.loglevel = LOG_DEBUG;
404     uinfo.level = 1;
405     uinfo.dh = dh;
406     uinfo.nmem = m;
407     uinfo.d1_stack[0] = data1_mk_node2 (dh, m, DATA1N_root, 0);
408     uinfo.d1_stack[1] = 0; /* indicate no children (see end of routine) */
409     
410     parser = XML_ParserCreate (0 /* encoding */);
411     
412     XML_SetElementHandler (parser, cb_start, cb_end);
413     XML_SetCharacterDataHandler (parser, cb_chardata);
414     XML_SetXmlDeclHandler (parser, cb_decl);
415     XML_SetProcessingInstructionHandler (parser, cb_processing);
416     XML_SetUserData (parser, &uinfo);
417     XML_SetCommentHandler (parser, cb_comment);
418     XML_SetDoctypeDeclHandler (parser, cb_doctype_start, cb_doctype_end);
419     XML_SetEntityDeclHandler (parser, cb_entity_decl);
420     XML_SetExternalEntityRefHandler (parser, cb_external_entity);
421     XML_SetNamespaceDeclHandler(parser, cb_ns_start, cb_ns_end);
422 #if HAVE_ICONV_H
423     XML_SetUnknownEncodingHandler (parser, cb_encoding_handler, &uinfo);
424 #endif
425     while (!done)
426     {
427         int r;
428         void *buf = XML_GetBuffer (parser, XML_CHUNK);
429         if (!buf)
430         {
431             /* error */
432             yaz_log (LOG_WARN, "XML_GetBuffer fail");
433             break;
434         }
435         r = (*rf)(fh, buf, XML_CHUNK);
436         if (r < 0)
437         {
438             /* error */
439             yaz_log (LOG_WARN, "XML read fail");
440             break;
441         }
442         else if (r == 0)
443             done = 1;
444         if (!XML_ParseBuffer (parser, r, done))
445         {
446             yaz_log (LOG_WARN, "%d:%d:XML error: %s",
447                      XML_GetCurrentLineNumber(parser),
448                      XML_GetCurrentColumnNumber(parser),
449                      XML_ErrorString(XML_GetErrorCode(parser)));
450         }
451     }
452     XML_ParserFree (parser);
453     if (!uinfo.d1_stack[1] || !done)
454         return 0;
455     return uinfo.d1_stack[0];
456 }
457
458 struct xml_info {
459     int dummy;
460 };
461
462 static void *grs_init_xml(void)
463 {
464     struct xml_info *p = (struct xml_info *) xmalloc (sizeof(*p));
465     return p;
466 }
467
468 static data1_node *grs_read_xml (struct grs_read_info *p)
469 {
470     return zebra_read_xml (p->dh, p->readf, p->fh, p->mem);
471 }
472
473 static void grs_destroy_xml(void *clientData)
474 {
475     struct sgml_getc_info *p = (struct sgml_getc_info *) clientData;
476
477     xfree (p);
478 }
479
480 static struct recTypeGrs xml_type = {
481     "xml",
482     grs_init_xml,
483     grs_destroy_xml,
484     grs_read_xml
485 };
486
487 RecTypeGrs recTypeGrs_xml = &xml_type;
488
489 /* HAVE_EXPAT_H */
490 #endif
491