nnn/noice.c

469 lines
7.7 KiB
C
Raw Normal View History

#include <sys/stat.h>
2014-10-07 06:05:30 +00:00
#include <sys/types.h>
#include <errno.h>
#include <fcntl.h>
#include <dirent.h>
#include <curses.h>
#include <libgen.h>
#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>
2014-10-08 12:08:29 +00:00
#ifdef LINUX
#include <bsd/string.h>
#endif
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-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
};
/* Configuration */
struct assoc assocs[] = {
2014-10-09 14:23:16 +00:00
{ "\\.(avi|mp4|mkv|mp3|ogg)$", "mplayer" },
{ "\\.srt$", "less" },
{ "\\.txt$", "less" },
{ "\\.sh$", "sh" },
2014-10-09 09:33:49 +00:00
{ "^README$", "less" },
2014-10-09 14:23:16 +00:00
{ ".*", "less" },
2014-10-07 15:36:29 +00:00
};
struct entry {
char *name;
mode_t mode;
};
2014-10-07 15:36:29 +00:00
#define CWD "cwd: "
#define CURSR " > "
#define EMPTY " "
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
* '------
*/
int die = 0;
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
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-07 06:05:30 +00:00
printf("%s: %s\n", prefix, strerror(errno));
exit(ret);
}
/*
* Returns 0 normally
* On movement it updates *cur
* Returns 1 on quit
* Returns 2 on go in
* Returns 3 on go up
*/
int
nextsel(int *cur, int max)
{
int c;
c = getch();
switch (c) {
case 'q':
return 1;
/* go up */
case KEY_BACKSPACE:
case KEY_LEFT:
case 'h':
return 2;
/* go in */
case KEY_ENTER:
case '\r':
case KEY_RIGHT:
case 'l':
return 3;
/* next */
case 'j':
case KEY_DOWN:
case CONTROL('N'):
2014-10-07 06:05:30 +00:00
if (*cur < max - 1)
(*cur)++;
break;
/* prev */
case 'k':
case KEY_UP:
case CONTROL('P'):
2014-10-07 06:05:30 +00:00
if (*cur > 0)
(*cur)--;
break;
}
return 0;
}
int
testopendir(char *path)
{
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 */
name = strdup(ent->name);
if (name == NULL)
printerr(1, "strdup name");
if (S_ISDIR(ent->mode)) {
cm = '/';
maxlen--;
} else if (S_ISLNK(ent->mode)) {
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-07 06:05:30 +00:00
void
browse(const char *ipath)
{
DIR *dirp;
int dfd;
2014-10-07 06:05:30 +00:00
struct dirent *dp;
struct entry *dents;
2014-10-07 06:05:30 +00:00
int i, n, cur;
int r, ret;
char *path = strdup(ipath);
char *cwd;
struct stat sb;
2014-10-07 06:05:30 +00:00
begin:
2014-10-07 06:49:46 +00:00
/* Path should be a malloc(3)-ed string at all times */
2014-10-07 06:05:30 +00:00
n = 0;
cur = 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;
}
while ((dp = readdir(dirp)) != NULL) {
char *name;
2014-10-07 06:05:30 +00:00
/* Skip self and parent */
if (strcmp(dp->d_name, ".") == 0
|| strcmp(dp->d_name, "..") == 0)
2014-10-07 06:05:30 +00:00
continue;
2014-10-08 19:55:44 +00:00
/* Deep copy because readdir(3) reuses the entries */
2014-10-07 06:05:30 +00:00
dents = realloc(dents, (n + 1) * sizeof(*dents));
if (dents == NULL)
printerr(1, "realloc");
dents[n].name = strdup(dp->d_name);
if (dents[n].name == NULL)
printerr(1, "strdup");
/* Get mode flags */
asprintf(&name, "%s/%s", path, dents[n].name);
r = lstat(name, &sb);
free(name);
if (r == -1)
printerr(1, "stat");
dents[n].mode = sb.st_mode;
2014-10-07 06:05:30 +00:00
n++;
}
qsort(dents, n, sizeof(*dents), entrycmp);
2014-10-07 06:05:30 +00:00
for (;;) {
2014-10-07 11:23:44 +00:00
int nlines;
int maxlen;
int odd;
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();
/* Strip trailing slashes */
2014-10-07 06:05:30 +00:00
for (i = strlen(path) - 1; i > -1; i--)
if (path[i] == '/')
path[i] = '\0';
else
break;
DPRINTF_D(cur);
DPRINTF_S(path);
/* No text wrapping in cwd line */
cwd = malloc(COLS * sizeof(char));
2014-10-08 12:08:29 +00:00
strlcpy(cwd, path, COLS * sizeof(char));
cwd[COLS - strlen(CWD) - 1] = '\0';
/* Print cwd. If empty we are on the root. We store it
* as an empty string so that when we navigate in /mnt
* is doesn't come up as //mnt. */
printw(CWD "%s%s\n\n",
strcmp(cwd, "") == 0 ? "/" : "",
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);
if (ret == 1) {
free(path);
return;
}
if (ret == 2) {
/* Handle root case */
if (strcmp(path, "") == 0) {
2014-10-07 06:05:30 +00:00
goto nochange;
} else {
2014-10-07 06:49:46 +00:00
char *dir, *tmp;
dir = dirname(path);
tmp = malloc(strlen(dir) + 1);
2014-10-08 12:08:29 +00:00
strlcpy(tmp, dir, strlen(dir) + 1);
2014-10-07 06:49:46 +00:00
free(path);
path = tmp;
2014-10-07 06:05:30 +00:00
goto out;
}
}
if (ret == 3) {
char *pathnew;
char *name;
char *bin;
2014-10-07 06:05:30 +00:00
pid_t pid;
int fd;
2014-10-07 06:05:30 +00:00
2014-10-07 14:07:56 +00:00
/* Cannot descend in empty directories */
if (n == 0)
goto nochange;
name = dents[cur].name;
asprintf(&pathnew, "%s/%s", path, name);
2014-10-08 08:36:17 +00:00
DPRINTF_S(name);
DPRINTF_S(pathnew);
/* Get path info */
fd = open(pathnew, O_RDONLY | O_NONBLOCK);
if (fd == -1) {
printwarn();
free(pathnew);
goto nochange;
}
r = fstat(fd, &sb);
close(fd);
if (r == -1) {
printwarn();
free(pathnew);
goto nochange;
}
DPRINTF_U(sb.st_mode);
/* Directory */
if (S_ISDIR(sb.st_mode)) {
free(path);
path = pathnew;
goto out;
}
2014-10-08 15:39:07 +00:00
/* Regular file */
if (S_ISREG(sb.st_mode)) {
2014-10-07 06:05:30 +00:00
/* Open with */
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-08 12:27:46 +00:00
free(pathnew);
2014-10-07 06:05:30 +00:00
goto nochange;
}
2014-10-07 11:37:23 +00:00
exitcurses();
2014-10-07 06:05:30 +00:00
/* Run program */
pid = fork();
if (pid == 0)
execlp(bin, bin, pathnew, NULL);
2014-10-07 06:05:30 +00:00
else
waitpid(pid, NULL, 0);
2014-10-07 11:37:23 +00:00
initcurses();
free(pathnew);
2014-10-07 06:05:30 +00:00
goto redraw;
}
/* All the rest */
printmsg("Unsupported file");
free(pathnew);
goto nochange;
2014-10-07 06:05:30 +00:00
}
}
out:
for (i = 0; i < n; i++)
free(dents[i].name);
2014-10-07 06:05:30 +00:00
free(dents);
2014-10-08 15:39:07 +00:00
r = closedir(dirp);
2014-10-07 06:05:30 +00:00
if (r == -1)
printerr(1, "closedir");
goto begin;
}
int
main(int argc, char *argv[])
{
char *ipath = argv[1] != NULL ? argv[1] : "/";
/* Test initial path */
if (!testopendir(ipath))
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);
2014-10-07 11:37:23 +00:00
exitcurses();
2014-10-07 06:05:30 +00:00
return 0;
}