X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fprt-ext.h;h=a63503317286c7346a3effc5d312af06a4b626ac;hp=ed29603dec7c65ec3af08257da7c4dc5a5e4b6e4;hb=633f1d5078e524d7f6cf6a1674821b5464f9fb76;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505 diff --git a/include/yaz/prt-ext.h b/include/yaz/prt-ext.h index ed29603..a635033 100644 --- a/include/yaz/prt-ext.h +++ b/include/yaz/prt-ext.h @@ -1,29 +1,28 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS - * - * Permission to use, copy, modify, distribute, and sell this software and - * its documentation, in whole or in part, for any purpose, is hereby granted, - * provided that: - * - * 1. This copyright and permission notice appear in all copies of the - * software and its documentation. Notices of copyright or attribution - * which appear at the beginning of any file must remain unchanged. +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2013 Index Data. + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: * - * 2. The names of Index Data or the individual authors may not be used to - * endorse or promote products derived from this software without specific - * prior written permission. + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Index Data nor the names of its contributors + * may be used to endorse or promote products derived from this + * software without specific prior written permission. * - * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND, - * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY - * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL, - * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR - * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF - * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE - * OF THIS SOFTWARE. - * - * $Id: prt-ext.h,v 1.13 2005-06-25 15:46:03 adam Exp $ + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @@ -39,7 +38,7 @@ #define PRT_EXT_H #include -#include +#include YAZ_BEGIN_CDECL @@ -50,7 +49,7 @@ YAZ_BEGIN_CDECL */ typedef struct Z_ext_typeent { - oid_value dref; /* the direct-reference OID value. */ + Odr_oid oid[OID_SIZE]; /* the direct-reference OID */ int what; /* discriminator value for the external CHOICE */ Odr_fun fun; /* decoder function */ } Z_ext_typeent; @@ -59,7 +58,7 @@ typedef struct Z_ext_typeent struct Z_External { Odr_oid *direct_reference; - int *indirect_reference; + Odr_int *indirect_reference; char *descriptor; int which; /* Generic types */ @@ -93,6 +92,12 @@ struct Z_External #define Z_External_multisrch2 26 #define Z_External_CQL 27 #define Z_External_OCLCUserInfo 28 +#define Z_External_persistentResultSet 29 +#define Z_External_persistentQuery 30 +#define Z_External_periodicQuerySchedule 31 +#define Z_External_exportSpecification 32 +#define Z_External_exportInvocation 33 +#define Z_External_userFacets 34 union { /* Generic types */ @@ -132,6 +137,13 @@ struct Z_External Z_MultipleSearchTerms_2 *multipleSearchTerms_2; Z_InternationalString *cql; Z_OCLC_UserInformation *oclc; + Z_PRPersistentResultSet *persistentResultSet; + + Z_PQueryPersistentQuery *persistentQuery; + Z_PQSPeriodicQuerySchedule *periodicQuerySchedule; + Z_ESExportSpecification *exportSpecification; + Z_EIExportInvocation *exportInvocation; + Z_FacetList *facetList; } u; }; @@ -139,10 +151,24 @@ struct Z_External /** \brief codec for BER EXTERNAL */ YAZ_EXPORT int z_External(ODR o, Z_External **p, int opt, const char *name); /** \brief returns type information for OID (NULL if not known) */ -YAZ_EXPORT Z_ext_typeent *z_ext_getentbyref(oid_value val); -/** \brief encodes EXTERNAL record based on OID (NULL if knot known) */ -YAZ_EXPORT Z_External *z_ext_record(ODR o, int format, const char *buf, - int len); +YAZ_EXPORT Z_ext_typeent *z_ext_getentbyref(const Odr_oid *oid); +/** \brief encodes EXTERNAL record based on OID (NULL if not known) */ +YAZ_EXPORT Z_External *z_ext_record_oid(ODR o, const Odr_oid *oid, + const char *buf, int len); +/** \brief encodes EXTERNAL record based on OID (NULL if not known) */ +YAZ_EXPORT Z_External *z_ext_record_oid_nmem(NMEM nmem, const Odr_oid *oid, + const char *buf, int len); +/** \brief encodes EXTERNAL record as ANY */ +YAZ_EXPORT Z_External *z_ext_record_oid_any(ODR o, const Odr_oid *oid, + const char *buf, int len); +/** \brief encodes EXTERNAL XML record */ +YAZ_EXPORT Z_External *z_ext_record_xml(ODR o, const char *buf, int len); + +/** \brief encodes EXTERNAL SUTRS record */ +YAZ_EXPORT Z_External *z_ext_record_sutrs(ODR o, const char *buf, int len); + +/** \brief encodes EXTERNAL USMARC/MARC21 record */ +YAZ_EXPORT Z_External *z_ext_record_usmarc(ODR o, const char *buf, int len); YAZ_END_CDECL @@ -150,6 +176,7 @@ YAZ_END_CDECL /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab