X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fgrs1disp.c;h=43a5fa53cb2ba681da336b95a197ed757741ac8b;hb=5465ce3572dee9b6dcbea43ebf02d9d548b6644d;hp=c2abea8361ed90e54df8e5ab90fa6abb129217ea;hpb=4c176312acdc3444c9afc820f76a393e64668e52;p=yaz-moved-to-github.git diff --git a/src/grs1disp.c b/src/grs1disp.c index c2abea8..43a5fa5 100644 --- a/src/grs1disp.c +++ b/src/grs1disp.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: grs1disp.c,v 1.3 2005-01-15 19:47:13 adam Exp $ + * $Id: grs1disp.c,v 1.7 2007-04-12 13:52:57 adam Exp $ */ /** @@ -16,6 +16,7 @@ #include #include +#include static void display_variant(WRBUF w, Z_Variant *v, int level) { @@ -66,22 +67,27 @@ static void display_grs1(WRBUF w, Z_GenericRecord *r, int level) } } else if (t->content->which == Z_ElementData_string) - wrbuf_printf(w, "%s\n", t->content->u.string); + { + wrbuf_puts(w, t->content->u.string); + wrbuf_puts(w, "\n"); + } else if (t->content->which == Z_ElementData_numeric) + { wrbuf_printf(w, "%d\n", *t->content->u.numeric); + } else if (t->content->which == Z_ElementData_oid) { int *ip = t->content->u.oid; - oident *oent; - - if ((oent = oid_getentbyoid(t->content->u.oid))) - wrbuf_printf(w, "OID: %s\n", oent->desc); - else + + if (ip) { - wrbuf_printf(w, "{"); - while (ip && *ip >= 0) - wrbuf_printf(w, " %d", *(ip++)); - wrbuf_printf(w, " }\n"); + char oid_name_str[OID_STR_MAX]; + int oclass; + const char *oid_name + = yaz_oid_to_string_buf(ip, &oclass, oid_name_str); + + if (oid_name) + wrbuf_printf(w, "OID: %s\n", oid_name); } } else if (t->content->which == Z_ElementData_noDataRequested) @@ -120,3 +126,11 @@ void yaz_display_grs1(WRBUF wrbuf, Z_GenericRecord *r, int flags) display_grs1 (wrbuf, r, 0); } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +