X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fprt-ext.c;h=2fa8c71931bc9858bdbab0e022d43fa2b1b0de47;hp=3770d3627c083a80827e14cfc793e6ff08a4731d;hb=2ba84b155219d5d18eed5ba4d929c12abdb88f14;hpb=7a98e9bfbb9d5fe7d44822a9838e3becbdce9363 diff --git a/src/prt-ext.c b/src/prt-ext.c index 3770d36..2fa8c71 100644 --- a/src/prt-ext.c +++ b/src/prt-ext.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: prt-ext.c,v 1.13 2007-05-08 08:22:36 adam Exp $ */ /** @@ -320,6 +318,37 @@ Z_External *z_ext_record_oid(ODR o, const Odr_oid *oid, const char *buf, int len return thisext; } +Z_External *z_ext_record_oid_any(ODR o, const Odr_oid *oid, + const char *buf, int len) +{ + Z_External *thisext; + char oid_str_buf[OID_STR_MAX]; + const char *oid_str; + oid_class oclass; + + if (!oid) + return 0; + thisext = (Z_External *) odr_malloc(o, sizeof(*thisext)); + thisext->descriptor = 0; + thisext->indirect_reference = 0; + + oid_str = yaz_oid_to_string_buf(oid, &oclass, oid_str_buf); + + thisext->direct_reference = odr_oiddup(o, oid); + + thisext->which = Z_External_single; + thisext->u.single_ASN1_type = (Odr_any *) odr_malloc(o, sizeof(Odr_any)); + if (!thisext->u.single_ASN1_type) + return 0; + thisext->u.single_ASN1_type->buf = (unsigned char *) odr_malloc(o, len); + if (!thisext->u.single_ASN1_type->buf) + return 0; + memcpy(thisext->u.single_ASN1_type->buf, buf, len); + thisext->u.single_ASN1_type->len = thisext->u.single_ASN1_type->size = len; + + return thisext; +} + Z_External *z_ext_record_xml(ODR o, const char *buf, int len) { return z_ext_record_oid(o, yaz_oid_recsyn_xml, buf, len);