X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Ftabcomplete.c;h=31c696e2be80567dbd5baed15ce2d97771c8a1c0;hp=9513965ec4114e992c350a7381869e1b82567e69;hb=a95e1c4f3d0f4edad819cf20832fbab228db81d3;hpb=2984a4a74dbbe7aaf4f07788ae4785041cf6004a diff --git a/client/tabcomplete.c b/client/tabcomplete.c index 9513965..31c696e 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -1,116 +1,153 @@ -#include "tabcomplete.h" +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2010 Index Data + * See the file LICENSE for details. + */ + #include -#include #include +#include +#include "tabcomplete.h" +#include -/* ***************************************************************************** +/* *************************************************************************** * - * generic compleater + * generic completer * - * *****************************************************************************/ - -char* complete_from_list(char* completions[], char *text, int state) { - static idx; - if(state==0) { - idx = 0; - } - for(; completions[idx]; ++ idx) { - if(!strncmp(completions[idx],text,strlen(text))) { - ++idx; /* skip this entry on the next run */ - return (char*)strdup(completions[idx-1]); - }; - }; - return NULL; -}; - - -/* ***************************************************************************** + * ***************************************************************************/ + +char *complete_from_list(const char** completions, + const char *text, int state) +{ +#if HAVE_READLINE_READLINE_H + static int idx; + + if (!completions) + return NULL; + if (state==0) + idx = 0; + for(; completions[idx]; ++ idx) { + if(! +#ifdef WIN32 + _strnicmp +#else + strncasecmp +#endif + (completions[idx],text,strlen(text))) { + ++idx; /* skip this entry on the next run */ + return (char*)strdup(completions[idx-1]); + }; + }; +#endif + return NULL; +} + + +/* *************************************************************************** * * code for getting a list of valid strings from the oid subsystem * - * *****************************************************************************/ + * ***************************************************************************/ typedef struct { - oid_class oclass; - char** values; - size_t index; - size_t max; + int oclass; + const char** values; + size_t index; + size_t max; } oid_callback_t; /*! - This is the call back function given to oid_trav... it updates the list of pointers into the oid - owned data + This is the call back function given to oid_trav... it updates the list + of pointers into the oid owned data */ -void oid_loader(struct oident* oid, void* data_) { - oid_callback_t* data=(oid_callback_t*) data_; - - //fprintf(stderr,"ja7: called with %d: %s\n",oid->oclass,oid->desc); - if((oid->oclass == CLASS_GENERAL) || (oid->oclass == data->oclass)) { - if(data->index==data->max) { - data->values=(char**)realloc(data->values,((data->max+1)*2)*sizeof(char*)); - data->max=(data->max+1)*2 - 1; - }; - data->values[data->index]=oid->desc; - ++data->index; - } -}; - -char** build_list_for_oclass(oid_class oclass) { - oid_callback_t data; - data.values = calloc(10,sizeof(char*)); - data.index = 0; - data.max = 9; - data.oclass = oclass; - - oid_trav(oid_loader, &data); - - data.values[data.index]=0; - return data.values; -}; - -/* ***************************************************************************** +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) + { + 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; + } +} + +const char** build_list_for_oclass(oid_class oclass) +{ + oid_callback_t data; + data.values = (const char **) calloc(10,sizeof(char*)); + data.index = 0; + data.max = 9; + data.oclass = oclass; + + yaz_oid_trav(yaz_oid_std(), oid_loader, &data); + + data.values[data.index]=0; + return data.values; +} + +/* *************************************************************************** * - * the compleater functions + * the completer functions * - * *****************************************************************************/ - -char* complete_querytype(char *text, int state) { - char* querytypes[] = {"ccl2rpn","prefix","cclrpn","ccl",0}; - return complete_from_list(querytypes,text,state); -}; - - -char* complete_format(char* text, int state) { - char** list=build_list_for_oclass(CLASS_RECSYN); - char* res=complete_from_list(list,text,state); - - free(list); - return res; -}; - -char* complete_schema(char* text, int state) { - char** list=build_list_for_oclass(CLASS_SCHEMA); - char* res=complete_from_list(list,text,state); - - free(list); - return res; -}; - - -char* complete_attributeset(char* text, int state) { - char** list=build_list_for_oclass(CLASS_ATTSET); - char* res=complete_from_list(list,text,state); - - free(list); - return res; -}; + * ***************************************************************************/ + +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); +} + +char* complete_auto_reconnect(const char *text, int state) +{ + static const char* querytypes[] = {"on","off",0}; + 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); + 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); + return res; +} + + +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); + return res; +} + /* * Local variables: - * tab-width: 4 * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil * End: + * vim: shiftwidth=4 tabstop=8 expandtab */ +