X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr_util.c;h=ed3b07e6226f23ab6df59f0b134ef2cff81e238c;hb=fc89703038b1168a8f52b6920c50dedb9080063d;hp=16dc98471aea3bf6c0f7b63fd4f88bb67af9e023;hpb=10981b2f116449523a9f628c20a78212ce91553e;p=yaz-moved-to-github.git diff --git a/odr/odr_util.c b/odr/odr_util.c index 16dc984..ed3b07e 100644 --- a/odr/odr_util.c +++ b/odr/odr_util.c @@ -1,13 +1,17 @@ -#include #include - -void *nalloc(ODR o, int size) { return malloc(size); } +#include +#include +#include +#include char *odr_indent(ODR o) { static char buf[512]; + int i = o->indent; memset(buf, ' ', 512); + if (i >= 128) + i = 127; buf[o->indent * 4] = 0; return buf; } @@ -30,3 +34,33 @@ int odp_more_chunks(ODR o, unsigned char *base, int len) else return o->bp - base < len; } + +Odr_oid *odr_oiddup(ODR odr, Odr_oid *o) +{ + Odr_oid *r; + + if (!o) + return 0; + if (!(r = odr_malloc(odr, (oid_oidlen(o) + 1) * sizeof(int)))) + return 0; + oid_oidcpy(r, o); + return r; +} + +Odr_oid *odr_getoidbystr(ODR o, char *str) +{ + int num = 1, i = 0; + char *p = str; + Odr_oid *ret; + + if (!isdigit(*str)) + return 0; + while ((p = strchr(p, '.'))) + num++, p++; + ret = odr_malloc(o, sizeof(*ret)*num); + p = str; + do + ret[i++] = atoi(p); + while ((p = strchr(p, '.'))); + return ret; +}