Ignore zoomst10
[yaz-moved-to-github.git] / zoom / zoomtst8.c
index 81c1173..9c73d05 100644 (file)
@@ -1,8 +1,8 @@
-/*
- * $Id: zoomtst8.c,v 1.1 2001-12-30 22:21:11 adam Exp $
- *
- * Asynchronous multi-target client doing scan
- */
+/* $Id: zoomtst8.c,v 1.5 2006-04-21 10:28:08 adam Exp $  */
+
+/** \file zoomtst8.c
+    \brief Asynchronous multi-target client doing scan
+*/
 
 #include <stdio.h>
 #include <string.h>
@@ -21,9 +21,9 @@ int main(int argc, char **argv)
 
     if (argc < 3)
     {
-       fprintf (stderr, "usage:\n%s target1 target2 ... targetN scan\n",
-                *argv);
-       exit (1);
+        fprintf (stderr, "usage:\n%s target1 target2 ... targetN scan\n",
+                 *argv);
+        exit (1);
     }
     if (no > 500)
         no = 500;
@@ -34,15 +34,21 @@ int main(int argc, char **argv)
     /* connect to all */
     for (i = 0; i<no; i++)
     {
-       /* create connection - pass options (they are the same for all) */
-       z[i] = ZOOM_connection_create (o);
+        /* create connection - pass options (they are the same for all) */
+        z[i] = ZOOM_connection_create (o);
 
-       /* connect and init */
-       ZOOM_connection_connect (z[i], argv[1+i], 0);
+        /* connect and init */
+        ZOOM_connection_connect (z[i], argv[1+i], 0);
+        
     }
-    /* search all */
+    /* scan all */
     for (i = 0; i<no; i++)
+    {
+        /* set number of scan terms to be returned. */
+        ZOOM_connection_option_set (z[i], "number", "7");
+        /* and perform scan */
         s[i] = ZOOM_connection_scan (z[i], argv[argc-1]);
+    }
 
     /* network I/O. pass number of connections and array of connections */
     while (ZOOM_event (no, z))
@@ -50,11 +56,11 @@ int main(int argc, char **argv)
 
     for (i = 0; i<no; i++)
     {
-       int error;
-       const char *errmsg, *addinfo;
-       if ((error = ZOOM_connection_error(z[i], &errmsg, &addinfo)))
-           fprintf (stderr, "%s error: %s (%d) %s\n",
-                    ZOOM_connection_option_get(z[i], "host"),
+        int error;
+        const char *errmsg, *addinfo;
+        if ((error = ZOOM_connection_error(z[i], &errmsg, &addinfo)))
+            fprintf (stderr, "%s error: %s (%d) %s\n",
+                     ZOOM_connection_option_get(z[i], "host"),
                      errmsg, error, addinfo);
         else
         {
@@ -67,7 +73,6 @@ int main(int argc, char **argv)
                 term = ZOOM_scanset_term (s[i], j, &occur, &len);
                 if (term)
                     printf ("%d %.*s %d\n", j, len, term, occur);
-                
             }
         }
     }
@@ -81,3 +86,11 @@ int main(int argc, char **argv)
     ZOOM_options_destroy(o);
     exit (0);
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+