Added readline and history support to cclsh
authorja7 <ja7>
Sun, 18 Mar 2001 20:45:39 +0000 (20:45 +0000)
committerja7 <ja7>
Sun, 18 Mar 2001 20:45:39 +0000 (20:45 +0000)
ccl/Makefile.am
ccl/cclsh.c

index 5357a20..8843743 100644 (file)
@@ -1,10 +1,10 @@
-## $Id: Makefile.am,v 1.3 2000-04-05 07:39:54 adam Exp $
+## $Id: Makefile.am,v 1.4 2001-03-18 20:45:39 ja7 Exp $
 
 noinst_LTLIBRARIES = libccl.la
 
 noinst_PROGRAMS = cclsh
 
 
 noinst_LTLIBRARIES = libccl.la
 
 noinst_PROGRAMS = cclsh
 
-LIBS =
+LIBS = $(READLINE_LIBS)
 
 INCLUDES=-I$(srcdir)/../include
 
 
 INCLUDES=-I$(srcdir)/../include
 
index 1b01bb8..4d48c4f 100644 (file)
  * Europagate 1995
  *
  * $Log: cclsh.c,v $
  * Europagate 1995
  *
  * $Log: cclsh.c,v $
- * Revision 1.7  2000-10-17 19:50:28  adam
+ * Revision 1.8  2001-03-18 20:45:39  ja7
+ * Added readline and history support to cclsh
+ *
+ * Revision 1.7  2000/10/17 19:50:28  adam
  * Implemented and-list and or-list for CCL module.
  *
  * Revision 1.6  2000/01/31 13:15:21  adam
  * Implemented and-list and or-list for CCL module.
  *
  * Revision 1.6  2000/01/31 13:15:21  adam
 
 #include <yaz/ccl.h>
 
 
 #include <yaz/ccl.h>
 
+
+#if HAVE_READLINE_READLINE_H
+#include <readline/readline.h> 
+#endif
+#if HAVE_READLINE_HISTORY_H
+#include <readline/history.h>
+#endif
+
+
 static int debug = 0;
 static char *prog;
 
 static int debug = 0;
 static char *prog;
 
@@ -168,13 +180,31 @@ int main (int argc, char **argv)
     }
     while (1)
     {
     }
     while (1)
     {
-        char buf[80];
+        char buf[1000];
         int i, error, pos;
         struct ccl_rpn_node *rpn;
 
         int i, error, pos;
         struct ccl_rpn_node *rpn;
 
+#if HAVE_READLINE_READLINE_H
+            char* line_in;
+            line_in=readline("CCLSH>");
+            if (!line_in)
+                break;
+#if HAVE_READLINE_HISTORY_H
+            if (*line_in)
+                add_history(line_in);
+#endif
+           if(strlen(line_in) > 999) {
+             fprintf(stderr,"Input line to long\n");
+             break;
+           };
+            strcpy(buf,line_in);
+            free (line_in);
+#else    
        printf ("CCLSH>"); fflush (stdout);
        printf ("CCLSH>"); fflush (stdout);
-       if (!fgets (buf, 79, stdin))
+       if (!fgets (buf, 999, stdin))
            break;
            break;
+#endif 
+
         for (i = 0; i<1; i++)
         {
            rpn = ccl_find_str (bibset, buf, &error, &pos);
         for (i = 0; i<1; i++)
         {
            rpn = ccl_find_str (bibset, buf, &error, &pos);