2014-10-08 07:52:44 +00:00
|
|
|
#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))
|
2014-10-07 14:00:25 +00:00
|
|
|
#define ISODD(x) ((x) & 1)
|
2014-10-09 14:54:07 +00:00
|
|
|
#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" },
|
2014-10-10 11:57:02 +00:00
|
|
|
{ "\\.(png|jpg|gif)$", "feh" },
|
|
|
|
{ "\\.(html|svg)$", "firefox" },
|
|
|
|
{ "\\.pdf$", "mupdf" },
|
2014-10-09 14:23:16 +00:00
|
|
|
{ "\\.sh$", "sh" },
|
|
|
|
{ ".*", "less" },
|
2014-10-07 15:36:29 +00:00
|
|
|
};
|
|
|
|
|
2014-10-09 13:23:12 +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;
|
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
void printmsg(char *msg);
|
|
|
|
void printwarn(void);
|
|
|
|
void printerr(int ret, char *prefix);
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
char *
|
2014-10-07 14:32:03 +00:00
|
|
|
openwith(char *file)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2014-10-09 09:33:49 +00:00
|
|
|
regex_t regex;
|
2014-10-07 14:32:03 +00:00
|
|
|
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(®ex, assocs[i].regex,
|
|
|
|
REG_NOSUB | REG_EXTENDED) != 0)
|
|
|
|
continue;
|
|
|
|
if (regexec(®ex, file, 0, NULL, 0) != REG_NOMATCH) {
|
2014-10-07 14:32:03 +00:00
|
|
|
bin = assocs[i].bin;
|
2014-10-09 09:33:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 14:32:03 +00:00
|
|
|
DPRINTF_S(bin);
|
|
|
|
|
|
|
|
return bin;
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
int
|
|
|
|
setfilter(regex_t *regex, char *filter)
|
|
|
|
{
|
|
|
|
char *errbuf;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED);
|
|
|
|
if (r != 0) {
|
|
|
|
errbuf = malloc(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
|
2014-10-09 13:23:12 +00:00
|
|
|
entrycmp(const void *va, const void *vb)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2014-10-09 13:23:12 +00:00
|
|
|
const struct entry *a, *b;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-09 13:23:12 +00:00
|
|
|
a = (struct entry *)va;
|
|
|
|
b = (struct entry *)vb;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-09 13:23:12 +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
|
2014-10-10 07:06:31 +00:00
|
|
|
* Returns SEL_{QUIT,BACK,GOIN,FLTR} otherwise
|
2014-10-07 06:05:30 +00:00
|
|
|
*/
|
2014-10-10 07:06:31 +00:00
|
|
|
#define SEL_QUIT 1
|
|
|
|
#define SEL_BACK 2
|
|
|
|
#define SEL_GOIN 3
|
|
|
|
#define SEL_FLTR 4
|
2014-10-07 06:05:30 +00:00
|
|
|
int
|
|
|
|
nextsel(int *cur, int max)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
c = getch();
|
|
|
|
switch (c) {
|
|
|
|
case 'q':
|
2014-10-10 07:06:31 +00:00
|
|
|
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':
|
2014-10-10 07:06:31 +00:00
|
|
|
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':
|
2014-10-10 07:06:31 +00:00
|
|
|
return SEL_GOIN;
|
2014-10-10 11:59:30 +00:00
|
|
|
/* Filter */
|
2014-10-09 22:35:47 +00:00
|
|
|
case '/':
|
|
|
|
case '&':
|
2014-10-10 07:06:31 +00:00
|
|
|
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:
|
2014-10-09 14:54:07 +00:00
|
|
|
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:
|
2014-10-09 14:54:07 +00:00
|
|
|
case CONTROL('P'):
|
2014-10-07 06:05:30 +00:00
|
|
|
if (*cur > 0)
|
|
|
|
(*cur)--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
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()) {
|
|
|
|
if (c == KEY_ENTER || c == '\r')
|
|
|
|
break;
|
|
|
|
if (c == KEY_BACKSPACE) {
|
|
|
|
getyx(stdscr, y, x);
|
|
|
|
if (x >= x0) {
|
|
|
|
ln = realloc(ln, (i - 1) * sizeof(*ln));
|
|
|
|
i--;
|
|
|
|
move(y, x);
|
|
|
|
printw("%c", ' ');
|
|
|
|
move(y, x);
|
|
|
|
} else {
|
|
|
|
move(y, x0);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ln = realloc(ln, (i + 1) * sizeof(*ln));
|
|
|
|
ln[i] = c;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (ln != NULL) {
|
|
|
|
ln = realloc(ln, (i + 1) * sizeof(*ln));
|
|
|
|
ln[i] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
curs_set(FALSE);
|
|
|
|
noecho();
|
|
|
|
|
|
|
|
return ln;
|
|
|
|
}
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
int
|
|
|
|
testopendir(char *path)
|
|
|
|
{
|
|
|
|
DIR *dirp;
|
|
|
|
|
|
|
|
dirp = opendir(path);
|
|
|
|
if (dirp == NULL) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
closedir(dirp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 14:07:21 +00:00
|
|
|
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
|
2014-10-09 22:35:47 +00:00
|
|
|
browse(const char *ipath, const char *ifilter)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
|
|
|
DIR *dirp;
|
2014-10-09 13:23:12 +00:00
|
|
|
int dfd;
|
2014-10-07 06:05:30 +00:00
|
|
|
struct dirent *dp;
|
2014-10-09 13:23:12 +00:00
|
|
|
struct entry *dents;
|
2014-10-07 06:05:30 +00:00
|
|
|
int i, n, cur;
|
|
|
|
int r, ret;
|
|
|
|
char *path = strdup(ipath);
|
2014-10-09 22:35:47 +00:00
|
|
|
char *filter = strdup(ifilter);
|
|
|
|
regex_t filter_re;
|
2014-10-07 14:00:25 +00:00
|
|
|
char *cwd;
|
2014-10-09 13:23:12 +00:00
|
|
|
struct stat sb;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
|
|
|
begin:
|
2014-10-10 07:11:50 +00:00
|
|
|
/* Path and filter should be malloc(3)-ed strings 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;
|
|
|
|
}
|
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
/* Search filter */
|
|
|
|
r = setfilter(&filter_re, filter);
|
|
|
|
if (r != 0)
|
|
|
|
goto nochange;
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
while ((dp = readdir(dirp)) != NULL) {
|
2014-10-09 13:23:12 +00:00
|
|
|
char *name;
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
/* Skip self and parent */
|
2014-10-08 11:57:22 +00:00
|
|
|
if (strcmp(dp->d_name, ".") == 0
|
|
|
|
|| strcmp(dp->d_name, "..") == 0)
|
2014-10-07 06:05:30 +00:00
|
|
|
continue;
|
2014-10-09 22:35:47 +00:00
|
|
|
if (!visible(&filter_re, dp->d_name))
|
|
|
|
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");
|
2014-10-09 13:23:12 +00:00
|
|
|
dents[n].name = strdup(dp->d_name);
|
|
|
|
if (dents[n].name == NULL)
|
|
|
|
printerr(1, "strdup");
|
2014-10-10 10:14:55 +00:00
|
|
|
/* Handle root case */
|
|
|
|
if (strcmp(path, "/") == 0)
|
|
|
|
asprintf(&name, "/%s", dents[n].name);
|
|
|
|
else
|
|
|
|
asprintf(&name, "%s/%s", path, dents[n].name);
|
2014-10-09 13:23:12 +00:00
|
|
|
/* Get mode flags */
|
2014-10-09 14:07:21 +00:00
|
|
|
r = lstat(name, &sb);
|
|
|
|
free(name);
|
2014-10-09 13:23:12 +00:00
|
|
|
if (r == -1)
|
|
|
|
printerr(1, "stat");
|
|
|
|
dents[n].mode = sb.st_mode;
|
2014-10-07 06:05:30 +00:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2014-10-09 13:23:12 +00:00
|
|
|
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;
|
2014-10-09 13:23:12 +00:00
|
|
|
int maxlen;
|
2014-10-07 14:00:25 +00:00
|
|
|
int odd;
|
2014-10-10 07:06:31 +00:00
|
|
|
char *pathnew;
|
|
|
|
char *name;
|
|
|
|
char *bin;
|
|
|
|
pid_t pid;
|
|
|
|
int fd;
|
|
|
|
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();
|
|
|
|
|
2014-10-07 18:02:58 +00:00
|
|
|
/* Strip trailing slashes */
|
2014-10-10 10:14:55 +00:00
|
|
|
for (i = strlen(path) - 1; i > 0; i--)
|
2014-10-07 06:05:30 +00:00
|
|
|
if (path[i] == '/')
|
|
|
|
path[i] = '\0';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
|
|
|
DPRINTF_D(cur);
|
|
|
|
DPRINTF_S(path);
|
|
|
|
|
2014-10-07 14:00:25 +00:00
|
|
|
/* 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));
|
2014-10-07 14:00:25 +00:00
|
|
|
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 */
|
2014-10-07 14:00:25 +00:00
|
|
|
odd = ISODD(nlines);
|
2014-10-07 06:49:46 +00:00
|
|
|
if (cur < nlines / 2) {
|
|
|
|
for (i = 0; i < nlines; i++)
|
2014-10-09 14:07:21 +00:00
|
|
|
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++)
|
2014-10-09 14:07:21 +00:00
|
|
|
printent(&dents[i], i == cur);
|
2014-10-07 06:49:46 +00:00
|
|
|
} else {
|
2014-10-07 14:00:25 +00:00
|
|
|
for (i = cur - nlines / 2;
|
|
|
|
i < cur + nlines / 2 + odd; i++)
|
2014-10-09 14:07:21 +00:00
|
|
|
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);
|
2014-10-10 07:06:31 +00:00
|
|
|
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);
|
2014-10-07 06:05:30 +00:00
|
|
|
return;
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_BACK:
|
2014-10-10 10:14:55 +00:00
|
|
|
/* There is no going back */
|
|
|
|
if (strcmp(path, "/") == 0) {
|
2014-10-07 06:05:30 +00:00
|
|
|
goto nochange;
|
|
|
|
} else {
|
2014-10-07 06:49:46 +00:00
|
|
|
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-10 06:50:46 +00:00
|
|
|
free(filter);
|
|
|
|
filter = strdup(ifilter); /* Reset filter */
|
2014-10-07 06:05:30 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_GOIN:
|
2014-10-07 14:07:56 +00:00
|
|
|
/* Cannot descend in empty directories */
|
|
|
|
if (n == 0)
|
|
|
|
goto nochange;
|
|
|
|
|
2014-10-09 13:23:12 +00:00
|
|
|
name = dents[cur].name;
|
2014-10-08 07:52:44 +00:00
|
|
|
|
2014-10-10 10:22:18 +00:00
|
|
|
/* Handle root case */
|
|
|
|
if (strcmp(path, "/") == 0)
|
|
|
|
asprintf(&pathnew, "/%s", name);
|
|
|
|
else
|
|
|
|
asprintf(&pathnew, "%s/%s", path, name);
|
2014-10-08 08:36:17 +00:00
|
|
|
|
|
|
|
DPRINTF_S(name);
|
2014-10-08 07:52:44 +00:00
|
|
|
DPRINTF_S(pathnew);
|
|
|
|
|
2014-10-08 15:30:39 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
2014-10-08 15:37:55 +00:00
|
|
|
DPRINTF_U(sb.st_mode);
|
2014-10-08 15:30:39 +00:00
|
|
|
/* Directory */
|
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
|
|
|
free(path);
|
|
|
|
path = pathnew;
|
2014-10-10 06:50:46 +00:00
|
|
|
free(filter);
|
|
|
|
filter = strdup(ifilter); /* Reset filter */
|
2014-10-08 15:30:39 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-10-08 15:39:07 +00:00
|
|
|
/* Regular file */
|
2014-10-08 15:30:39 +00:00
|
|
|
if (S_ISREG(sb.st_mode)) {
|
2014-10-07 06:05:30 +00:00
|
|
|
/* Open with */
|
2014-10-07 14:32:03 +00:00
|
|
|
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)
|
2014-10-08 07:52:44 +00:00
|
|
|
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();
|
|
|
|
|
2014-10-08 07:52:44 +00:00
|
|
|
free(pathnew);
|
2014-10-07 06:05:30 +00:00
|
|
|
goto redraw;
|
|
|
|
}
|
2014-10-08 15:30:39 +00:00
|
|
|
/* All the rest */
|
|
|
|
printmsg("Unsupported file");
|
|
|
|
free(pathnew);
|
|
|
|
goto nochange;
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_FLTR:
|
2014-10-09 22:35:47 +00:00
|
|
|
/* Read filter */
|
|
|
|
move(LINES - 1, 0);
|
|
|
|
printw("filter: ");
|
|
|
|
tmp = readln();
|
|
|
|
if (tmp == NULL) {
|
|
|
|
printmsg("");
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
r = setfilter(&re, tmp);
|
|
|
|
if (r != 0) {
|
|
|
|
printmsg("");
|
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-10 06:50:46 +00:00
|
|
|
free(filter);
|
2014-10-09 22:35:47 +00:00
|
|
|
filter = tmp;
|
|
|
|
filter_re = re;
|
|
|
|
DPRINTF_S(filter);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2014-10-09 13:23:12 +00:00
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
free(dents[i].name);
|
2014-10-07 06:05:30 +00:00
|
|
|
free(dents);
|
|
|
|
|
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 *ipath = argv[1] != NULL ? argv[1] : "/";
|
2014-10-09 22:35:47 +00:00
|
|
|
char *ifilter = "^[^.].*"; /* Hide dotfiles */
|
2014-10-07 06:05:30 +00:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
2014-10-09 22:35:47 +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;
|
|
|
|
}
|