nnn/noice.c

815 lines
13 KiB
C
Raw Normal View History

#include <sys/stat.h>
2014-10-07 06:05:30 +00:00
#include <sys/types.h>
2014-10-22 15:27:08 +00:00
#include <sys/wait.h>
2014-10-07 06:05:30 +00:00
#include <errno.h>
#include <fcntl.h>
#include <dirent.h>
#include <curses.h>
#include <libgen.h>
#include <limits.h>
2014-10-07 06:05:30 +00:00
#include <locale.h>
2014-10-09 09:33:49 +00:00
#include <regex.h>
2014-10-07 06:05:30 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <unistd.h>
#include "queue.h"
#include "util.h"
2014-10-07 06:05:30 +00:00
#ifdef DEBUG
2014-10-08 08:36:17 +00:00
#define DEBUG_FD 8
#define DPRINTF_D(x) dprintf(DEBUG_FD, #x "=%d\n", x)
#define DPRINTF_U(x) dprintf(DEBUG_FD, #x "=%u\n", x)
#define DPRINTF_S(x) dprintf(DEBUG_FD, #x "=%s\n", x)
#define DPRINTF_P(x) dprintf(DEBUG_FD, #x "=0x%p\n", x)
2014-10-07 06:05:30 +00:00
#else
#define DPRINTF_D(x)
2014-10-08 08:36:17 +00:00
#define DPRINTF_U(x)
2014-10-07 06:05:30 +00:00
#define DPRINTF_S(x)
#define DPRINTF_P(x)
#endif /* DEBUG */
#define LEN(x) (sizeof(x) / sizeof(*(x)))
2014-10-22 16:41:16 +00:00
#undef MIN
2014-10-07 06:49:46 +00:00
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define ISODD(x) ((x) & 1)
#define CONTROL(c) ((c) ^ 0x40)
2014-10-07 06:05:30 +00:00
2014-10-07 15:36:29 +00:00
struct assoc {
2014-10-09 09:33:49 +00:00
char *regex; /* Regex to match on filename */
char *bin; /* Program */
2014-10-07 15:36:29 +00:00
};
2014-10-21 10:15:27 +00:00
#include "config.h"
2014-10-07 15:36:29 +00:00
struct entry {
char *name;
mode_t mode;
};
struct history {
char *path;
SLIST_ENTRY(history) entry;
};
SLIST_HEAD(histhead, history) histhead = SLIST_HEAD_INITIALIZER(histhead);
2014-10-07 06:05:30 +00:00
/*
* Layout:
* .---------
* | cwd: /mnt/path
* |
2014-10-07 14:55:14 +00:00
* | file0
2014-10-07 06:05:30 +00:00
* | file1
2014-10-07 14:55:14 +00:00
* | > file2
* | file3
* | file4
2014-10-07 06:05:30 +00:00
* ...
* | filen
* |
2014-10-07 14:55:14 +00:00
* | Permission denied
2014-10-07 06:05:30 +00:00
* '------
*/
void printmsg(char *msg);
void printwarn(void);
void printerr(int ret, char *prefix);
2014-10-22 13:10:04 +00:00
void *
xmalloc(size_t size)
{
void *p;
p = malloc(size);
2014-10-22 13:15:27 +00:00
if (p == NULL)
2014-10-22 13:10:04 +00:00
printerr(1, "malloc");
return p;
}
void *
2014-10-22 13:15:27 +00:00
xrealloc(void *p, size_t size)
2014-10-22 13:10:04 +00:00
{
2014-10-22 13:15:27 +00:00
p = realloc(p, size);
if (p == NULL)
2014-10-22 13:10:04 +00:00
printerr(1, "realloc");
2014-10-22 13:15:27 +00:00
return p;
}
char *
xstrdup(const char *s)
{
char *p;
p = strdup(s);
if (p == NULL)
printerr(1, "strdup");
return p;
}
char *
xrealpath(const char *path)
2014-10-22 13:15:27 +00:00
{
char *p;
p = realpath(path, NULL);
2014-10-22 13:15:27 +00:00
if (p == NULL)
printerr(1, "realpath");
return p;
2014-10-22 13:10:04 +00:00
}
char *
xdirname(const char *path)
{
char *p, *tmp;
/* Some implementations of dirname(3) may modify `path' and some
* return a pointer inside `path` and we cannot free(3) the
* original string if we lose track of it. */
tmp = xstrdup(path);
p = dirname(tmp);
2014-10-22 14:21:53 +00:00
if (p == NULL) {
free(tmp);
printerr(1, "dirname");
2014-10-22 14:21:53 +00:00
}
/* Make sure this is a malloc(3)-ed string */
p = xstrdup(p);
2014-10-22 14:05:14 +00:00
free(tmp);
return p;
}
void
spawn(const char *file, const char *arg)
{
pid_t pid;
int status;
pid = fork();
if (pid == 0) {
execlp(file, file, arg, NULL);
_exit(1);
} else {
/* Ignore interruptions */
while (waitpid(pid, &status, 0) == -1)
DPRINTF_D(status);
DPRINTF_D(pid);
}
}
2014-10-07 06:05:30 +00:00
char *
openwith(char *file)
2014-10-07 06:05:30 +00:00
{
2014-10-09 09:33:49 +00:00
regex_t regex;
char *bin = NULL;
2014-10-07 06:05:30 +00:00
int i;
2014-10-09 09:33:49 +00:00
for (i = 0; i < LEN(assocs); i++) {
if (regcomp(&regex, assocs[i].regex,
REG_NOSUB | REG_EXTENDED) != 0)
continue;
if (regexec(&regex, file, 0, NULL, 0) != REG_NOMATCH) {
bin = assocs[i].bin;
2014-10-09 09:33:49 +00:00
break;
}
}
DPRINTF_S(bin);
return bin;
2014-10-07 06:05:30 +00:00
}
int
setfilter(regex_t *regex, char *filter)
{
char *errbuf;
int r;
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED);
if (r != 0) {
2014-10-22 13:10:04 +00:00
errbuf = xmalloc(COLS * sizeof(char));
regerror(r, regex, errbuf, COLS * sizeof(char));
printmsg(errbuf);
free(errbuf);
}
return r;
}
int
visible(regex_t *regex, char *file)
{
if (regexec(regex, file, 0, NULL, 0) != REG_NOMATCH)
return 1;
return 0;
}
2014-10-07 06:05:30 +00:00
int
entrycmp(const void *va, const void *vb)
2014-10-07 06:05:30 +00:00
{
const struct entry *a, *b;
2014-10-07 06:05:30 +00:00
a = (struct entry *)va;
b = (struct entry *)vb;
2014-10-07 06:05:30 +00:00
return strcmp(a->name, b->name);
2014-10-07 06:05:30 +00:00
}
2014-10-07 11:37:23 +00:00
void
initcurses(void)
{
initscr();
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
curs_set(FALSE); /* Hide cursor */
}
void
exitcurses(void)
{
endwin(); /* Restore terminal */
}
2014-10-07 14:47:35 +00:00
/* Messages show up at the bottom */
2014-10-07 06:05:30 +00:00
void
2014-10-07 14:47:35 +00:00
printmsg(char *msg)
2014-10-07 06:05:30 +00:00
{
move(LINES - 1, 0);
2014-10-07 14:47:35 +00:00
printw("%s\n", msg);
}
/* Display warning as a message */
void
printwarn(void)
{
printmsg(strerror(errno));
2014-10-07 06:05:30 +00:00
}
/* Kill curses and display error before exiting */
void
printerr(int ret, char *prefix)
{
2014-10-07 17:59:41 +00:00
exitcurses();
2014-10-22 13:08:16 +00:00
fprintf(stderr, "%s: %s\n", prefix, strerror(errno));
2014-10-07 06:05:30 +00:00
exit(ret);
}
/* Clear the last line */
void
clearprompt(void)
{
printmsg("");
}
/* Print prompt on the last line */
void
printprompt(char *str)
{
clearprompt();
printw(str);
}
2014-10-07 06:05:30 +00:00
/*
* Returns 0 normally
* On movement it updates *cur
2014-10-21 15:34:31 +00:00
* Returns SEL_{QUIT,BACK,GOIN,FLTR,SH,CD} otherwise
2014-10-07 06:05:30 +00:00
*/
enum {
SEL_QUIT = 1,
SEL_BACK,
SEL_GOIN,
SEL_FLTR,
SEL_SH,
SEL_CD,
};
2014-10-07 06:05:30 +00:00
int
nextsel(int *cur, int max)
{
int c;
c = getch();
switch (c) {
case 'q':
return SEL_QUIT;
2014-10-10 11:59:30 +00:00
/* Back */
2014-10-07 06:05:30 +00:00
case KEY_BACKSPACE:
case KEY_LEFT:
case 'h':
return SEL_BACK;
2014-10-10 11:59:30 +00:00
/* Inside */
2014-10-07 06:05:30 +00:00
case KEY_ENTER:
case '\r':
case KEY_RIGHT:
case 'l':
return SEL_GOIN;
2014-10-10 11:59:30 +00:00
/* Filter */
case '/':
case '&':
return SEL_FLTR;
2014-10-10 11:59:30 +00:00
/* Next */
2014-10-07 06:05:30 +00:00
case 'j':
case KEY_DOWN:
case CONTROL('N'):
2014-10-07 06:05:30 +00:00
if (*cur < max - 1)
(*cur)++;
break;
2014-10-10 11:59:30 +00:00
/* Previous */
2014-10-07 06:05:30 +00:00
case 'k':
case KEY_UP:
case CONTROL('P'):
2014-10-07 06:05:30 +00:00
if (*cur > 0)
(*cur)--;
break;
2014-10-10 12:46:13 +00:00
/* Page down */
case KEY_NPAGE:
case CONTROL('D'):
if (*cur < max -1)
(*cur) += MIN((LINES - 4) / 2, max - 1 - *cur);
break;
/* Page up */
case KEY_PPAGE:
case CONTROL('U'):
if (*cur > 0)
(*cur) -= MIN((LINES - 4) / 2, *cur);
break;
case '!':
return SEL_SH;
case 'c':
return SEL_CD;
2014-10-07 06:05:30 +00:00
}
return 0;
}
char *
readln(void)
{
int c;
int i = 0;
char *ln = NULL;
int y, x, x0;
echo();
curs_set(TRUE);
/* Starting point */
getyx(stdscr, y, x);
x0 = x;
2014-10-22 15:30:27 +00:00
while ((c = getch()) != ERR) {
if (c == KEY_ENTER || c == '\r')
break;
if (c == KEY_BACKSPACE) {
getyx(stdscr, y, x);
if (x >= x0) {
i--;
if (i > 0) {
ln = xrealloc(ln, i * sizeof(*ln));
} else {
free(ln);
ln = NULL;
}
move(y, x);
printw("%c", ' ');
move(y, x);
} else {
move(y, x0);
}
continue;
}
2014-10-22 13:10:04 +00:00
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
ln[i] = c;
i++;
}
if (ln != NULL) {
2014-10-22 13:10:04 +00:00
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
ln[i] = '\0';
}
curs_set(FALSE);
noecho();
return ln;
}
2014-10-07 06:05:30 +00:00
int
2014-10-22 16:26:35 +00:00
canopendir(char *path)
2014-10-07 06:05:30 +00:00
{
DIR *dirp;
dirp = opendir(path);
if (dirp == NULL) {
return 0;
} else {
closedir(dirp);
return 1;
}
}
void
printent(struct entry *ent, int active)
{
char *name;
unsigned int maxlen = COLS - strlen(CURSR) - 1;
char cm = 0;
/* Copy name locally */
2014-10-22 13:15:27 +00:00
name = xstrdup(ent->name);
if (S_ISDIR(ent->mode)) {
cm = '/';
maxlen--;
} else if (S_ISLNK(ent->mode)) {
cm = '@';
maxlen--;
2014-10-21 14:36:23 +00:00
} else if (ent->mode & S_IXUSR) {
cm = '*';
maxlen--;
}
/* No text wrapping in entries */
if (strlen(name) > maxlen)
name[maxlen] = '\0';
if (cm == 0)
printw("%s%s\n", active ? CURSR : EMPTY, name);
else
printw("%s%s%c\n", active ? CURSR : EMPTY, name, cm);
free(name);
}
2014-10-22 15:21:50 +00:00
int
dentfill(DIR *dirp, struct entry **dents,
int (*filter)(regex_t *, char *), regex_t *re)
{
struct dirent *dp;
struct stat sb;
int n = 0;
int r;
while ((dp = readdir(dirp)) != NULL) {
/* Skip self and parent */
if (strcmp(dp->d_name, ".") == 0
|| strcmp(dp->d_name, "..") == 0)
continue;
if (filter(re, dp->d_name) == 0)
continue;
*dents = xrealloc(*dents, (n + 1) * sizeof(**dents));
(*dents)[n].name = xstrdup(dp->d_name);
/* Get mode flags */
r = fstatat(dirfd(dirp), dp->d_name, &sb,
AT_SYMLINK_NOFOLLOW);
if (r == -1)
printerr(1, "stat");
(*dents)[n].mode = sb.st_mode;
n++;
}
return n;
}
void
dentfree(struct entry *dents, int n)
{
int i;
for (i = 0; i < n; i++)
free(dents[i].name);
free(dents);
}
char *
makepath(char *dir, char *name)
{
char *path;
/* Handle root case */
if (strcmp(dir, "/") == 0)
asprintf(&path, "/%s", name);
else
asprintf(&path, "%s/%s", dir, name);
return path;
}
/* Return the position of the matching entry or 0 otherwise */
int
dentfind(struct entry *dents, int n, char *cwd, char *path)
{
int i;
char *tmp;
if (path == NULL)
return 0;
for (i = 0; i < n; i++) {
tmp = makepath(cwd, dents[i].name);
DPRINTF_S(path);
DPRINTF_S(tmp);
if (strcmp(tmp, path) == 0) {
free(tmp);
return i;
}
free(tmp);
}
return 0;
}
void
pushhist(char *path)
{
struct history *hist;
hist = xmalloc(sizeof(*hist));
hist->path = xstrdup(path);
SLIST_INSERT_HEAD(&histhead, hist, entry);
}
char *
pophist(void)
{
struct history *hist;
char *path;
/* Recall history */
hist = SLIST_FIRST(&histhead);
if (hist != NULL) {
path = hist->path;
SLIST_REMOVE_HEAD(&histhead, entry);
free(hist);
} else {
path = NULL;
}
return path;
}
void
forgethist(void)
{
struct history *hist;
2014-10-22 16:31:08 +00:00
while (SLIST_EMPTY(&histhead) == 0) {
hist = SLIST_FIRST(&histhead);
SLIST_REMOVE_HEAD(&histhead, entry);
free(hist->path);
free(hist);
}
}
2014-10-07 06:05:30 +00:00
void
browse(const char *ipath, const char *ifilter)
2014-10-07 06:05:30 +00:00
{
DIR *dirp;
struct entry *dents;
2014-10-07 06:05:30 +00:00
int i, n, cur;
int r, ret;
2014-10-22 13:15:27 +00:00
char *path = xrealpath(ipath);
char *filter = xstrdup(ifilter);
regex_t filter_re;
char *cwd;
struct stat sb;
char *hpath;
2014-10-07 06:05:30 +00:00
cur = 0;
hpath = NULL;
2014-10-07 06:05:30 +00:00
begin:
2014-10-22 15:33:59 +00:00
/* Path and filter should be malloc(3)-ed strings at all times */
n = 0;
dents = NULL;
2014-10-08 15:39:07 +00:00
dirp = opendir(path);
2014-10-07 06:05:30 +00:00
if (dirp == NULL) {
2014-10-07 14:47:35 +00:00
printwarn();
2014-10-07 06:05:30 +00:00
goto nochange;
} else {
if (chdir(path) == -1)
printwarn();
2014-10-07 06:05:30 +00:00
}
/* Search filter */
r = setfilter(&filter_re, filter);
if (r != 0)
goto nochange;
2014-10-22 15:21:50 +00:00
n = dentfill(dirp, &dents, visible, &filter_re);
2014-10-07 06:05:30 +00:00
qsort(dents, n, sizeof(*dents), entrycmp);
2014-10-07 06:05:30 +00:00
/* Find cur from history */
cur = dentfind(dents, n, path, hpath);
2014-10-22 19:32:45 +00:00
if (hpath != NULL) {
free(hpath);
hpath = NULL;
}
2014-10-07 06:05:30 +00:00
for (;;) {
2014-10-07 11:23:44 +00:00
int nlines;
int odd;
char *name;
char *bin;
char *dir;
char *tmp;
regex_t re;
2014-10-07 11:23:44 +00:00
2014-10-07 06:05:30 +00:00
redraw:
2014-10-07 11:23:44 +00:00
nlines = MIN(LINES - 4, n);
2014-10-07 06:05:30 +00:00
/* Clean screen */
erase();
DPRINTF_D(cur);
DPRINTF_S(path);
/* No text wrapping in cwd line */
2014-10-22 13:10:04 +00:00
cwd = xmalloc(COLS * sizeof(char));
2014-10-08 12:08:29 +00:00
strlcpy(cwd, path, COLS * sizeof(char));
cwd[COLS - strlen(CWD) - 1] = '\0';
2014-10-10 10:14:55 +00:00
printw(CWD "%s\n\n", cwd);
2014-10-07 06:05:30 +00:00
/* Print listing */
odd = ISODD(nlines);
2014-10-07 06:49:46 +00:00
if (cur < nlines / 2) {
for (i = 0; i < nlines; i++)
printent(&dents[i], i == cur);
2014-10-07 06:49:46 +00:00
} else if (cur >= n - nlines / 2) {
for (i = n - nlines; i < n; i++)
printent(&dents[i], i == cur);
2014-10-07 06:49:46 +00:00
} else {
for (i = cur - nlines / 2;
i < cur + nlines / 2 + odd; i++)
printent(&dents[i], i == cur);
2014-10-07 06:49:46 +00:00
}
2014-10-07 06:05:30 +00:00
nochange:
ret = nextsel(&cur, n);
switch (ret) {
case SEL_QUIT:
2014-10-07 06:05:30 +00:00
free(path);
2014-10-10 07:11:50 +00:00
free(filter);
forgethist();
2014-10-22 16:28:27 +00:00
dentfree(dents, n);
2014-10-07 06:05:30 +00:00
return;
case SEL_BACK:
2014-10-10 10:14:55 +00:00
/* There is no going back */
2014-10-22 15:53:38 +00:00
if (strcmp(path, "/") == 0)
2014-10-07 06:05:30 +00:00
goto nochange;
2014-10-22 16:26:35 +00:00
if (canopendir(path) == 0) {
printwarn();
goto nochange;
}
2014-10-22 15:53:38 +00:00
dir = xdirname(path);
free(path);
path = dir;
/* Reset filter */
2014-10-22 15:53:38 +00:00
free(filter);
filter = xstrdup(ifilter);
2014-10-22 15:53:38 +00:00
/* Recall history */
hpath = pophist();
2014-10-22 15:53:38 +00:00
goto out;
case SEL_GOIN:
2014-10-07 14:07:56 +00:00
/* Cannot descend in empty directories */
if (n == 0)
goto nochange;
name = dents[cur].name;
2014-10-08 08:36:17 +00:00
DPRINTF_S(name);
/* Get path info */
2014-10-22 15:50:30 +00:00
r = fstatat(dirfd(dirp), name, &sb, 0);
if (r == -1) {
printwarn();
goto nochange;
}
DPRINTF_U(sb.st_mode);
2014-10-22 15:55:26 +00:00
2014-10-22 15:50:30 +00:00
switch (sb.st_mode & S_IFMT) {
case S_IFDIR:
2014-10-22 16:26:35 +00:00
if (canopendir(path) == 0) {
printwarn();
goto nochange;
}
free(path);
2014-10-22 15:50:30 +00:00
path = xrealpath(name);
/* Reset filter */
free(filter);
filter = xstrdup(ifilter);
/* Remember history */
pushhist(path);
cur = 0;
goto out;
2014-10-22 15:50:30 +00:00
case S_IFREG:
bin = openwith(name);
2014-10-07 06:05:30 +00:00
if (bin == NULL) {
2014-10-07 14:47:35 +00:00
printmsg("No association");
2014-10-07 06:05:30 +00:00
goto nochange;
}
2014-10-07 11:37:23 +00:00
exitcurses();
2014-10-22 15:50:30 +00:00
spawn(bin, name);
2014-10-07 11:37:23 +00:00
initcurses();
2014-10-07 06:05:30 +00:00
goto redraw;
2014-10-22 15:50:30 +00:00
default:
printmsg("Unsupported file");
goto nochange;
2014-10-07 06:05:30 +00:00
}
case SEL_FLTR:
/* Read filter */
printprompt("filter: ");
tmp = readln();
if (tmp == NULL) {
clearprompt();
goto nochange;
}
r = setfilter(&re, tmp);
if (r != 0) {
2014-10-10 12:02:26 +00:00
free(tmp);
goto nochange;
}
free(filter);
filter = tmp;
filter_re = re;
DPRINTF_S(filter);
cur = 0;
goto out;
case SEL_SH:
exitcurses();
spawn("/bin/sh", NULL);
initcurses();
2014-10-21 13:57:09 +00:00
break;
case SEL_CD:
/* Read target dir */
printprompt("chdir: ");
tmp = readln();
if (tmp == NULL) {
clearprompt();
goto nochange;
}
2014-10-22 16:26:35 +00:00
if (canopendir(tmp) == 0) {
printwarn();
goto nochange;
}
2014-10-22 15:56:31 +00:00
free(path);
path = xrealpath(tmp);
free(tmp);
free(filter);
filter = xstrdup(ifilter); /* Reset filter */
forgethist();
2014-10-22 15:56:31 +00:00
DPRINTF_S(path);
cur = 0;
goto out;
}
2014-10-07 06:05:30 +00:00
}
out:
2014-10-22 15:21:50 +00:00
dentfree(dents, n);
2014-10-07 06:05:30 +00:00
2014-10-10 10:24:19 +00:00
/* Should never be null */
r = closedir(dirp);
if (r == -1)
printerr(1, "closedir");
2014-10-07 06:05:30 +00:00
goto begin;
}
int
main(int argc, char *argv[])
{
char cwd[PATH_MAX], *ipath;
2014-10-21 11:03:53 +00:00
char *ifilter;
if (getuid() == 0)
ifilter = ".*";
else
ifilter = "^[^.].*"; /* Hide dotfiles */
2014-10-07 06:05:30 +00:00
if (argv[1] != NULL) {
ipath = argv[1];
} else {
ipath = getcwd(cwd, sizeof(cwd));
if (ipath == NULL)
ipath = "/";
}
2014-10-07 06:05:30 +00:00
/* Test initial path */
2014-10-22 16:26:35 +00:00
if (canopendir(ipath) == 0)
2014-10-07 06:05:30 +00:00
printerr(1, ipath);
/* Set locale before curses setup */
setlocale(LC_ALL, "");
2014-10-07 11:37:23 +00:00
initcurses();
2014-10-07 06:05:30 +00:00
browse(ipath, ifilter);
2014-10-07 06:05:30 +00:00
2014-10-07 11:37:23 +00:00
exitcurses();
2014-10-07 06:05:30 +00:00
return 0;
}