From: Adam Dickmeiss Date: Wed, 29 Jul 2009 07:38:26 +0000 (+0200) Subject: Extend z_External to handle all extended services X-Git-Tag: v3.0.48~12 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=8bb4b0631ee0f06de1cf065541bbf9537c04d726 Extend z_External to handle all extended services Extend z_External to handle all extended services persistentQuery, periodicQuerySchedule, exportSpecification, exportInvocation. Patch by Rustam T. Usmanov. --- diff --git a/include/yaz/prt-ext.h b/include/yaz/prt-ext.h index e4b2f3f..be28a40 100644 --- a/include/yaz/prt-ext.h +++ b/include/yaz/prt-ext.h @@ -92,6 +92,11 @@ 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 union { /* Generic types */ @@ -131,6 +136,12 @@ 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; } u; }; diff --git a/src/prt-ext.c b/src/prt-ext.c index 4ccdc1b..3845209 100644 --- a/src/prt-ext.c +++ b/src/prt-ext.c @@ -51,6 +51,11 @@ static Z_ext_typeent type_table[] = {{1, 2, 840, 10003, 8, 3,-1}, Z_External_acfKrb1, (Odr_fun) z_KRBObject}, {{1, 2, 840, 10003, 10, 5,-1}, Z_External_multisrch2, (Odr_fun) z_MultipleSearchTerms_2}, {{1, 2, 840, 10003, 16, 2, -1}, Z_External_CQL, (Odr_fun) z_InternationalString}, + {{1, 2, 840, 10003, 9, 1,-1}, Z_External_persistentResultSet, (Odr_fun)z_PRPersistentResultSet}, + {{1, 2, 840, 10003, 9, 2,-1}, Z_External_persistentQuery, (Odr_fun)z_PQueryPersistentQuery}, + {{1, 2, 840, 10003, 9, 3,-1}, Z_External_periodicQuerySchedule, (Odr_fun)z_PQSPeriodicQuerySchedule}, + {{1, 2, 840, 10003, 9, 6,-1}, Z_External_exportSpecification, (Odr_fun)z_ESExportSpecification}, + {{1, 2, 840, 10003, 9, 7,-1}, Z_External_exportInvocation, (Odr_fun)z_EIExportInvocation}, {{-1}, 0, 0} }; @@ -152,6 +157,17 @@ int z_External(ODR o, Z_External **p, int opt, const char *name) (Odr_fun)z_InternationalString, 0}, {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_OCLCUserInfo, (Odr_fun)z_OCLC_UserInformation, 0}, + {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_persistentResultSet, + (Odr_fun)z_PRPersistentResultSet, 0}, + + {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_persistentQuery, + (Odr_fun)z_PQueryPersistentQuery, 0}, + {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_periodicQuerySchedule, + (Odr_fun)z_PQSPeriodicQuerySchedule, 0}, + {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_exportSpecification, + (Odr_fun)z_ESExportSpecification, 0}, + {ODR_EXPLICIT, ODR_CONTEXT, 0, Z_External_exportInvocation, + (Odr_fun)z_EIExportInvocation, 0}, {-1, -1, -1, -1, 0, 0} };