X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fiso2709.c;h=9e3f803aa770ab958b968204f9ab1d3b07f4905e;hb=d5632f532e0757b5c538da730a4afe0bb7de0c94;hp=2f6bc37009b949ab5632b9b02fcb7de9be8ecfbe;hpb=96a9d6aeb02795cecf237b892c8ac28073e4a785;p=egate.git diff --git a/util/iso2709.c b/util/iso2709.c index 2f6bc37..9e3f803 100644 --- a/util/iso2709.c +++ b/util/iso2709.c @@ -4,7 +4,20 @@ * Europagate, 1994-1995. * * $Log: iso2709.c,v $ - * Revision 1.7 1995/02/22 21:28:03 adam + * Revision 1.11 1995/03/28 16:07:07 adam + * New function: iso2709_out. This function is the reverse of iso2709_cvt. + * + * Revision 1.10 1995/03/10 09:10:56 adam + * Removed dbc2709_cvt function. Makes heuristic guess for DBC2709 records. + * + * Revision 1.9 1995/03/08 12:36:39 adam + * New function: dbc2709_cvt. + * + * Revision 1.8 1995/03/08 12:03:15 adam + * Hack: When tags 00? are used, every separator (DC[1-3]) marks + * the end of the data field. + * + * Revision 1.7 1995/02/22 21:28:03 adam * Changed header. * * Revision 1.5 1995/02/22 15:24:14 adam @@ -60,10 +73,6 @@ static void strncpyx (char *d, const char *s, int n) s++; } *d = '\0'; -#if 0 - strncpy (d, s, n); - d[n] = '\0'; -#endif } char *iso2709_read (FILE *inf) @@ -89,6 +98,7 @@ char *iso2709_read (FILE *inf) return buf; } + Iso2709Rec iso2709_cvt (const char *buf) { struct iso2709_dir **dpp, *dp; @@ -123,6 +133,7 @@ Iso2709Rec iso2709_cvt (const char *buf) while (buf[pos] != ISO2709_FS) { *dpp = malloc (sizeof(**dpp)); + assert (*dpp); (*dpp)->next = NULL; strncpyx ((*dpp)->tag, buf+pos, 3); pos += 3; @@ -137,46 +148,60 @@ Iso2709Rec iso2709_cvt (const char *buf) /* deal with datafields */ for (dp = p->directory; dp; dp = dp->next) { - int tag00; + int identifier_flag; struct iso2709_field **fpp; int dpos = pos+dp->offset; fpp = &dp->fields; *fpp = malloc (sizeof(**fpp)); + assert (*fpp); (*fpp)->next = NULL; - if (p->indicator_length && memcmp (dp->tag, "00", 2)) + + identifier_flag = 1; + if (p->indicator_length) + { +#if STUPID_ISO_DBC + if (buf[dpos+p->indicator_length] != ISO2709_IDFS) + identifier_flag = 0; +#else + if (!memcmp (dp->tag, "00", 2)) + identifier_flag = 0; +#endif + } + else if (!memcmp (dp->tag, "00", 2)) + identifier_flag = 0; + if (identifier_flag && p->indicator_length) { dp->indicator = malloc (p->indicator_length+1); + assert (dp->indicator); strncpyx (dp->indicator, buf+dpos, p->indicator_length); dpos += p->indicator_length; } else dp->indicator = NULL; - - if (memcmp (dp->tag, "00", 2)) - tag00 = 0; - else - tag00 = 1; while (1) { int dpos_n; - if (p->identifier_length && !tag00) + if (p->identifier_length && identifier_flag) { (*fpp)->identifier = malloc (p->identifier_length+1); strncpyx ((*fpp)->identifier, buf+dpos+1, p->identifier_length-1); - dpos += p->identifier_length; + dpos_n = dpos += p->identifier_length; + while (buf[dpos_n] != ISO2709_FS && buf[dpos_n] != ISO2709_RS + && buf[dpos_n] != ISO2709_IDFS) + dpos_n++; } else + { (*fpp)->identifier = NULL; - - dpos_n = dpos; - while (buf[dpos_n] != ISO2709_FS && buf[dpos_n] != ISO2709_IDFS && - buf[dpos_n] != ISO2709_RS) - dpos_n++; - + dpos_n = dpos; + while (buf[dpos_n] != ISO2709_FS && buf[dpos_n] != ISO2709_RS) + dpos_n++; + } (*fpp)->data = malloc (dpos_n - dpos + 1); + assert ((*fpp)->data); strncpyx ((*fpp)->data, buf+dpos, dpos_n - dpos); dpos = dpos_n; @@ -185,6 +210,7 @@ Iso2709Rec iso2709_cvt (const char *buf) fpp = &(*fpp)->next; *fpp = malloc (sizeof(**fpp)); + assert (*fpp); (*fpp)->next = NULL; } } @@ -211,3 +237,4 @@ void iso2709_rm (Iso2709Rec rec) free (dir); } } +