Add externalpipe

This commit is contained in:
speedie 2022-09-02 14:32:45 +02:00
parent 4df2fe0fea
commit 1d694a8ec3
9 changed files with 91 additions and 3 deletions

View file

@ -33,7 +33,7 @@ clean:
dist: clean
mkdir -p st-spde-$(VERSION)
cp -R LICENSE Makefile *.mk *.info *.h *.png *.desktop *.ttf $(SRC)\
cp -R LICENSE Makefile *.mk *.info *.h *.png *.desktop *.ttf docs scripts $(SRC)\
st-spde-$(VERSION)
tar -cf - st-spde-$(VERSION) | gzip > st-spde-$(VERSION).tar.gz
rm -rf st-spde-$(VERSION)
@ -48,6 +48,8 @@ install: st
[ -f $(ICONNAME) ] && cp -f $(ICONNAME) $(DESTDIR)$(ICONPREFIX) || :
mkdir -p $(DESTDIR)$(APPPREFIX)
cp -f st.desktop $(DESTDIR)$(APPPREFIX)
cp -f scripts/urllist $(DESTDIR)$(PREFIX)/bin
chmod +x $(DESTDIR)$(PREFIX)/bin/urllist
rm -f ./st
rm -f *.o

View file

@ -4,7 +4,7 @@ VERSION = 0.8.5
# Customize below to fit your system
# paths
PREFIX = /usr/local
PREFIX = /usr
APPPREFIX = $(PREFIX)/share/applications
MANPREFIX = $(PREFIX)/share/man
ICONPREFIX = $(PREFIX)/share/pixmaps

View file

@ -24,3 +24,5 @@ st-undercurl
st-anysize
st-xrandrfontsize
st-delkey
st-extenralpipe
st-externalpipe-eternal

3
external.h Normal file
View file

@ -0,0 +1,3 @@
/* This is the header used to control extenralpipe.
*/
static char *listurl[] = { "/bin/sh", "-c", "urllist", NULL };

View file

@ -17,4 +17,5 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
{ ControlMask|ShiftMask, XK_k, kscrollup, {.i = +1} },
{ ControlMask|ShiftMask, XK_j, kscrolldown, {.i = +1} },
{ ControlMask|ShiftMask, XK_U, externalpipe, { .v = listurl } },
};

1
scripts/urllist Normal file
View file

@ -0,0 +1 @@
# temporarily empty

79
st.c
View file

@ -53,6 +53,8 @@
: term.line[(y) - term.scr] \
)
#define TLINE_HIST(y) ((y) <= HISTSIZE-term.row+2 ? term.hist[(y)] : term.line[(y-HISTSIZE+term.row-3)])
#define TLINEABS(y) ( \
(y) < 0 ? term.hist[(term.histi + (y) + 1 + HISTSIZE) % HISTSIZE] : term.line[(y)] \
)
@ -521,6 +523,20 @@ tgetline(char *buf, const Glyph *fgp)
return ptr - buf;
}
int
tlinehistlen(int y)
{
int i = term.col;
if (TLINE_HIST(y)[i - 1].mode & ATTR_WRAP)
return i;
while (i > 0 && TLINE_HIST(y)[i - 1].u == ' ')
--i;
return i;
}
void
selstart(int col, int row, int snap)
{
@ -825,8 +841,14 @@ sigchld(int a)
if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
die("waiting for pid %hd failed: %s\n", pid, strerror(errno));
if (pid != p)
if (pid != p) {
if (p == 0 && wait(&stat) < 0)
die("wait: %s\n", strerror(errno));
/* reinstall sigchld handler */
signal(SIGCHLD, sigchld);
return;
}
if (WIFEXITED(stat) && WEXITSTATUS(stat))
die("child exited with status %d\n", WEXITSTATUS(stat));
@ -2306,6 +2328,61 @@ strparse(void)
}
}
void
externalpipe(const Arg *arg)
{
int to[2];
char buf[UTF_SIZ];
void (*oldsigpipe)(int);
Glyph *bp, *end;
int lastpos, n, newline;
if (pipe(to) == -1)
return;
switch (fork()) {
case -1:
close(to[0]);
close(to[1]);
return;
case 0:
dup2(to[0], STDIN_FILENO);
close(to[0]);
close(to[1]);
execvp(((char **)arg->v)[0], (char **)arg->v);
fprintf(stderr, "st: execvp %s\n", ((char **)arg->v)[0]);
perror("failed");
exit(0);
}
close(to[0]);
/* ignore sigpipe for now, in case child exists early */
oldsigpipe = signal(SIGPIPE, SIG_IGN);
newline = 0;
for (n = 0; n <= HISTSIZE + 2; n++) {
bp = TLINE_HIST(n);
lastpos = MIN(tlinehistlen(n) + 1, term.col) - 1;
if (lastpos < 0)
break;
if (lastpos == 0)
continue;
end = &bp[lastpos + 1];
for (; bp < end; ++bp)
if (xwrite(to[1], buf, utf8encode(bp->u, buf)) < 0)
break;
if ((newline = TLINE_HIST(n)[lastpos].mode & ATTR_WRAP))
continue;
if (xwrite(to[1], "\n", 1) < 0)
break;
newline = 0;
}
if (newline)
(void)xwrite(to[1], "\n", 1);
close(to[1]);
/* restore */
signal(SIGPIPE, oldsigpipe);
}
void
strdump(void)
{

1
st.h
View file

@ -93,6 +93,7 @@ void draw(void);
void kscrolldown(const Arg *);
void kscrollup(const Arg *);
void externalpipe(const Arg *);
void printscreen(const Arg *);
void printsel(const Arg *);
void sendbreak(const Arg *);

1
x.c
View file

@ -105,6 +105,7 @@ static void ttysend(const Arg *);
#define UNDERCURL_CAPPED 2
#include "options.h" /* include user configuration */
#include "external.h" /* include externalpipe options */
#include "char.h" /* include misc chars */
#ifdef USEXRESOURCES