nnn/noice.c

937 lines
18 KiB
C
Raw Normal View History

2015-11-20 14:36:40 +00:00
/* See LICENSE file for copyright and license details. */
#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
2015-06-09 08:12:17 +00:00
#include <curses.h>
#include <dirent.h>
2014-10-07 06:05:30 +00:00
#include <errno.h>
#include <fcntl.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>
2015-06-09 08:12:17 +00:00
#include <signal.h>
#include <stdarg.h>
2014-10-07 06:05:30 +00:00
#include <stdio.h>
2015-06-09 08:12:17 +00:00
#include <stdlib.h>
2014-10-07 06:05:30 +00:00
#include <string.h>
#include <unistd.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)
#define TOUPPER(ch) \
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
2016-08-21 08:18:19 +00:00
#define MAX_LEN 1024
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
};
/* Supported actions */
enum action {
SEL_QUIT = 1,
SEL_BACK,
SEL_GOIN,
SEL_FLTR,
SEL_NEXT,
SEL_PREV,
SEL_PGDN,
SEL_PGUP,
SEL_HOME,
SEL_END,
SEL_CD,
SEL_CDHOME,
SEL_TOGGLEDOT,
SEL_DETAIL,
SEL_FSIZE,
SEL_MTIME,
SEL_REDRAW,
SEL_RUN,
SEL_RUNARG,
};
struct key {
int sym; /* Key pressed */
enum action act; /* Action */
char *run; /* Program to run */
char *env; /* Environment variable to run */
};
2014-10-21 10:15:27 +00:00
#include "config.h"
2014-10-07 15:36:29 +00:00
struct entry {
char name[PATH_MAX];
mode_t mode;
time_t t;
off_t size;
};
/* Global context */
struct entry *dents;
int ndents, cur;
int idle;
2016-08-21 08:18:19 +00:00
char *opener = NULL;
2016-08-21 10:19:54 +00:00
char *fallback_opener = NULL;
char size_buf[12]; /* Buffer to hold human readable size */
const char* size_units[] = {"B", "K", "M", "G", "T", "P", "E", "Z", "Y"};
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 (*printptr)(struct entry *ent, int active);
2015-11-26 15:35:53 +00:00
void printmsg(char *);
void printwarn(void);
2015-11-26 15:35:53 +00:00
void printerr(int, char *);
#undef dprintf
int
dprintf(int fd, const char *fmt, ...)
{
char buf[BUFSIZ];
int r;
va_list ap;
va_start(ap, fmt);
r = vsnprintf(buf, sizeof(buf), fmt, ap);
if (r > 0)
r = write(fd, buf, r);
va_end(ap);
return r;
}
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;
}
/* Some implementations of dirname(3) may modify `path' and some
* return a pointer inside `path'. */
char *
xdirname(const char *path)
{
static char out[PATH_MAX];
char tmp[PATH_MAX], *p;
strlcpy(tmp, path, sizeof(tmp));
p = dirname(tmp);
if (p == NULL)
printerr(1, "dirname");
strlcpy(out, p, sizeof(out));
return out;
}
void
2016-02-08 16:59:19 +00:00
spawn(char *file, char *arg, char *dir)
{
pid_t pid;
int status;
pid = fork();
if (pid == 0) {
if (dir != NULL)
status = chdir(dir);
execlp(file, file, arg, NULL);
_exit(1);
} else {
/* Ignore interruptions */
while (waitpid(pid, &status, 0) == -1)
DPRINTF_D(status);
DPRINTF_D(pid);
}
}
char *
xgetenv(char *name, char *fallback)
{
2015-11-26 13:42:41 +00:00
char *value;
if (name == NULL)
return fallback;
2015-11-26 13:42:41 +00:00
value = getenv(name);
return value && value[0] ? value : fallback;
}
int
xstricmp(const char *s1, const char *s2)
{
while (*s2 != 0 && TOUPPER(*s1) == TOUPPER(*s2))
s1++, s2++;
/* In case of alphabetically same names, make sure
lower case one comes before upper case one */
if (!*s1 && !*s2)
return 1;
return (int) (TOUPPER(*s1) - TOUPPER(*s2));
}
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 | REG_ICASE) != 0)
2014-10-09 09:33:49 +00:00
continue;
if (regexec(&regex, file, 0, NULL, 0) == 0) {
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[LINE_MAX];
size_t len;
int r;
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
if (r != 0) {
len = COLS;
if (len > sizeof(errbuf))
len = sizeof(errbuf);
regerror(r, regex, errbuf, len);
printmsg(errbuf);
}
return r;
}
void
initfilter(int dot, char **ifilter)
{
*ifilter = dot ? "." : "^[^.]";
}
int
visible(regex_t *regex, char *file)
{
2014-12-20 19:21:03 +00:00
return regexec(regex, file, 0, NULL, 0) == 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
{
if (mtimeorder)
return ((struct entry *)vb)->t - ((struct entry *)va)->t;
if (sizeorder)
return ((struct entry *)vb)->size - ((struct entry *)va)->size;
return xstricmp(((struct entry *)va)->name, ((struct entry *)vb)->name);
2014-10-07 06:05:30 +00:00
}
2014-10-07 11:37:23 +00:00
void
initcurses(void)
{
if (initscr() == NULL) {
2017-03-29 14:12:23 +00:00
char *term = getenv("TERM");
if (term != NULL)
fprintf(stderr, "error opening terminal: %s\n", term);
else
fprintf(stderr, "failed to initialize curses\n");
exit(1);
}
2014-10-07 11:37:23 +00:00
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
curs_set(FALSE); /* Hide cursor */
timeout(1000); /* One second */
2014-10-07 11:37:23 +00:00
}
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);
}
2016-02-08 17:22:30 +00:00
/* Returns SEL_* if key is bound and 0 otherwise.
* Also modifies the run and env pointers (used on SEL_{RUN,RUNARG}) */
2014-10-07 06:05:30 +00:00
int
nextsel(char **run, char **env)
2014-10-07 06:05:30 +00:00
{
int c, i;
2014-10-07 06:05:30 +00:00
c = getch();
if (c == -1)
idle++;
else
idle = 0;
2014-12-20 19:14:10 +00:00
for (i = 0; i < LEN(bindings); i++)
if (c == bindings[i].sym) {
*run = bindings[i].run;
*env = bindings[i].env;
return bindings[i].act;
}
2014-10-07 06:05:30 +00:00
return 0;
}
char *
readln(void)
{
static char ln[LINE_MAX];
timeout(-1);
echo();
curs_set(TRUE);
2015-11-20 11:55:41 +00:00
memset(ln, 0, sizeof(ln));
wgetnstr(stdscr, ln, sizeof(ln) - 1);
noecho();
curs_set(FALSE);
timeout(1000);
return ln[0] ? ln : NULL;
}
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);
2014-12-20 19:35:27 +00:00
if (dirp == NULL)
2014-10-07 06:05:30 +00:00
return 0;
2014-12-20 19:35:27 +00:00
closedir(dirp);
return 1;
2014-10-07 06:05:30 +00:00
}
char *
mkpath(char *dir, char *name, char *out, size_t n)
{
/* Handle absolute path */
2017-03-29 14:12:23 +00:00
if (name[0] == '/')
strlcpy(out, name, n);
2017-03-29 14:12:23 +00:00
else {
/* Handle root case */
2017-03-29 14:12:23 +00:00
if (strcmp(dir, "/") == 0)
snprintf(out, n, "/%s", name);
else
snprintf(out, n, "%s/%s", dir, name);
}
return out;
}
void
printent(struct entry *ent, int active)
{
2017-03-29 20:55:51 +00:00
if (S_ISDIR(ent->mode))
printw("%s%s/\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISLNK(ent->mode))
printw("%s%s@\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISSOCK(ent->mode))
printw("%s%s=\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISFIFO(ent->mode))
printw("%s%s|\n", active ? CURSR : EMPTY, ent->name);
else if (ent->mode & S_IXUSR)
printw("%s%s*\n", active ? CURSR : EMPTY, ent->name);
else
2017-03-29 20:55:51 +00:00
printw("%s%s\n", active ? CURSR : EMPTY, ent->name);
}
char*
coolsize(off_t size)
{
int i = 0;
long double fsize = (double)size;
while (fsize > 1024) {
fsize /= 1024;
i++;
}
snprintf(size_buf, 12, "%.*Lf%s", i, fsize, size_units[i]);
return size_buf;
}
void
printent_long(struct entry *ent, int active)
{
if (S_ISDIR(ent->mode))
printw("%s%-32.32s D\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISLNK(ent->mode))
printw("%s%-32.32s L\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISSOCK(ent->mode))
printw("%s%-32.32s S\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISFIFO(ent->mode))
printw("%s%-32.32s F\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISBLK(ent->mode))
printw("%s%-32.32s B\n", active ? CURSR : EMPTY, ent->name);
else if (S_ISCHR(ent->mode))
printw("%s%-32.32s C\n", active ? CURSR : EMPTY, ent->name);
else if (ent->mode & S_IXUSR)
2017-03-29 20:55:51 +00:00
printw("%s%-32.32s E %s\n", active ? CURSR : EMPTY, ent->name,
coolsize(ent->size));
else
2017-03-29 20:55:51 +00:00
printw("%s%-32.32s R %s\n", active ? CURSR : EMPTY, ent->name,
coolsize(ent->size));
}
2014-10-22 15:21:50 +00:00
int
dentfill(char *path, struct entry **dents,
2014-10-22 15:21:50 +00:00
int (*filter)(regex_t *, char *), regex_t *re)
{
char newpath[PATH_MAX];
DIR *dirp;
2014-10-22 15:21:50 +00:00
struct dirent *dp;
struct stat sb;
2014-12-17 11:48:34 +00:00
int r, n = 0;
dirp = opendir(path);
if (dirp == NULL)
return 0;
2014-10-22 15:21:50 +00:00
while ((dp = readdir(dirp)) != NULL) {
/* Skip self and parent */
2016-02-19 14:03:06 +00:00
if (strcmp(dp->d_name, ".") == 0 ||
strcmp(dp->d_name, "..") == 0)
2014-10-22 15:21:50 +00:00
continue;
if (filter(re, dp->d_name) == 0)
continue;
*dents = xrealloc(*dents, (n + 1) * sizeof(**dents));
strlcpy((*dents)[n].name, dp->d_name, sizeof((*dents)[n].name));
2014-10-22 15:21:50 +00:00
/* Get mode flags */
mkpath(path, dp->d_name, newpath, sizeof(newpath));
r = lstat(newpath, &sb);
2014-10-22 15:21:50 +00:00
if (r == -1)
printerr(1, "lstat");
2014-10-22 15:21:50 +00:00
(*dents)[n].mode = sb.st_mode;
(*dents)[n].t = sb.st_mtime;
(*dents)[n].size = sb.st_size;
2014-10-22 15:21:50 +00:00
n++;
}
/* Should never be null */
r = closedir(dirp);
if (r == -1)
printerr(1, "closedir");
2014-10-22 15:21:50 +00:00
return n;
}
void
dentfree(struct entry *dents)
2014-10-22 15:21:50 +00:00
{
free(dents);
}
/* Return the position of the matching entry or 0 otherwise */
int
dentfind(struct entry *dents, int n, char *cwd, char *path)
{
char tmp[PATH_MAX];
int i;
if (path == NULL)
return 0;
for (i = 0; i < n; i++) {
mkpath(cwd, dents[i].name, tmp, sizeof(tmp));
DPRINTF_S(path);
DPRINTF_S(tmp);
if (strcmp(tmp, path) == 0)
return i;
}
return 0;
}
int
populate(char *path, char *oldpath, char *fltr)
2014-10-07 06:05:30 +00:00
{
regex_t re;
int r;
2014-10-22 15:33:59 +00:00
/* Can fail when permissions change while browsing */
if (canopendir(path) == 0)
return -1;
2014-10-07 06:05:30 +00:00
/* Search filter */
r = setfilter(&re, fltr);
if (r != 0)
return -1;
dentfree(dents);
ndents = 0;
dents = NULL;
ndents = dentfill(path, &dents, visible, &re);
2014-10-07 06:05:30 +00:00
qsort(dents, ndents, sizeof(*dents), entrycmp);
2014-10-07 06:05:30 +00:00
/* Find cur from history */
cur = dentfind(dents, ndents, path, oldpath);
return 0;
}
2014-10-07 11:23:44 +00:00
void
redraw(char *path)
{
char cwd[PATH_MAX], cwdresolved[PATH_MAX];
size_t ncols;
int nlines, odd;
int i;
2014-10-07 06:05:30 +00:00
nlines = MIN(LINES - 4, ndents);
/* Clean screen */
erase();
2014-10-07 06:05:30 +00:00
/* Strip trailing slashes */
for (i = strlen(path) - 1; i > 0; i--)
if (path[i] == '/')
path[i] = '\0';
else
break;
DPRINTF_D(cur);
DPRINTF_S(path);
/* No text wrapping in cwd line */
ncols = COLS;
if (ncols > PATH_MAX)
ncols = PATH_MAX;
strlcpy(cwd, path, ncols);
cwd[ncols - strlen(CWD) - 1] = '\0';
if (!realpath(path, cwdresolved)) {
printmsg("Cannot resolve path");
return;
}
printw(CWD "%s\n\n", cwdresolved);
/* Print listing */
odd = ISODD(nlines);
2017-03-29 14:12:23 +00:00
if (cur < (nlines >> 1)) {
for (i = 0; i < nlines; i++)
printptr(&dents[i], i == cur);
2017-03-29 14:12:23 +00:00
} else if (cur >= ndents - (nlines >> 1)) {
for (i = ndents - nlines; i < ndents; i++)
printptr(&dents[i], i == cur);
} else {
2017-03-29 14:12:23 +00:00
nlines >>= 1;
for (i = cur - nlines; i < cur + nlines + odd; i++)
printptr(&dents[i], i == cur);
}
}
void
browse(char *ipath, char *ifilter)
{
char path[PATH_MAX], oldpath[PATH_MAX], newpath[PATH_MAX];
char fltr[LINE_MAX];
char *bin, *dir, *tmp, *run, *env;
struct stat sb;
regex_t re;
int r, fd;
strlcpy(path, ipath, sizeof(path));
strlcpy(fltr, ifilter, sizeof(fltr));
oldpath[0] = '\0';
begin:
r = populate(path, oldpath, fltr);
if (r == -1) {
printwarn();
goto nochange;
}
for (;;) {
redraw(path);
2014-10-07 06:05:30 +00:00
nochange:
switch (nextsel(&run, &env)) {
case SEL_QUIT:
dentfree(dents);
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 */
if (strcmp(path, "/") == 0 ||
strcmp(path, ".") == 0 ||
strchr(path, '/') == NULL)
2014-10-07 06:05:30 +00:00
goto nochange;
dir = xdirname(path);
if (canopendir(dir) == 0) {
printwarn();
goto nochange;
}
/* Save history */
strlcpy(oldpath, path, sizeof(oldpath));
strlcpy(path, dir, sizeof(path));
/* Reset filter */
strlcpy(fltr, ifilter, sizeof(fltr));
goto begin;
case SEL_GOIN:
2014-10-07 14:07:56 +00:00
/* Cannot descend in empty directories */
if (ndents == 0)
2014-10-07 14:07:56 +00:00
goto nochange;
mkpath(path, dents[cur].name, newpath, sizeof(newpath));
DPRINTF_S(newpath);
/* Get path info */
fd = open(newpath, O_RDONLY | O_NONBLOCK);
if (fd == -1) {
printwarn();
goto nochange;
}
r = fstat(fd, &sb);
if (r == -1) {
printwarn();
close(fd);
goto nochange;
}
close(fd);
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:
if (canopendir(newpath) == 0) {
printwarn();
goto nochange;
}
strlcpy(path, newpath, sizeof(path));
/* Reset filter */
strlcpy(fltr, ifilter, sizeof(fltr));
goto begin;
2014-10-22 15:50:30 +00:00
case S_IFREG:
2016-08-21 08:18:19 +00:00
/* If default mime opener is set, use it */
if (opener) {
char cmd[MAX_LEN];
int status;
2016-08-21 10:19:54 +00:00
snprintf(cmd, MAX_LEN, "%s \"%s\" > /dev/null 2>&1",
opener, newpath);
2016-08-21 08:18:19 +00:00
status = system(cmd);
continue;
}
/* Try custom applications */
bin = openwith(newpath);
char *execvim = "vim";
2014-10-07 06:05:30 +00:00
if (bin == NULL) {
2016-08-21 10:32:03 +00:00
/* If a custom handler application is not set, open
plain text files with vim, then try fallback_opener */
FILE *fp;
2016-08-21 08:18:19 +00:00
char cmd[MAX_LEN];
int status;
2016-08-21 08:18:19 +00:00
snprintf(cmd, MAX_LEN, "file \"%s\"", newpath);
fp = popen(cmd, "r");
if (fp == NULL)
goto nochange;
2016-08-21 08:18:19 +00:00
if (fgets(cmd, MAX_LEN, fp) == NULL) {
pclose(fp);
goto nochange;
}
pclose(fp);
if (strstr(cmd, "ASCII text") != NULL)
bin = execvim;
2016-08-21 10:19:54 +00:00
else if (fallback_opener) {
snprintf(cmd, MAX_LEN, "%s \"%s\" > /dev/null 2>&1",
fallback_opener, newpath);
status = system(cmd);
continue;
2016-08-21 10:19:54 +00:00
} else {
printmsg("No association");
goto nochange;
}
2014-10-07 06:05:30 +00:00
}
2014-10-07 11:37:23 +00:00
exitcurses();
spawn(bin, newpath, NULL);
2014-10-07 11:37:23 +00:00
initcurses();
2014-12-18 09:13:45 +00:00
continue;
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)
tmp = ifilter;
2015-01-27 07:58:32 +00:00
/* Check and report regex errors */
r = setfilter(&re, tmp);
if (r != 0)
goto nochange;
strlcpy(fltr, tmp, sizeof(fltr));
DPRINTF_S(fltr);
2014-11-26 16:09:03 +00:00
/* Save current */
if (ndents > 0)
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
goto begin;
case SEL_NEXT:
if (cur < ndents - 1)
cur++;
2017-03-29 10:29:56 +00:00
else if (ndents)
/* Roll over, set cursor to first entry */
cur = 0;
break;
case SEL_PREV:
if (cur > 0)
cur--;
2017-03-29 10:29:56 +00:00
else if (ndents)
/* Roll over, set cursor to last entry */
cur = ndents - 1;
break;
case SEL_PGDN:
if (cur < ndents - 1)
cur += MIN((LINES - 4) / 2, ndents - 1 - cur);
break;
case SEL_PGUP:
if (cur > 0)
cur -= MIN((LINES - 4) / 2, cur);
break;
case SEL_HOME:
cur = 0;
break;
case SEL_END:
cur = ndents - 1;
break;
case SEL_CD:
/* Read target dir */
printprompt("chdir: ");
tmp = readln();
if (tmp == NULL) {
clearprompt();
goto nochange;
}
mkpath(path, tmp, newpath, sizeof(newpath));
if (canopendir(newpath) == 0) {
printwarn();
goto nochange;
}
strlcpy(path, newpath, sizeof(path));
/* Reset filter */
strlcpy(fltr, ifilter, sizeof(fltr))
2014-10-22 15:56:31 +00:00
DPRINTF_S(path);
goto begin;
case SEL_CDHOME:
tmp = getenv("HOME");
if (tmp == NULL) {
clearprompt();
goto nochange;
}
if (canopendir(tmp) == 0) {
printwarn();
goto nochange;
}
strlcpy(path, tmp, sizeof(path));
/* Reset filter */
strlcpy(fltr, ifilter, sizeof(fltr));
DPRINTF_S(path);
goto begin;
case SEL_TOGGLEDOT:
showhidden ^= 1;
initfilter(showhidden, &ifilter);
strlcpy(fltr, ifilter, sizeof(fltr));
goto begin;
case SEL_DETAIL:
showdetail = !showdetail;
showdetail ? (printptr = &printent_long) : (printptr = &printent);
goto begin;
case SEL_FSIZE:
sizeorder = !sizeorder;
mtimeorder = 0;
/* Save current */
if (ndents > 0)
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
goto begin;
case SEL_MTIME:
mtimeorder = !mtimeorder;
sizeorder = 0;
/* Save current */
if (ndents > 0)
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
goto begin;
case SEL_REDRAW:
/* Save current */
if (ndents > 0)
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
goto begin;
case SEL_RUN:
run = xgetenv(env, run);
exitcurses();
spawn(run, NULL, path);
initcurses();
/* Re-populate as directory content may have changed */
goto begin;
case SEL_RUNARG:
run = xgetenv(env, run);
exitcurses();
spawn(run, dents[cur].name, path);
initcurses();
break;
}
/* Screensaver */
if (idletimeout != 0 && idle == idletimeout) {
idle = 0;
exitcurses();
spawn(idlecmd, NULL, NULL);
initcurses();
}
2014-10-07 06:05:30 +00:00
}
}
2015-11-26 16:00:26 +00:00
void
usage(char *argv0)
{
fprintf(stderr, "usage: %s [dir]\n", argv0);
exit(1);
}
2014-10-07 06:05:30 +00:00
int
main(int argc, char *argv[])
{
char cwd[PATH_MAX], *ipath;
2014-10-21 11:03:53 +00:00
char *ifilter;
2015-11-26 16:00:26 +00:00
if (argc > 2)
usage(argv[0]);
2015-03-12 12:57:34 +00:00
/* Confirm we are in a terminal */
if (!isatty(0) || !isatty(1)) {
fprintf(stderr, "stdin or stdout is not a tty\n");
exit(1);
}
2015-03-12 12:57:34 +00:00
2014-10-21 11:03:53 +00:00
if (getuid() == 0)
showhidden = 1;
initfilter(showhidden, &ifilter);
2014-10-07 06:05:30 +00:00
printptr = &printent;
if (argv[1] != NULL) {
ipath = argv[1];
} else {
ipath = getcwd(cwd, sizeof(cwd));
if (ipath == NULL)
ipath = "/";
}
2016-08-21 08:18:19 +00:00
/* Get the default desktop mime opener, if set */
opener = getenv("NOICE_OPENER");
2016-08-21 10:19:54 +00:00
/* Get the fallback desktop mime opener, if set */
fallback_opener = getenv("NOICE_FALLBACK_OPENER");
signal(SIGINT, SIG_IGN);
2014-10-07 06:05:30 +00:00
/* Test initial path */
if (canopendir(ipath) == 0) {
fprintf(stderr, "%s: %s\n", ipath, strerror(errno));
exit(1);
}
2014-10-07 06:05:30 +00:00
/* Set locale before curses setup */
setlocale(LC_ALL, "");
2014-10-07 11:37:23 +00:00
initcurses();
browse(ipath, ifilter);
2014-10-07 11:37:23 +00:00
exitcurses();
exit(0);
2014-10-07 06:05:30 +00:00
}