nnn/nnn.c

2447 lines
50 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>
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
2017-06-15 14:04:56 +00:00
|| defined(__APPLE__)
# include <sys/types.h>
#else
# include <sys/sysmacros.h>
#endif
2014-10-22 15:27:08 +00:00
#include <sys/wait.h>
#include <sys/statvfs.h>
#include <sys/resource.h>
2014-10-07 06:05:30 +00:00
#include <ctype.h>
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 <grp.h>
#include <libgen.h>
#include <limits.h>
#ifdef __gnu_hurd__
#define PATH_MAX 4096
#endif
2014-10-07 06:05:30 +00:00
#include <locale.h>
#include <pwd.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>
2017-03-30 04:39:21 +00:00
#include <time.h>
#include <unistd.h>
2017-04-28 23:02:47 +00:00
#include <wchar.h>
#include <readline/readline.h>
2014-10-07 06:05:30 +00:00
2017-05-13 17:01:14 +00:00
#ifndef __USE_XOPEN_EXTENDED
#define __USE_XOPEN_EXTENDED 1
#endif
#include <ftw.h>
2017-06-20 04:56:31 +00:00
#include "config.h"
#ifdef DEBUGMODE
static int DEBUG_FD;
2017-04-03 20:10:04 +00:00
static int
xprintf(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;
}
static int enabledbg()
{
FILE *fp = fopen("/tmp/nnn_debug", "w");
if (!fp) {
fprintf(stderr, "Cannot open debug file\n");
return -1;
}
DEBUG_FD = fileno(fp);
if (DEBUG_FD == -1) {
fprintf(stderr, "Cannot open debug file descriptor\n");
return -1;
}
return 0;
}
static void disabledbg()
{
close(DEBUG_FD);
}
2017-04-02 02:45:07 +00:00
#define DPRINTF_D(x) xprintf(DEBUG_FD, #x "=%d\n", x)
#define DPRINTF_U(x) xprintf(DEBUG_FD, #x "=%u\n", x)
#define DPRINTF_S(x) xprintf(DEBUG_FD, #x "=%s\n", x)
#define DPRINTF_P(x) xprintf(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)
2017-06-20 04:56:31 +00:00
#endif /* DEBUGMODE */
2014-10-07 06:05:30 +00:00
2017-06-20 04:56:31 +00:00
/* Macro definitions */
2017-05-11 16:55:22 +00:00
#define VERSION "v1.1"
2014-10-07 06:05:30 +00:00
#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 TOUPPER(ch) \
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
#define MAX_CMD_LEN 5120
2017-04-01 07:26:25 +00:00
#define CURSYM(flag) (flag ? CURSR : EMPTY)
#define FILTER '/'
2017-06-11 04:15:50 +00:00
#define MAX_BM 10
2014-10-07 06:05:30 +00:00
2017-06-20 15:59:37 +00:00
/* Macros to define process spawn behaviour as flags */
#define SP_NONE 0x00 /* no flag set */
#define SP_MARKER 0x01 /* draw marker to indicate nnn spawned (e.g. shell) */
#define SP_NOWAIT 0x02 /* don't wait for child process (e.g. file manager) */
#define SP_NOTRACE 0x04 /* suppress stdout and strerr (no traces) */
#define SP_SIGINT 0x08 /* restore default SIGINT handler */
#define SP_NORMAL 0x80 /* spawn child process in non-curses regular mode */
2017-06-20 14:58:53 +00:00
typedef unsigned long ulong;
typedef unsigned int uint;
2017-06-20 14:58:53 +00:00
typedef unsigned char uchar;
2017-06-20 04:56:31 +00:00
/* Directory entry */
2017-04-01 07:26:25 +00:00
typedef struct entry {
char name[NAME_MAX];
mode_t mode;
time_t t;
off_t size;
off_t bsize;
2017-04-01 07:26:25 +00:00
} *pEntry;
2017-06-20 04:56:31 +00:00
/* Bookmark */
2017-06-11 04:15:50 +00:00
typedef struct {
char *key;
char *loc;
} bm;
2017-06-20 14:58:53 +00:00
/* Settings */
typedef struct
{
uchar filtermode : 1; /* Set to enter filter mode */
uchar mtimeorder : 1; /* Set to sort by time modified */
uchar sizeorder : 1; /* Set to sort by file size */
uchar bsizeorder : 1; /* Set to sort by blocks used (disk usage) */
uchar showhidden : 1; /* Set to show hidden files */
uchar showdetail : 1; /* Clear to show fewer file info */
uchar reserved : 2;
} settings;
2017-04-03 20:10:04 +00:00
/* Externs */
#ifdef __APPLE__
2017-06-15 14:04:56 +00:00
extern int add_history(const char *string);
#else
extern void add_history(const char *string);
#endif
2017-06-15 14:04:56 +00:00
extern int wget_wch(WINDOW *win, wint_t *wch);
2017-04-28 23:02:47 +00:00
2017-06-20 14:58:53 +00:00
/* Globals */
static settings cfg = {0, 0, 0, 0, 0, 1, 0};
/* Idle timeout in seconds, 0 to disable */
static int idletimeout;
2017-06-20 04:56:31 +00:00
2017-04-01 09:11:07 +00:00
static struct entry *dents;
static int ndents, cur, total_dents;
2017-04-01 09:11:07 +00:00
static int idle;
static char *player;
2017-04-01 12:02:58 +00:00
static char *copier;
static char *editor;
static char *desktop_manager;
2017-04-10 12:47:12 +00:00
static off_t blk_size;
static off_t dir_size;
2017-04-10 12:47:12 +00:00
static size_t fs_free;
static uint open_max;
2017-06-11 04:15:50 +00:00
static bm bookmark[MAX_BM];
2017-04-10 12:47:12 +00:00
static const double div_2_pow_10 = 1.0 / 1024.0;
2017-06-20 04:56:31 +00:00
/* Utilities to open files, run actions */
static char *utils[] = {
#ifdef __APPLE__
"/usr/bin/open",
#else
"/usr/bin/xdg-open",
#endif
"nlay"
};
/* For use in functions which are isolated and don't return the buffer */
static char g_buf[MAX_CMD_LEN];
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
* '------
*/
2017-06-20 04:56:31 +00:00
/* Forward declarations */
2017-04-01 09:11:07 +00:00
static void printmsg(char *);
static void printwarn(void);
static void printerr(int, char *);
2017-04-28 23:02:47 +00:00
static void redraw(char *path);
2017-06-20 04:56:31 +00:00
/* Functions */
/* Increase the limit on open file descriptors, if possible */
static rlim_t
max_openfds()
{
struct rlimit rl;
2017-06-15 14:04:56 +00:00
rlim_t limit = getrlimit(RLIMIT_NOFILE, &rl);
if (limit != 0)
return 32;
limit = rl.rlim_cur;
rl.rlim_cur = rl.rlim_max;
if (setrlimit(RLIMIT_NOFILE, &rl) == 0)
return rl.rlim_max - 64;
if (limit > 128)
return limit - 64;
return 32;
}
2017-04-21 21:40:02 +00:00
/* Just a safe strncpy(3) */
static void
xstrlcpy(char *dest, const char *src, size_t n)
{
2017-06-17 06:58:21 +00:00
while (--n && (*dest = *src))
++dest, ++src;
2017-05-16 16:52:49 +00:00
if (!n)
*dest = '\0';
}
2017-04-01 12:02:58 +00:00
/*
* The poor man's implementation of memrchr(3).
2017-04-01 12:02:58 +00:00
* We are only looking for '/' in this program.
*/
static void *
2017-06-20 14:58:53 +00:00
xmemrchr(const void *s, uchar ch, size_t n)
2017-04-01 12:02:58 +00:00
{
if (!s || !n)
return NULL;
2017-06-20 14:58:53 +00:00
static uchar *p;
2017-06-20 04:56:31 +00:00
2017-06-20 14:58:53 +00:00
p = (uchar *)s + n - 1;
2017-04-01 12:02:58 +00:00
2017-06-17 06:58:21 +00:00
while (n) {
if (*p == ch)
return p;
--p;
--n;
}
2017-04-01 12:02:58 +00:00
return NULL;
}
/*
* The following dirname(3) implementation does not
* modify the input. We use a copy of the original.
2017-04-01 12:02:58 +00:00
*
* Modified from the glibc (GNU LGPL) version.
*/
static char *
xdirname(const char *path)
{
static char buf[PATH_MAX];
static char *last_slash;
2017-04-01 12:02:58 +00:00
xstrlcpy(buf, path, PATH_MAX);
2017-04-01 12:02:58 +00:00
/* Find last '/'. */
last_slash = strrchr(buf, '/');
2017-04-01 12:02:58 +00:00
if (last_slash != NULL && last_slash != buf && last_slash[1] == '\0') {
2017-04-01 12:02:58 +00:00
/* Determine whether all remaining characters are slashes. */
char *runp;
for (runp = last_slash; runp != buf; --runp)
2017-04-01 12:02:58 +00:00
if (runp[-1] != '/')
break;
/* The '/' is the last character, we have to look further. */
if (runp != buf)
last_slash = xmemrchr(buf, '/', runp - buf);
2017-04-01 12:02:58 +00:00
}
if (last_slash != NULL) {
/* Determine whether all remaining characters are slashes. */
char *runp;
for (runp = last_slash; runp != buf; --runp)
2017-04-01 12:02:58 +00:00
if (runp[-1] != '/')
break;
/* Terminate the buffer. */
if (runp == buf) {
2017-04-01 12:02:58 +00:00
/* The last slash is the first character in the string.
2017-06-15 14:04:56 +00:00
* We have to return "/". As a special case we have to
* return "//" if there are exactly two slashes at the
* beginning of the string. See XBD 4.10 Path Name
* Resolution for more information.
*/
if (last_slash == buf + 1)
2017-04-01 12:02:58 +00:00
++last_slash;
else
last_slash = buf + 1;
2017-04-01 12:02:58 +00:00
} else
last_slash = runp;
last_slash[0] = '\0';
} else {
/* This assignment is ill-designed but the XPG specs require to
2017-06-15 14:04:56 +00:00
* return a string containing "." in any case no directory part
* is found and so a static and constant string is required.
*/
buf[0] = '.';
buf[1] = '\0';
2017-04-01 12:02:58 +00:00
}
return buf;
2017-04-01 12:02:58 +00:00
}
2017-04-24 13:23:03 +00:00
/*
2017-06-20 04:56:31 +00:00
* Return number of dots if all chars in a string are dots, else 0
2017-04-24 13:23:03 +00:00
*/
static int
2017-06-15 14:04:56 +00:00
all_dots(const char *ptr)
2017-04-24 13:23:03 +00:00
{
if (!ptr)
return FALSE;
int count = 0;
2017-06-15 14:04:56 +00:00
2017-06-17 06:58:21 +00:00
while (*ptr == '.')
++count, ++ptr;
2017-04-24 13:23:03 +00:00
if (*ptr)
return 0;
return count;
}
2017-06-20 04:56:31 +00:00
/* Initialize curses mode */
static void
initcurses(void)
{
if (initscr() == NULL) {
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);
}
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
curs_set(FALSE); /* Hide cursor */
start_color();
use_default_colors();
timeout(1000); /* One second */
}
2017-06-20 04:56:31 +00:00
/* Exit curses mode */
static void
exitcurses(void)
{
endwin(); /* Restore terminal */
}
/*
2017-06-20 15:59:37 +00:00
* Spawns a child process. Behaviour can be controlled using flag.
* Limited to 2 arguments to a program, flag works on bit set.
*/
2017-04-01 09:11:07 +00:00
static void
2017-06-20 14:58:53 +00:00
spawn(char *file, char *arg1, char *arg2, char *dir, uchar flag)
{
pid_t pid;
int status;
2017-06-20 15:59:37 +00:00
if (flag & SP_NORMAL)
exitcurses();
pid = fork();
if (pid == 0) {
if (dir != NULL)
status = chdir(dir);
2017-05-14 19:21:36 +00:00
/* Show a marker (to indicate nnn spawned shell) */
2017-06-20 15:59:37 +00:00
if (flag & SP_MARKER)
2017-06-15 14:04:56 +00:00
printf("\n +-++-++-+\n | n n n |\n +-++-++-+\n\n");
2017-04-22 14:56:22 +00:00
2017-05-14 19:21:36 +00:00
/* Suppress stdout and stderr */
2017-06-20 15:59:37 +00:00
if (flag & SP_NOTRACE) {
2017-06-15 14:04:56 +00:00
int fd = open("/dev/null", O_WRONLY, 0200);
2017-05-14 19:21:36 +00:00
dup2(fd, 1);
dup2(fd, 2);
close(fd);
}
2017-06-20 15:59:37 +00:00
if (flag & SP_SIGINT)
signal(SIGINT, SIG_DFL);
2017-05-14 19:21:36 +00:00
execlp(file, file, arg1, arg2, NULL);
_exit(1);
} else {
2017-06-20 15:59:37 +00:00
if (!(flag & SP_NOWAIT))
/* Ignore interruptions */
while (waitpid(pid, &status, 0) == -1)
DPRINTF_D(status);
DPRINTF_D(pid);
2017-06-20 15:59:37 +00:00
if (flag & SP_NORMAL)
initcurses();
}
}
2017-06-20 04:56:31 +00:00
/* Get program name from env var, else return fallback program */
2017-04-01 09:11:07 +00:00
static char *
xgetenv(char *name, char *fallback)
{
if (name == NULL)
return fallback;
2017-06-21 04:19:02 +00:00
char *value = getenv(name);
return value && value[0] ? value : fallback;
}
/*
* We assume none of the strings are NULL.
*
* Let's have the logic to sort numeric names in numeric order.
* E.g., the order '1, 10, 2' doesn't make sense to human eyes.
*
* If the absolute numeric values are same, we fallback to alphasort.
*/
2017-04-01 09:11:07 +00:00
static int
xstricmp(char *s1, char *s2)
{
static char *c1, *c2;
c1 = s1;
while (isspace(*c1))
2017-06-17 06:58:21 +00:00
++c1;
if (*c1 == '-' || *c1 == '+')
2017-06-17 06:58:21 +00:00
++c1;
while (*c1 >= '0' && *c1 <= '9')
2017-06-17 06:58:21 +00:00
++c1;
c2 = s2;
while (isspace(*c2))
2017-06-17 06:58:21 +00:00
++c2;
if (*c2 == '-' || *c2 == '+')
2017-06-17 06:58:21 +00:00
++c2;
2017-06-15 14:04:56 +00:00
while (*c2 >= '0' && *c2 <= '9')
2017-06-17 06:58:21 +00:00
++c2;
if (*c1 == '\0' && *c2 == '\0') {
static long long num1, num2;
num1 = strtoll(s1, &c1, 10);
num2 = strtoll(s2, &c2, 10);
if (num1 != num2) {
if (num1 > num2)
return 1;
else
return -1;
}
} else if (*c1 == '\0' && *c2 != '\0')
return -1;
else if (*c1 != '\0' && *c2 == '\0')
return 1;
while (*s2 && *s1 && TOUPPER(*s1) == TOUPPER(*s2))
2017-06-17 06:58:21 +00:00
++s1, ++s2;
/* In case of alphabetically same names, make sure
2017-06-15 14:04:56 +00:00
* lower case one comes before upper case one
*/
if (!*s1 && !*s2)
return 1;
return (int) (TOUPPER(*s1) - TOUPPER(*s2));
}
/* Trim all whitespace from both ends, / from end */
static char *
strstrip(char *s)
{
if (!s || !*s)
return s;
size_t len = strlen(s) - 1;
while (len != 0 && (isspace(s[len]) || s[len] == '/'))
2017-06-17 06:58:21 +00:00
--len;
s[len + 1] = '\0';
while (*s && isspace(*s))
2017-06-17 06:58:21 +00:00
++s;
return s;
}
2017-04-01 09:11:07 +00:00
static char *
getmime(char *file)
2014-10-07 06:05:30 +00:00
{
2014-10-09 09:33:49 +00:00
regex_t regex;
uint i;
static uint len = LEN(assocs);
2014-10-07 06:05:30 +00:00
2017-06-17 06:58:21 +00:00
for (i = 0; i < len; ++i) {
2014-10-09 09:33:49 +00:00
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)
return assocs[i].mime;
2014-10-09 09:33:49 +00:00
}
return NULL;
2014-10-07 06:05:30 +00:00
}
2017-04-01 09:11:07 +00:00
static int
setfilter(regex_t *regex, char *filter)
{
static size_t len;
static int r;
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
if (r != 0 && filter && filter[0] != '\0') {
len = COLS;
2017-04-29 05:32:12 +00:00
if (len > LINE_MAX)
len = LINE_MAX;
regerror(r, regex, g_buf, len);
printmsg(g_buf);
}
return r;
}
2017-04-01 09:11:07 +00:00
static void
initfilter(int dot, char **ifilter)
{
*ifilter = dot ? "." : "^[^.]";
}
2017-04-01 09:11:07 +00:00
static int
visible(regex_t *regex, char *file)
{
2014-12-20 19:21:03 +00:00
return regexec(regex, file, 0, NULL, 0) == 0;
}
2017-04-01 09:11:07 +00:00
static int
entrycmp(const void *va, const void *vb)
2014-10-07 06:05:30 +00:00
{
2017-04-01 20:18:33 +00:00
static pEntry pa, pb;
pa = (pEntry)va;
pb = (pEntry)vb;
/* Sort directories first */
if (S_ISDIR(pb->mode) && !S_ISDIR(pa->mode))
return 1;
else if (S_ISDIR(pa->mode) && !S_ISDIR(pb->mode))
return -1;
/* Do the actual sorting */
2017-06-20 14:58:53 +00:00
if (cfg.mtimeorder)
2017-04-01 20:18:33 +00:00
return pb->t - pa->t;
2017-06-20 14:58:53 +00:00
if (cfg.sizeorder) {
if (pb->size > pa->size)
return 1;
else if (pb->size < pa->size)
return -1;
}
2017-06-20 14:58:53 +00:00
if (cfg.bsizeorder) {
if (pb->bsize > pa->bsize)
return 1;
else if (pb->bsize < pa->bsize)
return -1;
}
2017-04-01 20:18:33 +00:00
return xstricmp(pa->name, pb->name);
2014-10-07 06:05:30 +00:00
}
2014-10-07 14:47:35 +00:00
/* Messages show up at the bottom */
2017-04-01 09:11:07 +00:00
static 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 */
2017-04-01 09:11:07 +00:00
static void
2014-10-07 14:47:35 +00:00
printwarn(void)
{
printmsg(strerror(errno));
2014-10-07 06:05:30 +00:00
}
/* Kill curses and display error before exiting */
2017-04-01 09:11:07 +00:00
static void
2014-10-07 06:05:30 +00:00
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 */
2017-04-01 09:11:07 +00:00
static void
clearprompt(void)
{
printmsg("");
}
/* Print prompt on the last line */
2017-04-01 09:11:07 +00:00
static 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}).
* The next keyboard input can be simulated by presel.
*/
2017-04-01 09:11:07 +00:00
static int
nextsel(char **run, char **env, int *presel)
2014-10-07 06:05:30 +00:00
{
static int c;
static uchar i;
static uint len = LEN(bindings);
c = *presel;
2014-10-07 06:05:30 +00:00
2017-04-28 23:02:47 +00:00
if (c == 0)
c = getch();
else
*presel = 0;
if (c == -1)
2017-06-17 06:58:21 +00:00
++idle;
else
idle = 0;
2017-06-17 06:58:21 +00:00
for (i = 0; i < len; ++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;
}
2017-05-17 02:46:33 +00:00
/*
* Move non-matching entries to the end
*/
static void
2017-04-28 23:02:47 +00:00
fill(struct entry **dents,
int (*filter)(regex_t *, char *), regex_t *re)
{
2017-05-17 02:46:33 +00:00
static int count;
2017-06-17 06:58:21 +00:00
for (count = 0; count < ndents; ++count) {
2017-05-17 02:46:33 +00:00
if (filter(re, (*dents)[count].name) == 0) {
if (count != --ndents) {
static struct entry _dent;
/* Copy count to tmp */
2017-06-15 14:04:56 +00:00
xstrlcpy(_dent.name, (*dents)[count].name,
NAME_MAX);
2017-05-17 02:46:33 +00:00
_dent.mode = (*dents)[count].mode;
_dent.t = (*dents)[count].t;
_dent.size = (*dents)[count].size;
_dent.bsize = (*dents)[count].bsize;
/* Copy ndents - 1 to count */
2017-06-15 14:04:56 +00:00
xstrlcpy((*dents)[count].name,
(*dents)[ndents].name, NAME_MAX);
2017-05-17 02:46:33 +00:00
(*dents)[count].mode = (*dents)[ndents].mode;
(*dents)[count].t = (*dents)[ndents].t;
(*dents)[count].size = (*dents)[ndents].size;
(*dents)[count].bsize = (*dents)[ndents].bsize;
/* Copy tmp to ndents - 1 */
2017-06-15 14:04:56 +00:00
xstrlcpy((*dents)[ndents].name, _dent.name,
NAME_MAX);
2017-05-17 02:46:33 +00:00
(*dents)[ndents].mode = _dent.mode;
(*dents)[ndents].t = _dent.t;
(*dents)[ndents].size = _dent.size;
(*dents)[ndents].bsize = _dent.bsize;
2017-06-17 06:58:21 +00:00
--count;
2017-05-17 02:46:33 +00:00
}
2017-04-28 23:02:47 +00:00
continue;
}
}
}
static int
matches(char *fltr)
{
static regex_t re;
/* Search filter */
if (setfilter(&re, fltr) != 0)
return -1;
2017-05-17 02:46:33 +00:00
fill(&dents, visible, &re);
2017-04-28 23:02:47 +00:00
qsort(dents, ndents, sizeof(*dents), entrycmp);
return 0;
}
static int
readln(char *path)
{
2017-04-28 23:02:47 +00:00
static char ln[LINE_MAX << 2];
static wchar_t wln[LINE_MAX];
static wint_t ch[2] = {0};
int r, total = ndents;
int oldcur = cur;
int len = 1;
char *pln = ln + 1;
memset(wln, 0, LINE_MAX << 2);
wln[0] = FILTER;
ln[0] = FILTER;
2017-04-28 23:02:47 +00:00
ln[1] = '\0';
cur = 0;
timeout(-1);
echo();
curs_set(TRUE);
2017-04-28 23:02:47 +00:00
printprompt(ln);
while ((r = wget_wch(stdscr, ch)) != ERR) {
if (r == OK) {
2017-06-15 14:04:56 +00:00
switch (*ch) {
2017-04-28 23:02:47 +00:00
case '\r': // with nonl(), this is ENTER key value
if (len == 1) {
cur = oldcur;
goto end;
}
if (matches(pln) == -1)
goto end;
redraw(path);
goto end;
case 127: // handle DEL
if (len == 1) {
cur = oldcur;
*ch = CONTROL('L');
goto end;
}
if (len == 2)
cur = oldcur;
wln[--len] = '\0';
wcstombs(ln, wln, LINE_MAX << 2);
ndents = total;
if (matches(pln) == -1) {
printprompt(ln);
2017-04-28 23:02:47 +00:00
continue;
}
2017-04-28 23:02:47 +00:00
redraw(path);
printprompt(ln);
break;
2017-06-04 12:22:51 +00:00
case CONTROL('L'):
2017-06-06 16:01:40 +00:00
if (len == 1)
cur = oldcur; // fallthrough
case CONTROL('Q'):
2017-06-04 12:22:51 +00:00
goto end;
2017-04-28 23:02:47 +00:00
default:
2017-06-17 06:58:21 +00:00
wln[len] = (wchar_t)*ch;
++len;
2017-04-28 23:02:47 +00:00
wln[len] = '\0';
wcstombs(ln, wln, LINE_MAX << 2);
ndents = total;
if (matches(pln) == -1)
continue;
redraw(path);
printprompt(ln);
}
2017-04-29 05:32:12 +00:00
} else {
2017-06-15 14:04:56 +00:00
switch (*ch) {
case KEY_DC: // fallthrough
2017-04-28 23:02:47 +00:00
case KEY_BACKSPACE:
if (len == 1) {
cur = oldcur;
*ch = CONTROL('L');
goto end;
}
if (len == 2)
cur = oldcur;
wln[--len] = '\0';
wcstombs(ln, wln, LINE_MAX << 2);
ndents = total;
if (matches(pln) == -1)
continue;
redraw(path);
printprompt(ln);
break;
case KEY_DOWN: // fallthrough
case KEY_UP: // fallthrough
case KEY_LEFT: // fallthrough
case KEY_RIGHT:
if (len == 1)
cur = oldcur; // fallthrough
2017-04-28 23:02:47 +00:00
default:
goto end;
}
}
}
end:
noecho();
curs_set(FALSE);
timeout(1000);
/* Return keys for navigation etc. */
2017-04-28 23:02:47 +00:00
return *ch;
}
2017-04-01 09:11:07 +00:00
static int
2014-10-22 16:26:35 +00:00
canopendir(char *path)
2014-10-07 06:05:30 +00:00
{
2017-04-10 12:47:12 +00:00
static DIR *dirp;
2014-10-07 06:05:30 +00:00
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
}
2017-04-02 08:48:54 +00:00
/*
* Returns "dir/name or "/name"
*/
2017-04-01 09:11:07 +00:00
static 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] == '/')
xstrlcpy(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;
}
2017-06-11 04:15:50 +00:00
static void
parsebmstr(char *bms)
{
int i = 0;
while (*bms && i < MAX_BM) {
bookmark[i].key = bms;
2017-06-17 06:58:21 +00:00
++bms;
2017-06-11 04:15:50 +00:00
while (*bms && *bms != ':')
2017-06-17 06:58:21 +00:00
++bms;
2017-06-11 04:15:50 +00:00
if (!*bms) {
bookmark[i].key = NULL;
break;
}
*bms = '\0';
bookmark[i].loc = ++bms;
if (bookmark[i].loc[0] == '\0' || bookmark[i].loc[0] == ';') {
bookmark[i].key = NULL;
break;
}
while (*bms && *bms != ';')
2017-06-17 06:58:21 +00:00
++bms;
2017-06-11 04:15:50 +00:00
if (*bms)
*bms = '\0';
else
break;
2017-06-17 06:58:21 +00:00
++bms;
++i;
2017-06-11 04:15:50 +00:00
}
}
static char *
readinput(void)
{
2017-06-15 14:04:56 +00:00
timeout(-1);
echo();
curs_set(TRUE);
memset(g_buf, 0, LINE_MAX);
wgetnstr(stdscr, g_buf, LINE_MAX - 1);
noecho();
curs_set(FALSE);
timeout(1000);
return g_buf[0] ? g_buf : NULL;
2017-06-11 04:15:50 +00:00
}
static char *
replace_escape(const char *str)
{
static char buffer[PATH_MAX];
static wchar_t wbuf[PATH_MAX];
static wchar_t *buf;
2017-06-15 14:04:56 +00:00
buffer[0] = '\0';
buf = wbuf;
/* Convert multi-byte to wide char */
mbstowcs(wbuf, str, PATH_MAX);
while (*buf) {
if (*buf <= '\x1f' || *buf == '\x7f')
*buf = '\?';
2017-06-17 06:58:21 +00:00
++buf;
}
/* Convert wide char to multi-byte */
wcstombs(buffer, wbuf, PATH_MAX);
return buffer;
}
2017-04-01 09:11:07 +00:00
static void
2017-06-15 14:04:56 +00:00
printent(struct entry *ent, int sel)
{
2017-04-21 21:40:02 +00:00
static int ncols;
2017-06-15 14:04:56 +00:00
if (PATH_MAX + 16 < COLS)
2017-04-21 21:40:02 +00:00
ncols = PATH_MAX + 16;
else
ncols = COLS;
2017-03-29 20:55:51 +00:00
if (S_ISDIR(ent->mode))
2017-06-15 14:04:56 +00:00
snprintf(g_buf, ncols, "%s%s/", CURSYM(sel),
replace_escape(ent->name));
2017-03-29 20:55:51 +00:00
else if (S_ISLNK(ent->mode))
2017-06-15 14:04:56 +00:00
snprintf(g_buf, ncols, "%s%s@", CURSYM(sel),
replace_escape(ent->name));
2017-03-29 20:55:51 +00:00
else if (S_ISSOCK(ent->mode))
2017-06-15 14:04:56 +00:00
snprintf(g_buf, ncols, "%s%s=", CURSYM(sel),
replace_escape(ent->name));
2017-03-29 20:55:51 +00:00
else if (S_ISFIFO(ent->mode))
2017-06-15 14:04:56 +00:00
snprintf(g_buf, ncols, "%s%s|", CURSYM(sel),
replace_escape(ent->name));
2017-06-15 14:04:56 +00:00
else if (ent->mode & 0100)
snprintf(g_buf, ncols, "%s%s*", CURSYM(sel),
replace_escape(ent->name));
else
2017-06-15 14:04:56 +00:00
snprintf(g_buf, ncols, "%s%s", CURSYM(sel),
replace_escape(ent->name));
2017-04-21 21:40:02 +00:00
printw("%s\n", g_buf);
}
2017-04-01 09:11:07 +00:00
static char*
coolsize(off_t size)
{
2017-06-15 14:04:56 +00:00
static const char * const U[]
= {"B", "K", "M", "G", "T", "P", "E", "Z", "Y"};
2017-04-01 07:26:25 +00:00
static char size_buf[12]; /* Buffer to hold human readable size */
2017-04-10 12:47:12 +00:00
static int i;
static off_t tmp;
2017-04-10 12:47:12 +00:00
static long double rem;
i = 0;
rem = 0;
while (size > 1024) {
tmp = size;
size >>= 10;
rem = tmp - (size << 10);
2017-06-17 06:58:21 +00:00
++i;
}
2017-06-15 14:04:56 +00:00
snprintf(size_buf, 12, "%.*Lf%s", i, size + rem * div_2_pow_10, U[i]);
return size_buf;
}
2017-04-01 09:11:07 +00:00
static void
2017-06-15 14:04:56 +00:00
printent_long(struct entry *ent, int sel)
{
2017-04-21 21:40:02 +00:00
static int ncols;
2017-03-30 04:39:21 +00:00
static char buf[18];
2017-04-21 21:40:02 +00:00
2017-06-15 14:04:56 +00:00
if (PATH_MAX + 32 < COLS)
2017-04-21 21:40:02 +00:00
ncols = PATH_MAX + 32;
else
ncols = COLS;
strftime(buf, 18, "%d %m %Y %H:%M", localtime(&ent->t));
2017-03-30 04:39:21 +00:00
2017-06-15 14:04:56 +00:00
if (sel)
attron(A_REVERSE);
2017-06-20 14:58:53 +00:00
if (!cfg.bsizeorder) {
if (S_ISDIR(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s / %s/",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (S_ISLNK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s @ %s@",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (S_ISSOCK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s = %s=",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (S_ISFIFO(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s | %s|",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (S_ISBLK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s b %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (S_ISCHR(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s c %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, replace_escape(ent->name));
else if (ent->mode & 0100)
snprintf(g_buf, ncols, "%s%-16.16s %8.8s* %s*",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, coolsize(ent->size),
replace_escape(ent->name));
else
snprintf(g_buf, ncols, "%s%-16.16s %8.8s %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, coolsize(ent->size),
replace_escape(ent->name));
} else {
if (S_ISDIR(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s %8.8s/ %s/",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, coolsize(ent->bsize << 9),
replace_escape(ent->name));
else if (S_ISLNK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s @ %s@",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf,
replace_escape(ent->name));
else if (S_ISSOCK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s = %s=",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf,
replace_escape(ent->name));
else if (S_ISFIFO(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s | %s|",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf,
replace_escape(ent->name));
else if (S_ISBLK(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s b %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf,
replace_escape(ent->name));
else if (S_ISCHR(ent->mode))
snprintf(g_buf, ncols, "%s%-16.16s c %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf,
replace_escape(ent->name));
2017-06-15 14:04:56 +00:00
else if (ent->mode & 0100)
snprintf(g_buf, ncols, "%s%-16.16s %8.8s* %s*",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, coolsize(ent->bsize << 9),
replace_escape(ent->name));
else
snprintf(g_buf, ncols, "%s%-16.16s %8.8s %s",
2017-06-15 14:04:56 +00:00
CURSYM(sel), buf, coolsize(ent->bsize << 9),
replace_escape(ent->name));
}
printw("%s\n", g_buf);
2017-04-21 21:40:02 +00:00
2017-06-15 14:04:56 +00:00
if (sel)
attroff(A_REVERSE);
}
2017-06-15 14:04:56 +00:00
static void (*printptr)(struct entry *ent, int sel) = &printent_long;
static char
get_fileind(mode_t mode, char *desc)
{
2017-04-10 12:47:12 +00:00
static char c;
if (S_ISREG(mode)) {
c = '-';
sprintf(desc, "%s", "regular file");
2017-06-15 14:04:56 +00:00
if (mode & 0100)
strcat(desc, ", executable");
} else if (S_ISDIR(mode)) {
c = 'd';
sprintf(desc, "%s", "directory");
} else if (S_ISBLK(mode)) {
c = 'b';
sprintf(desc, "%s", "block special device");
} else if (S_ISCHR(mode)) {
c = 'c';
sprintf(desc, "%s", "character special device");
#ifdef S_ISFIFO
} else if (S_ISFIFO(mode)) {
c = 'p';
sprintf(desc, "%s", "FIFO");
#endif /* S_ISFIFO */
#ifdef S_ISLNK
} else if (S_ISLNK(mode)) {
c = 'l';
sprintf(desc, "%s", "symbolic link");
#endif /* S_ISLNK */
#ifdef S_ISSOCK
} else if (S_ISSOCK(mode)) {
c = 's';
sprintf(desc, "%s", "socket");
#endif /* S_ISSOCK */
#ifdef S_ISDOOR
/* Solaris 2.6, etc. */
} else if (S_ISDOOR(mode)) {
c = 'D';
desc[0] = '\0';
#endif /* S_ISDOOR */
} else {
/* Unknown type -- possibly a regular file? */
c = '?';
desc[0] = '\0';
}
2017-06-15 14:04:56 +00:00
return c;
}
/* Convert a mode field into "ls -l" type perms field. */
static char *
get_lsperms(mode_t mode, char *desc)
{
2017-06-15 14:04:56 +00:00
static const char * const rwx[] = {"---", "--x", "-w-", "-wx",
"r--", "r-x", "rw-", "rwx"};
static char bits[11];
bits[0] = get_fileind(mode, desc);
strcpy(&bits[1], rwx[(mode >> 6) & 7]);
strcpy(&bits[4], rwx[(mode >> 3) & 7]);
strcpy(&bits[7], rwx[(mode & 7)]);
if (mode & S_ISUID)
2017-06-15 14:04:56 +00:00
bits[3] = (mode & 0100) ? 's' : 'S'; /* user executable */
if (mode & S_ISGID)
2017-06-15 14:04:56 +00:00
bits[6] = (mode & 0010) ? 's' : 'l'; /* group executable */
if (mode & S_ISVTX)
2017-06-15 14:04:56 +00:00
bits[9] = (mode & 0001) ? 't' : 'T'; /* others executable */
bits[10] = '\0';
2017-06-15 14:04:56 +00:00
return bits;
}
2017-05-15 12:52:00 +00:00
/*
* Gets only a single line (that's what we need
* for now) or shows full command output in pager.
*
* If pager is valid, returns NULL
*/
2017-04-10 12:47:12 +00:00
static char *
2017-06-15 14:04:56 +00:00
get_output(char *buf, size_t bytes, char *file,
char *arg1, char *arg2, int pager)
{
2017-05-15 12:52:00 +00:00
pid_t pid;
2017-05-15 04:24:30 +00:00
int pipefd[2];
2017-06-15 14:04:56 +00:00
FILE *pf;
2017-05-15 04:24:30 +00:00
int status;
char *ret = NULL;
if (pipe(pipefd) == -1)
printerr(1, "pipe(2)");
pid = fork();
if (pid == 0) {
/* In child */
close(pipefd[0]);
dup2(pipefd[1], STDOUT_FILENO);
dup2(pipefd[1], STDERR_FILENO);
execlp(file, file, arg1, arg2, NULL);
_exit(1);
}
/* In parent */
2017-05-15 12:52:00 +00:00
waitpid(pid, &status, 0);
2017-05-15 04:24:30 +00:00
close(pipefd[1]);
2017-05-15 12:52:00 +00:00
if (!pager) {
2017-06-15 14:04:56 +00:00
pf = fdopen(pipefd[0], "r");
if (pf) {
2017-05-15 12:52:00 +00:00
ret = fgets(buf, bytes, pf);
close(pipefd[0]);
}
return ret;
}
pid = fork();
if (pid == 0) {
/* Show in pager in child */
dup2(pipefd[0], STDIN_FILENO);
execlp("less", "less", NULL);
2017-05-15 04:24:30 +00:00
close(pipefd[0]);
2017-05-15 12:52:00 +00:00
_exit(1);
}
2017-05-15 12:52:00 +00:00
/* In parent */
2017-05-15 04:24:30 +00:00
waitpid(pid, &status, 0);
2017-05-15 12:52:00 +00:00
return NULL;
}
/*
* Follows the stat(1) output closely
*/
2017-04-22 10:20:36 +00:00
static int
2017-06-15 14:04:56 +00:00
show_stats(char *fpath, char *fname, struct stat *sb)
{
char *perms = get_lsperms(sb->st_mode, g_buf);
char *p, *begin = g_buf;
2017-04-22 10:20:36 +00:00
char tmp[] = "/tmp/nnnXXXXXX";
int fd = mkstemp(tmp);
2017-06-15 14:04:56 +00:00
2017-04-22 10:20:36 +00:00
if (fd == -1)
return -1;
/* Show file name or 'symlink' -> 'target' */
if (perms[0] == 'l') {
/* Note that MAX_CMD_LEN > PATH_MAX */
ssize_t len = readlink(fpath, g_buf, MAX_CMD_LEN);
2017-06-15 14:04:56 +00:00
if (len != -1) {
g_buf[len] = '\0';
dprintf(fd, " File: '%s' -> ",
replace_escape(fname));
dprintf(fd, "'%s'",
replace_escape(g_buf));
}
} else
dprintf(fd, " File: '%s'", replace_escape(fname));
/* Show size, blocks, file type */
2017-04-22 14:56:22 +00:00
#ifdef __APPLE__
dprintf(fd, "\n Size: %-15lld Blocks: %-10lld IO Block: %-6d %s",
#else
2017-04-22 10:20:36 +00:00
dprintf(fd, "\n Size: %-15ld Blocks: %-10ld IO Block: %-6ld %s",
2017-04-22 14:56:22 +00:00
#endif
sb->st_size, sb->st_blocks, sb->st_blksize, g_buf);
/* Show containing device, inode, hardlink count */
2017-04-22 14:56:22 +00:00
#ifdef __APPLE__
sprintf(g_buf, "%xh/%ud", sb->st_dev, sb->st_dev);
2017-04-22 14:56:22 +00:00
dprintf(fd, "\n Device: %-15s Inode: %-11llu Links: %-9hu",
#else
sprintf(g_buf, "%lxh/%lud", sb->st_dev, sb->st_dev);
2017-04-22 10:20:36 +00:00
dprintf(fd, "\n Device: %-15s Inode: %-11lu Links: %-9lu",
2017-04-22 14:56:22 +00:00
#endif
g_buf, sb->st_ino, sb->st_nlink);
/* Show major, minor number for block or char device */
if (perms[0] == 'b' || perms[0] == 'c')
2017-04-22 10:20:36 +00:00
dprintf(fd, " Device type: %x,%x",
major(sb->st_rdev), minor(sb->st_rdev));
/* Show permissions, owner, group */
2017-04-22 10:20:36 +00:00
dprintf(fd, "\n Access: 0%d%d%d/%s Uid: (%u/%s) Gid: (%u/%s)",
(sb->st_mode >> 6) & 7, (sb->st_mode >> 3) & 7, sb->st_mode & 7,
perms,
sb->st_uid, (getpwuid(sb->st_uid))->pw_name,
sb->st_gid, (getgrgid(sb->st_gid))->gr_name);
/* Show last access time */
strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_atime));
dprintf(fd, "\n\n Access: %s", g_buf);
/* Show last modification time */
strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_mtime));
dprintf(fd, "\n Modify: %s", g_buf);
/* Show last status change time */
strftime(g_buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_ctime));
dprintf(fd, "\n Change: %s", g_buf);
if (S_ISREG(sb->st_mode)) {
/* Show file(1) output */
2017-05-15 12:52:00 +00:00
p = get_output(g_buf, MAX_CMD_LEN, "file", "-b", fpath, 0);
if (p) {
2017-04-22 10:20:36 +00:00
dprintf(fd, "\n\n ");
while (*p) {
if (*p == ',') {
*p = '\0';
2017-04-22 10:20:36 +00:00
dprintf(fd, " %s\n", begin);
begin = p + 1;
}
2017-06-17 06:58:21 +00:00
++p;
}
2017-04-22 10:20:36 +00:00
dprintf(fd, " %s", begin);
}
2017-05-15 12:52:00 +00:00
dprintf(fd, "\n\n");
} else
dprintf(fd, "\n\n\n");
2017-04-22 10:20:36 +00:00
2017-05-15 12:52:00 +00:00
close(fd);
2017-04-21 18:26:48 +00:00
exitcurses();
2017-05-15 12:52:00 +00:00
get_output(NULL, 0, "cat", tmp, NULL, 1);
2017-04-22 10:20:36 +00:00
unlink(tmp);
initcurses();
2017-05-15 12:52:00 +00:00
return 0;
}
2017-04-21 18:26:48 +00:00
static int
2017-06-15 14:04:56 +00:00
show_mediainfo(char *fpath, char *arg)
2017-04-21 18:26:48 +00:00
{
2017-06-15 14:04:56 +00:00
if (!get_output(g_buf, MAX_CMD_LEN, "which", "mediainfo", NULL, 0))
2017-04-21 18:26:48 +00:00
return -1;
2017-05-15 12:52:00 +00:00
exitcurses();
get_output(NULL, 0, "mediainfo", fpath, arg, 1);
initcurses();
return 0;
2017-04-21 18:26:48 +00:00
}
2017-04-22 07:20:02 +00:00
static int
2017-04-03 17:03:46 +00:00
show_help(void)
{
2017-06-11 13:54:02 +00:00
char tmp[] = "/tmp/nnnXXXXXX";
static char helpstr[] = ("\
2017-04-23 21:45:06 +00:00
Key | Function\n\
-+-\n\
Up, k, ^P | Previous entry\n\
Down, j, ^N | Next entry\n\
PgUp, ^U | Scroll half page up\n\
PgDn, ^D | Scroll half page down\n\
Home, g, ^, ^A | Jump to first entry\n\
End, G, $, ^E | Jump to last entry\n\
Right, Enter, l, ^M | Open file or enter dir\n\
Left, Bksp, h, ^H | Go to parent dir\n\
Insert | Toggle navigate-as-you-type mode\n\
2017-04-23 21:45:06 +00:00
~ | Jump to HOME dir\n\
& | Jump to initial dir\n\
- | Jump to last visited dir\n\
/ | Filter dir contents\n\
2017-06-05 04:54:28 +00:00
^/ | Search dir in desktop search tool\n\
. | Toggle hide .dot files\n\
2017-06-11 04:15:50 +00:00
b | Show bookmark key prompt\n\
2017-04-23 21:45:06 +00:00
c | Show change dir prompt\n\
d | Toggle detail view\n\
D | Toggle current file details screen\n\
m | Show concise mediainfo\n\
M | Show full mediainfo\n\
s | Toggle sort by file size\n\
S | Toggle disk usage analyzer mode\n\
t | Toggle sort by modified time\n\
! | Spawn SHELL in PWD (fallback sh)\n\
e | Edit entry in EDITOR (fallback vi)\n\
o | Open dir in NNN_DE_FILE_MANAGER\n\
2017-04-23 21:45:06 +00:00
p | Open entry in PAGER (fallback less)\n\
2017-06-06 14:54:04 +00:00
^K | Invoke file path copier\n\
^L | Force a redraw, exit filter prompt\n\
2017-06-11 13:54:02 +00:00
? | Toggle help and settings screen\n\
Q | Quit and change directory\n\
2017-06-11 13:54:02 +00:00
q, ^Q | Quit\n\n\n");
2017-06-15 14:04:56 +00:00
int i = 0, fd = mkstemp(tmp);
if (fd == -1)
return -1;
2017-06-11 13:54:02 +00:00
dprintf(fd, "%s", helpstr);
if (getenv("NNN_BMS")) {
dprintf(fd, "BOOKMARKS\n");
2017-06-17 06:58:21 +00:00
for (; i < MAX_BM; ++i)
2017-06-11 13:54:02 +00:00
if (bookmark[i].key)
2017-06-15 14:04:56 +00:00
dprintf(fd, " %s: %s\n",
bookmark[i].key, bookmark[i].loc);
2017-06-11 13:54:02 +00:00
else
break;
dprintf(fd, "\n");
}
if (editor)
dprintf(fd, "NNN_USE_EDITOR: %s\n", editor);
if (desktop_manager)
dprintf(fd, "NNN_DE_FILE_MANAGER: %s\n", desktop_manager);
if (idletimeout)
dprintf(fd, "NNN_IDLE_TIMEOUT: %d secs\n", idletimeout);
if (copier)
dprintf(fd, "NNN_COPIER: %s\n", copier);
2017-04-21 18:26:48 +00:00
2017-06-11 13:54:02 +00:00
dprintf(fd, "\n");
close(fd);
exitcurses();
2017-06-11 13:54:02 +00:00
get_output(NULL, 0, "cat", tmp, NULL, 1);
unlink(tmp);
initcurses();
2017-06-11 13:54:02 +00:00
return 0;
2017-04-03 17:03:46 +00:00
}
static int
2017-06-15 14:04:56 +00:00
sum_bsizes(const char *fpath, const struct stat *sb,
int typeflag, struct FTW *ftwbuf)
{
if (typeflag == FTW_F || typeflag == FTW_D)
blk_size += sb->st_blocks;
return 0;
}
2017-04-10 19:41:06 +00:00
static int
getorder(size_t size)
{
switch (size) {
case 4096:
return 12;
case 512:
return 9;
case 8192:
return 13;
case 16384:
return 14;
case 32768:
return 15;
case 65536:
return 16;
case 131072:
return 17;
case 262144:
return 18;
case 524288:
return 19;
case 1048576:
return 20;
case 2048:
return 11;
case 1024:
return 10;
default:
return 0;
}
}
2017-04-01 09:11:07 +00:00
static int
dentfill(char *path, struct entry **dents,
2014-10-22 15:21:50 +00:00
int (*filter)(regex_t *, char *), regex_t *re)
{
static char newpath[PATH_MAX];
2017-04-10 12:47:12 +00:00
static DIR *dirp;
static struct dirent *dp;
static struct stat sb;
static int n;
2017-06-15 14:04:56 +00:00
n = 0;
if (cfg.bsizeorder)
dir_size = 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 */
if ((dp->d_name[0] == '.' && (dp->d_name[1] == '\0' ||
(dp->d_name[1] == '.' && dp->d_name[2] == '\0'))))
2014-10-22 15:21:50 +00:00
continue;
2017-04-11 13:46:06 +00:00
mkpath(path, dp->d_name, newpath, PATH_MAX);
if (lstat(newpath, &sb) == -1) {
2014-10-22 15:21:50 +00:00
continue;
/* if (*dents)
free(*dents);
printerr(1, "lstat"); */
}
if (filter(re, dp->d_name) == 0) {
if (!cfg.bsizeorder)
continue;
if (S_ISDIR(sb.st_mode)) {
blk_size = 0;
if (nftw(newpath, sum_bsizes, open_max,
FTW_MOUNT | FTW_PHYS) == -1) {
printmsg("nftw(3) failed");
dir_size += sb.st_blocks;
} else
dir_size += blk_size;
} else
dir_size += sb.st_blocks;
continue;
}
2017-04-11 13:46:06 +00:00
if (n == total_dents) {
total_dents += 64;
*dents = realloc(*dents, total_dents * sizeof(**dents));
2017-04-11 13:46:06 +00:00
if (*dents == NULL)
printerr(1, "realloc");
}
2017-04-29 05:32:12 +00:00
xstrlcpy((*dents)[n].name, dp->d_name, NAME_MAX);
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;
2017-06-20 14:58:53 +00:00
if (cfg.bsizeorder) {
if (S_ISDIR(sb.st_mode)) {
blk_size = 0;
2017-06-15 14:04:56 +00:00
if (nftw(newpath, sum_bsizes, open_max,
FTW_MOUNT | FTW_PHYS) == -1) {
printmsg("nftw(3) failed");
(*dents)[n].bsize = sb.st_blocks;
} else
(*dents)[n].bsize = blk_size;
} else
(*dents)[n].bsize = sb.st_blocks;
dir_size += (*dents)[n].bsize;
}
2017-06-17 06:58:21 +00:00
++n;
2014-10-22 15:21:50 +00:00
}
2017-06-20 14:58:53 +00:00
if (cfg.bsizeorder) {
static struct statvfs svb;
2017-06-15 14:04:56 +00:00
if (statvfs(path, &svb) == -1)
2017-04-10 19:41:06 +00:00
fs_free = 0;
else
fs_free = svb.f_bavail << getorder(svb.f_bsize);
}
/* Should never be null */
if (closedir(dirp) == -1) {
if (*dents)
free(*dents);
printerr(1, "closedir");
}
2014-10-22 15:21:50 +00:00
return n;
}
2017-04-01 09:11:07 +00:00
static 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 */
2017-04-01 09:11:07 +00:00
static int
2017-04-02 08:48:54 +00:00
dentfind(struct entry *dents, int n, char *path)
{
2017-04-02 08:48:54 +00:00
if (!path)
return 0;
2017-04-02 08:48:54 +00:00
2017-04-10 12:47:12 +00:00
static int i;
static char *p;
p = basename(path);
2017-04-02 08:48:54 +00:00
DPRINTF_S(p);
2017-06-17 06:58:21 +00:00
for (i = 0; i < n; ++i)
2017-04-02 08:48:54 +00:00
if (strcmp(p, dents[i].name) == 0)
return i;
2017-04-02 08:48:54 +00:00
return 0;
}
2017-04-01 09:11:07 +00:00
static int
populate(char *path, char *oldpath, char *fltr)
2014-10-07 06:05:30 +00:00
{
2017-04-10 12:47:12 +00:00
static regex_t re;
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 */
if (setfilter(&re, fltr) != 0)
return -1;
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 */
2017-04-02 08:48:54 +00:00
cur = dentfind(dents, ndents, oldpath);
return 0;
}
2014-10-07 11:23:44 +00:00
2017-04-01 09:11:07 +00:00
static void
redraw(char *path)
{
static int nlines, i;
2017-04-21 21:40:02 +00:00
static size_t ncols;
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 */
2017-06-17 06:58:21 +00:00
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 */
if (!realpath(path, g_buf)) {
printmsg("Cannot resolve path");
return;
}
2017-04-21 21:40:02 +00:00
ncols = COLS;
if (ncols > PATH_MAX)
ncols = PATH_MAX;
g_buf[ncols - strlen(CWD) - 1] = '\0';
printw(CWD "%s\n\n", g_buf);
/* Print listing */
2017-03-29 14:12:23 +00:00
if (cur < (nlines >> 1)) {
2017-06-17 06:58:21 +00:00
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)) {
2017-06-17 06:58:21 +00:00
for (i = ndents - nlines; i < ndents; ++i)
printptr(&dents[i], i == cur);
} else {
static int odd;
2017-06-15 14:04:56 +00:00
odd = ISODD(nlines);
2017-03-29 14:12:23 +00:00
nlines >>= 1;
2017-06-17 06:58:21 +00:00
for (i = cur - nlines; i < cur + nlines + odd; ++i)
printptr(&dents[i], i == cur);
}
2017-06-20 14:58:53 +00:00
if (cfg.showdetail) {
2017-03-30 13:24:18 +00:00
if (ndents) {
2017-04-01 12:31:54 +00:00
static char ind[2] = "\0\0";
static char sort[17];
2017-04-01 12:31:54 +00:00
2017-06-20 14:58:53 +00:00
if (cfg.mtimeorder)
2017-04-01 12:31:54 +00:00
sprintf(sort, "by time ");
2017-06-20 14:58:53 +00:00
else if (cfg.sizeorder)
2017-04-01 12:31:54 +00:00
sprintf(sort, "by size ");
else
sort[0] = '\0';
2017-03-31 14:02:59 +00:00
if (S_ISDIR(dents[cur].mode))
2017-04-01 12:31:54 +00:00
ind[0] = '/';
2017-03-31 14:02:59 +00:00
else if (S_ISLNK(dents[cur].mode))
2017-04-01 12:31:54 +00:00
ind[0] = '@';
2017-03-31 14:02:59 +00:00
else if (S_ISSOCK(dents[cur].mode))
2017-04-01 12:31:54 +00:00
ind[0] = '=';
2017-03-31 14:02:59 +00:00
else if (S_ISFIFO(dents[cur].mode))
2017-04-01 12:31:54 +00:00
ind[0] = '|';
2017-06-15 14:04:56 +00:00
else if (dents[cur].mode & 0100)
2017-04-01 12:31:54 +00:00
ind[0] = '*';
else
ind[0] = '\0';
2017-03-31 14:02:59 +00:00
2017-06-20 14:58:53 +00:00
if (!cfg.bsizeorder)
sprintf(g_buf, "total %d %s[%s%s]", ndents, sort,
replace_escape(dents[cur].name), ind);
else {
i = sprintf(g_buf, "du: %s in dir, ",
coolsize(dir_size << 9));
sprintf(g_buf + i, "%s free [%s%s]", coolsize(fs_free),
replace_escape(dents[cur].name), ind);
}
printmsg(g_buf);
2017-03-30 13:24:18 +00:00
} else
printmsg("0 items");
}
}
2017-04-01 09:11:07 +00:00
static void
browse(char *ipath, char *ifilter)
{
2017-06-21 04:19:02 +00:00
char path[PATH_MAX], oldpath[PATH_MAX], newpath[PATH_MAX];
char lastdir[PATH_MAX];
char fltr[LINE_MAX];
char *mime, *dir, *tmp, *run, *env;
struct stat sb;
int r, fd, presel;
enum action sel = SEL_RUNARG + 1;
2017-04-29 05:32:12 +00:00
xstrlcpy(path, ipath, PATH_MAX);
xstrlcpy(fltr, ifilter, LINE_MAX);
oldpath[0] = '\0';
2017-04-01 07:26:25 +00:00
newpath[0] = '\0';
lastdir[0] = '\0'; /* Can't move back from initial directory */
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
else
presel = 0;
begin:
2017-04-28 12:27:06 +00:00
if (populate(path, oldpath, fltr) == -1) {
printwarn();
goto nochange;
}
for (;;) {
redraw(path);
2014-10-07 06:05:30 +00:00
nochange:
2017-04-25 19:12:07 +00:00
/* Exit if parent has exited */
if (getppid() == 1)
_exit(0);
2017-04-28 23:02:47 +00:00
sel = nextsel(&run, &env, &presel);
2017-04-28 23:02:47 +00:00
switch (sel) {
2017-04-19 12:52:30 +00:00
case SEL_CDQUIT:
{
2017-04-22 10:20:36 +00:00
char *tmpfile = "/tmp/nnn";
2017-06-15 14:04:56 +00:00
tmp = getenv("NNN_TMPFILE");
if (tmp)
2017-04-22 10:20:36 +00:00
tmpfile = tmp;
FILE *fp = fopen(tmpfile, "w");
2017-06-15 14:04:56 +00:00
2017-04-21 18:26:48 +00:00
if (fp) {
fprintf(fp, "cd \"%s\"", path);
fclose(fp);
2017-04-19 12:52:30 +00:00
}
/* Fall through to exit */
2017-05-29 17:51:44 +00:00
} // fallthrough
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 (path[0] == '/' && path[1] == '\0') {
2017-04-01 21:20:56 +00:00
printmsg("You are at /");
2014-10-07 06:05:30 +00:00
goto nochange;
2017-04-01 21:20:56 +00:00
}
dir = xdirname(path);
if (canopendir(dir) == 0) {
printwarn();
goto nochange;
}
2017-04-20 16:27:24 +00:00
/* Save history */
2017-04-29 05:32:12 +00:00
xstrlcpy(oldpath, path, PATH_MAX);
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
xstrlcpy(path, dir, PATH_MAX);
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
case SEL_GOIN:
2014-10-07 14:07:56 +00:00
/* Cannot descend in empty directories */
if (ndents == 0)
2017-04-28 23:02:47 +00:00
goto begin;
2014-10-07 14:07:56 +00:00
2017-04-29 05:32:12 +00:00
mkpath(path, dents[cur].name, newpath, PATH_MAX);
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;
}
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
2017-04-29 05:32:12 +00:00
xstrlcpy(path, newpath, PATH_MAX);
2017-04-28 12:27:06 +00:00
oldpath[0] = '\0';
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
2014-10-22 15:50:30 +00:00
case S_IFREG:
2017-04-01 07:26:25 +00:00
{
2017-06-15 14:04:56 +00:00
/* If NNN_USE_EDITOR is set,
* open text in EDITOR
*/
if (editor) {
mime = getmime(dents[cur].name);
if (mime) {
2017-06-15 14:04:56 +00:00
spawn(editor, newpath, NULL,
2017-06-20 15:59:37 +00:00
NULL, SP_NORMAL);
continue;
}
2017-06-15 14:04:56 +00:00
/* Recognize and open plain
* text files with vi
*/
if (get_output(g_buf, MAX_CMD_LEN,
"file", "-bi",
newpath, 0) == NULL)
continue;
if (strstr(g_buf, "text/") == g_buf) {
2017-06-15 14:04:56 +00:00
spawn(editor, newpath, NULL,
2017-06-20 15:59:37 +00:00
NULL, SP_NORMAL);
continue;
}
2014-10-07 06:05:30 +00:00
}
/* Invoke desktop opener as last resort */
2017-06-20 15:59:37 +00:00
spawn(utils[0], newpath, NULL, NULL, SP_NOTRACE);
continue;
2017-04-01 07:26:25 +00:00
}
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:
presel = readln(path);
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
DPRINTF_S(fltr);
2014-11-26 16:09:03 +00:00
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
2017-04-28 23:02:47 +00:00
goto nochange;
case SEL_MFLTR:
2017-06-20 14:58:53 +00:00
cfg.filtermode ^= 1;
if (cfg.filtermode)
presel = FILTER;
else
printmsg("navigate-as-you-type off");
goto nochange;
case SEL_SEARCH:
2017-06-20 15:59:37 +00:00
spawn(player, path, "search", NULL, SP_NORMAL);
break;
case SEL_NEXT:
if (cur < ndents - 1)
2017-06-17 06:58:21 +00:00
++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)
2017-06-17 06:58:21 +00:00
--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:
{
2017-06-11 04:15:50 +00:00
static char *input;
static int truecd;
/* Save the program start dir */
tmp = getcwd(newpath, PATH_MAX);
if (tmp == NULL) {
printwarn();
goto nochange;
}
/* Switch to current path for readline(3) */
if (chdir(path) == -1) {
printwarn();
goto nochange;
}
2017-04-05 04:55:59 +00:00
exitcurses();
tmp = readline("chdir: ");
initcurses();
2017-04-20 16:27:24 +00:00
/* Change back to program start dir */
if (chdir(newpath) == -1)
printwarn();
2017-04-20 16:27:24 +00:00
if (tmp[0] == '\0')
2017-04-21 18:26:48 +00:00
break;
2017-06-15 14:04:56 +00:00
/* Add to readline(3) history */
add_history(tmp);
input = tmp;
tmp = strstrip(tmp);
2017-04-20 16:27:24 +00:00
if (tmp[0] == '\0') {
free(input);
2017-04-21 18:26:48 +00:00
break;
2017-04-20 16:27:24 +00:00
}
truecd = 0;
2017-04-05 04:55:59 +00:00
if (tmp[0] == '~') {
/* Expand ~ to HOME absolute path */
2017-04-05 04:55:59 +00:00
char *home = getenv("HOME");
2017-06-15 14:04:56 +00:00
2017-04-05 04:55:59 +00:00
if (home)
2017-06-15 14:04:56 +00:00
snprintf(newpath, PATH_MAX, "%s%s",
home, tmp + 1);
else {
free(input);
2017-06-11 04:15:50 +00:00
printmsg("HOME not set");
goto nochange;
}
2017-04-20 16:27:24 +00:00
} else if (tmp[0] == '-' && tmp[1] == '\0') {
if (lastdir[0] == '\0') {
free(input);
break;
}
2017-04-24 13:23:03 +00:00
/* Switch to last visited dir */
2017-04-29 05:32:12 +00:00
xstrlcpy(newpath, lastdir, PATH_MAX);
truecd = 1;
2017-04-24 13:23:03 +00:00
} else if ((r = all_dots(tmp))) {
if (r == 1) {
/* Always in the current dir */
2017-04-20 16:27:24 +00:00
free(input);
2017-04-24 13:23:03 +00:00
break;
2017-04-20 16:27:24 +00:00
}
2017-04-24 13:23:03 +00:00
2017-06-17 06:58:21 +00:00
--r;
2017-04-24 13:23:03 +00:00
dir = path;
2017-06-17 06:58:21 +00:00
for (fd = 0; fd < r; ++fd) {
/* Reached / ? */
2017-06-15 14:04:56 +00:00
if (path[0] == '/' && path[1] == '\0') {
/* If it's a cd .. at / */
2017-04-24 13:23:03 +00:00
if (fd == 0) {
printmsg("You are at /");
free(input);
goto nochange;
}
/* Can't cd beyond / anyway */
2017-04-24 13:23:03 +00:00
break;
2017-06-15 14:04:56 +00:00
}
dir = xdirname(dir);
if (canopendir(dir) == 0) {
printwarn();
free(input);
goto nochange;
2017-04-24 13:23:03 +00:00
}
2017-04-20 16:27:24 +00:00
}
truecd = 1;
/* Save the path in case of cd ..
2017-06-15 14:04:56 +00:00
* We mark the current dir in parent dir
*/
if (r == 1) {
2017-04-29 05:32:12 +00:00
xstrlcpy(oldpath, path, PATH_MAX);
truecd = 2;
}
2017-04-29 05:32:12 +00:00
xstrlcpy(newpath, dir, PATH_MAX);
} else
2017-04-29 05:32:12 +00:00
mkpath(path, tmp, newpath, PATH_MAX);
2017-04-05 04:55:59 +00:00
2017-06-15 14:04:56 +00:00
free(input);
if (canopendir(newpath) == 0) {
printwarn();
2017-04-21 18:26:48 +00:00
break;
}
if (truecd == 0) {
/* Probable change in dir */
/* No-op if it's the same directory */
2017-06-15 14:04:56 +00:00
if (strcmp(path, newpath) == 0)
break;
oldpath[0] = '\0';
} else if (truecd == 1)
/* Sure change in dir */
oldpath[0] = '\0';
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
/* Save the newly opted dir in path */
2017-04-29 05:32:12 +00:00
xstrlcpy(path, newpath, PATH_MAX);
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
2014-10-22 15:56:31 +00:00
DPRINTF_S(path);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
}
case SEL_CDHOME:
tmp = getenv("HOME");
if (tmp == NULL) {
clearprompt();
goto nochange;
}
if (canopendir(tmp) == 0) {
printwarn();
goto nochange;
}
if (strcmp(path, tmp) == 0)
break;
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
2017-04-29 05:32:12 +00:00
xstrlcpy(path, tmp, PATH_MAX);
oldpath[0] = '\0';
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
DPRINTF_S(path);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
case SEL_CDBEGIN:
if (canopendir(ipath) == 0) {
printwarn();
goto nochange;
}
if (strcmp(path, ipath) == 0)
break;
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
2017-04-29 05:32:12 +00:00
xstrlcpy(path, ipath, PATH_MAX);
oldpath[0] = '\0';
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
DPRINTF_S(path);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
case SEL_CDLAST:
if (lastdir[0] == '\0')
break;
if (canopendir(lastdir) == 0) {
printwarn();
goto nochange;
}
2017-04-29 05:32:12 +00:00
xstrlcpy(newpath, lastdir, PATH_MAX);
xstrlcpy(lastdir, path, PATH_MAX);
xstrlcpy(path, newpath, PATH_MAX);
2017-04-20 16:27:24 +00:00
oldpath[0] = '\0';
/* Reset filter */
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
DPRINTF_S(path);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
2017-06-11 04:15:50 +00:00
presel = FILTER;
goto begin;
case SEL_CDBM:
printprompt("key: ");
tmp = readinput();
if (tmp == NULL) {
clearprompt();
goto nochange;
}
clearprompt();
2017-06-17 06:58:21 +00:00
for (r = 0; bookmark[r].key && r < MAX_BM; ++r) {
2017-06-11 04:15:50 +00:00
if (strcmp(bookmark[r].key, tmp) == 0) {
if (bookmark[r].loc[0] == '~') {
2017-06-15 14:04:56 +00:00
/* Expand ~ to HOME */
2017-06-11 04:15:50 +00:00
char *home = getenv("HOME");
2017-06-15 14:04:56 +00:00
2017-06-11 04:15:50 +00:00
if (home)
2017-06-15 14:04:56 +00:00
snprintf(newpath,
PATH_MAX,
"%s%s",
home,
bookmark[r].loc
+ 1);
2017-06-11 04:15:50 +00:00
else {
printmsg("HOME not set");
goto nochange;
}
} else
2017-06-15 14:04:56 +00:00
mkpath(path, bookmark[r].loc,
newpath, PATH_MAX);
2017-06-11 04:15:50 +00:00
if (canopendir(newpath) == 0) {
printwarn();
goto nochange;
}
if (strcmp(path, newpath) == 0)
break;
oldpath[0] = '\0';
break;
}
}
if (!bookmark[r].key) {
printmsg("No matching bookmark");
goto nochange;
}
/* Save last working directory */
xstrlcpy(lastdir, path, PATH_MAX);
/* Save the newly opted dir in path */
xstrlcpy(path, newpath, PATH_MAX);
/* Reset filter */
xstrlcpy(fltr, ifilter, LINE_MAX);
DPRINTF_S(path);
2017-06-20 14:58:53 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
case SEL_TOGGLEDOT:
2017-06-20 14:58:53 +00:00
cfg.showhidden ^= 1;
initfilter(cfg.showhidden, &ifilter);
2017-04-29 05:32:12 +00:00
xstrlcpy(fltr, ifilter, LINE_MAX);
goto begin;
case SEL_DETAIL:
2017-06-20 14:58:53 +00:00
cfg.showdetail ^= 1;
cfg.showdetail ? (printptr = &printent_long)
2017-04-01 07:26:25 +00:00
: (printptr = &printent);
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
goto begin;
case SEL_STATS:
{
struct stat sb;
2017-05-15 12:52:00 +00:00
if (ndents > 0) {
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
2017-05-15 12:52:00 +00:00
r = lstat(oldpath, &sb);
if (r == -1) {
if (dents)
dentfree(dents);
printerr(1, "lstat");
} else {
2017-06-15 14:04:56 +00:00
r = show_stats(oldpath, dents[cur].name,
&sb);
2017-05-15 12:52:00 +00:00
if (r < 0) {
printmsg(strerror(errno));
goto nochange;
}
2017-04-22 10:20:36 +00:00
}
}
2017-04-22 07:20:02 +00:00
break;
}
2017-04-21 18:26:48 +00:00
case SEL_MEDIA:
2017-05-15 12:52:00 +00:00
if (ndents > 0) {
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
2017-04-21 18:26:48 +00:00
2017-06-15 14:04:56 +00:00
if (show_mediainfo(oldpath, NULL) == -1) {
2017-05-15 12:52:00 +00:00
printmsg("mediainfo missing");
goto nochange;
}
2017-04-22 07:20:02 +00:00
}
break;
2017-04-21 18:26:48 +00:00
case SEL_FMEDIA:
2017-05-15 12:52:00 +00:00
if (ndents > 0) {
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
2017-04-21 18:26:48 +00:00
2017-06-15 14:04:56 +00:00
if (show_mediainfo(oldpath, "-f") == -1) {
2017-05-15 12:52:00 +00:00
printmsg("mediainfo missing");
goto nochange;
}
2017-04-22 07:20:02 +00:00
}
break;
case SEL_DFB:
2017-04-22 07:20:02 +00:00
if (!desktop_manager) {
printmsg("NNN_DE_FILE_MANAGER not set");
goto nochange;
2017-04-22 07:20:02 +00:00
}
2017-06-20 15:59:37 +00:00
spawn(desktop_manager, path, NULL, path, SP_NOTRACE | SP_NOWAIT);
2017-04-22 07:20:02 +00:00
break;
case SEL_FSIZE:
2017-06-20 14:58:53 +00:00
cfg.sizeorder ^= 1;
cfg.mtimeorder = 0;
cfg.bsizeorder = 0;
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
goto begin;
case SEL_BSIZE:
2017-06-20 14:58:53 +00:00
cfg.bsizeorder ^= 1;
if (cfg.bsizeorder) {
cfg.showdetail = 1;
printptr = &printent_long;
}
2017-06-20 14:58:53 +00:00
cfg.mtimeorder = 0;
cfg.sizeorder = 0;
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
goto begin;
case SEL_MTIME:
2017-06-20 14:58:53 +00:00
cfg.mtimeorder ^= 1;
cfg.sizeorder = 0;
cfg.bsizeorder = 0;
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
goto begin;
case SEL_REDRAW:
/* Save current */
if (ndents > 0)
2017-06-15 14:04:56 +00:00
mkpath(path, dents[cur].name, oldpath,
PATH_MAX);
goto begin;
case SEL_COPY:
if (copier && ndents) {
if (strcmp(path, "/") == 0)
snprintf(newpath, PATH_MAX, "/%s",
2017-04-01 07:26:25 +00:00
dents[cur].name);
else
snprintf(newpath, PATH_MAX, "%s/%s",
2017-04-01 07:26:25 +00:00
path, dents[cur].name);
2017-06-20 15:59:37 +00:00
spawn(copier, newpath, NULL, NULL, SP_NONE);
printmsg(newpath);
} else if (!copier)
2017-06-15 14:04:56 +00:00
printmsg("NNN_COPIER is not set");
goto nochange;
2017-04-03 17:03:46 +00:00
case SEL_HELP:
show_help();
2017-04-22 07:20:02 +00:00
break;
case SEL_RUN:
run = xgetenv(env, run);
2017-06-20 15:59:37 +00:00
spawn(run, NULL, NULL, path, SP_NORMAL | SP_MARKER);
/* Repopulate as directory content may have changed */
goto begin;
case SEL_RUNARG:
run = xgetenv(env, run);
2017-06-20 15:59:37 +00:00
spawn(run, dents[cur].name, NULL, path, SP_NORMAL);
break;
}
/* Screensaver */
if (idletimeout != 0 && idle == idletimeout) {
idle = 0;
2017-06-20 15:59:37 +00:00
spawn(player, "", "screensaver", NULL, SP_NORMAL | SP_SIGINT);
}
2014-10-07 06:05:30 +00:00
}
}
2017-04-01 09:11:07 +00:00
static void
2017-04-01 05:18:18 +00:00
usage(void)
2015-11-26 16:00:26 +00:00
{
2017-06-15 14:04:56 +00:00
printf("usage: nnn [-l] [-i] [-p custom_nlay] [-S] [-v] [-h] [PATH]\n\n\
2017-04-14 18:44:25 +00:00
The missing terminal file browser for X.\n\n\
positional arguments:\n\
PATH directory to open [default: current dir]\n\n\
optional arguments:\n\
-l start in light mode (fewer details)\n\
-i start in navigate-as-you-type mode\n\
-p path to custom nlay\n\
2017-04-14 18:44:25 +00:00
-S start in disk usage analyzer mode\n\
-v show program version and exit\n\
-h show this help and exit\n\n\
Version: %s\n\
License: BSD 2-Clause\n\
Webpage: https://github.com/jarun/nnn\n", VERSION);
exit(0);
2015-11-26 16:00:26 +00:00
}
2014-10-07 06:05:30 +00:00
int
main(int argc, char *argv[])
{
char cwd[PATH_MAX], *ipath;
2017-06-15 14:04:56 +00:00
char *ifilter, *bmstr;
2017-06-21 04:19:02 +00:00
int opt;
2015-11-26 16:00:26 +00:00
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
while ((opt = getopt(argc, argv, "dlSip:vh")) != -1) {
2017-04-01 05:18:18 +00:00
switch (opt) {
case 'S':
2017-06-20 14:58:53 +00:00
cfg.bsizeorder = 1;
break;
case 'l':
2017-06-20 14:58:53 +00:00
cfg.showdetail = 0;
printptr = &printent;
2017-04-01 05:18:18 +00:00
break;
case 'i':
2017-06-20 14:58:53 +00:00
cfg.filtermode = 1;
break;
case 'p':
player = optarg;
break;
2017-04-13 13:43:33 +00:00
case 'v':
2017-06-15 14:04:56 +00:00
printf("%s\n", VERSION);
2017-04-13 13:43:33 +00:00
return 0;
case 'd':
fprintf(stderr, "Option -d is deprecated and will be removed, detail view mode is default now.\n");
break;
case 'h': // fallthrough
2017-04-01 05:18:18 +00:00
default:
usage();
}
2017-04-01 05:18:18 +00:00
}
if (argc == optind) {
/* Start in the current directory */
2017-04-29 05:32:12 +00:00
ipath = getcwd(cwd, PATH_MAX);
if (ipath == NULL)
ipath = "/";
2017-04-01 05:18:18 +00:00
} else {
ipath = realpath(argv[optind], cwd);
if (!ipath) {
fprintf(stderr, "%s: no such dir\n", argv[optind]);
exit(1);
}
}
open_max = max_openfds();
2017-04-01 05:18:18 +00:00
if (getuid() == 0)
2017-06-20 14:58:53 +00:00
cfg.showhidden = 1;
initfilter(cfg.showhidden, &ifilter);
2017-04-01 05:18:18 +00:00
2017-06-11 13:54:02 +00:00
/* Parse bookmarks string, if available */
2017-06-15 14:04:56 +00:00
bmstr = getenv("NNN_BMS");
if (bmstr)
parsebmstr(bmstr);
2017-06-11 13:54:02 +00:00
/* Edit text in EDITOR, if opted */
if (getenv("NNN_USE_EDITOR"))
editor = xgetenv("EDITOR", "vi");
2016-08-21 08:18:19 +00:00
/* Set player if not set already */
if (!player)
player = utils[1];
2016-08-21 10:19:54 +00:00
/* Get the desktop file browser, if set */
desktop_manager = getenv("NNN_DE_FILE_MANAGER");
/* Get screensaver wait time, if set; copier used as tmp var */
copier = getenv("NNN_IDLE_TIMEOUT");
if (copier)
idletimeout = abs(atoi(copier));
/* Get the default copier, if set */
copier = getenv("NNN_COPIER");
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
#ifdef DEBUGMODE
enabledbg();
#endif
/* Set locale */
setlocale(LC_ALL, "");
2014-10-07 11:37:23 +00:00
initcurses();
browse(ipath, ifilter);
2014-10-07 11:37:23 +00:00
exitcurses();
#ifdef DEBUGMODE
disabledbg();
#endif
exit(0);
2014-10-07 06:05:30 +00:00
}