X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=odr%2Fodr.c;h=301f15144604aa24fd3e388649e6f0aa70637e59;hp=5c21f2fcb07cba2cf6f514d563ac5377ae1f5522;hb=93e6cd96accab7cdef3a573479a5ec9c9fc47610;hpb=99268f722648e84bf5c54eb685a1434e100f38a1 diff --git a/odr/odr.c b/odr/odr.c index 5c21f2f..301f151 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -4,7 +4,34 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.12 1995-05-16 08:50:49 quinn + * Revision 1.21 1996-07-26 13:38:19 quinn + * Various smaller things. Gathered header-files. + * + * Revision 1.20 1995/11/08 17:41:32 quinn + * Smallish. + * + * Revision 1.19 1995/11/01 13:54:41 quinn + * Minor adjustments + * + * Revision 1.18 1995/09/29 17:12:22 quinn + * Smallish + * + * Revision 1.17 1995/09/29 17:01:50 quinn + * More Windows work + * + * Revision 1.16 1995/09/27 15:02:57 quinn + * Modified function heads & prototypes. + * + * Revision 1.15 1995/08/15 12:00:22 quinn + * Updated External + * + * Revision 1.14 1995/06/19 12:38:46 quinn + * Added BER dumper. + * + * Revision 1.13 1995/05/22 11:32:02 quinn + * Fixing Interface to odr_null. + * + * Revision 1.12 1995/05/16 08:50:49 quinn * License, documentation, and memory fixes * * Revision 1.11 1995/05/15 11:56:08 quinn @@ -47,9 +74,11 @@ #include #include -#include +#include #include +Odr_null *ODR_NULLVAL = "NULL"; /* the presence of a null value */ + char *odr_errlist[] = { "No (unknown) error", @@ -61,9 +90,16 @@ char *odr_errlist[] = "Other error", "Protocol error", "Malformed data", - "Stack overflow" + "Stack overflow", + "Length of constructed type different from sum of members", + "Overflow writing definite length of constructed type" }; +char *odr_errmsg(int n) +{ + return odr_errlist[n]; +} + void odr_perror(ODR o, char *message) { fprintf(stderr, "%s: %s\n", message, odr_errlist[o->error]); @@ -83,8 +119,8 @@ ODR odr_createmem(int direction) { struct odr *r; - if (!(r = malloc(sizeof(*r)))) - return 0; + if (!(r = xmalloc(sizeof(*r)))) + return 0; r->direction = direction; r->print = stderr; r->buf = 0; @@ -92,7 +128,7 @@ ODR odr_createmem(int direction) r->ecb.size = r->ecb.pos = r->ecb.top = 0; r->ecb.can_grow = 1; r->buflen = 0; - r->mem = 0; + r->mem = nmem_create(); odr_reset(r); return r; } @@ -108,18 +144,19 @@ void odr_reset(ODR o) o->t_tag = -1; o->indent = 0; o->stackp = -1; - odr_release_mem(o->mem); - o->mem = 0; + nmem_reset(o->mem); + o->choice_bias = -1; + o->lenlen = 1; } void odr_destroy(ODR o) { - odr_release_mem(o->mem); + nmem_destroy(o->mem); if (o->ecb.buf && o->ecb.can_grow) - free(o->ecb.buf); + xfree(o->ecb.buf); if (o->print != stderr) - fclose(o->print); - free(o); + fclose(o->print); + xfree(o); } void odr_setbuf(ODR o, char *buf, int len, int can_grow) @@ -137,6 +174,6 @@ char *odr_getbuf(ODR o, int *len, int *size) { *len = o->ecb.top; if (size) - *size = o->ecb.size; + *size = o->ecb.size; return (char*) o->ecb.buf; }