Added compiled ASN.1 C files.
[yaz-moved-to-github.git] / z39.50 / zes-pset.c
diff --git a/z39.50/zes-pset.c b/z39.50/zes-pset.c
new file mode 100644 (file)
index 0000000..b9aaaaf
--- /dev/null
@@ -0,0 +1,69 @@
+/* YC 0.2 Tue Feb 29 16:45:07 CET 2000 */
+/* Module-C: ESFormat-PersistentResultSet */
+
+#include <yaz/zes-pset.h>
+
+int z_PRPersistentResultSetEsRequest (ODR o, Z_PRPersistentResultSetEsRequest **p, int opt, const char *name)
+{
+       if (!odr_sequence_begin (o, p, sizeof(**p), name))
+               return opt && odr_ok (o);
+       return
+               odr_implicit_tag (o, odr_null,
+                       &(*p)->toKeep, ODR_CONTEXT, 1, 0, "toKeep") &&
+               odr_explicit_tag (o, z_PROriginPartNotToKeep,
+                       &(*p)->notToKeep, ODR_CONTEXT, 2, 1, "notToKeep") &&
+               odr_sequence_end (o);
+}
+
+int z_PRPersistentResultSetTaskPackage (ODR o, Z_PRPersistentResultSetTaskPackage **p, int opt, const char *name)
+{
+       if (!odr_sequence_begin (o, p, sizeof(**p), name))
+               return opt && odr_ok (o);
+       return
+               odr_implicit_tag (o, odr_null,
+                       &(*p)->originPart, ODR_CONTEXT, 1, 0, "originPart") &&
+               odr_explicit_tag (o, z_PRTargetPart,
+                       &(*p)->targetPart, ODR_CONTEXT, 2, 1, "targetPart") &&
+               odr_sequence_end (o);
+}
+
+int z_PRPersistentResultSet (ODR o, Z_PRPersistentResultSet **p, int opt, const char *name)
+{
+       static Odr_arm arm[] = {
+               {ODR_IMPLICIT, ODR_CONTEXT, 1, Z_PRPersistentResultSet_esRequest,
+               (Odr_fun) z_PRPersistentResultSetEsRequest, "esRequest"},
+               {ODR_IMPLICIT, ODR_CONTEXT, 2, Z_PRPersistentResultSet_taskPackage,
+               (Odr_fun) z_PRPersistentResultSetTaskPackage, "taskPackage"},
+               {-1, -1, -1, -1, (Odr_fun) 0, 0}
+       };
+       if (!odr_initmember(o, p, sizeof(**p)))
+               return opt && odr_ok(o);
+       if (odr_choice(o, arm, &(*p)->u, &(*p)->which, name))
+               return 1;
+       *p = 0;
+       return opt && odr_ok(o);
+}
+
+int z_PROriginPartNotToKeep (ODR o, Z_PROriginPartNotToKeep **p, int opt, const char *name)
+{
+       if (!odr_sequence_begin (o, p, sizeof(**p), name))
+               return opt && odr_ok (o);
+       return
+               odr_implicit_tag (o, z_InternationalString,
+                       &(*p)->originSuppliedResultSet, ODR_CONTEXT, 1, 1, "originSuppliedResultSet") &&
+               odr_implicit_tag (o, odr_integer,
+                       &(*p)->replaceOrAppend, ODR_CONTEXT, 2, 1, "replaceOrAppend") &&
+               odr_sequence_end (o);
+}
+
+int z_PRTargetPart (ODR o, Z_PRTargetPart **p, int opt, const char *name)
+{
+       if (!odr_sequence_begin (o, p, sizeof(**p), name))
+               return opt && odr_ok (o);
+       return
+               odr_implicit_tag (o, z_InternationalString,
+                       &(*p)->targetSuppliedResultSet, ODR_CONTEXT, 1, 1, "targetSuppliedResultSet") &&
+               odr_implicit_tag (o, odr_integer,
+                       &(*p)->numberOfRecords, ODR_CONTEXT, 2, 1, "numberOfRecords") &&
+               odr_sequence_end (o);
+}