Improved installation. Moved header files to include/yaz.
[yaz-moved-to-github.git] / util / marcdisp.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: marcdisp.c,v $
7  * Revision 1.8  1999-11-30 13:47:12  adam
8  * Improved installation. Moved header files to include/yaz.
9  *
10  * Revision 1.7  1997/09/24 13:29:40  adam
11  * Added verbose option -v to marcdump utility.
12  *
13  * Revision 1.6  1997/09/04 07:52:27  adam
14  * Moved atoi_n function to separate source file.
15  *
16  * Revision 1.5  1997/05/01 15:08:15  adam
17  * Added log_mask_str_x routine.
18  *
19  * Revision 1.4  1995/09/29 17:12:34  quinn
20  * Smallish
21  *
22  * Revision 1.3  1995/09/27  15:03:03  quinn
23  * Modified function heads & prototypes.
24  *
25  * Revision 1.2  1995/05/16  08:51:12  quinn
26  * License, documentation, and memory fixes
27  *
28  * Revision 1.1  1995/04/10  10:28:46  quinn
29  * Added copy of CCL and MARC display
30  *
31  */
32
33 #include <stdio.h>
34 #include <string.h>
35 #include <ctype.h>
36 #include <yaz/marcdisp.h>
37 #include <yaz/yaz-util.h>
38
39 int marc_display_ex (const char *buf, FILE *outf, int debug)
40 {
41     int entry_p;
42     int record_length;
43     int indicator_length;
44     int identifier_length;
45     int base_address;
46     int length_data_entry;
47     int length_starting;
48     int length_implementation;
49
50     if (!outf)
51         outf = stdout;
52     record_length = atoi_n (buf, 5);
53     if (record_length < 25)
54         return -1;
55     indicator_length = atoi_n (buf+10, 1);
56     identifier_length = atoi_n (buf+11, 1);
57     base_address = atoi_n (buf+12, 4);
58
59     indicator_length = identifier_length = 2;
60
61     length_data_entry = atoi_n (buf+20, 1);
62     length_starting = atoi_n (buf+21, 1);
63     length_implementation = atoi_n (buf+22, 1);
64
65     if (debug)
66     {
67         fprintf (outf, "Record length         %5d\n", record_length);
68         fprintf (outf, "Indicator length      %5d\n", indicator_length);
69         fprintf (outf, "Identifier length     %5d\n", identifier_length);
70         fprintf (outf, "Base address          %5d\n", base_address);
71         fprintf (outf, "Length data entry     %5d\n", length_data_entry);
72         fprintf (outf, "Length starting       %5d\n", length_starting);
73         fprintf (outf, "Length implementation %5d\n", length_implementation);
74     }
75     for (entry_p = 24; buf[entry_p] != ISO2709_FS; )
76         entry_p += 3+length_data_entry+length_starting;
77     base_address = entry_p+1;
78     for (entry_p = 24; buf[entry_p] != ISO2709_FS; )
79     {
80         int data_length;
81         int data_offset;
82         int end_offset;
83         int i, j;
84         char tag[4];
85
86         memcpy (tag, buf+entry_p, 3);
87         entry_p += 3;
88         tag[3] = '\0';
89         if (debug)
90             fprintf (outf, "Tag: ");
91         fprintf (outf, "%s ", tag);
92         data_length = atoi_n (buf+entry_p, length_data_entry);
93         entry_p += length_data_entry;
94         data_offset = atoi_n (buf+entry_p, length_starting);
95         entry_p += length_starting;
96         i = data_offset + base_address;
97         end_offset = i+data_length-1;
98         if (debug)
99             fprintf (outf, " Ind: ");
100         if (memcmp (tag, "00", 2) && indicator_length)
101         {
102             for (j = 0; j<indicator_length; j++)
103                 fprintf (outf, "%c", buf[i++]);
104         }
105         if (debug)
106             fprintf (outf, " Fields: ");
107         while (buf[i] != ISO2709_RS && buf[i] != ISO2709_FS && i < end_offset)
108         {
109             if (memcmp (tag, "00", 2) && identifier_length)
110             {
111                 i++;
112                 fprintf (outf, " $"); 
113                 for (j = 1; j<identifier_length; j++)
114                     fprintf (outf, "%c", buf[i++]);
115                 fprintf (outf, " ");
116                 while (buf[i] != ISO2709_RS && buf[i] != ISO2709_IDFS &&
117                        buf[i] != ISO2709_FS && i < end_offset)
118                     fprintf (outf, "%c", buf[i++]);
119             }
120             else
121                 fprintf (outf, "%c", buf[i++]);
122         }
123         fprintf (outf, "\n");
124         if (i < end_offset)
125             fprintf (outf, "-- separator but not at end of field\n");
126         if (buf[i] != ISO2709_RS && buf[i] != ISO2709_FS)
127             fprintf (outf, "-- no separator at end of field\n");
128     }
129     return record_length;
130 }
131
132 int marc_display (const char *buf, FILE *outf)
133 {
134     return marc_display_ex (buf, outf, 0);
135 }
136
137