X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fmarcdisp.c;h=8ed80e325883531ad96398813e0324c408edae4b;hb=142235dcf39ff59a20918e53abcf62f59fa9f2a4;hp=336cae836dec9a135e1313ddb04897d5325c8085;hpb=2a782cebfa5189908617c8938ea0baac5d636587;p=yaz-moved-to-github.git diff --git a/util/marcdisp.c b/util/marcdisp.c index 336cae8..8ed80e3 100644 --- a/util/marcdisp.c +++ b/util/marcdisp.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: marcdisp.c,v $ - * Revision 1.6 1997-09-04 07:52:27 adam + * Revision 1.7 1997-09-24 13:29:40 adam + * Added verbose option -v to marcdump utility. + * + * Revision 1.6 1997/09/04 07:52:27 adam * Moved atoi_n function to separate source file. * * Revision 1.5 1997/05/01 15:08:15 adam @@ -30,7 +33,7 @@ #include #include -int marc_display (const char *buf, FILE *outf) +int marc_display_ex (const char *buf, FILE *outf, int debug) { int entry_p; int record_length; @@ -50,10 +53,22 @@ int marc_display (const char *buf, FILE *outf) identifier_length = atoi_n (buf+11, 1); base_address = atoi_n (buf+12, 4); + indicator_length = identifier_length = 2; + length_data_entry = atoi_n (buf+20, 1); length_starting = atoi_n (buf+21, 1); length_implementation = atoi_n (buf+22, 1); + if (debug) + { + fprintf (outf, "Record length %5d\n", record_length); + fprintf (outf, "Indicator length %5d\n", indicator_length); + fprintf (outf, "Identifier length %5d\n", identifier_length); + fprintf (outf, "Base address %5d\n", base_address); + fprintf (outf, "Length data entry %5d\n", length_data_entry); + fprintf (outf, "Length starting %5d\n", length_starting); + fprintf (outf, "Length implementation %5d\n", length_implementation); + } for (entry_p = 24; buf[entry_p] != ISO2709_FS; ) entry_p += 3+length_data_entry+length_starting; base_address = entry_p+1; @@ -68,6 +83,8 @@ int marc_display (const char *buf, FILE *outf) memcpy (tag, buf+entry_p, 3); entry_p += 3; tag[3] = '\0'; + if (debug) + fprintf (outf, "Tag: "); fprintf (outf, "%s ", tag); data_length = atoi_n (buf+entry_p, length_data_entry); entry_p += length_data_entry; @@ -75,11 +92,15 @@ int marc_display (const char *buf, FILE *outf) entry_p += length_starting; i = data_offset + base_address; end_offset = i+data_length-1; + if (debug) + fprintf (outf, " Ind: "); if (memcmp (tag, "00", 2) && indicator_length) { for (j = 0; j