histedit.c revision 1.20 1 /* $NetBSD: histedit.c,v 1.20 1998/07/28 11:41:55 mycroft Exp $ */
2
3 /*-
4 * Copyright (c) 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Kenneth Almquist.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39 #include <sys/cdefs.h>
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95";
43 #else
44 __RCSID("$NetBSD: histedit.c,v 1.20 1998/07/28 11:41:55 mycroft Exp $");
45 #endif
46 #endif /* not lint */
47
48 #include <sys/param.h>
49 #include <paths.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <unistd.h>
53 /*
54 * Editline and history functions (and glue).
55 */
56 #include "shell.h"
57 #include "parser.h"
58 #include "var.h"
59 #include "options.h"
60 #include "main.h"
61 #include "output.h"
62 #include "mystring.h"
63 #include "myhistedit.h"
64 #include "error.h"
65 #ifndef SMALL
66 #include "eval.h"
67 #include "memalloc.h"
68
69 #define MAXHISTLOOPS 4 /* max recursions through fc */
70 #define DEFEDITOR "ed" /* default editor *should* be $EDITOR */
71
72 History *hist; /* history cookie */
73 EditLine *el; /* editline cookie */
74 int displayhist;
75 static FILE *el_in, *el_out;
76
77 STATIC char *fc_replace __P((const char *, char *, char *));
78
79 /*
80 * Set history and editing status. Called whenever the status may
81 * have changed (figures out what to do).
82 */
83 void
84 histedit()
85 {
86
87 #define editing (Eflag || Vflag)
88
89 if (iflag) {
90 if (!hist) {
91 /*
92 * turn history on
93 */
94 INTOFF;
95 hist = history_init();
96 INTON;
97
98 if (hist != NULL)
99 sethistsize(histsizeval());
100 else
101 out2str("sh: can't initialize history\n");
102 }
103 if (editing && !el && isatty(0)) { /* && isatty(2) ??? */
104 /*
105 * turn editing on
106 */
107 INTOFF;
108 if (el_in == NULL)
109 el_in = fdopen(0, "r");
110 if (el_out == NULL)
111 el_out = fdopen(2, "w");
112 if (el_in == NULL || el_out == NULL)
113 goto bad;
114 el = el_init(arg0, el_in, el_out, el_out);
115 if (el != NULL) {
116 if (hist)
117 el_set(el, EL_HIST, history, hist);
118 el_set(el, EL_PROMPT, getprompt);
119 } else {
120 bad:
121 out2str("sh: can't initialize editing\n");
122 }
123 INTON;
124 } else if (!editing && el) {
125 INTOFF;
126 el_end(el);
127 el = NULL;
128 INTON;
129 }
130 if (el) {
131 if (Vflag)
132 el_set(el, EL_EDITOR, "vi");
133 else if (Eflag)
134 el_set(el, EL_EDITOR, "emacs");
135 }
136 } else {
137 INTOFF;
138 if (el) { /* no editing if not interactive */
139 el_end(el);
140 el = NULL;
141 }
142 if (hist) {
143 history_end(hist);
144 hist = NULL;
145 }
146 INTON;
147 }
148 }
149
150
151 void
152 sethistsize(hs)
153 const char *hs;
154 {
155 int histsize;
156 HistEvent he;
157
158 if (hist != NULL) {
159 if (hs == NULL || *hs == '\0' ||
160 (histsize = atoi(hs)) < 0)
161 histsize = 100;
162 history(hist, &he, H_SETSIZE, histsize);
163 }
164 }
165
166 void
167 setterm(term)
168 const char *term;
169 {
170 if (el != NULL && term != NULL)
171 if (el_set(el, EL_TERMINAL, term) != 0) {
172 outfmt(out2, "sh: Can't set terminal type %s\n", term);
173 outfmt(out2, "sh: Using dumb terminal settings.\n");
174 }
175 }
176
177 /*
178 * This command is provided since POSIX decided to standardize
179 * the Korn shell fc command. Oh well...
180 */
181 int
182 histcmd(argc, argv)
183 int argc;
184 char **argv;
185 {
186 extern char *optarg;
187 extern int optind, optopt, optreset;
188 int ch;
189 char *editor = NULL;
190 HistEvent he;
191 int lflg = 0, nflg = 0, rflg = 0, sflg = 0;
192 int i, retval;
193 char *firststr, *laststr;
194 int first, last, direction;
195 char *pat = NULL, *repl; /* ksh "fc old=new" crap */
196 static int active = 0;
197 struct jmploc jmploc;
198 struct jmploc *volatile savehandler;
199 char editfile[MAXPATHLEN + 1];
200 FILE *efp;
201 #ifdef __GNUC__
202 /* Avoid longjmp clobbering */
203 (void) &editor;
204 (void) &lflg;
205 (void) &nflg;
206 (void) &rflg;
207 (void) &sflg;
208 (void) &firststr;
209 (void) &laststr;
210 (void) &pat;
211 (void) &repl;
212 (void) &efp;
213 (void) &argc;
214 (void) &argv;
215 #endif
216
217 if (hist == NULL)
218 error("history not active");
219
220 if (argc == 1)
221 error("missing history argument");
222
223 optreset = 1; optind = 1; /* initialize getopt */
224 while (not_fcnumber(argv[optind]) &&
225 (ch = getopt(argc, argv, ":e:lnrs")) != -1)
226 switch ((char)ch) {
227 case 'e':
228 editor = optarg;
229 break;
230 case 'l':
231 lflg = 1;
232 break;
233 case 'n':
234 nflg = 1;
235 break;
236 case 'r':
237 rflg = 1;
238 break;
239 case 's':
240 sflg = 1;
241 break;
242 case ':':
243 error("option -%c expects argument", optopt);
244 /* NOTREACHED */
245 case '?':
246 default:
247 error("unknown option: -%c", optopt);
248 /* NOTREACHED */
249 }
250 argc -= optind, argv += optind;
251
252 /*
253 * If executing...
254 */
255 if (lflg == 0 || editor || sflg) {
256 lflg = 0; /* ignore */
257 editfile[0] = '\0';
258 /*
259 * Catch interrupts to reset active counter and
260 * cleanup temp files.
261 */
262 if (setjmp(jmploc.loc)) {
263 active = 0;
264 if (*editfile)
265 unlink(editfile);
266 handler = savehandler;
267 longjmp(handler->loc, 1);
268 }
269 savehandler = handler;
270 handler = &jmploc;
271 if (++active > MAXHISTLOOPS) {
272 active = 0;
273 displayhist = 0;
274 error("called recursively too many times");
275 }
276 /*
277 * Set editor.
278 */
279 if (sflg == 0) {
280 if (editor == NULL &&
281 (editor = bltinlookup("FCEDIT", 1)) == NULL &&
282 (editor = bltinlookup("EDITOR", 1)) == NULL)
283 editor = DEFEDITOR;
284 if (editor[0] == '-' && editor[1] == '\0') {
285 sflg = 1; /* no edit */
286 editor = NULL;
287 }
288 }
289 }
290
291 /*
292 * If executing, parse [old=new] now
293 */
294 if (lflg == 0 && argc > 0 &&
295 ((repl = strchr(argv[0], '=')) != NULL)) {
296 pat = argv[0];
297 *repl++ = '\0';
298 argc--, argv++;
299 }
300 /*
301 * determine [first] and [last]
302 */
303 switch (argc) {
304 case 0:
305 firststr = lflg ? "-16" : "-1";
306 laststr = "-1";
307 break;
308 case 1:
309 firststr = argv[0];
310 laststr = lflg ? "-1" : argv[0];
311 break;
312 case 2:
313 firststr = argv[0];
314 laststr = argv[1];
315 break;
316 default:
317 error("too many args");
318 /* NOTREACHED */
319 }
320 /*
321 * Turn into event numbers.
322 */
323 first = str_to_event(firststr, 0);
324 last = str_to_event(laststr, 1);
325
326 if (rflg) {
327 i = last;
328 last = first;
329 first = i;
330 }
331 /*
332 * XXX - this should not depend on the event numbers
333 * always increasing. Add sequence numbers or offset
334 * to the history element in next (diskbased) release.
335 */
336 direction = first < last ? H_PREV : H_NEXT;
337
338 /*
339 * If editing, grab a temp file.
340 */
341 if (editor) {
342 int fd;
343 INTOFF; /* easier */
344 sprintf(editfile, "%s_shXXXXXX", _PATH_TMP);
345 if ((fd = mkstemp(editfile)) < 0)
346 error("can't create temporary file %s", editfile);
347 if ((efp = fdopen(fd, "w")) == NULL) {
348 close(fd);
349 error("can't allocate stdio buffer for temp");
350 }
351 }
352
353 /*
354 * Loop through selected history events. If listing or executing,
355 * do it now. Otherwise, put into temp file and call the editor
356 * after.
357 *
358 * The history interface needs rethinking, as the following
359 * convolutions will demonstrate.
360 */
361 history(hist, &he, H_FIRST);
362 retval = history(hist, &he, H_NEXT_EVENT, first);
363 for (;retval != -1; retval = history(hist, &he, direction)) {
364 if (lflg) {
365 if (!nflg)
366 out1fmt("%5d ", he.num);
367 out1str(he.str);
368 } else {
369 char *s = pat ?
370 fc_replace(he.str, pat, repl) : (char *)he.str;
371
372 if (sflg) {
373 if (displayhist) {
374 out2str(s);
375 }
376 evalstring(s);
377 if (displayhist && hist) {
378 /*
379 * XXX what about recursive and
380 * relative histnums.
381 */
382 history(hist, &he, H_ENTER, s);
383 }
384 } else
385 fputs(s, efp);
386 }
387 /*
388 * At end? (if we were to lose last, we'd sure be
389 * messed up).
390 */
391 if (he.num == last)
392 break;
393 }
394 if (editor) {
395 char *editcmd;
396
397 fclose(efp);
398 editcmd = stalloc(strlen(editor) + strlen(editfile) + 2);
399 sprintf(editcmd, "%s %s", editor, editfile);
400 evalstring(editcmd); /* XXX - should use no JC command */
401 INTON;
402 readcmdfile(editfile); /* XXX - should read back - quick tst */
403 unlink(editfile);
404 }
405
406 if (lflg == 0 && active > 0)
407 --active;
408 if (displayhist)
409 displayhist = 0;
410 return 0;
411 }
412
413 STATIC char *
414 fc_replace(s, p, r)
415 const char *s;
416 char *p, *r;
417 {
418 char *dest;
419 int plen = strlen(p);
420
421 STARTSTACKSTR(dest);
422 while (*s) {
423 if (*s == *p && strncmp(s, p, plen) == 0) {
424 while (*r)
425 STPUTC(*r++, dest);
426 s += plen;
427 *p = '\0'; /* so no more matches */
428 } else
429 STPUTC(*s++, dest);
430 }
431 STACKSTRNUL(dest);
432 dest = grabstackstr(dest);
433
434 return (dest);
435 }
436
437 int
438 not_fcnumber(s)
439 char *s;
440 {
441 if (s == NULL)
442 return 0;
443 if (*s == '-')
444 s++;
445 return (!is_number(s));
446 }
447
448 int
449 str_to_event(str, last)
450 char *str;
451 int last;
452 {
453 HistEvent he;
454 char *s = str;
455 int relative = 0;
456 int i, retval;
457
458 retval = history(hist, &he, H_FIRST);
459 switch (*s) {
460 case '-':
461 relative = 1;
462 /*FALLTHROUGH*/
463 case '+':
464 s++;
465 }
466 if (is_number(s)) {
467 i = atoi(s);
468 if (relative) {
469 while (retval != -1 && i--) {
470 retval = history(hist, &he, H_NEXT);
471 }
472 if (retval == -1)
473 retval = history(hist, &he, H_LAST);
474 } else {
475 retval = history(hist, &he, H_NEXT_EVENT, i);
476 if (retval == -1) {
477 /*
478 * the notion of first and last is
479 * backwards to that of the history package
480 */
481 retval = history(hist, &he,
482 last ? H_FIRST : H_LAST);
483 }
484 }
485 if (retval == -1)
486 error("history number %s not found (internal error)",
487 str);
488 } else {
489 /*
490 * pattern
491 */
492 retval = history(hist, &he, H_PREV_STR, str);
493 if (retval == -1)
494 error("history pattern not found: %s", str);
495 }
496 return (he.num);
497 }
498 #else
499 int
500 histcmd(argc, argv)
501 int argc;
502 char **argv;
503 {
504 error("not compiled with history support");
505 /* NOTREACHED */
506 }
507 #endif
508