Updated for YAZ 1.7. HTML output tidy up. Added LOC target.
[egate.git] / fml / fmlmarc.c
1 /*
2  * Copyright (c) 1995, the EUROPAGATE consortium (see below).
3  *
4  * The EUROPAGATE consortium members are:
5  *
6  *    University College Dublin
7  *    Danmarks Teknologiske Videnscenter
8  *    An Chomhairle Leabharlanna
9  *    Consejo Superior de Investigaciones Cientificas
10  *
11  * Permission to use, copy, modify, distribute, and sell this software and
12  * its documentation, in whole or in part, for any purpose, is hereby granted,
13  * provided that:
14  *
15  * 1. This copyright and permission notice appear in all copies of the
16  * software and its documentation. Notices of copyright or attribution
17  * which appear at the beginning of any file must remain unchanged.
18  *
19  * 2. The names of EUROPAGATE or the project partners may not be used to
20  * endorse or promote products derived from this software without specific
21  * prior written permission.
22  *
23  * 3. Users of this software (implementors and gateway operators) agree to
24  * inform the EUROPAGATE consortium of their use of the software. This
25  * information will be used to evaluate the EUROPAGATE project and the
26  * software, and to plan further developments. The consortium may use
27  * the information in later publications.
28  * 
29  * 4. Users of this software agree to make their best efforts, when
30  * documenting their use of the software, to acknowledge the EUROPAGATE
31  * consortium, and the role played by the software in their work.
32  *
33  * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
34  * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
35  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
36  * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE
37  * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF
38  * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
39  * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND
40  * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
41  * USE OR PERFORMANCE OF THIS SOFTWARE.
42  *
43  */
44 /*
45  * FML interpreter. Europagate, 1995
46  *
47  * $Log: fmlmarc.c,v $
48  * Revision 1.7  2001/02/26 14:32:36  adam
49  * Updated for YAZ 1.7. HTML output tidy up. Added LOC target.
50  *
51  * Revision 1.6  1995/05/16 09:39:33  adam
52  * LICENSE.
53  *
54  * Revision 1.5  1995/03/30  14:22:02  adam
55  * Uses MARC anchor functions now.
56  *
57  * Revision 1.4  1995/02/23  08:32:05  adam
58  * Changed header.
59  *
60  * Revision 1.2  1995/02/10  16:52:08  adam
61  * Indicator field moved in MARC structure. The FML list representation
62  * of a MARC record has changed.
63  *
64  * Revision 1.1  1995/02/10  15:50:56  adam
65  * MARC interface implemented. Minor bugs fixed. fmltest can
66  * be used to format single MARC records. New function '\list'
67  * implemented.
68  *
69  */
70
71 #include <assert.h>
72 #include <stdlib.h>
73 #include <stdio.h>
74 #include <string.h>
75
76 #include <fmlmarc.h>
77 #include <iso2709.h>
78
79 #include "fmlp.h"
80
81 static void add_string (const char *str, char **buf, int *max, int *size)
82 {
83     if (*size + strlen(str) >= *max)
84     {
85         char *nbuf;
86         int nsize = *size + strlen(str) + 2048;
87
88         nbuf = malloc (nsize);
89         assert (nbuf);
90         if (*buf)
91             strcpy (nbuf, *buf);
92         else
93             *nbuf = '\0';
94         free (*buf);
95         *buf = nbuf;
96         *max = nsize;
97     }
98     strcpy (*buf + *size, str);
99     *size += strlen(str);
100 }
101
102 char *marc_to_str (Fml fml, Iso2709Rec rec)
103 {
104     static char *buf = NULL;
105     static int max = 0;
106     int size = 0;
107     Iso2709Anchor a;
108     char *tag, *indicator, *identifier, *data;
109
110     add_string ("{", &buf, &max, &size);
111     a = iso2709_a_mk (rec);
112     do
113     {
114         if (!iso2709_a_info_line (a, &tag, &indicator))
115             break;
116         add_string ("{\'", &buf, &max, &size);
117         add_string (tag, &buf, &max, &size);
118         add_string ("\'",&buf, &max, &size);
119         if (indicator)
120         {
121             add_string ("\'", &buf, &max, &size);
122             add_string (indicator, &buf, &max, &size);
123             add_string ("\'", &buf, &max, &size);
124         }
125         else
126             add_string ("{}", &buf, &max, &size);
127         add_string ("{", &buf, &max, &size);
128         do
129         {
130             iso2709_a_info_field (a, NULL, NULL, &identifier, &data);
131             add_string ("{", &buf, &max, &size);
132             if (identifier)
133             {
134                 add_string ("\'", &buf, &max, &size);
135                 add_string (identifier, &buf, &max, &size);
136                 add_string ("\'", &buf, &max, &size);
137             }
138             else
139                 add_string ("{}", &buf, &max, &size);
140             add_string (" \'", &buf, &max, &size);
141             add_string (data, &buf, &max, &size);
142             add_string ("\'}", &buf, &max, &size);
143         } while (iso2709_a_next_field (a));
144         add_string ("}}\n", &buf, &max, &size);
145     } while (iso2709_a_next_line (a));
146     add_string ("}", &buf, &max, &size);
147     iso2709_a_rm (a);
148     return buf;
149 }