mirror of
https://github.com/jarun/nnn.git
synced 2024-11-05 02:43:12 +00:00
1742598256
We care about the directory we are going to, so there is no reason to get locked inside there if the parent is readable.
909 lines
15 KiB
C
909 lines
15 KiB
C
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <curses.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <libgen.h>
|
|
#include <limits.h>
|
|
#include <locale.h>
|
|
#include <regex.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
#ifdef DEBUG
|
|
#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)
|
|
#else
|
|
#define DPRINTF_D(x)
|
|
#define DPRINTF_U(x)
|
|
#define DPRINTF_S(x)
|
|
#define DPRINTF_P(x)
|
|
#endif /* DEBUG */
|
|
|
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
|
#undef MIN
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
|
#define ISODD(x) ((x) & 1)
|
|
#define CONTROL(c) ((c) ^ 0x40)
|
|
|
|
struct assoc {
|
|
char *regex; /* Regex to match on filename */
|
|
char *bin; /* Program */
|
|
};
|
|
|
|
/* Supported actions */
|
|
enum action {
|
|
SEL_QUIT = 1,
|
|
SEL_BACK,
|
|
SEL_GOIN,
|
|
SEL_FLTR,
|
|
SEL_TYPE,
|
|
SEL_NEXT,
|
|
SEL_PREV,
|
|
SEL_PGDN,
|
|
SEL_PGUP,
|
|
SEL_CD,
|
|
SEL_MTIME,
|
|
SEL_REDRAW,
|
|
SEL_RUN,
|
|
SEL_RUNARG,
|
|
};
|
|
|
|
struct key {
|
|
int sym; /* Key pressed */
|
|
enum action act; /* Action */
|
|
char *run; /* Program to run */
|
|
};
|
|
|
|
#include "config.h"
|
|
|
|
struct entry {
|
|
char *name;
|
|
mode_t mode;
|
|
time_t t;
|
|
};
|
|
|
|
/* Global context */
|
|
struct entry *dents;
|
|
int n, cur;
|
|
char *path, *oldpath;
|
|
char *fltr;
|
|
|
|
/*
|
|
* Layout:
|
|
* .---------
|
|
* | cwd: /mnt/path
|
|
* |
|
|
* | file0
|
|
* | file1
|
|
* | > file2
|
|
* | file3
|
|
* | file4
|
|
* ...
|
|
* | filen
|
|
* |
|
|
* | Permission denied
|
|
* '------
|
|
*/
|
|
|
|
void printmsg(char *msg);
|
|
void printwarn(void);
|
|
void printerr(int ret, char *prefix);
|
|
char *makepath(char *dir, char *name);
|
|
|
|
#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)
|
|
write(fd, buf, r);
|
|
va_end(ap);
|
|
return r;
|
|
}
|
|
|
|
void *
|
|
xmalloc(size_t size)
|
|
{
|
|
void *p;
|
|
|
|
p = malloc(size);
|
|
if (p == NULL)
|
|
printerr(1, "malloc");
|
|
return p;
|
|
}
|
|
|
|
void *
|
|
xrealloc(void *p, size_t size)
|
|
{
|
|
p = realloc(p, size);
|
|
if (p == NULL)
|
|
printerr(1, "realloc");
|
|
return p;
|
|
}
|
|
|
|
char *
|
|
xstrdup(const char *s)
|
|
{
|
|
char *p;
|
|
|
|
p = strdup(s);
|
|
if (p == NULL)
|
|
printerr(1, "strdup");
|
|
return p;
|
|
}
|
|
|
|
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);
|
|
if (p == NULL) {
|
|
free(tmp);
|
|
printerr(1, "dirname");
|
|
}
|
|
/* Make sure this is a malloc(3)-ed string */
|
|
p = xstrdup(p);
|
|
free(tmp);
|
|
return p;
|
|
}
|
|
|
|
void
|
|
spawn(const char *file, const char *arg, const char *dir)
|
|
{
|
|
pid_t pid;
|
|
int status;
|
|
|
|
pid = fork();
|
|
if (pid == 0) {
|
|
if (dir != NULL)
|
|
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 *
|
|
openwith(char *file)
|
|
{
|
|
regex_t regex;
|
|
char *bin = NULL;
|
|
int i;
|
|
|
|
for (i = 0; i < LEN(assocs); i++) {
|
|
if (regcomp(®ex, assocs[i].regex,
|
|
REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
|
|
continue;
|
|
if (regexec(®ex, file, 0, NULL, 0) == 0) {
|
|
bin = assocs[i].bin;
|
|
break;
|
|
}
|
|
}
|
|
DPRINTF_S(bin);
|
|
|
|
return bin;
|
|
}
|
|
|
|
int
|
|
setfilter(regex_t *regex, char *filter)
|
|
{
|
|
char *errbuf;
|
|
int r;
|
|
|
|
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
|
|
if (r != 0) {
|
|
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)
|
|
{
|
|
return regexec(regex, file, 0, NULL, 0) == 0;
|
|
}
|
|
|
|
int
|
|
entrycmp(const void *va, const void *vb)
|
|
{
|
|
const struct entry *a, *b;
|
|
|
|
a = (struct entry *)va;
|
|
b = (struct entry *)vb;
|
|
|
|
if (mtimeorder)
|
|
return b->t - a->t;
|
|
return strcmp(a->name, b->name);
|
|
}
|
|
|
|
void
|
|
initcurses(void)
|
|
{
|
|
initscr();
|
|
cbreak();
|
|
noecho();
|
|
nonl();
|
|
intrflush(stdscr, FALSE);
|
|
keypad(stdscr, TRUE);
|
|
curs_set(FALSE); /* Hide cursor */
|
|
}
|
|
|
|
void
|
|
exitcurses(void)
|
|
{
|
|
endwin(); /* Restore terminal */
|
|
}
|
|
|
|
/* Messages show up at the bottom */
|
|
void
|
|
printmsg(char *msg)
|
|
{
|
|
move(LINES - 1, 0);
|
|
printw("%s\n", msg);
|
|
}
|
|
|
|
/* Display warning as a message */
|
|
void
|
|
printwarn(void)
|
|
{
|
|
printmsg(strerror(errno));
|
|
}
|
|
|
|
/* Kill curses and display error before exiting */
|
|
void
|
|
printerr(int ret, char *prefix)
|
|
{
|
|
exitcurses();
|
|
fprintf(stderr, "%s: %s\n", prefix, strerror(errno));
|
|
exit(ret);
|
|
}
|
|
|
|
/* Clear the last line */
|
|
void
|
|
clearprompt(void)
|
|
{
|
|
printmsg("");
|
|
}
|
|
|
|
/* Print prompt on the last line */
|
|
void
|
|
printprompt(char *str)
|
|
{
|
|
clearprompt();
|
|
printw(str);
|
|
}
|
|
|
|
/* Returns SEL_* if key is bound and 0 otherwise
|
|
Also modifies the run pointer (used on SEL_{RUN,RUNARG}) */
|
|
int
|
|
nextsel(char **run)
|
|
{
|
|
int c, i;
|
|
|
|
c = getch();
|
|
|
|
for (i = 0; i < LEN(bindings); i++)
|
|
if (c == bindings[i].sym) {
|
|
*run = bindings[i].run;
|
|
return bindings[i].act;
|
|
}
|
|
|
|
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;
|
|
|
|
while ((c = getch()) != ERR) {
|
|
if (c == KEY_ENTER || c == '\r')
|
|
break;
|
|
if (c == KEY_BACKSPACE || c == CONTROL('H')) {
|
|
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;
|
|
}
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
ln[i] = c;
|
|
i++;
|
|
}
|
|
if (ln != NULL) {
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
ln[i] = '\0';
|
|
}
|
|
|
|
curs_set(FALSE);
|
|
noecho();
|
|
|
|
return ln;
|
|
}
|
|
|
|
/*
|
|
* Read one key and modify the provided string accordingly.
|
|
* Returns 0 when more input is expected and 1 on completion.
|
|
*/
|
|
int
|
|
readmore(char **str)
|
|
{
|
|
int c, ret = 0;
|
|
int i;
|
|
char *ln = *str;
|
|
|
|
if (ln != NULL)
|
|
i = strlen(ln);
|
|
else
|
|
i = 0;
|
|
DPRINTF_D(i);
|
|
|
|
curs_set(TRUE);
|
|
|
|
c = getch();
|
|
switch (c) {
|
|
case KEY_ENTER:
|
|
case '\r':
|
|
ret = 1;
|
|
break;
|
|
case KEY_BACKSPACE:
|
|
case CONTROL('H'):
|
|
i--;
|
|
if (i > 0) {
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
ln[i] = '\0';
|
|
} else {
|
|
free(ln);
|
|
ln = NULL;
|
|
}
|
|
break;
|
|
default:
|
|
i++;
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
ln[i - 1] = c;
|
|
ln[i] = '\0';
|
|
}
|
|
|
|
curs_set(FALSE);
|
|
|
|
*str = ln;
|
|
|
|
return ret;
|
|
}
|
|
|
|
int
|
|
canopendir(char *path)
|
|
{
|
|
DIR *dirp;
|
|
|
|
dirp = opendir(path);
|
|
if (dirp == NULL)
|
|
return 0;
|
|
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 = xstrdup(ent->name);
|
|
|
|
if (S_ISDIR(ent->mode)) {
|
|
cm = '/';
|
|
maxlen--;
|
|
} else if (S_ISLNK(ent->mode)) {
|
|
cm = '@';
|
|
maxlen--;
|
|
} else if (S_ISSOCK(ent->mode)) {
|
|
cm = '=';
|
|
maxlen--;
|
|
} else if (S_ISFIFO(ent->mode)) {
|
|
cm = '|';
|
|
maxlen--;
|
|
} 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);
|
|
}
|
|
|
|
int
|
|
dentfill(char *path, struct entry **dents,
|
|
int (*filter)(regex_t *, char *), regex_t *re)
|
|
{
|
|
DIR *dirp;
|
|
struct dirent *dp;
|
|
struct stat sb;
|
|
char *newpath;
|
|
int r, n = 0;
|
|
|
|
dirp = opendir(path);
|
|
if (dirp == NULL)
|
|
return 0;
|
|
|
|
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 */
|
|
newpath = makepath(path, dp->d_name);
|
|
r = lstat(newpath, &sb);
|
|
if (r == -1)
|
|
printerr(1, "lstat");
|
|
(*dents)[n].mode = sb.st_mode;
|
|
(*dents)[n].t = sb.st_mtime;
|
|
n++;
|
|
}
|
|
|
|
/* Should never be null */
|
|
r = closedir(dirp);
|
|
if (r == -1)
|
|
printerr(1, "closedir");
|
|
|
|
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[PATH_MAX];
|
|
|
|
/* Handle absolute path */
|
|
if (name[0] == '/') {
|
|
strlcpy(path, name, sizeof(path));
|
|
} else {
|
|
/* Handle root case */
|
|
if (strcmp(dir, "/") == 0) {
|
|
strlcpy(path, "/", sizeof(path));
|
|
strlcat(path, name, sizeof(path));
|
|
} else {
|
|
strlcpy(path, dir, sizeof(path));
|
|
strlcat(path, "/", sizeof(path));
|
|
strlcat(path, name, sizeof(path));
|
|
}
|
|
}
|
|
return xstrdup(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;
|
|
}
|
|
|
|
int
|
|
populate(void)
|
|
{
|
|
regex_t re;
|
|
int r;
|
|
|
|
/* Can fail when permissions change while browsing */
|
|
if (canopendir(path) == 0) {
|
|
printwarn();
|
|
return -1;
|
|
}
|
|
|
|
/* Search filter */
|
|
r = setfilter(&re, fltr);
|
|
if (r != 0)
|
|
return -1;
|
|
|
|
dentfree(dents, n);
|
|
|
|
n = 0;
|
|
dents = NULL;
|
|
|
|
n = dentfill(path, &dents, visible, &re);
|
|
|
|
qsort(dents, n, sizeof(*dents), entrycmp);
|
|
|
|
/* Find cur from history */
|
|
cur = dentfind(dents, n, path, oldpath);
|
|
free(oldpath);
|
|
oldpath = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
redraw(void)
|
|
{
|
|
int nlines, odd;
|
|
char *cwd;
|
|
int i;
|
|
|
|
nlines = MIN(LINES - 4, n);
|
|
|
|
/* Clean screen */
|
|
erase();
|
|
|
|
/* 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 */
|
|
cwd = xmalloc(COLS * sizeof(char));
|
|
strlcpy(cwd, path, COLS * sizeof(char));
|
|
cwd[COLS - strlen(CWD) - 1] = '\0';
|
|
|
|
printw(CWD "%s\n\n", cwd);
|
|
|
|
/* Print listing */
|
|
odd = ISODD(nlines);
|
|
if (cur < nlines / 2) {
|
|
for (i = 0; i < nlines; i++)
|
|
printent(&dents[i], i == cur);
|
|
} else if (cur >= n - nlines / 2) {
|
|
for (i = n - nlines; i < n; i++)
|
|
printent(&dents[i], i == cur);
|
|
} else {
|
|
for (i = cur - nlines / 2;
|
|
i < cur + nlines / 2 + odd; i++)
|
|
printent(&dents[i], i == cur);
|
|
}
|
|
}
|
|
|
|
void
|
|
browse(const char *ipath, const char *ifilter)
|
|
{
|
|
int r, fd;
|
|
regex_t re;
|
|
char *newpath;
|
|
struct stat sb;
|
|
char *name, *bin, *dir, *tmp, *run;
|
|
int nowtyping = 0;
|
|
|
|
oldpath = NULL;
|
|
path = xstrdup(ipath);
|
|
fltr = xstrdup(ifilter);
|
|
begin:
|
|
/* Path and filter should be malloc(3)-ed strings at all times */
|
|
r = populate();
|
|
if (r == -1) {
|
|
nowtyping = 0;
|
|
goto nochange;
|
|
}
|
|
|
|
for (;;) {
|
|
redraw();
|
|
|
|
/* Handle filter-as-you-type mode */
|
|
if (nowtyping)
|
|
goto moretyping;
|
|
nochange:
|
|
switch (nextsel(&run)) {
|
|
case SEL_QUIT:
|
|
free(path);
|
|
free(fltr);
|
|
dentfree(dents, n);
|
|
return;
|
|
case SEL_BACK:
|
|
/* There is no going back */
|
|
if (strcmp(path, "/") == 0 ||
|
|
strcmp(path, ".") == 0 ||
|
|
strchr(path, '/') == NULL)
|
|
goto nochange;
|
|
dir = xdirname(path);
|
|
if (canopendir(dir) == 0) {
|
|
free(dir);
|
|
printwarn();
|
|
goto nochange;
|
|
}
|
|
/* Save history */
|
|
oldpath = path;
|
|
path = dir;
|
|
/* Reset filter */
|
|
free(fltr);
|
|
fltr = xstrdup(ifilter);
|
|
goto begin;
|
|
case SEL_GOIN:
|
|
/* Cannot descend in empty directories */
|
|
if (n == 0)
|
|
goto nochange;
|
|
|
|
name = dents[cur].name;
|
|
newpath = makepath(path, name);
|
|
DPRINTF_S(newpath);
|
|
|
|
/* Get path info */
|
|
fd = open(newpath, O_RDONLY | O_NONBLOCK);
|
|
if (fd == -1) {
|
|
printwarn();
|
|
free(newpath);
|
|
goto nochange;
|
|
}
|
|
r = fstat(fd, &sb);
|
|
if (r == -1) {
|
|
printwarn();
|
|
close(fd);
|
|
free(newpath);
|
|
goto nochange;
|
|
}
|
|
close(fd);
|
|
DPRINTF_U(sb.st_mode);
|
|
|
|
switch (sb.st_mode & S_IFMT) {
|
|
case S_IFDIR:
|
|
if (canopendir(newpath) == 0) {
|
|
printwarn();
|
|
free(newpath);
|
|
goto nochange;
|
|
}
|
|
free(path);
|
|
path = newpath;
|
|
/* Reset filter */
|
|
free(fltr);
|
|
fltr = xstrdup(ifilter);
|
|
goto begin;
|
|
case S_IFREG:
|
|
bin = openwith(newpath);
|
|
if (bin == NULL) {
|
|
printmsg("No association");
|
|
free(newpath);
|
|
goto nochange;
|
|
}
|
|
exitcurses();
|
|
spawn(bin, newpath, NULL);
|
|
initcurses();
|
|
free(newpath);
|
|
continue;
|
|
default:
|
|
printmsg("Unsupported file");
|
|
goto nochange;
|
|
}
|
|
case SEL_FLTR:
|
|
/* Read filter */
|
|
printprompt("filter: ");
|
|
tmp = readln();
|
|
if (tmp == NULL)
|
|
tmp = xstrdup(ifilter);
|
|
/* Check and report regex errors */
|
|
r = setfilter(&re, tmp);
|
|
if (r != 0) {
|
|
free(tmp);
|
|
goto nochange;
|
|
}
|
|
free(fltr);
|
|
fltr = tmp;
|
|
DPRINTF_S(fltr);
|
|
/* Save current */
|
|
if (n > 0)
|
|
oldpath = makepath(path, dents[cur].name);
|
|
goto begin;
|
|
case SEL_TYPE:
|
|
nowtyping = 1;
|
|
tmp = NULL;
|
|
moretyping:
|
|
printprompt("type: ");
|
|
if (tmp != NULL)
|
|
printw("%s", tmp);
|
|
r = readmore(&tmp);
|
|
DPRINTF_D(r);
|
|
DPRINTF_S(tmp);
|
|
if (r == 1)
|
|
nowtyping = 0;
|
|
/* Check regex errors */
|
|
if (tmp != NULL) {
|
|
r = setfilter(&re, tmp);
|
|
if (r != 0)
|
|
if (nowtyping) {
|
|
goto moretyping;
|
|
} else {
|
|
free(tmp);
|
|
goto nochange;
|
|
}
|
|
}
|
|
/* Copy or reset filter */
|
|
free(fltr);
|
|
if (tmp != NULL)
|
|
fltr = xstrdup(tmp);
|
|
else
|
|
fltr = xstrdup(ifilter);
|
|
/* Save current */
|
|
if (n > 0)
|
|
oldpath = makepath(path, dents[cur].name);
|
|
if (!nowtyping)
|
|
free(tmp);
|
|
goto begin;
|
|
case SEL_NEXT:
|
|
if (cur < n - 1)
|
|
cur++;
|
|
break;
|
|
case SEL_PREV:
|
|
if (cur > 0)
|
|
cur--;
|
|
break;
|
|
case SEL_PGDN:
|
|
if (cur < n - 1)
|
|
cur += MIN((LINES - 4) / 2, n - 1 - cur);
|
|
break;
|
|
case SEL_PGUP:
|
|
if (cur > 0)
|
|
cur -= MIN((LINES - 4) / 2, cur);
|
|
break;
|
|
case SEL_CD:
|
|
/* Read target dir */
|
|
printprompt("chdir: ");
|
|
tmp = readln();
|
|
if (tmp == NULL) {
|
|
clearprompt();
|
|
goto nochange;
|
|
}
|
|
newpath = makepath(path, tmp);
|
|
free(tmp);
|
|
if (canopendir(newpath) == 0) {
|
|
free(newpath);
|
|
printwarn();
|
|
goto nochange;
|
|
}
|
|
free(path);
|
|
path = newpath;
|
|
free(fltr);
|
|
fltr = xstrdup(ifilter); /* Reset filter */
|
|
DPRINTF_S(path);
|
|
goto begin;
|
|
case SEL_MTIME:
|
|
mtimeorder = !mtimeorder;
|
|
goto begin;
|
|
case SEL_REDRAW:
|
|
goto begin;
|
|
case SEL_RUN:
|
|
exitcurses();
|
|
spawn(run, NULL, path);
|
|
initcurses();
|
|
break;
|
|
case SEL_RUNARG:
|
|
name = dents[cur].name;
|
|
exitcurses();
|
|
spawn(run, name, path);
|
|
initcurses();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
char cwd[PATH_MAX], *ipath;
|
|
char *ifilter;
|
|
|
|
/* Confirm we are in a terminal */
|
|
if (!isatty(STDIN_FILENO))
|
|
printerr(1, "isatty");
|
|
|
|
if (getuid() == 0)
|
|
ifilter = ".";
|
|
else
|
|
ifilter = "^[^.]"; /* Hide dotfiles */
|
|
|
|
if (argv[1] != NULL) {
|
|
ipath = argv[1];
|
|
} else {
|
|
ipath = getcwd(cwd, sizeof(cwd));
|
|
if (ipath == NULL)
|
|
ipath = "/";
|
|
}
|
|
|
|
/* Test initial path */
|
|
if (canopendir(ipath) == 0)
|
|
printerr(1, ipath);
|
|
|
|
/* Set locale before curses setup */
|
|
setlocale(LC_ALL, "");
|
|
|
|
initcurses();
|
|
|
|
browse(ipath, ifilter);
|
|
|
|
exitcurses();
|
|
|
|
return 0;
|
|
}
|