Use term Windows rather than win32
[yaz-moved-to-github.git] / zoom / zoomtst8.c
index 81c1173..e871813 100644 (file)
@@ -1,7 +1,6 @@
-/*
- * $Id: zoomtst8.c,v 1.1 2001-12-30 22:21:11 adam Exp $
- *
- * Asynchronous multi-target client doing scan
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) Index Data
+ * See the file LICENSE for details.
  */
 
 #include <stdio.h>
@@ -21,9 +20,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 +33,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++)
-        s[i] = ZOOM_connection_scan (z[i], argv[argc-1]);
+    {
+        /* 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,24 +55,23 @@ 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
         {
             int j;
             printf ("%s\n", ZOOM_connection_option_get(z[i], "host"));
-            for (j = 0; j<ZOOM_scanset_size (s[i]); j++)
+            for (j = 0; j < (int) ZOOM_scanset_size (s[i]); j++)
             {
-                int occur, len;
+                size_t occur, len;
                 const char *term;
                 term = ZOOM_scanset_term (s[i], j, &occur, &len);
                 if (term)
-                    printf ("%d %.*s %d\n", j, len, term, occur);
-                
+                    printf ("%d %.*s %d\n", j, (int) len, term, (int) occur);
             }
         }
     }
@@ -81,3 +85,12 @@ int main(int argc, char **argv)
     ZOOM_options_destroy(o);
     exit (0);
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+