X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_util.c;h=8cd47d50ec141d0a5d025b040d86e4c2d854056f;hp=370132f907b0c0734010964942bdbecc4c22c209;hb=9f11f349958f122419856006d9295eb0ce41274d;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/src/odr_util.c b/src/odr_util.c index 370132f..8cd47d5 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. - * - * $Id: odr_util.c,v 1.9 2007-01-03 08:42:15 adam Exp $ */ /** * \file odr_util.c @@ -16,14 +14,14 @@ #include #include #include "odr-priv.h" -#include +#include void odr_prname(ODR o, const char *name) { if (name) - odr_printf(o, "%*s%s ", o->indent*4, "", name); + odr_printf(o, "%*s%s ", o->op->indent*4, "", name); else - odr_printf(o, "%*s", o->indent*4, ""); + odr_printf(o, "%*s", o->op->indent*4, ""); } int odp_more_chunks(ODR o, const unsigned char *base, int len) @@ -44,49 +42,39 @@ int odp_more_chunks(ODR o, const unsigned char *base, int len) return o->bp - base < len; } -Odr_oid *odr_oiddup_nmem(NMEM nmem, Odr_oid *o) +Odr_oid *odr_oiddup_nmem(NMEM nmem, const Odr_oid *o) { Odr_oid *r; if (!o) return 0; - if (!(r = (int *)nmem_malloc(nmem, (oid_oidlen(o) + 1) * sizeof(int)))) + if (!(r = (Odr_oid *) + nmem_malloc(nmem, (oid_oidlen(o) + 1) * sizeof(Odr_oid)))) return 0; oid_oidcpy(r, o); return r; } -Odr_oid *odr_oiddup(ODR odr, Odr_oid *o) +Odr_oid *odr_oiddup(ODR odr, const Odr_oid *o) { - if (!odr->mem) - odr->mem = nmem_create(); - return odr_oiddup_nmem (odr->mem, o); + return odr_oiddup_nmem(odr_getmem(odr), o); } Odr_oid *odr_getoidbystr_nmem(NMEM nmem, const char *str) { - int num = 1, i = 0; - const char *p = str; + Odr_oid oid[OID_SIZE]; Odr_oid *ret; - if (!isdigit(*(const unsigned char *) str)) + if (oid_dotstring_to_oid(str, oid)) return 0; - while ((p = strchr(p, '.'))) - num++, p++; - ret = (int *)nmem_malloc(nmem, sizeof(*ret)*(num + 1)); - p = str; - do - ret[i++] = atoi(p); - while ((p = strchr(p, '.')) && *++p); - ret[i] = -1; + ret = (Odr_oid *)nmem_malloc(nmem, sizeof(*ret)*(oid_oidlen(oid) + 1)); + oid_oidcpy(ret, oid); return ret; } Odr_oid *odr_getoidbystr(ODR o, const char *str) { - if (!o->mem) - o->mem = nmem_create(); - return odr_getoidbystr_nmem (o->mem, str); + return odr_getoidbystr_nmem(odr_getmem(o), str); } int odr_missing(ODR o, int opt, const char *name) @@ -129,6 +117,7 @@ char *odr_prepend(ODR o, const char *prefix, const char *old) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab