From 4ebb00c5c13152f7c6742737ed1547b131af893b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 22 Jul 2005 06:23:14 +0000 Subject: [PATCH] Implemented 'show all' command. Bug #398. Patch by Rob Styles. --- client/client.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/client/client.c b/client/client.c index f251ae2..09d68f5 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.293 2005-06-30 08:34:01 adam Exp $ + * $Id: client.c,v 1.294 2005-07-22 06:23:14 adam Exp $ */ #include @@ -133,6 +133,7 @@ static int scan_stepSize = 0; static int scan_position = 1; static int scan_size = 20; static char cur_host[200]; +static int last_hit_count = 0; typedef enum { QueryType_Prefix, @@ -1668,6 +1669,7 @@ static int process_searchResponse(Z_SearchResponse *res) else printf("Search was a bloomin' failure.\n"); printf("Number of hits: %d", *res->resultCount); + last_hit_count = *res->resultCount; if (setnumber >= 0) printf (", setno %d", setnumber); printf ("\n"); @@ -2558,7 +2560,15 @@ static void parse_show_args(const char *arg_c, char *setstring, *p = '\0'; } if (*arg) - *start = atoi(arg); + { + if (!strcmp(arg, "all")) + { + *number = last_hit_count; + *start = 1; + } + else + *start = atoi(arg); + } if (p && (p=strchr(p+1, '+'))) strcpy (setstring, p+1); else if (setnumber >= 0) @@ -2666,6 +2676,7 @@ static void close_session (void) odr_reset(out); odr_reset(in); odr_reset(print); + last_hit_count = 0; } void process_close(Z_Close *req) -- 1.7.10.4