X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Ftabcomplete.c;h=697077839e4f42f0a21dd18ea17696077fbd447f;hp=bad183dc68dc2f2f0b6abcf2788b06c021c28bc6;hb=280940bf70395d3bccf45208efc302b6a7daf03e;hpb=379504a233e3e2cc85bca1e7b6d864f1395aec7c diff --git a/client/tabcomplete.c b/client/tabcomplete.c index bad183d..6970778 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -1,7 +1,10 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2013 Index Data * See the file LICENSE for details. */ +#if HAVE_CONFIG_H +#include +#endif #include #include @@ -12,19 +15,19 @@ /* *************************************************************************** * - * generic completer - * + * generic completer + * * ***************************************************************************/ char *complete_from_list(const char** completions, const char *text, int state) -{ +{ #if HAVE_READLINE_READLINE_H static int idx; - - if (!completions) + + if (!completions) return NULL; - if (state==0) + if (state==0) idx = 0; for(; completions[idx]; ++ idx) { if(! @@ -32,9 +35,9 @@ char *complete_from_list(const char** completions, _strnicmp #else strncasecmp -#endif +#endif (completions[idx],text,strlen(text))) { - ++idx; /* skip this entry on the next run */ + ++idx; /* skip this entry on the next run */ return (char*)strdup(completions[idx-1]); }; }; @@ -44,11 +47,11 @@ char *complete_from_list(const char** completions, /* *************************************************************************** - * + * * code for getting a list of valid strings from the oid subsystem - * + * * ***************************************************************************/ - + typedef struct { int oclass; @@ -59,30 +62,30 @@ typedef struct { /*! This is the call back function given to oid_trav... it updates the list - of pointers into the oid owned data + of pointers into the oid owned data */ void oid_loader(const Odr_oid *oid, oid_class oclass, const char *name, void* data_) { oid_callback_t* data=(oid_callback_t*) data_; - + if ((oclass == CLASS_GENERAL) || (oclass == data->oclass)) { - if (data->index==data->max) + if (data->index==data->max) { data->values=(const char**) realloc(data->values,((data->max+1)*2)*sizeof(char*)); data->max=(data->max+1)*2 - 1; } data->values[data->index] = name; - ++data->index; + ++data->index; } } const char** build_list_for_oclass(oid_class oclass) -{ - oid_callback_t data; +{ + oid_callback_t data; data.values = (const char **) calloc(10,sizeof(char*)); data.index = 0; data.max = 9; @@ -91,43 +94,43 @@ const char** build_list_for_oclass(oid_class oclass) yaz_oid_trav(yaz_oid_std(), oid_loader, &data); data.values[data.index]=0; - return data.values; + return data.values; } /* *************************************************************************** - * - * the completer functions - * + * + * the completer functions + * * ***************************************************************************/ char* complete_querytype(const char *text, int state) { static const char* querytypes[] = {"ccl2rpn","prefix","cclrpn","ccl","cql", "cql2rpn", 0}; - return complete_from_list(querytypes,text,state); + return complete_from_list(querytypes,text,state); } char* complete_auto_reconnect(const char *text, int state) { static const char* querytypes[] = {"on","off",0}; - return complete_from_list(querytypes,text,state); + return complete_from_list(querytypes,text,state); } char* complete_format(const char* text, int state) { const char** list = build_list_for_oclass(CLASS_RECSYN); - char* res=complete_from_list(list,text,state); - - free(list); + char* res=complete_from_list(list,text,state); + + free(list); return res; } char* complete_schema(const char* text, int state) { const char** list = build_list_for_oclass(CLASS_SCHEMA); - char* res = complete_from_list(list,text,state); - - free(list); + char* res = complete_from_list(list,text,state); + + free(list); return res; } @@ -135,9 +138,9 @@ char* complete_schema(const char* text, int state) char* complete_attributeset(const char* text, int state) { const char** list = build_list_for_oclass(CLASS_ATTSET); - char* res = complete_from_list(list,text,state); - - free(list); + char* res = complete_from_list(list,text,state); + + free(list); return res; }