From d718b7972b80d034846b2b95f4deba8665395b46 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Mon, 8 Oct 2012 11:03:30 +0200 Subject: [PATCH] Refactor interfaces to handle the differences between search and show command to obtain one code path for these. --- src/client.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/client.h b/src/client.h index 8f62a23..afb18dd 100644 --- a/src/client.h +++ b/src/client.h @@ -78,15 +78,16 @@ int client_prep_connection(struct client *cl, int operation_timeout, int session_timeout, iochan_man_t iochan, const struct timeval *abstime); -void client_start_search(struct client *cl); +int client_start_search(struct client *cl); +int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs); void client_set_session(struct client *cl, struct session *se); int client_is_active(struct client *cl); int client_is_active_preferred(struct client *cl); struct client *client_next_in_session(struct client *cl); int client_parse_query(struct client *cl, const char *query, - facet_limits_t facet_limits, const char *startrecs, - const char *maxrecs, + facet_limits_t facet_limits, + //const char *startrecs, const char *maxrecs, CCL_bibset bibset); Odr_int client_get_hits(struct client *cl); Odr_int client_get_approximation(struct client *cl); @@ -106,7 +107,7 @@ void client_unlock(struct client *c); int client_has_facet(struct client *cl, const char *name); void client_check_preferred_watch(struct client *cl); -void client_reingest(struct client *cl); +int client_reingest(struct client *cl); const char *client_get_facet_limit_local(struct client *cl, struct session_database *sdb, int *l, -- 1.7.10.4