ZOOM C: deal with excess bytes HTTPS case YAZ-833
[yaz-moved-to-github.git] / zoom / zoomtst4.c
index a2eb137..3962561 100644 (file)
@@ -1,8 +1,6 @@
-/*
- * $Id: zoomtst4.c,v 1.6 2001-11-22 09:45:31 adam Exp $
- *
- * Asynchronous multi-target going through proxy doing search and retrieve
- * using present.
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) Index Data
+ * See the file LICENSE for details.
  */
 
 #include <stdio.h>
@@ -14,7 +12,7 @@
 const char *my_callback (void *handle, const char *name)
 {
     if (!strcmp (name, "async"))
-       return "1";
+        return "1";
     return 0;
 }
 
@@ -29,9 +27,9 @@ int main(int argc, char **argv)
 
     if (argc < 4)
     {
-       fprintf (stderr, "usage:\n%s proxy target1 .. targetN query\n",
-                *argv);
-       exit (2);
+        fprintf (stderr, "usage:\n%s proxy target1 .. targetN query\n",
+                 *argv);
+        exit (2);
     }
     if (no > 500)
         no = 500;
@@ -42,41 +40,43 @@ int main(int argc, char **argv)
     /* get 20 (at most) records from offset 5 */
     ZOOM_options_set (o, "start", "5");
     ZOOM_options_set (o, "count", "20");
+    ZOOM_options_set (o, "schema", "gils-schema");
+    ZOOM_options_set (o, "elementSetName", "F");
 
     /* set proxy */
     ZOOM_options_set (o, "proxy", argv[1]);
-    
+
     /* create query */
     q = ZOOM_query_create ();
     if (ZOOM_query_prefix (q, argv[argc-1]))
     {
-       printf ("bad PQF: %s\n", argv[argc-1]);
-       exit (1);
+        printf ("bad PQF: %s\n", argv[argc-1]);
+        exit (1);
     }
     /* connect - and search all */
     for (i = 0; i<no; i++)
     {
-       z[i] = ZOOM_connection_create (o);
-       ZOOM_connection_connect (z[i], argv[i+2], 0);
+        z[i] = ZOOM_connection_create (o);
+        ZOOM_connection_connect (z[i], argv[i+2], 0);
         r[i] = ZOOM_connection_search (z[i], q);
     }
 
     /* network I/O */
     while (ZOOM_event (no, z))
-       ;
+        ;
 
     /* handle errors */
     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
-           printf ("%s: %d hits\n", ZOOM_connection_option_get(z[i], "host"),
-                    ZOOM_resultset_size(r[i]));
+            printf ("%s: %ld hits\n", ZOOM_connection_option_get(z[i], "host"),
+                    (long) ZOOM_resultset_size(r[i]));
     }
 
     /* destroy stuff and exit */
@@ -89,3 +89,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
+ */
+