2015-11-20 14:36:40 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-10-08 07:52:44 +00:00
|
|
|
#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>
|
2014-10-21 10:29:41 +00:00
|
|
|
#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>
|
2014-11-14 13:05:17 +00:00
|
|
|
#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>
|
|
|
|
|
2014-10-21 10:37:34 +00:00
|
|
|
#include "util.h"
|
2014-10-10 13:55:06 +00:00
|
|
|
|
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))
|
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
|
|
|
};
|
|
|
|
|
2014-11-06 11:46:37 +00:00
|
|
|
/* Supported actions */
|
|
|
|
enum action {
|
|
|
|
SEL_QUIT = 1,
|
|
|
|
SEL_BACK,
|
|
|
|
SEL_GOIN,
|
|
|
|
SEL_FLTR,
|
2015-01-27 08:47:57 +00:00
|
|
|
SEL_TYPE,
|
2014-11-06 11:46:37 +00:00
|
|
|
SEL_NEXT,
|
|
|
|
SEL_PREV,
|
|
|
|
SEL_PGDN,
|
|
|
|
SEL_PGUP,
|
2015-07-12 12:32:31 +00:00
|
|
|
SEL_HOME,
|
|
|
|
SEL_END,
|
2014-11-06 11:46:37 +00:00
|
|
|
SEL_CD,
|
2015-01-31 22:02:59 +00:00
|
|
|
SEL_MTIME,
|
2015-03-11 18:55:28 +00:00
|
|
|
SEL_REDRAW,
|
2015-03-12 14:12:01 +00:00
|
|
|
SEL_RUN,
|
|
|
|
SEL_RUNARG,
|
2014-11-06 11:46:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct key {
|
|
|
|
int sym; /* Key pressed */
|
|
|
|
enum action act; /* Action */
|
2015-03-12 14:12:01 +00:00
|
|
|
char *run; /* Program to run */
|
2015-11-20 15:42:33 +00:00
|
|
|
char *env; /* Environment variable to run */
|
2014-11-06 11:46:37 +00:00
|
|
|
};
|
|
|
|
|
2014-10-21 10:15:27 +00:00
|
|
|
#include "config.h"
|
2014-10-07 15:36:29 +00:00
|
|
|
|
2014-10-09 13:23:12 +00:00
|
|
|
struct entry {
|
|
|
|
char *name;
|
|
|
|
mode_t mode;
|
2015-01-31 22:02:59 +00:00
|
|
|
time_t t;
|
2014-10-09 13:23:12 +00:00
|
|
|
};
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Global context */
|
|
|
|
struct entry *dents;
|
|
|
|
int n, cur;
|
|
|
|
char *path, *oldpath;
|
|
|
|
char *fltr;
|
2015-11-20 14:14:58 +00:00
|
|
|
int idle;
|
2015-07-01 23:56:47 +00:00
|
|
|
|
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
|
|
|
* '------
|
|
|
|
*/
|
|
|
|
|
2015-11-26 15:35:53 +00:00
|
|
|
void printmsg(char *);
|
2014-10-09 22:35:47 +00:00
|
|
|
void printwarn(void);
|
2015-11-26 15:35:53 +00:00
|
|
|
void printerr(int, char *);
|
|
|
|
char *mkpath(char *, char *);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2014-11-14 13:05:17 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-10-22 14:02:15 +00:00
|
|
|
char *
|
|
|
|
xdirname(const char *path)
|
|
|
|
{
|
2016-01-06 15:53:04 +00:00
|
|
|
char tmp[PATH_MAX], *p;
|
2014-10-22 14:02:15 +00:00
|
|
|
|
|
|
|
/* Some implementations of dirname(3) may modify `path' and some
|
2014-10-31 23:56:26 +00:00
|
|
|
* return a pointer inside `path' and we cannot free(3) the
|
2014-10-22 14:02:15 +00:00
|
|
|
* original string if we lose track of it. */
|
2016-01-06 15:53:04 +00:00
|
|
|
strlcpy(tmp, path, sizeof(tmp));
|
2014-10-22 14:02:15 +00:00
|
|
|
p = dirname(tmp);
|
2016-01-06 15:53:04 +00:00
|
|
|
if (p == NULL)
|
2014-10-22 14:02:15 +00:00
|
|
|
printerr(1, "dirname");
|
|
|
|
/* Make sure this is a malloc(3)-ed string */
|
2016-01-06 15:53:04 +00:00
|
|
|
return xstrdup(p);
|
2014-10-22 14:02:15 +00:00
|
|
|
}
|
|
|
|
|
2014-10-21 13:21:00 +00:00
|
|
|
void
|
2014-10-23 14:37:12 +00:00
|
|
|
spawn(const char *file, const char *arg, const char *dir)
|
2014-10-21 13:21:00 +00:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
2014-10-23 14:37:12 +00:00
|
|
|
if (dir != NULL)
|
|
|
|
chdir(dir);
|
2014-10-21 13:21:00 +00:00
|
|
|
execlp(file, file, arg, NULL);
|
|
|
|
_exit(1);
|
|
|
|
} else {
|
|
|
|
/* Ignore interruptions */
|
|
|
|
while (waitpid(pid, &status, 0) == -1)
|
|
|
|
DPRINTF_D(status);
|
|
|
|
DPRINTF_D(pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 15:42:33 +00:00
|
|
|
char *
|
|
|
|
xgetenv(char *name, char *fallback)
|
|
|
|
{
|
2015-11-26 13:42:41 +00:00
|
|
|
char *value;
|
|
|
|
|
2015-11-20 15:42:33 +00:00
|
|
|
if (name == NULL)
|
|
|
|
return fallback;
|
2015-11-26 13:42:41 +00:00
|
|
|
value = getenv(name);
|
2015-11-26 15:10:12 +00:00
|
|
|
return value && value[0] ? value : fallback;
|
2015-11-20 15:42:33 +00:00
|
|
|
}
|
|
|
|
|
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,
|
2015-05-04 21:19:20 +00:00
|
|
|
REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
|
2014-10-09 09:33:49 +00:00
|
|
|
continue;
|
2014-12-17 11:25:55 +00:00
|
|
|
if (regexec(®ex, file, 0, NULL, 0) == 0) {
|
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;
|
|
|
|
|
2015-05-05 17:45:35 +00:00
|
|
|
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
|
2014-10-09 22:35:47 +00:00
|
|
|
if (r != 0) {
|
2016-01-06 15:24:35 +00:00
|
|
|
errbuf = xmalloc(COLS);
|
|
|
|
regerror(r, regex, errbuf, COLS);
|
2014-10-09 22:35:47 +00:00
|
|
|
printmsg(errbuf);
|
|
|
|
free(errbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-01-31 22:02:59 +00:00
|
|
|
if (mtimeorder)
|
|
|
|
return b->t - a->t;
|
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 */
|
2015-11-20 14:14:58 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-10-22 14:54:13 +00:00
|
|
|
/* Clear the last line */
|
|
|
|
void
|
|
|
|
clearprompt(void)
|
|
|
|
{
|
|
|
|
printmsg("");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print prompt on the last line */
|
|
|
|
void
|
|
|
|
printprompt(char *str)
|
|
|
|
{
|
|
|
|
clearprompt();
|
|
|
|
printw(str);
|
|
|
|
}
|
|
|
|
|
2015-03-12 14:12:01 +00:00
|
|
|
/* Returns SEL_* if key is bound and 0 otherwise
|
2015-11-20 15:42:33 +00:00
|
|
|
Also modifies the run and env pointers (used on SEL_{RUN,RUNARG}) */
|
2014-10-07 06:05:30 +00:00
|
|
|
int
|
2015-11-20 15:42:33 +00:00
|
|
|
nextsel(char **run, char **env)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2014-11-06 11:46:37 +00:00
|
|
|
int c, i;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
|
|
|
c = getch();
|
2015-11-20 14:14:58 +00:00
|
|
|
if (c == -1)
|
|
|
|
idle++;
|
|
|
|
else
|
|
|
|
idle = 0;
|
2014-11-06 11:46:37 +00:00
|
|
|
|
2014-12-20 19:14:10 +00:00
|
|
|
for (i = 0; i < LEN(bindings); i++)
|
2015-03-12 14:12:01 +00:00
|
|
|
if (c == bindings[i].sym) {
|
|
|
|
*run = bindings[i].run;
|
2015-11-20 15:42:33 +00:00
|
|
|
*env = bindings[i].env;
|
2014-11-06 11:46:37 +00:00
|
|
|
return bindings[i].act;
|
2015-03-12 14:12:01 +00:00
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
char *
|
|
|
|
readln(void)
|
|
|
|
{
|
2015-11-20 11:38:19 +00:00
|
|
|
char ln[LINE_MAX];
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2015-11-20 14:14:58 +00:00
|
|
|
timeout(-1);
|
2014-10-09 22:35:47 +00:00
|
|
|
echo();
|
|
|
|
curs_set(TRUE);
|
2015-11-20 11:55:41 +00:00
|
|
|
memset(ln, 0, sizeof(ln));
|
2015-11-20 14:04:01 +00:00
|
|
|
wgetnstr(stdscr, ln, sizeof(ln) - 1);
|
2014-10-09 22:35:47 +00:00
|
|
|
noecho();
|
2015-11-20 11:38:19 +00:00
|
|
|
curs_set(FALSE);
|
2015-11-20 14:14:58 +00:00
|
|
|
timeout(1000);
|
2015-11-20 17:41:11 +00:00
|
|
|
return ln[0] ? strdup(ln) : NULL;
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 08:47:57 +00:00
|
|
|
/*
|
|
|
|
* Read one key and modify the provided string accordingly.
|
|
|
|
* Returns 0 when more input is expected and 1 on completion.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
readmore(char **str)
|
|
|
|
{
|
2015-01-28 10:30:59 +00:00
|
|
|
int c, ret = 0;
|
2015-02-17 17:03:51 +00:00
|
|
|
int i;
|
2015-01-27 08:47:57 +00:00
|
|
|
char *ln = *str;
|
|
|
|
|
2015-11-20 14:14:58 +00:00
|
|
|
timeout(-1);
|
2015-01-27 08:47:57 +00:00
|
|
|
if (ln != NULL)
|
|
|
|
i = strlen(ln);
|
|
|
|
else
|
|
|
|
i = 0;
|
|
|
|
DPRINTF_D(i);
|
|
|
|
|
|
|
|
curs_set(TRUE);
|
|
|
|
|
|
|
|
c = getch();
|
2015-01-28 10:30:59 +00:00
|
|
|
switch (c) {
|
|
|
|
case KEY_ENTER:
|
|
|
|
case '\r':
|
2015-01-27 08:47:57 +00:00
|
|
|
ret = 1;
|
2015-01-28 10:30:59 +00:00
|
|
|
break;
|
|
|
|
case KEY_BACKSPACE:
|
|
|
|
case CONTROL('H'):
|
2015-01-27 08:47:57 +00:00
|
|
|
i--;
|
|
|
|
if (i > 0) {
|
|
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
|
|
ln[i] = '\0';
|
|
|
|
} else {
|
|
|
|
free(ln);
|
|
|
|
ln = NULL;
|
|
|
|
}
|
2015-01-28 10:30:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
i++;
|
|
|
|
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
|
|
|
ln[i - 1] = c;
|
|
|
|
ln[i] = '\0';
|
2015-01-27 08:47:57 +00:00
|
|
|
}
|
2015-01-28 10:30:59 +00:00
|
|
|
|
2015-01-27 08:47:57 +00:00
|
|
|
curs_set(FALSE);
|
|
|
|
|
|
|
|
*str = ln;
|
2015-11-20 14:14:58 +00:00
|
|
|
timeout(1000);
|
2015-01-27 08:47:57 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-10-09 14:07:21 +00:00
|
|
|
void
|
|
|
|
printent(struct entry *ent, int active)
|
|
|
|
{
|
2016-01-06 15:55:25 +00:00
|
|
|
char name[PATH_MAX];
|
2014-10-09 14:07:21 +00:00
|
|
|
unsigned int maxlen = COLS - strlen(CURSR) - 1;
|
|
|
|
char cm = 0;
|
|
|
|
|
|
|
|
/* Copy name locally */
|
2016-01-06 15:55:25 +00:00
|
|
|
strlcpy(name, ent->name, sizeof(name));
|
2014-10-09 14:07:21 +00:00
|
|
|
|
|
|
|
if (S_ISDIR(ent->mode)) {
|
|
|
|
cm = '/';
|
|
|
|
maxlen--;
|
|
|
|
} else if (S_ISLNK(ent->mode)) {
|
|
|
|
cm = '@';
|
|
|
|
maxlen--;
|
2014-10-31 23:55:26 +00:00
|
|
|
} else if (S_ISSOCK(ent->mode)) {
|
|
|
|
cm = '=';
|
|
|
|
maxlen--;
|
|
|
|
} else if (S_ISFIFO(ent->mode)) {
|
|
|
|
cm = '|';
|
|
|
|
maxlen--;
|
2014-10-21 14:36:23 +00:00
|
|
|
} else if (ent->mode & S_IXUSR) {
|
|
|
|
cm = '*';
|
|
|
|
maxlen--;
|
2014-10-09 14:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
int
|
2014-11-13 16:49:57 +00:00
|
|
|
dentfill(char *path, struct entry **dents,
|
2014-10-22 15:21:50 +00:00
|
|
|
int (*filter)(regex_t *, char *), regex_t *re)
|
|
|
|
{
|
2014-11-13 16:49:57 +00:00
|
|
|
DIR *dirp;
|
2014-10-22 15:21:50 +00:00
|
|
|
struct dirent *dp;
|
|
|
|
struct stat sb;
|
2014-11-13 16:49:57 +00:00
|
|
|
char *newpath;
|
2014-12-17 11:48:34 +00:00
|
|
|
int r, n = 0;
|
2014-11-13 16:49:57 +00:00
|
|
|
|
|
|
|
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 */
|
|
|
|
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 */
|
2015-11-26 15:33:49 +00:00
|
|
|
newpath = mkpath(path, dp->d_name);
|
2014-11-13 16:49:57 +00:00
|
|
|
r = lstat(newpath, &sb);
|
2014-10-22 15:21:50 +00:00
|
|
|
if (r == -1)
|
2014-11-13 16:49:57 +00:00
|
|
|
printerr(1, "lstat");
|
2016-01-06 15:59:27 +00:00
|
|
|
free(newpath);
|
2014-10-22 15:21:50 +00:00
|
|
|
(*dents)[n].mode = sb.st_mode;
|
2015-01-31 22:02:59 +00:00
|
|
|
(*dents)[n].t = sb.st_mtime;
|
2014-10-22 15:21:50 +00:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2014-11-13 16:49:57 +00:00
|
|
|
/* 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, int n)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
free(dents[i].name);
|
|
|
|
free(dents);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
char *
|
2015-11-26 15:33:49 +00:00
|
|
|
mkpath(char *dir, char *name)
|
2014-10-22 18:05:59 +00:00
|
|
|
{
|
2014-11-14 12:50:41 +00:00
|
|
|
char path[PATH_MAX];
|
2014-10-22 18:05:59 +00:00
|
|
|
|
2014-10-23 14:53:26 +00:00
|
|
|
/* Handle absolute path */
|
|
|
|
if (name[0] == '/') {
|
2014-11-14 12:50:41 +00:00
|
|
|
strlcpy(path, name, sizeof(path));
|
2014-10-23 14:53:26 +00:00
|
|
|
} else {
|
|
|
|
/* Handle root case */
|
2014-11-14 09:59:19 +00:00
|
|
|
if (strcmp(dir, "/") == 0) {
|
2014-11-14 12:50:41 +00:00
|
|
|
strlcpy(path, "/", sizeof(path));
|
|
|
|
strlcat(path, name, sizeof(path));
|
2014-11-14 09:59:19 +00:00
|
|
|
} else {
|
2014-11-14 12:50:41 +00:00
|
|
|
strlcpy(path, dir, sizeof(path));
|
|
|
|
strlcat(path, "/", sizeof(path));
|
|
|
|
strlcat(path, name, sizeof(path));
|
2014-11-14 09:59:19 +00:00
|
|
|
}
|
2014-10-23 14:53:26 +00:00
|
|
|
}
|
2014-11-14 12:50:41 +00:00
|
|
|
return xstrdup(path);
|
2014-10-22 18:05:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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++) {
|
2015-11-26 15:33:49 +00:00
|
|
|
tmp = mkpath(cwd, dents[i].name);
|
2014-10-22 18:05:59 +00:00
|
|
|
DPRINTF_S(path);
|
|
|
|
DPRINTF_S(tmp);
|
|
|
|
if (strcmp(tmp, path) == 0) {
|
|
|
|
free(tmp);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
int
|
|
|
|
populate(void)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2015-07-01 23:56:47 +00:00
|
|
|
regex_t re;
|
|
|
|
int r;
|
2014-10-22 15:33:59 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Can fail when permissions change while browsing */
|
2015-07-02 21:51:58 +00:00
|
|
|
if (canopendir(path) == 0)
|
2015-07-01 23:56:47 +00:00
|
|
|
return -1;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
/* Search filter */
|
2015-07-01 23:56:47 +00:00
|
|
|
r = setfilter(&re, fltr);
|
2014-10-09 22:35:47 +00:00
|
|
|
if (r != 0)
|
2015-07-01 23:56:47 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
dentfree(dents, n);
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
dents = NULL;
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
n = dentfill(path, &dents, visible, &re);
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-09 13:23:12 +00:00
|
|
|
qsort(dents, n, sizeof(*dents), entrycmp);
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
/* Find cur from history */
|
2014-10-23 15:10:45 +00:00
|
|
|
cur = dentfind(dents, n, path, oldpath);
|
2014-12-17 11:54:57 +00:00
|
|
|
free(oldpath);
|
|
|
|
oldpath = NULL;
|
2014-10-22 18:05:59 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-10-07 11:23:44 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
void
|
|
|
|
redraw(void)
|
|
|
|
{
|
2016-01-06 15:21:41 +00:00
|
|
|
char cwd[PATH_MAX], cwdresolved[PATH_MAX];
|
|
|
|
size_t ncols;
|
2015-07-01 23:56:47 +00:00
|
|
|
int nlines, odd;
|
|
|
|
int i;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
nlines = MIN(LINES - 4, n);
|
2014-10-23 15:38:00 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Clean screen */
|
|
|
|
erase();
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2015-07-01 23:56:47 +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 */
|
2016-01-06 15:21:41 +00:00
|
|
|
ncols = COLS;
|
|
|
|
if (ncols > PATH_MAX)
|
|
|
|
ncols = PATH_MAX;
|
|
|
|
strlcpy(cwd, path, ncols);
|
|
|
|
cwd[ncols - strlen(CWD) - 1] = '\0';
|
|
|
|
realpath(cwd, cwdresolved);
|
|
|
|
|
|
|
|
printw(CWD "%s\n\n", cwdresolved);
|
2015-07-01 23:56:47 +00:00
|
|
|
|
|
|
|
/* 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;
|
2015-11-20 15:42:33 +00:00
|
|
|
char *name, *bin, *dir, *tmp, *run, *env;
|
2015-07-01 23:56:47 +00:00
|
|
|
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) {
|
2015-07-02 21:51:58 +00:00
|
|
|
if (!nowtyping) {
|
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
redraw();
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2015-01-27 08:47:57 +00:00
|
|
|
/* Handle filter-as-you-type mode */
|
|
|
|
if (nowtyping)
|
|
|
|
goto moretyping;
|
2014-10-07 06:05:30 +00:00
|
|
|
nochange:
|
2015-11-20 15:42:33 +00:00
|
|
|
switch (nextsel(&run, &env)) {
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_QUIT:
|
2014-10-07 06:05:30 +00:00
|
|
|
free(path);
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
2014-10-22 16:28:27 +00:00
|
|
|
dentfree(dents, n);
|
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 */
|
2014-10-23 14:39:39 +00:00
|
|
|
if (strcmp(path, "/") == 0 ||
|
|
|
|
strcmp(path, ".") == 0 ||
|
|
|
|
strchr(path, '/') == NULL)
|
2014-10-07 06:05:30 +00:00
|
|
|
goto nochange;
|
2015-07-02 00:07:09 +00:00
|
|
|
dir = xdirname(path);
|
|
|
|
if (canopendir(dir) == 0) {
|
|
|
|
free(dir);
|
2014-10-22 16:25:25 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-23 15:10:45 +00:00
|
|
|
/* Save history */
|
|
|
|
oldpath = path;
|
2014-10-22 15:53:38 +00:00
|
|
|
path = dir;
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
|
|
|
fltr = xstrdup(ifilter);
|
|
|
|
goto begin;
|
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;
|
2015-11-26 15:33:49 +00:00
|
|
|
newpath = mkpath(path, name);
|
2014-10-23 14:37:12 +00:00
|
|
|
DPRINTF_S(newpath);
|
2014-10-08 07:52:44 +00:00
|
|
|
|
2014-10-08 15:30:39 +00:00
|
|
|
/* Get path info */
|
2014-10-23 14:37:12 +00:00
|
|
|
fd = open(newpath, O_RDONLY | O_NONBLOCK);
|
2014-10-22 21:31:45 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
printwarn();
|
2014-10-23 14:37:12 +00:00
|
|
|
free(newpath);
|
2014-10-22 21:31:45 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-23 14:37:12 +00:00
|
|
|
r = fstat(fd, &sb);
|
2014-10-08 15:30:39 +00:00
|
|
|
if (r == -1) {
|
|
|
|
printwarn();
|
2014-10-23 14:37:12 +00:00
|
|
|
close(fd);
|
|
|
|
free(newpath);
|
2014-10-08 15:30:39 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-23 14:37:12 +00:00
|
|
|
close(fd);
|
2014-10-08 15:37:55 +00:00
|
|
|
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-23 14:37:12 +00:00
|
|
|
if (canopendir(newpath) == 0) {
|
2014-10-22 16:25:25 +00:00
|
|
|
printwarn();
|
2014-10-23 14:37:12 +00:00
|
|
|
free(newpath);
|
2014-10-22 16:25:25 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-08 15:30:39 +00:00
|
|
|
free(path);
|
2014-10-23 14:37:12 +00:00
|
|
|
path = newpath;
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
|
|
|
fltr = xstrdup(ifilter);
|
|
|
|
goto begin;
|
2014-10-22 15:50:30 +00:00
|
|
|
case S_IFREG:
|
2015-01-11 22:28:54 +00:00
|
|
|
bin = openwith(newpath);
|
2014-10-07 06:05:30 +00:00
|
|
|
if (bin == NULL) {
|
2014-10-07 14:47:35 +00:00
|
|
|
printmsg("No association");
|
2014-10-23 14:37:12 +00:00
|
|
|
free(newpath);
|
2014-10-07 06:05:30 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-07 11:37:23 +00:00
|
|
|
exitcurses();
|
2014-10-23 14:37:12 +00:00
|
|
|
spawn(bin, newpath, NULL);
|
2014-10-07 11:37:23 +00:00
|
|
|
initcurses();
|
2014-10-23 14:37:12 +00:00
|
|
|
free(newpath);
|
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
|
|
|
}
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_FLTR:
|
2014-10-09 22:35:47 +00:00
|
|
|
/* Read filter */
|
2014-10-22 14:54:13 +00:00
|
|
|
printprompt("filter: ");
|
2014-10-09 22:35:47 +00:00
|
|
|
tmp = readln();
|
2015-01-27 07:55:07 +00:00
|
|
|
if (tmp == NULL)
|
|
|
|
tmp = xstrdup(ifilter);
|
2015-01-27 07:58:32 +00:00
|
|
|
/* Check and report regex errors */
|
2014-10-09 22:35:47 +00:00
|
|
|
r = setfilter(&re, tmp);
|
|
|
|
if (r != 0) {
|
2014-10-10 12:02:26 +00:00
|
|
|
free(tmp);
|
2014-10-09 22:35:47 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
|
|
|
fltr = tmp;
|
|
|
|
DPRINTF_S(fltr);
|
2014-11-26 16:09:03 +00:00
|
|
|
/* Save current */
|
2015-01-27 07:47:56 +00:00
|
|
|
if (n > 0)
|
2015-11-26 15:33:49 +00:00
|
|
|
oldpath = mkpath(path, dents[cur].name);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2015-01-27 08:47:57 +00:00
|
|
|
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 */
|
2015-01-28 10:47:11 +00:00
|
|
|
if (tmp != NULL) {
|
2015-01-27 08:47:57 +00:00
|
|
|
r = setfilter(&re, tmp);
|
2015-01-28 10:47:11 +00:00
|
|
|
if (r != 0)
|
|
|
|
if (nowtyping) {
|
|
|
|
goto moretyping;
|
|
|
|
} else {
|
|
|
|
free(tmp);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
}
|
2015-01-27 08:47:57 +00:00
|
|
|
/* Copy or reset filter */
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
2015-01-27 08:47:57 +00:00
|
|
|
if (tmp != NULL)
|
2015-07-01 23:56:47 +00:00
|
|
|
fltr = xstrdup(tmp);
|
2015-01-27 08:47:57 +00:00
|
|
|
else
|
2015-07-01 23:56:47 +00:00
|
|
|
fltr = xstrdup(ifilter);
|
2015-01-27 08:47:57 +00:00
|
|
|
/* Save current */
|
|
|
|
if (n > 0)
|
2015-11-26 15:33:49 +00:00
|
|
|
oldpath = mkpath(path, dents[cur].name);
|
2015-01-27 08:47:57 +00:00
|
|
|
if (!nowtyping)
|
|
|
|
free(tmp);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2014-11-06 08:54:20 +00:00
|
|
|
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;
|
2015-07-12 12:32:31 +00:00
|
|
|
case SEL_HOME:
|
|
|
|
cur = 0;
|
|
|
|
break;
|
|
|
|
case SEL_END:
|
|
|
|
cur = n - 1;
|
|
|
|
break;
|
2014-10-21 14:13:21 +00:00
|
|
|
case SEL_CD:
|
|
|
|
/* Read target dir */
|
2014-10-22 14:54:13 +00:00
|
|
|
printprompt("chdir: ");
|
2014-10-21 14:13:21 +00:00
|
|
|
tmp = readln();
|
|
|
|
if (tmp == NULL) {
|
2014-10-22 14:54:13 +00:00
|
|
|
clearprompt();
|
2014-10-21 14:13:21 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2015-11-26 15:33:49 +00:00
|
|
|
newpath = mkpath(path, tmp);
|
2014-10-23 14:37:12 +00:00
|
|
|
free(tmp);
|
|
|
|
if (canopendir(newpath) == 0) {
|
|
|
|
free(newpath);
|
2014-10-21 14:13:21 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-22 15:56:31 +00:00
|
|
|
free(path);
|
2014-10-23 14:37:12 +00:00
|
|
|
path = newpath;
|
2015-07-01 23:56:47 +00:00
|
|
|
free(fltr);
|
|
|
|
fltr = xstrdup(ifilter); /* Reset filter */
|
2014-10-22 15:56:31 +00:00
|
|
|
DPRINTF_S(path);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2015-01-31 22:02:59 +00:00
|
|
|
case SEL_MTIME:
|
|
|
|
mtimeorder = !mtimeorder;
|
2015-07-12 23:56:51 +00:00
|
|
|
/* Save current */
|
|
|
|
if (n > 0)
|
2015-11-26 15:33:49 +00:00
|
|
|
oldpath = mkpath(path, dents[cur].name);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2015-03-11 18:55:28 +00:00
|
|
|
case SEL_REDRAW:
|
2015-07-12 23:56:51 +00:00
|
|
|
/* Save current */
|
|
|
|
if (n > 0)
|
2015-11-26 15:33:49 +00:00
|
|
|
oldpath = mkpath(path, dents[cur].name);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2015-03-12 14:12:01 +00:00
|
|
|
case SEL_RUN:
|
2015-11-20 15:42:33 +00:00
|
|
|
run = xgetenv(env, run);
|
2015-03-12 14:12:01 +00:00
|
|
|
exitcurses();
|
|
|
|
spawn(run, NULL, path);
|
|
|
|
initcurses();
|
|
|
|
break;
|
|
|
|
case SEL_RUNARG:
|
|
|
|
name = dents[cur].name;
|
2015-11-20 15:42:33 +00:00
|
|
|
run = xgetenv(env, run);
|
2015-03-12 14:12:01 +00:00
|
|
|
exitcurses();
|
|
|
|
spawn(run, name, path);
|
|
|
|
initcurses();
|
|
|
|
break;
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
2015-11-20 14:14:58 +00:00
|
|
|
/* 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[])
|
|
|
|
{
|
2014-10-21 10:29:41 +00:00
|
|
|
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 */
|
2015-11-26 15:54:54 +00:00
|
|
|
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)
|
2014-11-25 15:20:06 +00:00
|
|
|
ifilter = ".";
|
2014-10-21 11:03:53 +00:00
|
|
|
else
|
2014-11-25 15:20:06 +00:00
|
|
|
ifilter = "^[^.]"; /* Hide dotfiles */
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-21 10:29:41 +00:00
|
|
|
if (argv[1] != NULL) {
|
|
|
|
ipath = argv[1];
|
|
|
|
} else {
|
|
|
|
ipath = getcwd(cwd, sizeof(cwd));
|
|
|
|
if (ipath == NULL)
|
|
|
|
ipath = "/";
|
|
|
|
}
|
|
|
|
|
2015-11-03 17:48:39 +00:00
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
/* Test initial path */
|
2015-11-26 15:54:54 +00:00
|
|
|
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();
|
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
|
|
|
|
2015-11-26 15:54:54 +00:00
|
|
|
exit(0);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|