2003-08-07 13:05:01 +04:00
|
|
|
/* $NetBSD: hist.c,v 1.15 2003/08/07 09:05:06 agc Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1994-09-21 04:10:23 +04:00
|
|
|
* Copyright (c) 1980, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:05:01 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-05 01:23:50 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1995-03-21 12:01:59 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 5/31/93";
|
|
|
|
#else
|
2003-08-07 13:05:01 +04:00
|
|
|
__RCSID("$NetBSD: hist.c,v 1.15 2003/08/07 09:05:06 agc Exp $");
|
1995-03-21 12:01:59 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2001-09-14 18:03:59 +04:00
|
|
|
|
2002-05-26 03:29:16 +04:00
|
|
|
#include <stdarg.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <stdlib.h>
|
2001-09-14 18:03:59 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "csh.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2001-09-14 18:03:59 +04:00
|
|
|
static void hfree(struct Hist *);
|
|
|
|
static void dohist1(struct Hist *, int *, int, int);
|
|
|
|
static void phist(struct Hist *, int);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
void
|
2001-09-14 18:03:59 +04:00
|
|
|
savehist(struct wordent *sp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-01-13 20:53:15 +03:00
|
|
|
struct Hist *hp, *np;
|
2001-09-14 18:03:59 +04:00
|
|
|
Char *cp;
|
|
|
|
int histlen;
|
|
|
|
|
|
|
|
histlen = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* throw away null lines */
|
|
|
|
if (sp->next->word[0] == '\n')
|
|
|
|
return;
|
|
|
|
cp = value(STRhistory);
|
|
|
|
if (*cp) {
|
1997-01-13 20:53:15 +03:00
|
|
|
Char *p = cp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
while (*p) {
|
|
|
|
if (!Isdigit(*p)) {
|
|
|
|
histlen = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
histlen = histlen * 10 + *p++ - '0';
|
|
|
|
}
|
|
|
|
}
|
1994-09-21 04:10:23 +04:00
|
|
|
for (hp = &Histlist; (np = hp->Hnext) != NULL;)
|
1993-03-21 12:45:37 +03:00
|
|
|
if (eventno - np->Href >= histlen || histlen == 0)
|
|
|
|
hp->Hnext = np->Hnext, hfree(np);
|
|
|
|
else
|
|
|
|
hp = np;
|
|
|
|
(void) enthist(++eventno, sp, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Hist *
|
2001-09-14 18:03:59 +04:00
|
|
|
enthist(int event, struct wordent *lp, bool docopy)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-01-13 20:53:15 +03:00
|
|
|
struct Hist *np;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-09-14 18:03:59 +04:00
|
|
|
np = (struct Hist *)xmalloc((size_t)sizeof(*np));
|
1993-03-21 12:45:37 +03:00
|
|
|
np->Hnum = np->Href = event;
|
|
|
|
if (docopy) {
|
|
|
|
copylex(&np->Hlex, lp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
np->Hlex.next = lp->next;
|
|
|
|
lp->next->prev = &np->Hlex;
|
|
|
|
np->Hlex.prev = lp->prev;
|
|
|
|
lp->prev->next = &np->Hlex;
|
|
|
|
}
|
|
|
|
np->Hnext = Histlist.Hnext;
|
|
|
|
Histlist.Hnext = np;
|
|
|
|
return (np);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-09-14 18:03:59 +04:00
|
|
|
hfree(struct Hist *hp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
freelex(&hp->Hlex);
|
|
|
|
xfree((ptr_t) hp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1994-09-21 04:10:23 +04:00
|
|
|
/*ARGSUSED*/
|
2001-09-14 18:03:59 +04:00
|
|
|
dohist(Char **v, struct command *t)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-01-16 12:38:37 +03:00
|
|
|
sigset_t nsigset;
|
2001-09-14 18:03:59 +04:00
|
|
|
int hflg, n, rflg;
|
|
|
|
|
|
|
|
hflg = 0;
|
|
|
|
rflg = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (getn(value(STRhistory)) == 0)
|
|
|
|
return;
|
1995-03-21 21:35:32 +03:00
|
|
|
if (setintr) {
|
2003-01-16 12:38:37 +03:00
|
|
|
sigemptyset(&nsigset);
|
|
|
|
(void)sigaddset(&nsigset, SIGINT);
|
|
|
|
(void)sigprocmask(SIG_UNBLOCK, &nsigset, NULL);
|
1995-03-21 21:35:32 +03:00
|
|
|
}
|
1994-09-21 04:10:23 +04:00
|
|
|
while (*++v && **v == '-') {
|
2001-09-14 18:03:59 +04:00
|
|
|
Char *vp = *v;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-09-21 04:10:23 +04:00
|
|
|
while (*++vp)
|
|
|
|
switch (*vp) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'h':
|
|
|
|
hflg++;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
rflg++;
|
|
|
|
break;
|
|
|
|
case '-': /* ignore multiple '-'s */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
stderror(ERR_HISTUS);
|
1998-07-28 06:23:37 +04:00
|
|
|
/* NOTREACHED */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1994-09-21 04:10:23 +04:00
|
|
|
if (*v)
|
|
|
|
n = getn(*v);
|
1993-03-21 12:45:37 +03:00
|
|
|
else {
|
|
|
|
n = getn(value(STRhistory));
|
|
|
|
}
|
1994-09-21 04:10:23 +04:00
|
|
|
dohist1(Histlist.Hnext, &n, rflg, hflg);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-09-14 18:03:59 +04:00
|
|
|
dohist1(struct Hist *hp, int *np, int rflg, int hflg)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-09-14 18:03:59 +04:00
|
|
|
bool print;
|
|
|
|
|
|
|
|
print = (*np) > 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (; hp != 0; hp = hp->Hnext) {
|
|
|
|
(*np)--;
|
|
|
|
hp->Href++;
|
|
|
|
if (rflg == 0) {
|
1994-09-21 04:10:23 +04:00
|
|
|
dohist1(hp->Hnext, np, rflg, hflg);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (print)
|
1994-09-21 04:10:23 +04:00
|
|
|
phist(hp, hflg);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (*np >= 0)
|
1994-09-21 04:10:23 +04:00
|
|
|
phist(hp, hflg);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-09-14 18:03:59 +04:00
|
|
|
phist(struct Hist *hp, int hflg)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-09-21 04:10:23 +04:00
|
|
|
if (hflg == 0)
|
2001-09-14 18:03:59 +04:00
|
|
|
(void)fprintf(cshout, "%6d\t", hp->Hnum);
|
1994-09-21 04:10:23 +04:00
|
|
|
prlex(cshout, &hp->Hlex);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|