4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / bin / sh / histedit.c
index 0640e43..4e616a1 100644 (file)
@@ -1,18 +1,41 @@
+/*-
+ * Copyright (c) 1993
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Kenneth Almquist.
+ *
+ * %sccs.include.redist.c%
+ */
+
+#ifndef lint
+static char sccsid[] = "@(#)histedit.c 8.1 (Berkeley) %G%";
+#endif /* not lint */
+
 /*
  * Editline and history functions (and glue).
  */
 /*
  * Editline and history functions (and glue).
  */
+#include <sys/param.h>
+#include <paths.h>
 #include <stdio.h>
 #include <stdio.h>
+#include "shell.h"
 #include "parser.h"
 #include "parser.h"
+#include "var.h"
 #include "options.h"
 #include "options.h"
+#include "mystring.h"
 #include "error.h"
 #include "error.h"
-
 #include "histedit.h"
 #include "histedit.h"
+#include "memalloc.h"
+
+#define MAXHISTLOOPS   4       /* max recursions through fc */
+#define DEFEDITOR      "ed"    /* default editor *should* be $EDITOR */
 
 History *hist; /* history cookie */
 EditLine *el;  /* editline cookie */
 
 History *hist; /* history cookie */
 EditLine *el;  /* editline cookie */
+int displayhist;
 static FILE *el_in, *el_out;
 
 static FILE *el_in, *el_out;
 
-extern int is_interactive;
+STATIC char *fc_replace __P((const char *, char *, char *));
 
 /*
  * Set history and editing status.  Called whenever the status may
 
 /*
  * Set history and editing status.  Called whenever the status may
@@ -20,7 +43,9 @@ extern int is_interactive;
  */
 histedit() {
 
  */
 histedit() {
 
-       if (is_interactive) {
+#define editing (Eflag || Vflag)
+
+       if (iflag) {
                if (!hist) {
                        /*
                         * turn history on
                if (!hist) {
                        /*
                         * turn history on
@@ -34,7 +59,7 @@ histedit() {
                        else
                                out2str("sh: can't initialize history\n");
                }
                        else
                                out2str("sh: can't initialize history\n");
                }
-               if (Eflag && !el && isatty(0)) { /* && isatty(2) ??? */
+               if (editing && !el && isatty(0)) { /* && isatty(2) ??? */
                        /*
                         * turn editing on
                         */
                        /*
                         * turn editing on
                         */
@@ -48,21 +73,25 @@ histedit() {
                        el = el_init(arg0, el_in, el_out);
                        if (el != NULL) {
                                if (hist)
                        el = el_init(arg0, el_in, el_out);
                        if (el != NULL) {
                                if (hist)
-                                       el_set(el, EL_HIST, history_set, hist);
+                                       el_set(el, EL_HIST, history, hist);
                                el_set(el, EL_PROMPT, getprompt);
                        } else {
 bad:
                                out2str("sh: can't initialize editing\n");
                        }
                        INTON;
                                el_set(el, EL_PROMPT, getprompt);
                        } else {
 bad:
                                out2str("sh: can't initialize editing\n");
                        }
                        INTON;
-                       if (el) /* XXX - -o vi etc... */
-                               el_set(el, EL_EDITOR, "vi");
-               } else if (!Eflag && el) {
+               } else if (!editing && el) {
                        INTOFF;
                        el_end(el);
                        el = NULL;
                        INTON;
                }
                        INTOFF;
                        el_end(el);
                        el = NULL;
                        INTON;
                }
+               if (el) {
+                       if (Vflag)
+                               el_set(el, EL_EDITOR, "vi");
+                       else if (Eflag)
+                               el_set(el, EL_EDITOR, "emacs");
+               }
        } else {
                INTOFF;
                if (el) {       /* no editing if not interactive */
        } else {
                INTOFF;
                if (el) {       /* no editing if not interactive */
@@ -86,6 +115,302 @@ sethistsize() {
                if (cp == NULL || *cp == '\0' || 
                   (histsize = atoi(cp)) < 0)
                        histsize = 100;
                if (cp == NULL || *cp == '\0' || 
                   (histsize = atoi(cp)) < 0)
                        histsize = 100;
-               history_set(hist, H_EVENT, histsize);
+               history(hist, H_EVENT, histsize);
+       }
+}
+
+/*
+ *  This command is provided since POSIX decided to standardize
+ *  the Korn shell fc command.  Oh well...
+ */
+histcmd(argc, argv)
+       char *argv[];
+{
+       extern char *optarg;
+       extern int optind, optopt, optreset;
+       int ch;
+       char *editor = NULL;
+       const HistEvent *he;
+       int lflg = 0, nflg = 0, rflg = 0, sflg = 0;
+       int i;
+       char *firststr, *laststr;
+       int first, last, direction;
+       char *pat = NULL, *repl;        /* ksh "fc old=new" crap */
+       static int active = 0;
+       struct jmploc jmploc;
+       struct jmploc *volatile savehandler;
+       char editfile[MAXPATHLEN + 1];
+       FILE *efp;
+
+       if (hist == NULL)
+               error("history not active");
+       
+       if (argc == 1)
+               error("missing history argument");
+
+       optreset = 1; optind = 1; /* initialize getopt */
+       while (not_fcnumber(argv[optind]) &&
+             (ch = getopt(argc, argv, ":e:lnrs")) != EOF)
+               switch ((char)ch) {
+               case 'e':
+                       editor = optarg;
+                       break;
+               case 'l':
+                       lflg = 1;
+                       break;
+               case 'n':
+                       nflg = 1;
+                       break;
+               case 'r':
+                       rflg = 1;
+                       break;
+               case 's':
+                       sflg = 1;
+                       break;
+               case ':':
+                       error("option -%c expects argument", optopt);
+               case '?':
+               default:
+                       error("unknown option: -%c", optopt);
+               }
+       argc -= optind, argv += optind;
+
+       /*
+        * If executing...
+        */
+       if (lflg == 0 || editor || sflg) {
+               lflg = 0;       /* ignore */
+               editfile[0] = '\0';
+               /*
+                * Catch interrupts to reset active counter and
+                * cleanup temp files.
+                */
+               if (setjmp(jmploc.loc)) {
+                       active = 0;
+                       if (*editfile)
+                               unlink(editfile);
+                       handler = savehandler;
+                       longjmp(handler->loc, 1);
+               }
+               savehandler = handler;
+               handler = &jmploc;
+               if (++active > MAXHISTLOOPS) {
+                       active = 0;
+                       displayhist = 0;
+                       error("called recursively too many times");
+               }
+               /*
+                * Set editor.
+                */
+               if (sflg == 0) {
+                       if (editor == NULL &&
+                           (editor = bltinlookup("FCEDIT", 1)) == NULL &&
+                           (editor = bltinlookup("EDITOR", 1)) == NULL)
+                               editor = DEFEDITOR;
+                       if (editor[0] == '-' && editor[1] == '\0') {
+                               sflg = 1;       /* no edit */
+                               editor = NULL;
+                       }
+               }
+       }
+
+       /*
+        * If executing, parse [old=new] now
+        */
+       if (lflg == 0 && argc > 0 && 
+            ((repl = strchr(argv[0], '=')) != NULL)) {
+               pat = argv[0];
+               *repl++ = '\0';
+               argc--, argv++;
+       }
+       /*
+        * determine [first] and [last]
+        */
+       switch (argc) {
+       case 0:
+               firststr = lflg ? "-16" : "-1";
+               laststr = "-1";
+               break;
+       case 1:
+               firststr = argv[0];
+               laststr = lflg ? "-1" : argv[0];
+               break;
+       case 2:
+               firststr = argv[0];
+               laststr = argv[1];
+               break;
+       default:
+               error("too many args");
+       }
+       /*
+        * Turn into event numbers.
+        */
+       first = str_to_event(firststr, 0);
+       last = str_to_event(laststr, 1);
+
+       if (rflg) {
+               i = last;
+               last = first;
+               first = i;
+       }
+       /*
+        * XXX - this should not depend on the event numbers
+        * always increasing.  Add sequence numbers or offset 
+        * to the history element in next (diskbased) release.
+        */
+       direction = first < last ? H_PREV : H_NEXT;
+
+       /*
+        * If editing, grab a temp file.
+        */
+       if (editor) {
+               int fd;
+               INTOFF;         /* easier */
+               sprintf(editfile, "%s/_shXXXXXX", _PATH_TMP);
+               if ((fd = mkstemp(editfile)) < 0)
+                       error("can't create temporary file %s", editfile);
+               if ((efp = fdopen(fd, "w")) == NULL) {
+                       close(fd);
+                       error("can't allocate stdio buffer for temp\n");
+               }
+       }
+
+       /*
+        * Loop through selected history events.  If listing or executing,
+        * do it now.  Otherwise, put into temp file and call the editor
+        * after.
+        *
+        * The history interface needs rethinking, as the following
+        * convolutions will demonstrate.
+        */
+       history(hist, H_FIRST);
+       he = history(hist, H_NEXT_EVENT, first);
+       for (;he != NULL; he = history(hist, direction)) {
+               if (lflg) {
+                       if (!nflg)
+                               out1fmt("%5d ", he->num);
+                       out1str(he->str);
+               } else {
+                       char *s = pat ? 
+                          fc_replace(he->str, pat, repl) : (char *)he->str;
+
+                       if (sflg) {
+                               if (displayhist) {
+                                       out2str(s);
+                               }
+                               evalstring(s);
+                               if (displayhist && hist) {
+                                       /*
+                                        *  XXX what about recursive and 
+                                        *  relative histnums.
+                                        */
+                                       history(hist, H_ENTER, s);
+                               }
+                       } else
+                               fputs(s, efp);
+               }
+               /*
+                * At end?  (if we were to loose last, we'd sure be
+                * messed up).
+                */
+               if (he->num == last)
+                       break;
+       }
+       if (editor) {
+               char *editcmd;
+
+               fclose(efp);
+               editcmd = stalloc(strlen(editor) + strlen(editfile) + 2);
+               sprintf(editcmd, "%s %s", editor, editfile);
+               evalstring(editcmd);    /* XXX - should use no JC command */
+               INTON;
+               readcmdfile(editfile);  /* XXX - should read back - quick tst */
+               unlink(editfile);
+       }
+               
+       if (lflg == 0 && active > 0)
+               --active;
+       if (displayhist)
+               displayhist = 0;
+}
+
+STATIC char *
+fc_replace(s, p, r)
+       const char *s;
+       char *p, *r;
+{
+       char *dest;
+       int plen = strlen(p);
+
+       STARTSTACKSTR(dest);
+       while (*s) {
+               if (*s == *p && strncmp(s, p, plen) == 0) {
+                       while (*r)
+                               STPUTC(*r++, dest);
+                       s += plen;
+                       *p = '\0';      /* so no more matches */
+               } else
+                       STPUTC(*s++, dest);
+       }
+       STACKSTRNUL(dest);
+       dest = grabstackstr(dest);
+
+       return (dest);
+}
+
+not_fcnumber(s)
+        char *s;
+{
+        if (*s == '-')
+                s++;
+       return (!is_number(s));
+}
+
+str_to_event(str, last)
+       char *str;
+       int last;
+{
+       const HistEvent *he;
+       char *s = str;
+       int relative = 0;
+       int i, j;
+
+       he = history(hist, H_FIRST);
+       switch (*s) {
+       case '-':
+               relative = 1;
+               /*FALLTHROUGH*/
+       case '+':
+               s++;
+       }
+       if (is_number(s)) {
+               i = atoi(s);
+               if (relative) {
+                       while (he != NULL && i--) {
+                               he = history(hist, H_NEXT);
+                       }
+                       if (he == NULL)
+                               he = history(hist, H_LAST);
+               } else {
+                       he = history(hist, H_NEXT_EVENT, i);
+                       if (he == NULL) {
+                               /*
+                                * the notion of first and last is
+                                * backwards to that of the history package
+                                */
+                               he = history(hist, last ? H_FIRST : H_LAST);
+                       }
+               }
+               if (he == NULL)
+                       error("history number %s not found (internal error)",
+                              str);
+       } else {
+               /*
+                * pattern 
+                */
+               he = history(hist, H_PREV_STR, str);
+               if (he == NULL)
+                       error("history pattern not found: %s", str);
        }
        }
+       return (he->num);
 }
 }