efce9b2c18e390cedae909c9b028a066624c3ce5
[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.6  1995/05/16 09:39:33  adam
49  * LICENSE.
50  *
51  * Revision 1.5  1995/03/30  14:22:02  adam
52  * Uses MARC anchor functions now.
53  *
54  * Revision 1.4  1995/02/23  08:32:05  adam
55  * Changed header.
56  *
57  * Revision 1.2  1995/02/10  16:52:08  adam
58  * Indicator field moved in MARC structure. The FML list representation
59  * of a MARC record has changed.
60  *
61  * Revision 1.1  1995/02/10  15:50:56  adam
62  * MARC interface implemented. Minor bugs fixed. fmltest can
63  * be used to format single MARC records. New function '\list'
64  * implemented.
65  *
66  */
67
68 #include <assert.h>
69 #include <stdlib.h>
70 #include <stdio.h>
71
72 #include <fmlmarc.h>
73 #include <iso2709.h>
74
75 #include "fmlp.h"
76
77 static void add_string (const char *str, char **buf, int *max, int *size)
78 {
79     if (*size + strlen(str) >= *max)
80     {
81         char *nbuf;
82         int nsize = *size + strlen(str) + 2048;
83
84         nbuf = malloc (nsize);
85         assert (nbuf);
86         if (*buf)
87             strcpy (nbuf, *buf);
88         else
89             *nbuf = '\0';
90         free (*buf);
91         *buf = nbuf;
92         *max = nsize;
93     }
94     strcpy (*buf + *size, str);
95     *size += strlen(str);
96 }
97
98 char *marc_to_str (Fml fml, Iso2709Rec rec)
99 {
100     static char *buf = NULL;
101     static int max = 0;
102     int size = 0;
103     Iso2709Anchor a;
104     char *tag, *indicator, *identifier, *data;
105
106     add_string ("{", &buf, &max, &size);
107     a = iso2709_a_mk (rec);
108     do
109     {
110         if (!iso2709_a_info_line (a, &tag, &indicator))
111             break;
112         add_string ("{\'", &buf, &max, &size);
113         add_string (tag, &buf, &max, &size);
114         add_string ("\'",&buf, &max, &size);
115         if (indicator)
116         {
117             add_string ("\'", &buf, &max, &size);
118             add_string (indicator, &buf, &max, &size);
119             add_string ("\'", &buf, &max, &size);
120         }
121         else
122             add_string ("{}", &buf, &max, &size);
123         add_string ("{", &buf, &max, &size);
124         do
125         {
126             iso2709_a_info_field (a, NULL, NULL, &identifier, &data);
127             add_string ("{", &buf, &max, &size);
128             if (identifier)
129             {
130                 add_string ("\'", &buf, &max, &size);
131                 add_string (identifier, &buf, &max, &size);
132                 add_string ("\'", &buf, &max, &size);
133             }
134             else
135                 add_string ("{}", &buf, &max, &size);
136             add_string (" \'", &buf, &max, &size);
137             add_string (data, &buf, &max, &size);
138             add_string ("\'}", &buf, &max, &size);
139         } while (iso2709_a_next_field (a));
140         add_string ("}}\n", &buf, &max, &size);
141     } while (iso2709_a_next_line (a));
142     add_string ("}", &buf, &max, &size);
143     iso2709_a_rm (a);
144     return buf;
145 }