Old versions of GILS tables
[yaz-moved-to-github.git] / odr / odr_util.c
index af26bae..cfa28cc 100644 (file)
@@ -1,8 +1,20 @@
-#include <odr.h>
 #include <stdlib.h>
+#include <string.h>
+#include <ctype.h>
+#include <odr.h>
+#include <oid.h>
+
+char *odr_indent(ODR o)
+{
+    static char buf[512];
+    int i = o->indent;
 
-void *nalloc(ODR o, int size) { return malloc(size); }
-char *odr_indent(ODR o) {return "";}
+    memset(buf, ' ', 512);
+    if (i >= 128)
+       i = 127;
+    buf[o->indent * 4] = 0;
+    return buf;
+}
 
 int odp_more_chunks(ODR o, unsigned char *base, int len)
 {
@@ -22,3 +34,34 @@ 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 + 1));
+    p = str;
+    do
+       ret[i++] = atoi(p);
+    while ((p = strchr(p, '.')) && ++p);
+    ret[i] = -1;
+    return ret;
+}