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>
|
2017-04-10 04:51:44 +00:00
|
|
|
#include <sys/statvfs.h>
|
2017-04-11 04:47:50 +00:00
|
|
|
#include <sys/resource.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>
|
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>
|
2017-03-30 04:39:21 +00:00
|
|
|
#include <time.h>
|
2017-04-02 23:35:14 +00:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-04-09 18:41:29 +00:00
|
|
|
#define __USE_XOPEN_EXTENDED
|
|
|
|
#include <ftw.h>
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
#ifdef DEBUG
|
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;
|
|
|
|
}
|
|
|
|
|
2014-10-08 08:36:17 +00:00
|
|
|
#define DEBUG_FD 8
|
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)
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2017-04-13 13:43:33 +00:00
|
|
|
#define VERSION "v1.0"
|
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))
|
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)
|
2016-08-21 12:47:34 +00:00
|
|
|
#define TOUPPER(ch) \
|
|
|
|
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
|
2017-04-01 07:26:25 +00:00
|
|
|
#define MAX_CMD_LEN (PATH_MAX << 1)
|
|
|
|
#define CURSYM(flag) (flag ? CURSR : EMPTY)
|
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,
|
|
|
|
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,
|
2016-02-25 15:06:57 +00:00
|
|
|
SEL_CDHOME,
|
2017-04-08 08:16:03 +00:00
|
|
|
SEL_LAST,
|
2016-02-25 14:54:41 +00:00
|
|
|
SEL_TOGGLEDOT,
|
2017-03-29 20:21:52 +00:00
|
|
|
SEL_DETAIL,
|
2017-04-02 23:35:14 +00:00
|
|
|
SEL_STATS,
|
2017-04-12 16:48:03 +00:00
|
|
|
SEL_DFB,
|
2017-03-29 20:21:52 +00:00
|
|
|
SEL_FSIZE,
|
2017-04-09 18:41:29 +00:00
|
|
|
SEL_BSIZE,
|
2015-01-31 22:02:59 +00:00
|
|
|
SEL_MTIME,
|
2015-03-11 18:55:28 +00:00
|
|
|
SEL_REDRAW,
|
2017-03-30 15:47:00 +00:00
|
|
|
SEL_COPY,
|
2017-04-03 17:03:46 +00:00
|
|
|
SEL_HELP,
|
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
|
|
|
|
2017-04-01 07:26:25 +00:00
|
|
|
typedef struct entry {
|
2016-01-07 10:26:44 +00:00
|
|
|
char name[PATH_MAX];
|
2014-10-09 13:23:12 +00:00
|
|
|
mode_t mode;
|
2015-01-31 22:02:59 +00:00
|
|
|
time_t t;
|
2017-03-29 20:21:52 +00:00
|
|
|
off_t size;
|
2017-04-09 18:41:29 +00:00
|
|
|
off_t bsize;
|
2017-04-01 07:26:25 +00:00
|
|
|
} *pEntry;
|
2014-10-09 13:23:12 +00:00
|
|
|
|
2017-04-03 20:10:04 +00:00
|
|
|
typedef unsigned long ulong;
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Global context */
|
2017-04-01 09:11:07 +00:00
|
|
|
static struct entry *dents;
|
|
|
|
static int ndents, cur;
|
|
|
|
static int idle;
|
2017-04-01 12:02:58 +00:00
|
|
|
static char *opener;
|
|
|
|
static char *fallback_opener;
|
|
|
|
static char *copier;
|
2017-04-12 16:48:03 +00:00
|
|
|
static char *desktop_manager;
|
2017-04-10 12:47:12 +00:00
|
|
|
static off_t blk_size;
|
|
|
|
static size_t fs_free;
|
2017-04-11 04:47:50 +00:00
|
|
|
static int open_max;
|
2017-04-10 12:47:12 +00:00
|
|
|
static const double div_2_pow_10 = 1.0 / 1024.0;
|
2017-04-01 09:11:07 +00:00
|
|
|
static const char* size_units[] = {"B", "K", "M", "G", "T", "P", "E", "Z", "Y"};
|
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
|
|
|
* '------
|
|
|
|
*/
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void printmsg(char *);
|
|
|
|
static void printwarn(void);
|
|
|
|
static void printerr(int, char *);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2017-04-11 04:47:50 +00:00
|
|
|
static rlim_t
|
|
|
|
max_openfds()
|
|
|
|
{
|
|
|
|
struct rlimit rl;
|
|
|
|
rlim_t limit;
|
|
|
|
|
|
|
|
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-02 15:45:31 +00:00
|
|
|
static size_t
|
|
|
|
xstrlcpy(char *dest, const char *src, size_t n)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < n && *src; i++)
|
|
|
|
*dest++ = *src++;
|
|
|
|
|
|
|
|
if (n) {
|
|
|
|
*dest = '\0';
|
|
|
|
|
|
|
|
#ifdef CHECK_XSTRLCPY_RET
|
|
|
|
/* Compiling this out as we are not checking
|
|
|
|
the return value anywhere (controlled case).
|
|
|
|
Just returning the number of bytes copied. */
|
|
|
|
while(*src++)
|
|
|
|
i++;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2017-04-01 12:02:58 +00:00
|
|
|
/*
|
2017-04-02 23:35:14 +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 *
|
|
|
|
xmemrchr(const void *s, int c, size_t n)
|
|
|
|
{
|
|
|
|
unsigned char *p;
|
|
|
|
unsigned char ch = (unsigned char)c;
|
|
|
|
|
|
|
|
if (!s || !n)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
p = (unsigned char *)s + n - 1;
|
|
|
|
|
|
|
|
while(n--)
|
|
|
|
if ((*p--) == ch)
|
|
|
|
return ++p;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2016-01-07 10:26:44 +00:00
|
|
|
/* Some implementations of dirname(3) may modify `path' and some
|
|
|
|
* return a pointer inside `path'. */
|
2017-04-01 09:11:07 +00:00
|
|
|
static char *
|
2014-10-22 14:02:15 +00:00
|
|
|
xdirname(const char *path)
|
|
|
|
{
|
2016-01-07 10:26:44 +00:00
|
|
|
static char out[PATH_MAX];
|
2016-01-06 15:53:04 +00:00
|
|
|
char tmp[PATH_MAX], *p;
|
2014-10-22 14:02:15 +00:00
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(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");
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(out, p, sizeof(out));
|
2016-01-07 10:26:44 +00:00
|
|
|
return out;
|
2014-10-22 14:02:15 +00:00
|
|
|
}
|
2017-04-01 12:02:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2017-04-02 23:35:14 +00:00
|
|
|
* The following dirname(3) implementation does not
|
2017-04-01 12:02:58 +00:00
|
|
|
* change the input. We use a copy of the original.
|
|
|
|
*
|
|
|
|
* Modified from the glibc (GNU LGPL) version.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
xdirname(const char *path)
|
|
|
|
{
|
|
|
|
static char name[PATH_MAX];
|
|
|
|
char *last_slash;
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(name, path, PATH_MAX);
|
2017-04-01 12:02:58 +00:00
|
|
|
|
|
|
|
/* Find last '/'. */
|
2017-04-02 15:45:31 +00:00
|
|
|
last_slash = strrchr(name, '/');
|
2017-04-01 12:02:58 +00:00
|
|
|
|
|
|
|
if (last_slash != NULL && last_slash != name && last_slash[1] == '\0') {
|
|
|
|
/* Determine whether all remaining characters are slashes. */
|
|
|
|
char *runp;
|
|
|
|
|
|
|
|
for (runp = last_slash; runp != name; --runp)
|
|
|
|
if (runp[-1] != '/')
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* The '/' is the last character, we have to look further. */
|
|
|
|
if (runp != name)
|
|
|
|
last_slash = xmemrchr(name, '/', runp - name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last_slash != NULL) {
|
|
|
|
/* Determine whether all remaining characters are slashes. */
|
|
|
|
char *runp;
|
|
|
|
|
|
|
|
for (runp = last_slash; runp != name; --runp)
|
|
|
|
if (runp[-1] != '/')
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Terminate the name. */
|
|
|
|
if (runp == name) {
|
|
|
|
/* The last slash is the first character in the string.
|
|
|
|
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 == name + 1)
|
|
|
|
++last_slash;
|
|
|
|
else
|
|
|
|
last_slash = name + 1;
|
|
|
|
} else
|
|
|
|
last_slash = runp;
|
|
|
|
|
|
|
|
last_slash[0] = '\0';
|
|
|
|
} else {
|
|
|
|
/* This assignment is ill-designed but the XPG specs require to
|
|
|
|
return a string containing "." in any case no directory part
|
|
|
|
is found and so a static and constant string is required. */
|
|
|
|
name[0] = '.';
|
|
|
|
name[1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2014-10-22 14:02:15 +00:00
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2017-04-04 14:27:44 +00:00
|
|
|
spawn(char *file, char *arg, char *dir, int notify)
|
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)
|
2016-08-20 16:09:47 +00:00
|
|
|
status = chdir(dir);
|
2017-04-04 14:27:44 +00:00
|
|
|
if (notify)
|
|
|
|
fprintf(stdout, "\n +-++-++-+\n | n n n |\n +-++-++-+\n\n");
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static char *
|
2015-11-20 15:42:33 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-04-01 17:40:12 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2016-08-21 12:47:34 +00:00
|
|
|
xstricmp(const char *s1, const char *s2)
|
|
|
|
{
|
2017-04-02 05:32:07 +00:00
|
|
|
static char *c1, *c2;
|
2017-04-01 17:40:12 +00:00
|
|
|
static long long num1, num2;
|
|
|
|
|
2017-04-02 05:32:07 +00:00
|
|
|
num1 = strtoll(s1, &c1, 10);
|
|
|
|
num2 = strtoll(s2, &c2, 10);
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2017-04-02 05:32:07 +00:00
|
|
|
if (*c1 == '\0' && *c2 == '\0') {
|
2017-04-01 17:40:12 +00:00
|
|
|
if (num1 != num2) {
|
|
|
|
if (num1 > num2)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2017-04-02 05:32:07 +00:00
|
|
|
} else if (*c1 == '\0' && *c2 != '\0')
|
|
|
|
return -1;
|
|
|
|
else if (*c1 != '\0' && *c2 == '\0')
|
|
|
|
return 1;
|
2017-04-01 17:40:12 +00:00
|
|
|
|
|
|
|
while (*s2 && *s1 && TOUPPER(*s1) == TOUPPER(*s2))
|
2016-08-21 12:47:34 +00:00
|
|
|
s1++, s2++;
|
|
|
|
|
|
|
|
/* In case of alphabetically same names, make sure
|
|
|
|
lower case one comes before upper case one */
|
|
|
|
if (!*s1 && !*s2)
|
|
|
|
return 1;
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2016-08-21 12:47:34 +00:00
|
|
|
return (int) (TOUPPER(*s1) - TOUPPER(*s2));
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static 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;
|
2017-04-01 09:11:07 +00:00
|
|
|
unsigned int i;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static int
|
2014-10-09 22:35:47 +00:00
|
|
|
setfilter(regex_t *regex, char *filter)
|
|
|
|
{
|
2016-01-07 10:26:44 +00:00
|
|
|
char errbuf[LINE_MAX];
|
|
|
|
size_t len;
|
2014-10-09 22:35:47 +00:00
|
|
|
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-07 10:26:44 +00:00
|
|
|
len = COLS;
|
|
|
|
if (len > sizeof(errbuf))
|
|
|
|
len = sizeof(errbuf);
|
|
|
|
regerror(r, regex, errbuf, len);
|
2014-10-09 22:35:47 +00:00
|
|
|
printmsg(errbuf);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2016-08-22 13:10:14 +00:00
|
|
|
initfilter(int dot, char **ifilter)
|
|
|
|
{
|
|
|
|
*ifilter = dot ? "." : "^[^.]";
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static int
|
2014-10-09 22:35:47 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static int
|
2014-10-09 13:23:12 +00:00
|
|
|
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 */
|
2015-01-31 22:02:59 +00:00
|
|
|
if (mtimeorder)
|
2017-04-01 20:18:33 +00:00
|
|
|
return pb->t - pa->t;
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2017-04-09 18:41:29 +00:00
|
|
|
if (sizeorder) {
|
|
|
|
if (pb->size > pa->size)
|
|
|
|
return 1;
|
|
|
|
else if (pb->size < pa->size)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bsizeorder) {
|
|
|
|
if (pb->bsize > pa->bsize)
|
|
|
|
return 1;
|
|
|
|
else if (pb->bsize < pa->bsize)
|
|
|
|
return -1;
|
|
|
|
}
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2017-04-01 20:18:33 +00:00
|
|
|
return xstricmp(pa->name, pb->name);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2014-10-07 11:37:23 +00:00
|
|
|
initcurses(void)
|
|
|
|
{
|
2016-03-10 17:00:12 +00:00
|
|
|
if (initscr() == NULL) {
|
2017-03-29 14:12:23 +00:00
|
|
|
char *term = getenv("TERM");
|
2016-03-10 17:00:12 +00:00
|
|
|
if (term != NULL)
|
|
|
|
fprintf(stderr, "error opening terminal: %s\n", term);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "failed to initialize curses\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-10-07 11:37:23 +00:00
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
nonl();
|
|
|
|
intrflush(stdscr, FALSE);
|
|
|
|
keypad(stdscr, TRUE);
|
|
|
|
curs_set(FALSE); /* Hide cursor */
|
2015-11-20 14:14:58 +00:00
|
|
|
timeout(1000); /* One second */
|
2017-04-14 14:13:37 +00:00
|
|
|
|
|
|
|
/* Set locale */
|
|
|
|
setlocale(LC_ALL, "");
|
2014-10-07 11:37:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2014-10-07 11:37:23 +00:00
|
|
|
exitcurses(void)
|
|
|
|
{
|
|
|
|
endwin(); /* Restore terminal */
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-10-22 14:54:13 +00:00
|
|
|
/* Clear the last line */
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2014-10-22 14:54:13 +00:00
|
|
|
clearprompt(void)
|
|
|
|
{
|
|
|
|
printmsg("");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print prompt on the last line */
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2014-10-22 14:54:13 +00:00
|
|
|
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}) */
|
2017-04-01 09:11:07 +00:00
|
|
|
static int
|
2015-11-20 15:42:33 +00:00
|
|
|
nextsel(char **run, char **env)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2017-04-01 09:11:07 +00:00
|
|
|
int c;
|
|
|
|
unsigned int 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;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static char *
|
2014-10-09 22:35:47 +00:00
|
|
|
readln(void)
|
|
|
|
{
|
2016-02-08 16:57:56 +00:00
|
|
|
static 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);
|
2016-02-08 16:57:56 +00:00
|
|
|
return ln[0] ? ln : NULL;
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
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 *
|
2016-02-10 15:38:22 +00:00
|
|
|
mkpath(char *dir, char *name, char *out, size_t n)
|
|
|
|
{
|
|
|
|
/* Handle absolute path */
|
2017-03-29 14:12:23 +00:00
|
|
|
if (name[0] == '/')
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(out, name, n);
|
2017-03-29 14:12:23 +00:00
|
|
|
else {
|
2016-02-10 15:38:22 +00:00
|
|
|
/* 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);
|
2016-02-10 15:38:22 +00:00
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2014-10-09 14:07:21 +00:00
|
|
|
printent(struct entry *ent, int active)
|
|
|
|
{
|
2017-03-29 20:55:51 +00:00
|
|
|
if (S_ISDIR(ent->mode))
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s/\n", CURSYM(active), ent->name);
|
2017-03-29 20:55:51 +00:00
|
|
|
else if (S_ISLNK(ent->mode))
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s@\n", CURSYM(active), ent->name);
|
2017-03-29 20:55:51 +00:00
|
|
|
else if (S_ISSOCK(ent->mode))
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s=\n", CURSYM(active), ent->name);
|
2017-03-29 20:55:51 +00:00
|
|
|
else if (S_ISFIFO(ent->mode))
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s|\n", CURSYM(active), ent->name);
|
2017-03-29 20:55:51 +00:00
|
|
|
else if (ent->mode & S_IXUSR)
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s*\n", CURSYM(active), ent->name);
|
2014-10-09 14:07:21 +00:00
|
|
|
else
|
2017-04-01 17:40:12 +00:00
|
|
|
printw("%s%s\n", CURSYM(active), ent->name);
|
2014-10-09 14:07:21 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void (*printptr)(struct entry *ent, int active) = &printent;
|
2017-04-01 05:18:18 +00:00
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static char*
|
2017-03-29 20:21:52 +00:00
|
|
|
coolsize(off_t size)
|
|
|
|
{
|
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 fsize, tmp;
|
|
|
|
static long double rem;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
fsize = size;
|
|
|
|
rem = 0;
|
2017-03-29 20:21:52 +00:00
|
|
|
|
|
|
|
while (fsize > 1024) {
|
2017-04-09 18:41:29 +00:00
|
|
|
tmp = fsize;
|
|
|
|
//fsize *= div_2_pow_10;
|
|
|
|
fsize >>= 10;
|
|
|
|
rem = tmp - (fsize << 10);
|
2017-03-29 20:21:52 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2017-04-09 18:41:29 +00:00
|
|
|
snprintf(size_buf, 12, "%.*Lf%s", i, fsize + rem * div_2_pow_10, size_units[i]);
|
2017-03-29 20:21:52 +00:00
|
|
|
return size_buf;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2017-03-29 20:21:52 +00:00
|
|
|
printent_long(struct entry *ent, int active)
|
|
|
|
{
|
2017-03-30 04:39:21 +00:00
|
|
|
static char buf[18];
|
2017-04-14 16:23:05 +00:00
|
|
|
strftime(buf, 18, "%d %m %Y %H:%M", localtime(&ent->t));
|
2017-03-30 04:39:21 +00:00
|
|
|
|
2017-03-30 05:14:26 +00:00
|
|
|
if (active)
|
|
|
|
attron(A_REVERSE);
|
|
|
|
|
2017-04-09 18:41:29 +00:00
|
|
|
if (!bsizeorder) {
|
|
|
|
if (S_ISDIR(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s / %s/\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISLNK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s @ %s@\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISSOCK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s = %s=\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISFIFO(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s | %s|\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISBLK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s b %s\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISCHR(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s c %s\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (ent->mode & S_IXUSR)
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s %8.8s* %s*\n", CURSYM(active),
|
2017-04-09 18:41:29 +00:00
|
|
|
buf, coolsize(ent->size), ent->name);
|
|
|
|
else
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s %8.8s %s\n", CURSYM(active),
|
2017-04-09 18:41:29 +00:00
|
|
|
buf, coolsize(ent->size), ent->name);
|
|
|
|
} else {
|
|
|
|
if (S_ISDIR(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s %8.8s/ %s/\n", CURSYM(active),
|
2017-04-09 18:41:29 +00:00
|
|
|
buf, coolsize(ent->bsize << 9), ent->name);
|
|
|
|
else if (S_ISLNK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s @ %s@\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISSOCK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s = %s=\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISFIFO(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s | %s|\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISBLK(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s b %s\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (S_ISCHR(ent->mode))
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s c %s\n",
|
2017-04-09 18:41:29 +00:00
|
|
|
CURSYM(active), buf, ent->name);
|
|
|
|
else if (ent->mode & S_IXUSR)
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s %8.8s* %s*\n", CURSYM(active),
|
2017-04-09 18:41:29 +00:00
|
|
|
buf, coolsize(ent->bsize << 9), ent->name);
|
|
|
|
else
|
2017-04-14 16:23:05 +00:00
|
|
|
printw("%s%-16.16s %8.8s %s\n", CURSYM(active),
|
2017-04-09 18:41:29 +00:00
|
|
|
buf, coolsize(ent->bsize << 9), ent->name);
|
|
|
|
}
|
2017-03-30 05:14:26 +00:00
|
|
|
|
|
|
|
if (active)
|
|
|
|
attroff(A_REVERSE);
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
static char
|
|
|
|
get_fileind(mode_t mode, char *desc)
|
|
|
|
{
|
2017-04-10 12:47:12 +00:00
|
|
|
static char c;
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
if (S_ISREG(mode)) {
|
|
|
|
c = '-';
|
|
|
|
sprintf(desc, "%s", "regular file");
|
2017-04-03 14:58:55 +00:00
|
|
|
if (mode & S_IXUSR)
|
|
|
|
strcat(desc, ", executable");
|
2017-04-02 23:35:14 +00:00
|
|
|
} 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';
|
|
|
|
}
|
|
|
|
|
|
|
|
return(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a mode field into "ls -l" type perms field. */
|
|
|
|
static char *
|
|
|
|
get_lsperms(mode_t mode, char *desc)
|
|
|
|
{
|
|
|
|
static const char *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)
|
|
|
|
bits[3] = (mode & S_IXUSR) ? 's' : 'S';
|
|
|
|
if (mode & S_ISGID)
|
|
|
|
bits[6] = (mode & S_IXGRP) ? 's' : 'l';
|
|
|
|
if (mode & S_ISVTX)
|
|
|
|
bits[9] = (mode & S_IXOTH) ? 't' : 'T';
|
|
|
|
|
|
|
|
bits[10] = '\0';
|
|
|
|
|
|
|
|
return(bits);
|
|
|
|
}
|
|
|
|
|
2017-04-10 12:47:12 +00:00
|
|
|
static char *
|
2017-04-03 14:58:55 +00:00
|
|
|
get_output(char *buf, size_t bytes)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
FILE *pf = popen(buf, "r");
|
|
|
|
if (pf) {
|
|
|
|
ret = fgets(buf, bytes, pf);
|
|
|
|
pclose(pf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
/*
|
|
|
|
* Follows the stat(1) output closely
|
|
|
|
*/
|
2017-04-10 12:47:12 +00:00
|
|
|
static void
|
2017-04-02 23:35:14 +00:00
|
|
|
show_stats(char* fpath, char* fname, struct stat *sb)
|
|
|
|
{
|
2017-04-03 14:58:55 +00:00
|
|
|
char buf[PATH_MAX + 48];
|
2017-04-02 23:35:14 +00:00
|
|
|
char *perms = get_lsperms(sb->st_mode, buf);
|
2017-04-03 14:58:55 +00:00
|
|
|
char *p, *begin = buf;
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
clear();
|
|
|
|
|
|
|
|
/* Show file name or 'symlink' -> 'target' */
|
|
|
|
if (perms[0] == 'l') {
|
|
|
|
char symtgt[PATH_MAX];
|
|
|
|
ssize_t len = readlink(fpath, symtgt, PATH_MAX);
|
2017-04-03 14:58:55 +00:00
|
|
|
if (len != -1) {
|
|
|
|
symtgt[len] = '\0';
|
|
|
|
printw("\n\n File: '%s' -> '%s'", fname, symtgt);
|
|
|
|
}
|
2017-04-02 23:35:14 +00:00
|
|
|
} else
|
2017-04-03 14:58:55 +00:00
|
|
|
printw("\n File: '%s'", fname);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show size, blocks, file type */
|
|
|
|
printw("\n Size: %-15llu Blocks: %-10llu IO Block: %-6llu %s",
|
|
|
|
sb->st_size, sb->st_blocks, sb->st_blksize, buf);
|
|
|
|
|
|
|
|
/* Show containing device, inode, hardlink count */
|
2017-04-03 20:10:04 +00:00
|
|
|
sprintf(buf, "%lxh/%lud", (ulong)sb->st_dev, (ulong)sb->st_dev);
|
2017-04-02 23:35:14 +00:00
|
|
|
printw("\n Device: %-15s Inode: %-11lu Links: %-9lu",
|
|
|
|
buf, sb->st_ino, sb->st_nlink);
|
|
|
|
|
|
|
|
/* Show major, minor number for block or char device */
|
|
|
|
if (perms[0] == 'b' || perms[0] == 'c')
|
|
|
|
printw(" Device type: %lx,%lx",
|
|
|
|
major(sb->st_rdev), minor(sb->st_rdev));
|
|
|
|
|
|
|
|
/* Show permissions, owner, group */
|
|
|
|
printw("\n Access: 0%d%d%d/%s Uid: (%lu/%s) Gid: (%lu/%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(buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_atime));
|
|
|
|
printw("\n\n Access: %s", buf);
|
|
|
|
|
|
|
|
/* Show last modification time */
|
|
|
|
strftime(buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_mtime));
|
|
|
|
printw("\n Modify: %s", buf);
|
|
|
|
|
|
|
|
/* Show last status change time */
|
|
|
|
strftime(buf, 40, "%a %d-%b-%Y %T %z,%Z", localtime(&sb->st_ctime));
|
|
|
|
printw("\n Change: %s", buf);
|
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
if (S_ISREG(sb->st_mode)) {
|
|
|
|
/* Show file(1) output */
|
2017-04-03 18:03:31 +00:00
|
|
|
sprintf(buf, "file -b \"%s\" 2>&1", fpath);
|
2017-04-03 14:58:55 +00:00
|
|
|
p = get_output(buf, PATH_MAX + 48);
|
|
|
|
if (p) {
|
|
|
|
printw("\n\n ");
|
|
|
|
while (*p) {
|
|
|
|
if (*p == ',') {
|
|
|
|
*p = '\0';
|
|
|
|
printw(" %s\n", begin);
|
|
|
|
begin = p + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
printw(" %s", begin);
|
|
|
|
}
|
2017-04-04 04:37:44 +00:00
|
|
|
#ifdef SUPPORT_CHKSUM
|
|
|
|
/* Calculating checksums can take VERY long */
|
2017-04-03 14:58:55 +00:00
|
|
|
|
|
|
|
/* Show md5 */
|
2017-04-03 18:03:31 +00:00
|
|
|
sprintf(buf, "openssl md5 \"%s\" 2>&1", fpath);
|
2017-04-03 14:58:55 +00:00
|
|
|
p = get_output(buf, PATH_MAX + 48);
|
2017-04-03 18:03:31 +00:00
|
|
|
if (p) {
|
|
|
|
p = xmemrchr(buf, ' ', strlen(buf));
|
|
|
|
if (!p)
|
|
|
|
p = buf;
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
printw("\n md5: %s", p);
|
2017-04-03 18:03:31 +00:00
|
|
|
}
|
2017-04-03 14:58:55 +00:00
|
|
|
|
|
|
|
/* Show sha256 */
|
2017-04-03 18:03:31 +00:00
|
|
|
sprintf(buf, "openssl sha256 \"%s\" 2>&1", fpath);
|
2017-04-03 14:58:55 +00:00
|
|
|
p = get_output(buf, PATH_MAX + 48);
|
2017-04-03 18:03:31 +00:00
|
|
|
if (p) {
|
|
|
|
p = xmemrchr(buf, ' ', strlen(buf));
|
|
|
|
if (!p)
|
|
|
|
p = buf;
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
printw(" sha256: %s", p);
|
2017-04-03 18:03:31 +00:00
|
|
|
}
|
2017-04-04 04:37:44 +00:00
|
|
|
#endif
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
/* Show exit keys */
|
2017-04-10 13:05:30 +00:00
|
|
|
printw("\n\n << (D)");
|
|
|
|
while ((*buf = getch()) != 'D');
|
|
|
|
return;
|
2017-04-02 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 12:47:12 +00:00
|
|
|
static void
|
2017-04-03 17:03:46 +00:00
|
|
|
show_help(void)
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
|
|
|
clear();
|
|
|
|
|
|
|
|
printw("\n\
|
|
|
|
<< 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\
|
2017-04-04 03:46:29 +00:00
|
|
|
[Home], g, ^, ^A Jump to first entry\n\
|
|
|
|
[End], G, $, ^E Jump to last entry\n\
|
2017-04-03 17:03:46 +00:00
|
|
|
[Right], [Enter], l, ^M Open file or enter dir\n\
|
|
|
|
[Left], [Backspace], h, ^H Go to parent dir\n\
|
|
|
|
~ Jump to HOME dir\n\
|
2017-04-08 08:16:03 +00:00
|
|
|
- Jump to last visited dir\n\
|
2017-04-12 16:48:03 +00:00
|
|
|
o Open dir in desktop file manager\n\
|
2017-04-03 17:03:46 +00:00
|
|
|
/, & Filter dir contents\n\
|
|
|
|
c Show change dir prompt\n\
|
|
|
|
d Toggle detail view\n\
|
2017-04-10 13:05:30 +00:00
|
|
|
D Toggle current file details screen\n\
|
2017-04-03 17:03:46 +00:00
|
|
|
. Toggle hide .dot files\n\
|
|
|
|
s Toggle sort by file size\n\
|
2017-04-09 18:41:29 +00:00
|
|
|
S Toggle disk usage analyzer mode\n\
|
2017-04-03 17:03:46 +00:00
|
|
|
t Toggle sort by modified time\n\
|
|
|
|
! Spawn SHELL in PWD (fallback sh)\n\
|
|
|
|
z Run top\n\
|
|
|
|
e Edit entry in EDITOR (fallback vi)\n\
|
|
|
|
p Open entry in PAGER (fallback less)\n\
|
|
|
|
^K Invoke file name copier\n\
|
|
|
|
^L Force a redraw\n\
|
2017-04-10 13:05:30 +00:00
|
|
|
? Toggle help screen\n\
|
2017-04-03 17:03:46 +00:00
|
|
|
q Quit\n");
|
|
|
|
|
|
|
|
/* Show exit keys */
|
2017-04-10 13:05:30 +00:00
|
|
|
printw("\n\n << (?)");
|
|
|
|
while ((c = getch()) != '?');
|
|
|
|
return;
|
2017-04-03 17:03:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 18:41:29 +00:00
|
|
|
static int
|
2017-04-11 04:47:50 +00:00
|
|
|
sum_bsizes(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
2017-04-09 18:41:29 +00:00
|
|
|
{
|
|
|
|
/* Handle permission problems */
|
|
|
|
if(typeflag == FTW_NS) {
|
2017-04-11 04:47:50 +00:00
|
|
|
printmsg("No stats (permissions ?)");
|
2017-04-09 18:41:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
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)
|
|
|
|
{
|
2017-04-09 18:41:29 +00:00
|
|
|
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 struct statvfs svb;
|
|
|
|
static int r, n;
|
|
|
|
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 */
|
2017-04-11 04:47:50 +00:00
|
|
|
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
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
if (filter(re, dp->d_name) == 0)
|
|
|
|
continue;
|
2017-04-11 13:46:06 +00:00
|
|
|
|
|
|
|
if (((n >> 5) << 5) == n) {
|
|
|
|
*dents = realloc(*dents, (n + 32) * sizeof(**dents));
|
|
|
|
if (*dents == NULL)
|
|
|
|
printerr(1, "realloc");
|
|
|
|
}
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy((*dents)[n].name, dp->d_name, sizeof((*dents)[n].name));
|
2014-10-22 15:21:50 +00:00
|
|
|
/* Get mode flags */
|
2016-01-07 10:26:44 +00:00
|
|
|
mkpath(path, dp->d_name, newpath, sizeof(newpath));
|
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");
|
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;
|
2017-03-29 20:21:52 +00:00
|
|
|
(*dents)[n].size = sb.st_size;
|
2017-04-09 18:41:29 +00:00
|
|
|
|
|
|
|
if (bsizeorder) {
|
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
|
|
|
blk_size = 0;
|
2017-04-11 04:47:50 +00:00
|
|
|
if (nftw(newpath, sum_bsizes, open_max, FTW_MOUNT | FTW_PHYS) == -1) {
|
|
|
|
printmsg("nftw(3) failed");
|
2017-04-09 18:41:29 +00:00
|
|
|
(*dents)[n].bsize = sb.st_blocks;
|
|
|
|
} else
|
|
|
|
(*dents)[n].bsize = blk_size;
|
|
|
|
} else
|
|
|
|
(*dents)[n].bsize = sb.st_blocks;
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2017-04-10 19:41:06 +00:00
|
|
|
if (bsizeorder) {
|
|
|
|
r = statvfs(path, &svb);
|
|
|
|
if (r == -1)
|
|
|
|
fs_free = 0;
|
|
|
|
else
|
|
|
|
fs_free = svb.f_bavail << getorder(svb.f_bsize);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2016-01-07 10:26:44 +00:00
|
|
|
dentfree(struct entry *dents)
|
2014-10-22 15:21:50 +00:00
|
|
|
{
|
|
|
|
free(dents);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
/* 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)
|
2014-10-22 18:05:59 +00:00
|
|
|
{
|
2017-04-02 08:48:54 +00:00
|
|
|
if (!path)
|
2014-10-22 18:05:59 +00:00
|
|
|
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 = xmemrchr(path, '/', strlen(path));
|
2017-04-02 08:48:54 +00:00
|
|
|
if (!p)
|
|
|
|
p = path;
|
|
|
|
else
|
|
|
|
/* We are assuming an entry with actual
|
|
|
|
name ending in '/' will not appear */
|
|
|
|
p++;
|
|
|
|
|
|
|
|
DPRINTF_S(p);
|
|
|
|
|
2017-04-03 20:10:04 +00:00
|
|
|
for (i = 0; i < n; i++)
|
2017-04-02 08:48:54 +00:00
|
|
|
if (strcmp(p, dents[i].name) == 0)
|
2014-10-22 18:05:59 +00:00
|
|
|
return i;
|
2017-04-02 08:48:54 +00:00
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static int
|
2016-02-10 15:32:41 +00:00
|
|
|
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;
|
|
|
|
static 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;
|
|
|
|
|
2016-01-07 10:26:44 +00:00
|
|
|
dentfree(dents);
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2016-02-10 15:16:19 +00:00
|
|
|
ndents = 0;
|
2015-07-01 23:56:47 +00:00
|
|
|
dents = NULL;
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2016-02-10 15:16:19 +00:00
|
|
|
ndents = dentfill(path, &dents, visible, &re);
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2016-02-10 15:16:19 +00:00
|
|
|
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
/* Find cur from history */
|
2017-04-02 08:48:54 +00:00
|
|
|
cur = dentfind(dents, ndents, oldpath);
|
2015-07-01 23:56:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-10-07 11:23:44 +00:00
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2016-02-10 15:32:41 +00:00
|
|
|
redraw(char *path)
|
2015-07-01 23:56:47 +00:00
|
|
|
{
|
2017-04-01 07:26:25 +00:00
|
|
|
static char cwd[PATH_MAX];
|
|
|
|
static int nlines, odd;
|
|
|
|
static int i;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2016-02-10 15:16:19 +00:00
|
|
|
nlines = MIN(LINES - 4, ndents);
|
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 */
|
2017-04-01 07:26:25 +00:00
|
|
|
if (!realpath(path, cwd)) {
|
2016-08-20 16:09:47 +00:00
|
|
|
printmsg("Cannot resolve path");
|
|
|
|
return;
|
|
|
|
}
|
2016-01-06 15:21:41 +00:00
|
|
|
|
2017-04-01 07:26:25 +00:00
|
|
|
printw(CWD "%s\n\n", cwd);
|
2015-07-01 23:56:47 +00:00
|
|
|
|
|
|
|
/* Print listing */
|
|
|
|
odd = ISODD(nlines);
|
2017-03-29 14:12:23 +00:00
|
|
|
if (cur < (nlines >> 1)) {
|
2015-07-01 23:56:47 +00:00
|
|
|
for (i = 0; i < nlines; i++)
|
2017-03-29 20:21:52 +00:00
|
|
|
printptr(&dents[i], i == cur);
|
2017-03-29 14:12:23 +00:00
|
|
|
} else if (cur >= ndents - (nlines >> 1)) {
|
2016-02-10 15:16:19 +00:00
|
|
|
for (i = ndents - nlines; i < ndents; i++)
|
2017-03-29 20:21:52 +00:00
|
|
|
printptr(&dents[i], i == cur);
|
2015-07-01 23:56:47 +00:00
|
|
|
} else {
|
2017-03-29 14:12:23 +00:00
|
|
|
nlines >>= 1;
|
|
|
|
for (i = cur - nlines; i < cur + nlines + odd; i++)
|
2017-03-29 20:21:52 +00:00
|
|
|
printptr(&dents[i], i == cur);
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
2017-03-29 21:15:46 +00:00
|
|
|
|
|
|
|
if (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";
|
2017-04-09 18:41:29 +00:00
|
|
|
static char sort[17];
|
2017-04-01 12:31:54 +00:00
|
|
|
|
|
|
|
if (mtimeorder)
|
|
|
|
sprintf(sort, "by time ");
|
|
|
|
else if (sizeorder)
|
|
|
|
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-03-31 14:02:59 +00:00
|
|
|
else if (dents[cur].mode & S_IXUSR)
|
2017-04-01 12:31:54 +00:00
|
|
|
ind[0] = '*';
|
|
|
|
else
|
|
|
|
ind[0] = '\0';
|
2017-03-31 14:02:59 +00:00
|
|
|
|
2017-04-10 04:51:44 +00:00
|
|
|
if (!bsizeorder)
|
|
|
|
sprintf(cwd, "total %d %s[%s%s]", ndents, sort,
|
|
|
|
dents[cur].name, ind);
|
|
|
|
else
|
|
|
|
sprintf(cwd, "total %d by disk usage, %s free [%s%s]",
|
|
|
|
ndents, coolsize(fs_free), dents[cur].name, ind);
|
|
|
|
|
2017-03-30 13:24:18 +00:00
|
|
|
printmsg(cwd);
|
|
|
|
} else
|
|
|
|
printmsg("0 items");
|
2017-03-29 21:15:46 +00:00
|
|
|
}
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2016-02-08 16:57:56 +00:00
|
|
|
browse(char *ipath, char *ifilter)
|
2015-07-01 23:56:47 +00:00
|
|
|
{
|
2017-04-01 07:26:25 +00:00
|
|
|
static char path[PATH_MAX], oldpath[PATH_MAX], newpath[PATH_MAX];
|
2017-04-08 08:16:03 +00:00
|
|
|
static char lastdir[PATH_MAX];
|
2017-04-01 07:26:25 +00:00
|
|
|
static char fltr[LINE_MAX];
|
2016-02-10 15:09:04 +00:00
|
|
|
char *bin, *dir, *tmp, *run, *env;
|
2016-01-07 10:26:44 +00:00
|
|
|
struct stat sb;
|
|
|
|
regex_t re;
|
|
|
|
int r, fd;
|
2017-04-08 05:44:51 +00:00
|
|
|
enum action sel = SEL_RUNARG + 1;
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(path, ipath, sizeof(path));
|
2017-04-08 08:16:03 +00:00
|
|
|
xstrlcpy(lastdir, ipath, sizeof(lastdir));
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2016-02-10 15:32:41 +00:00
|
|
|
oldpath[0] = '\0';
|
2017-04-01 07:26:25 +00:00
|
|
|
newpath[0] = '\0';
|
2015-07-01 23:56:47 +00:00
|
|
|
begin:
|
2017-04-08 05:44:51 +00:00
|
|
|
|
|
|
|
if (sel == SEL_GOIN && S_ISDIR(sb.st_mode))
|
|
|
|
r = populate(path, NULL, fltr);
|
|
|
|
else
|
|
|
|
r = populate(path, oldpath, fltr);
|
2015-07-01 23:56:47 +00:00
|
|
|
if (r == -1) {
|
2016-02-08 16:52:07 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
2016-02-10 15:32:41 +00:00
|
|
|
redraw(path);
|
2014-10-07 06:05:30 +00:00
|
|
|
nochange:
|
2017-04-08 05:44:51 +00:00
|
|
|
sel = nextsel(&run, &env);
|
|
|
|
switch (sel) {
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_QUIT:
|
2016-01-07 10:26:44 +00:00
|
|
|
dentfree(dents);
|
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 ||
|
2017-04-01 21:20:56 +00:00
|
|
|
strchr(path, '/') == NULL) {
|
|
|
|
printmsg("You are at /");
|
2014-10-07 06:05:30 +00:00
|
|
|
goto nochange;
|
2017-04-01 21:20:56 +00:00
|
|
|
}
|
2015-07-02 00:07:09 +00:00
|
|
|
dir = xdirname(path);
|
|
|
|
if (canopendir(dir) == 0) {
|
2014-10-22 16:25:25 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-23 15:10:45 +00:00
|
|
|
/* Save history */
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(oldpath, path, sizeof(oldpath));
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, sizeof(lastdir));
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(path, dir, sizeof(path));
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2015-07-01 23:56:47 +00:00
|
|
|
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 */
|
2016-02-10 15:16:19 +00:00
|
|
|
if (ndents == 0)
|
2014-10-07 14:07:56 +00:00
|
|
|
goto nochange;
|
|
|
|
|
2016-02-10 15:09:04 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath, sizeof(newpath));
|
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();
|
|
|
|
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);
|
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();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, sizeof(lastdir));
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(path, newpath, sizeof(path));
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2014-10-22 15:50:30 +00:00
|
|
|
case S_IFREG:
|
2017-04-01 07:26:25 +00:00
|
|
|
{
|
|
|
|
static char cmd[MAX_CMD_LEN];
|
|
|
|
static char *runvi = "vi";
|
|
|
|
static int status;
|
|
|
|
|
2016-08-21 08:18:19 +00:00
|
|
|
/* If default mime opener is set, use it */
|
|
|
|
if (opener) {
|
2017-04-01 07:26:25 +00:00
|
|
|
snprintf(cmd, MAX_CMD_LEN,
|
|
|
|
"%s \"%s\" > /dev/null 2>&1",
|
|
|
|
opener, newpath);
|
2016-08-21 08:18:19 +00:00
|
|
|
status = system(cmd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try custom applications */
|
2015-01-11 22:28:54 +00:00
|
|
|
bin = openwith(newpath);
|
2016-08-21 02:55:12 +00:00
|
|
|
|
2017-04-05 16:48:21 +00:00
|
|
|
/* If custom app doesn't exist try fallback */
|
|
|
|
snprintf(cmd, MAX_CMD_LEN, "which \"%s\"", bin);
|
|
|
|
if (get_output(cmd, MAX_CMD_LEN) == NULL)
|
|
|
|
bin = NULL;
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
if (bin == NULL) {
|
2017-04-01 07:26:25 +00:00
|
|
|
/* If a custom handler application is
|
|
|
|
not set, open plain text files with
|
|
|
|
vi, then try fallback_opener */
|
|
|
|
snprintf(cmd, MAX_CMD_LEN,
|
|
|
|
"file \"%s\"", newpath);
|
2017-04-05 16:48:21 +00:00
|
|
|
if (get_output(cmd, MAX_CMD_LEN) == NULL)
|
2016-08-21 02:55:12 +00:00
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
if (strstr(cmd, "ASCII text") != NULL)
|
2017-04-01 07:26:25 +00:00
|
|
|
bin = runvi;
|
2016-08-21 10:19:54 +00:00
|
|
|
else if (fallback_opener) {
|
2017-04-01 07:26:25 +00:00
|
|
|
snprintf(cmd, MAX_CMD_LEN,
|
|
|
|
"%s \"%s\" > \
|
|
|
|
/dev/null 2>&1",
|
|
|
|
fallback_opener,
|
|
|
|
newpath);
|
2016-08-21 02:55:12 +00:00
|
|
|
status = system(cmd);
|
|
|
|
continue;
|
2016-08-21 10:19:54 +00:00
|
|
|
} else {
|
2017-04-03 20:10:04 +00:00
|
|
|
status++; /* Dummy operation */
|
2016-08-21 10:19:54 +00:00
|
|
|
printmsg("No association");
|
|
|
|
goto nochange;
|
2016-08-21 02:55:12 +00:00
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
2014-10-07 11:37:23 +00:00
|
|
|
exitcurses();
|
2017-04-06 04:27:32 +00:00
|
|
|
spawn(bin, newpath, NULL, 0);
|
2014-10-07 11:37:23 +00:00
|
|
|
initcurses();
|
2014-12-18 09:13:45 +00:00
|
|
|
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
|
|
|
}
|
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)
|
2016-02-08 16:57:56 +00:00
|
|
|
tmp = 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);
|
2016-02-08 16:57:56 +00:00
|
|
|
if (r != 0)
|
2014-10-09 22:35:47 +00:00
|
|
|
goto nochange;
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, tmp, sizeof(fltr));
|
2015-07-01 23:56:47 +00:00
|
|
|
DPRINTF_S(fltr);
|
2014-11-26 16:09:03 +00:00
|
|
|
/* Save current */
|
2016-02-10 15:16:19 +00:00
|
|
|
if (ndents > 0)
|
2016-01-07 10:26:44 +00:00
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2014-11-06 08:54:20 +00:00
|
|
|
case SEL_NEXT:
|
2016-02-10 15:16:19 +00:00
|
|
|
if (cur < ndents - 1)
|
2014-11-06 08:54:20 +00:00
|
|
|
cur++;
|
2017-03-29 10:29:56 +00:00
|
|
|
else if (ndents)
|
|
|
|
/* Roll over, set cursor to first entry */
|
|
|
|
cur = 0;
|
2014-11-06 08:54:20 +00:00
|
|
|
break;
|
|
|
|
case SEL_PREV:
|
|
|
|
if (cur > 0)
|
|
|
|
cur--;
|
2017-03-29 10:29:56 +00:00
|
|
|
else if (ndents)
|
|
|
|
/* Roll over, set cursor to last entry */
|
|
|
|
cur = ndents - 1;
|
2014-11-06 08:54:20 +00:00
|
|
|
break;
|
|
|
|
case SEL_PGDN:
|
2016-02-10 15:16:19 +00:00
|
|
|
if (cur < ndents - 1)
|
|
|
|
cur += MIN((LINES - 4) / 2, ndents - 1 - cur);
|
2014-11-06 08:54:20 +00:00
|
|
|
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:
|
2016-02-10 15:16:19 +00:00
|
|
|
cur = ndents - 1;
|
2015-07-12 12:32:31 +00:00
|
|
|
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;
|
|
|
|
}
|
2017-04-05 04:55:59 +00:00
|
|
|
|
|
|
|
if (tmp[0] == '~') {
|
|
|
|
char *home = getenv("HOME");
|
|
|
|
if (home)
|
|
|
|
snprintf(newpath, PATH_MAX,
|
|
|
|
"%s%s", home, tmp + 1);
|
|
|
|
else
|
|
|
|
mkpath(path, tmp, newpath, sizeof(newpath));
|
2017-04-08 08:16:03 +00:00
|
|
|
} else if (tmp[0] == '-' && tmp[1] == '\0')
|
|
|
|
xstrlcpy(newpath, lastdir, sizeof(newpath));
|
|
|
|
else
|
2017-04-05 04:55:59 +00:00
|
|
|
mkpath(path, tmp, newpath, sizeof(newpath));
|
|
|
|
|
2014-10-23 14:37:12 +00:00
|
|
|
if (canopendir(newpath) == 0) {
|
2014-10-21 14:13:21 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, sizeof(lastdir));
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(path, newpath, sizeof(path));
|
2016-01-07 10:26:44 +00:00
|
|
|
/* Reset filter */
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2014-10-22 15:56:31 +00:00
|
|
|
DPRINTF_S(path);
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2016-02-25 15:06:57 +00:00
|
|
|
case SEL_CDHOME:
|
|
|
|
tmp = getenv("HOME");
|
|
|
|
if (tmp == NULL) {
|
|
|
|
clearprompt();
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
if (canopendir(tmp) == 0) {
|
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, sizeof(lastdir));
|
|
|
|
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(path, tmp, sizeof(path));
|
2016-02-25 15:06:57 +00:00
|
|
|
/* Reset filter */
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2016-02-25 15:06:57 +00:00
|
|
|
DPRINTF_S(path);
|
|
|
|
goto begin;
|
2017-04-08 08:16:03 +00:00
|
|
|
case SEL_LAST:
|
|
|
|
xstrlcpy(newpath, lastdir, sizeof(newpath));
|
|
|
|
xstrlcpy(lastdir, path, sizeof(lastdir));
|
|
|
|
xstrlcpy(path, newpath, sizeof(path));
|
|
|
|
DPRINTF_S(path);
|
|
|
|
goto begin;
|
2016-02-25 14:54:41 +00:00
|
|
|
case SEL_TOGGLEDOT:
|
2016-08-22 12:44:52 +00:00
|
|
|
showhidden ^= 1;
|
2016-08-22 13:10:14 +00:00
|
|
|
initfilter(showhidden, &ifilter);
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(fltr, ifilter, sizeof(fltr));
|
2016-02-25 14:54:41 +00:00
|
|
|
goto begin;
|
2017-03-29 20:21:52 +00:00
|
|
|
case SEL_DETAIL:
|
|
|
|
showdetail = !showdetail;
|
2017-04-01 07:26:25 +00:00
|
|
|
showdetail ? (printptr = &printent_long)
|
|
|
|
: (printptr = &printent);
|
2017-03-30 05:14:26 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
2017-03-29 20:21:52 +00:00
|
|
|
goto begin;
|
2017-04-02 23:35:14 +00:00
|
|
|
case SEL_STATS:
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (ndents > 0)
|
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
|
|
|
|
|
|
|
r = lstat(oldpath, &sb);
|
|
|
|
if (r == -1)
|
|
|
|
printerr(1, "lstat");
|
|
|
|
else
|
|
|
|
show_stats(oldpath, dents[cur].name, &sb);
|
|
|
|
|
|
|
|
goto begin;
|
|
|
|
}
|
2017-04-12 16:48:03 +00:00
|
|
|
case SEL_DFB:
|
|
|
|
if (!desktop_manager)
|
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
exitcurses();
|
|
|
|
spawn(desktop_manager, path, path, 0);
|
|
|
|
initcurses();
|
|
|
|
goto nochange;
|
2017-03-29 20:21:52 +00:00
|
|
|
case SEL_FSIZE:
|
|
|
|
sizeorder = !sizeorder;
|
|
|
|
mtimeorder = 0;
|
2017-04-09 18:41:29 +00:00
|
|
|
bsizeorder = 0;
|
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
|
|
|
goto begin;
|
|
|
|
case SEL_BSIZE:
|
|
|
|
bsizeorder = !bsizeorder;
|
2017-04-11 04:47:50 +00:00
|
|
|
if (bsizeorder) {
|
|
|
|
showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
}
|
2017-04-09 18:41:29 +00:00
|
|
|
mtimeorder = 0;
|
|
|
|
sizeorder = 0;
|
2017-03-29 20:21:52 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
|
|
|
goto begin;
|
2015-01-31 22:02:59 +00:00
|
|
|
case SEL_MTIME:
|
|
|
|
mtimeorder = !mtimeorder;
|
2017-03-29 20:21:52 +00:00
|
|
|
sizeorder = 0;
|
2017-04-09 18:41:29 +00:00
|
|
|
bsizeorder = 0;
|
2015-07-12 23:56:51 +00:00
|
|
|
/* Save current */
|
2016-02-10 15:16:19 +00:00
|
|
|
if (ndents > 0)
|
2016-01-07 10:26:44 +00:00
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
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 */
|
2016-02-10 15:16:19 +00:00
|
|
|
if (ndents > 0)
|
2016-01-07 10:26:44 +00:00
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2017-03-30 15:47:00 +00:00
|
|
|
case SEL_COPY:
|
|
|
|
if (copier && ndents) {
|
|
|
|
char abspath[PATH_MAX];
|
|
|
|
|
|
|
|
if (strcmp(path, "/") == 0)
|
2017-04-01 07:26:25 +00:00
|
|
|
snprintf(abspath, PATH_MAX, "/%s",
|
|
|
|
dents[cur].name);
|
2017-03-30 15:47:00 +00:00
|
|
|
else
|
2017-04-01 07:26:25 +00:00
|
|
|
snprintf(abspath, PATH_MAX, "%s/%s",
|
|
|
|
path, dents[cur].name);
|
2017-04-04 14:27:44 +00:00
|
|
|
spawn(copier, abspath, NULL, 0);
|
2017-03-30 15:47:00 +00:00
|
|
|
printmsg(abspath);
|
|
|
|
} else if (!copier)
|
2017-03-30 18:25:30 +00:00
|
|
|
printmsg("NNN_COPIER is not set");
|
2017-03-30 15:47:00 +00:00
|
|
|
goto nochange;
|
2017-04-03 17:03:46 +00:00
|
|
|
case SEL_HELP:
|
|
|
|
show_help();
|
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
mkpath(path, dents[cur].name, oldpath, sizeof(oldpath));
|
|
|
|
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();
|
2017-04-06 04:27:32 +00:00
|
|
|
spawn(run, NULL, path, 1);
|
2015-03-12 14:12:01 +00:00
|
|
|
initcurses();
|
2017-04-09 18:41:29 +00:00
|
|
|
/* Repopulate as directory content may have changed */
|
2017-03-29 14:38:34 +00:00
|
|
|
goto begin;
|
2015-03-12 14:12:01 +00:00
|
|
|
case SEL_RUNARG:
|
2015-11-20 15:42:33 +00:00
|
|
|
run = xgetenv(env, run);
|
2015-03-12 14:12:01 +00:00
|
|
|
exitcurses();
|
2017-04-04 14:27:44 +00:00
|
|
|
spawn(run, dents[cur].name, path, 0);
|
2015-03-12 14:12:01 +00:00
|
|
|
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();
|
2017-04-04 14:27:44 +00:00
|
|
|
spawn(idlecmd, NULL, NULL, 0);
|
2015-11-20 14:14:58 +00:00
|
|
|
initcurses();
|
|
|
|
}
|
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-04-14 11:20:16 +00:00
|
|
|
fprintf(stderr, "usage: nnn [-d] [-S] [-v] [dir]\n");
|
2015-11-26 16:00:26 +00:00
|
|
|
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;
|
2017-04-01 05:18:18 +00:00
|
|
|
int opt = 0;
|
2015-11-26 16:00:26 +00:00
|
|
|
|
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
|
|
|
|
2017-04-01 05:18:18 +00:00
|
|
|
if (argc > 3)
|
|
|
|
usage();
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2017-04-14 11:20:16 +00:00
|
|
|
while ((opt = getopt(argc, argv, "dSv")) != -1) {
|
2017-04-01 05:18:18 +00:00
|
|
|
switch (opt) {
|
2017-04-14 11:20:16 +00:00
|
|
|
case 'S':
|
|
|
|
bsizeorder = 1;
|
2017-04-01 05:18:18 +00:00
|
|
|
case 'd':
|
|
|
|
/* Open in detail mode, if set */
|
|
|
|
showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
break;
|
2017-04-13 13:43:33 +00:00
|
|
|
case 'v':
|
|
|
|
fprintf(stderr, "%s\n", VERSION);
|
|
|
|
return 0;
|
2017-04-01 05:18:18 +00:00
|
|
|
default:
|
|
|
|
usage();
|
2017-03-30 20:04:41 +00:00
|
|
|
}
|
2017-04-01 05:18:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == optind) {
|
|
|
|
/* Start in the current directory */
|
2014-10-21 10:29:41 +00:00
|
|
|
ipath = getcwd(cwd, sizeof(cwd));
|
|
|
|
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);
|
|
|
|
}
|
2014-10-21 10:29:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 04:47:50 +00:00
|
|
|
open_max = max_openfds();
|
|
|
|
|
2017-04-01 05:18:18 +00:00
|
|
|
if (getuid() == 0)
|
|
|
|
showhidden = 1;
|
|
|
|
initfilter(showhidden, &ifilter);
|
|
|
|
|
2016-08-21 08:18:19 +00:00
|
|
|
/* Get the default desktop mime opener, if set */
|
2017-03-30 18:25:30 +00:00
|
|
|
opener = getenv("NNN_OPENER");
|
2016-08-21 08:18:19 +00:00
|
|
|
|
2016-08-21 10:19:54 +00:00
|
|
|
/* Get the fallback desktop mime opener, if set */
|
2017-03-30 18:25:30 +00:00
|
|
|
fallback_opener = getenv("NNN_FALLBACK_OPENER");
|
2016-08-21 10:19:54 +00:00
|
|
|
|
2017-04-12 16:48:03 +00:00
|
|
|
/* Get the desktop file browser, if set */
|
|
|
|
desktop_manager = getenv("NNN_DE_FILE_MANAGER");
|
|
|
|
|
2017-03-30 15:47:00 +00:00
|
|
|
/* Get the default copier, if set */
|
2017-03-30 18:25:30 +00:00
|
|
|
copier = getenv("NNN_COPIER");
|
2017-03-30 15:47:00 +00:00
|
|
|
|
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
|
|
|
|
2014-10-07 11:37:23 +00:00
|
|
|
initcurses();
|
2014-10-09 22:35:47 +00:00
|
|
|
browse(ipath, ifilter);
|
2014-10-07 11:37:23 +00:00
|
|
|
exitcurses();
|
2015-11-26 15:54:54 +00:00
|
|
|
exit(0);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|