Added several type casts for C++ compilation. ZOOM fixes.
[yaz-moved-to-github.git] / odr / odr.c
index 6129857..a0f34e1 100644 (file)
--- a/odr/odr.c
+++ b/odr/odr.c
@@ -1,43 +1,54 @@
 /*
- * Copyright (C) 1994, Index Data I/S 
- * All rights reserved.
- * Sebastian Hammer, Adam Dickmeiss
- *
- * $Log: odr.c,v $
- * Revision 1.3  1995-03-07 10:21:31  quinn
- * odr_errno-->odr_error
- *
- * Revision 1.2  1995/03/07  10:19:05  quinn
- * Addded some method functions to the ODR type.
- *
- * Revision 1.1  1995/03/07  09:23:15  quinn
- * Installing top-level API and documentation.
+ * Copyright (c) 1995-2002, Index Data
+ * See the file LICENSE for details.
  *
+ * $Id: odr.c,v 1.38 2002-09-24 08:05:41 adam Exp $
  *
  */
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
 
-#include <odr.h>
+#include <yaz/xmalloc.h>
+#include "odr-priv.h"
+
+Odr_null *ODR_NULLVAL = (Odr_null *) "NULL";  /* the presence of a null value */
+
+Odr_null *odr_nullval (void)
+{
+    return ODR_NULLVAL;
+}
 
 char *odr_errlist[] =
 {
     "No (unknown) error",
-    "Memoy allocation failed",
+    "Memory allocation failed",
     "System error",
     "No space in buffer",
     "Required data element missing",
     "Unexpected tag",
-    "Other error"
+    "Other error",
+    "Protocol error",
+    "Malformed data",
+    "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]);
 }
 
-int odr_error(ODR o)
+int odr_geterror(ODR o)
 {
     return o->error;
 }
@@ -47,44 +58,86 @@ void odr_setprint(ODR o, FILE *file)
     o->print = file;
 }
 
+int odr_set_charset(ODR o, const char *to, const char *from)
+{
+    if (o->op->iconv_handle)
+        yaz_iconv_close (o->op->iconv_handle);
+
+    o->op->iconv_handle = yaz_iconv_open (to, from);
+    if (o->op->iconv_handle == 0)
+        return -1;
+    return 0;
+}
+
+#include <yaz/log.h>
+
 ODR odr_createmem(int direction)
 {
-    struct odr *r;
+    ODR r;
 
-    if (!(r = malloc(sizeof(*r))))
-       return 0;
+    if (!(r = (ODR)xmalloc(sizeof(*r))))
+        return 0;
     r->direction = direction;
-    r->print = stdout;
+    r->print = stderr;
     r->buf = 0;
-    r->buflen = 0;
+    r->size = r->pos = r->top = 0;
+    r->can_grow = 1;
+    r->mem = nmem_create();
+    r->enable_bias = 1;
+    r->op = (struct Odr_private *) xmalloc (sizeof(*r->op));
+    r->op->odr_ber_tag.lclass = -1;
+    r->op->iconv_handle = 0;
     odr_reset(r);
+    yaz_log (LOG_DEBUG, "odr_createmem dir=%d o=%p", direction, r);
     return r;
 }
 
 void odr_reset(ODR o)
 {
     o->error = ONONE;
-    o->bp = 0;
-    o->left = o->buflen;
+    o->bp = o->buf;
+    odr_seek(o, ODR_S_SET, 0);
+    o->top = 0;
     o->t_class = -1;
     o->t_tag = -1;
     o->indent = 0;
-    o->stackp = 0;
+    o->op->stackp = -1;
+    nmem_reset(o->mem);
+    o->choice_bias = -1;
+    o->lenlen = 1;
+    if (o->op->iconv_handle != 0)
+        yaz_iconv(o->op->iconv_handle, 0, 0, 0, 0);
+    yaz_log (LOG_DEBUG, "odr_reset o=%p", o);
 }
     
 void odr_destroy(ODR o)
 {
-    free(o);
+    nmem_destroy(o->mem);
+    if (o->buf && o->can_grow)
+       xfree(o->buf);
+    if (o->print && o->print != stderr)
+        fclose(o->print);
+    if (o->op->iconv_handle != 0)
+        yaz_iconv_close (o->op->iconv_handle);
+    xfree(o->op);
+    xfree(o);
+    yaz_log (LOG_DEBUG, "odr_destroy o=%p", o);
 }
 
-void odr_setbuf(ODR o, char *buf, int len)
+void odr_setbuf(ODR o, char *buf, int len, int can_grow)
 {
-    o->buf = o->bp = (unsigned char *) buf;
-    o->buflen = o->left = len;
+    o->bp = (unsigned char *) buf;
+
+    o->buf = (unsigned char *) buf;
+    o->can_grow = can_grow;
+    o->top = o->pos = 0;
+    o->size = len;
 }
 
-char *odr_getbuf(ODR o, int *len)
+char *odr_getbuf(ODR o, int *len, int *size)
 {
-    *len = o->bp - o->buf;
-    return (char *) o->buf;
-}    
+    *len = o->top;
+    if (size)
+        *size = o->size;
+    return (char*) o->buf;
+}