X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=zoom%2Fzoomtst7.c;h=9a317bd108370f07677b5c1493057ef7c63e0767;hp=235b470e771ebf8782873e07e0a93bb6cd005cba;hb=d84e4c3cd444d04aee7beeadb5bb0ae061ee24c9;hpb=dc4414aeda179bc8ebe3fc46ac53e4a24d265d16 diff --git a/zoom/zoomtst7.c b/zoom/zoomtst7.c index 235b470..9a317bd 100644 --- a/zoom/zoomtst7.c +++ b/zoom/zoomtst7.c @@ -1,8 +1,7 @@ -/* $Id: zoomtst7.c,v 1.19 2007-04-17 20:26:19 adam Exp $ */ - -/** \file zoomtst7.c - \brief Mix of operations -*/ +/* This file is part of the YAZ toolkit. + * Copyright (C) Index Data + * See the file LICENSE for details. + */ #include #include @@ -29,7 +28,7 @@ int main(int argc, char **argv) printf ("error - couldn't connect?\n"); exit (1); } - + ZOOM_connection_destroy (z); for (block = 0; block < 3; block++) @@ -56,15 +55,15 @@ int main(int argc, char **argv) sprintf (host, "localhost:9999/%d", i); z = ZOOM_connection_create (o); ZOOM_connection_connect (z, host, 0); - + for (j = 0; j < 10; j++) { ZOOM_record recs[2]; char query[40]; ZOOM_query s = ZOOM_query_create (); - + sprintf (query, "i%dr%d", i, j); - + if (ZOOM_query_prefix (s, query)) { printf ("bad PQF: %s\n", query); @@ -72,11 +71,11 @@ int main(int argc, char **argv) } ZOOM_options_set (o, "start", "0"); ZOOM_options_set (o, "count", "0"); - + r[j] = ZOOM_connection_search (z, s); /* non-piggy */ - + ZOOM_resultset_records (r[j], recs, 0, 2); /* first two */ - + ZOOM_resultset_records (r[j], recs, 1, 2); /* third */ ZOOM_resultset_records (r[j], recs, 0, 0); /* ignored */ @@ -89,7 +88,7 @@ int main(int argc, char **argv) exit (1); } } - + ZOOM_query_destroy (s); printf ("."); @@ -115,15 +114,15 @@ int main(int argc, char **argv) sprintf (host, "localhost:9999/%d", i); z = ZOOM_connection_create (o); ZOOM_connection_connect (z, host, 0); - + for (j = 0; j < 10; j++) { char query[40]; - + sprintf (query, "i%dr%d", i, j); - + ZOOM_options_set (o, "count", "0"); - + r[j] = ZOOM_connection_search_pqf (z, query); printf ("."); @@ -133,7 +132,7 @@ int main(int argc, char **argv) } ZOOM_connection_destroy (z); - + for (j = 0; j < 10; j++) { ZOOM_resultset_records (r[j], 0, 0, 1); @@ -160,14 +159,15 @@ int main(int argc, char **argv) while (ZOOM_event (1, &z)) ; printf (" scan size = %ld\n", (long) ZOOM_scanset_size(scan)); - for (j = 0; j