Commented-out OPTIMIZE for discovering mixed stmt/dcl
[ZOOM-Perl-moved-to-github.git] / ZOOM.xs
diff --git a/ZOOM.xs b/ZOOM.xs
index efb4582..92b1db6 100644 (file)
--- a/ZOOM.xs
+++ b/ZOOM.xs
@@ -1,4 +1,4 @@
-/* $Id: ZOOM.xs,v 1.35 2005-12-21 16:54:45 mike Exp $ */
+/* $Id: ZOOM.xs,v 1.39 2006-04-06 12:50:41 mike Exp $ */
 
 #include "EXTERN.h"
 #include "perl.h"
@@ -507,10 +507,72 @@ ZOOM_package_option_set(p, key, val)
        const char *    val
 
 # UNTESTED
+#
+# This has to be called with a single argument which is a _reference_
+# to an array -- rather than directly with an array, which is of
+# course identical to passing arbitrarily many arguments.  This is
+# because there doesn't seem to be a way to do varargs in an XS
+# function.
+#
 int
-ZOOM_event(no, cs)
-       int     no
-       ZOOM_connection *       cs
+ZOOM_event(conns)
+       SV* conns
+       INIT:
+               SV *realconns;
+               I32 n, i;
+               int res;
+               ZOOM_connection cs[100];
+       CODE:
+               /*printf("* in ZOOM_event(%p)\n", conns);*/
+               if (!SvROK(conns)) {
+                       /*printf("* argument is not a reference\n");*/
+                       XSRETURN_IV(-1);
+               }
+               realconns = SvRV(conns);
+               /*printf("* realconns = %p\n", realconns);*/
+               if (SvTYPE(realconns) != SVt_PVAV) {
+                       /*printf("* reference is not to an array\n");*/
+                       XSRETURN_IV(-2);
+               }
+               n = av_len((AV*) realconns);
+               n++; /* The av_len() return-value is zero-based */
+               if (n == 0) {
+                       /*printf("* No connections in referenced array\n");*/
+                       XSRETURN_IV(-3);
+               } else if (n >= sizeof(cs)/sizeof(cs[0])) {
+                       /*printf("* Too many connections (%d)\n", (int) n);*/
+                       XSRETURN_IV(-4);
+               }
+
+               /*printf("* n = %d\n", n);*/
+               for (i = 0; i < n; i++) {
+                   SV **connp = av_fetch((AV*) realconns, i, (I32) 0);
+                   /*printf("* %d of %d: connp = %p\n", (int) i, (int) n,connp);*/
+                   assert(connp != 0);
+                   SV *conn = *connp;
+                   /*printf("* conn = %p\n", conn);*/
+                   /*
+                    * From here on, the tests and assertions seem to
+                    * be ignored: if I pass in a reference to
+                    * something other than a ZOOM_connection, or even
+                    * if I pass a non-reference, the assertions still
+                    * pass and everything seems to work until the
+                    * segmentation fault bites.
+                    */
+                   assert(sv_derived_from(conn, "ZOOM_connection"));
+                   /*printf("* passed assert(isa(ZOOM_connection))\n");*/
+                   assert(SvROK(conn));
+                   /*printf("* passed assert SvROK()\n");*/
+                   SV *sv = (SV*) SvRV(conn);
+                   /*printf("* sv = %p\n", sv);*/
+                   IV tmp = SvIV(sv);
+                   /*printf("* tmp = %d\n", tmp);      */
+                   cs[i] = INT2PTR(ZOOM_connection, tmp);
+                   /*printf("got cs[%d] of %d = %p\n", (int) i, (int) n, cs[i]);*/
+               }
+               RETVAL = ZOOM_event((int) n, cs);
+       OUTPUT:
+               RETVAL
 
 # UNTESTED
 int
@@ -525,6 +587,10 @@ int
 yaz_log_mask_str(str)
        const char *str
 
+int
+yaz_log_module_level(name)
+       const char *name
+
 void
 yaz_log_init(level, prefix, name)
        int level
@@ -561,3 +627,13 @@ yaz_log(level, str)
        CODE:
                yaz_log(level, "%s", str);
 
+# This is also not strictly part of ZOOM
+unsigned long
+yaz_version(version_str, sys_str)
+       char *version_str
+       char *sys_str
+       OUTPUT:
+               RETVAL
+               version_str
+               sys_str
+