readline can be desactivated
[calc.git] / calc.c
diff --git a/calc.c b/calc.c
index f57f1a455dfba634e1ef23971892dd790ed55616..d36111580c42dd49f1688850cc8aa732466bea9b 100644 (file)
--- a/calc.c
+++ b/calc.c
@@ -1,21 +1,22 @@
 /* depend: */
 /* cflags: */
-/* linker: atoi.o debug.o fdprintf.o parser.o -lm */
+/* linker: debug.o fdprintf.o parser.o -lm -lreadline */
 
-//#include <malloc.h>
+#include <malloc.h>
 #include <stddef.h>
 #include <stdio.h>
 #include <unistd.h>
 
-#include "atoi.h"
+#include <readline/readline.h>
+#include <readline/history.h>
+
 #include "debug.h"
 #include "fdprintf.h"
 #include "parser.h"
 
 /* constants */
 
-//#define BUFFER_SIZE 4096
-#define BUFFER_SIZE 256
+#define BUFFER_SIZE 4096
 
 /* macros */
 
@@ -26,6 +27,7 @@
 /* gobal variables */
 
 char *progname = NULL;
+int mode = 1;
 int precision = 6;
 
 /* help function */
@@ -35,6 +37,7 @@ int usage (int ret)
     int fd = ret ? stdfderr : stdfdout;
     fdprintf (fd, "usage: %s\n", progname);
     fdprintf (fd, " -h : help message\n");
+    fdprintf (fd, " -n : no readline mode (%s)\n", mode ? "yes" : "no");
     fdprintf (fd, " -p : precision (%d)\n", precision);
     fdprintf (fd, " -v : verbose level (%d)\n", verbose);
 
@@ -43,11 +46,11 @@ int usage (int ret)
 
 /* main function */
 
-int main (int argc, char *argv[]) 
+int main (int argc, char *argv[])
 {
-    char buffer[BUFFER_SIZE + 1] = {0};
-    char *pt = buffer;
-    int i = 0, j = 0, n;
+    char *buffer = NULL;
+    char buffer_static[BUFFER_SIZE + 1] = {0};
+    int i = 0, nb = 1;
     int ret = 0;
 
     /* program name */
@@ -72,6 +75,10 @@ int main (int argc, char *argv[])
         }
         char c = arg[1];
         switch (c) {
+        case 'n':
+            mode = 0;
+            buffer = buffer_static;
+            break;
         case 'p':
             arg = (arg[2]) ? arg + 2 : (--argc > 0) ? *(++argv) : NULL;
             if (arg == NULL) {
@@ -93,50 +100,76 @@ int main (int argc, char *argv[])
             return usage (c != 'h');
         }
     }
-    
+
     /* format */
     char format[8] = "=> %.f\n";
     format[4] = '0' + precision;
 
     /* read from input stream */
 
-    while ((n = read (stdfdin, pt, BUFFER_SIZE - (pt - buffer))) != 0) {
-        VERBOSE (INFO, PRINTOUT ("read %d bytes\n", n));
-        n += (pt - buffer);
-        if ((n == 2) && (buffer[0] == '.')) {
-            return 0;
-        }
+    while (1) {
+        char *line[BUFFER_SIZE] = {0};
 
-        /* look for end of line */
-        for (i = 0, j = 0; i < n; i++) {
-            if (buffer[i] == '\n') {
-                buffer[i] = 0;
-                VERBOSE (INFO, PRINTOUT ("line(%d): %s\n", j, buffer + j));
-                element_t *element = parser (buffer + j, NULL, 0);
-                if (element == ERROR_OP) {
-                    VERBOSE (WARNING, PRINTOUT ("error while parsing: %s\n", buffer));
-                    ret = 1;
-                       } else {
-                    VERBOSE (INFO, print_element (element, 0));
-                    PRINTOUT (format, evaluate_element (element, 0));
-                    delelement (element);
-                    ret = 0;
+        if (mode) {
+            if ((buffer = readline ("<= ")) == NULL) {
+                break;
+            }
+
+            /* check empty line */
+            if (strlen (buffer) == 0) {
+                free (buffer);
+                continue;
+            } else if (strcmp (buffer, ".") == 0) {
+                break;
+            }
+            line[0] = buffer;
+
+            /* add line into history */
+            add_history (buffer);
+            VERBOSE (INFO, PRINTOUT ("line (%d): '%s'\n", where_history (), buffer));
+            if (where_history () == 10) {
+                HIST_ENTRY *last = remove_history (0);
+                if (last) {
+                    free_history_entry (last);
                 }
-                //fsync (stdfdout);
-                j = i + 1;
             }
+        } else {
+           if (read (stdfdin, buffer, BUFFER_SIZE) == 0) {
+               break;
+           }
+           nb = 0;
+           char *pt = line[nb++] = buffer;
+           while (*pt++ != '\0') {
+               if (*pt == '\n') {
+                   *pt = '\0';
+                   line[nb++] = ++pt;
+               }
+           }
+           VERBOSE (INFO, PRINTOUT ("line: '%s'\n", buffer));
         }
 
-        /* keep remainding */
-        if (j < n) {
-            for (i = 0; i < n - j; i++) {
-                buffer[i] = buffer[i + j];
+        /* look for end of line */
+        for (i = 0; (i < nb) && (ret != 1); i++) {
+            if (*line[i] == '\0') {
+                continue;
             }
-            pt = buffer + n - j;
-            for (i = n - j; i < BUFFER_SIZE; i++) {
-                buffer[i] = 0;
+            element_t *element = parser (line[i], NULL, 0);
+            if (element == ERROR_OP) {
+                VERBOSE (WARNING, PRINTOUT ("error while parsing: %s\n", line[i]));
+                ret = 1;
+            } else {
+                VERBOSE (INFO, print_element (element, 0));
+                PRINTOUT (format, evaluate_element (element, 0));
+                delelement (element);
+                ret = 0;
             }
         }
+
+        if (mode) {
+            free (buffer);
+        } else {
+            memset (buffer, 0, BUFFER_SIZE);
+        }
     }
 
     return ret;
@@ -193,7 +226,10 @@ int main (int argc, char *argv[])
 // test: echo "pow (2)" | calc.exe | grep -q 'error'
 // test: echo "1.23456789" | calc.exe -p 3 | grep -q '1\.234'
 // test: echo . | calc.exe
-// test: echo -e '1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1\n1 + 1' | ./calc.exe | grep -q 6.4e1
+// test: echo -e '1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1\n1 + 1' | calc.exe -n | grep -q 6.4e1
+// test: echo -e '1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1\n1 + 1' | calc.exe -n | grep -q 2
+// test: echo -e '1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1\n1 + 1' | calc.exe | grep -q 6.4e1
+// test: echo -e '1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1\n1 + 1' | calc.exe | grep -q 2
 // test: echo -e '-cos (1)\n1 + 1\n1 - 1\n1 * 1\n1 / 1\n3%2\n2^2\nsqrt (2)\ncos (0)\nsin (0)\natan (0)\nlog (1)\nexp (1)\nhelp\nquit' | calc.exe -v 3 | grep -q bye
 // test: echo -e '1 +\n1 -\n1 * 1\n1 /\n3%\n2^\nsqrt ()\ncos ()\nsin ()\natan ()\nlog ()\nexp ()\n1 + (' | calc.exe |grep -c error |xargs test 11 =