2015-11-20 14:36:40 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-08-24 15:18:01 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Visual layout:
|
|
|
|
* .---------
|
2017-12-24 09:53:33 +00:00
|
|
|
* | DIR: /mnt/path
|
2017-08-24 15:18:01 +00:00
|
|
|
* |
|
|
|
|
* | file0
|
|
|
|
* | file1
|
|
|
|
* | > file2
|
|
|
|
* | file3
|
|
|
|
* | file4
|
|
|
|
* ...
|
|
|
|
* | filen
|
|
|
|
* |
|
|
|
|
* | Permission denied
|
|
|
|
* '------
|
|
|
|
*/
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef __linux__
|
2017-09-24 17:58:27 +00:00
|
|
|
#ifdef __i386__
|
|
|
|
#define _FILE_OFFSET_BITS 64 /* Support large files on 32-bit Linux */
|
|
|
|
#endif
|
2017-08-20 20:48:14 +00:00
|
|
|
#include <sys/inotify.h>
|
|
|
|
#define LINUX_INOTIFY
|
2017-10-05 07:34:18 +00:00
|
|
|
#if !defined(__GLIBC__)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
#include <sys/resource.h>
|
2014-10-08 07:52:44 +00:00
|
|
|
#include <sys/stat.h>
|
2017-08-20 20:48:14 +00:00
|
|
|
#include <sys/statvfs.h>
|
2017-08-22 17:04:17 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
2017-11-30 12:54:06 +00:00
|
|
|
#include <sys/types.h>
|
2017-08-21 16:33:26 +00:00
|
|
|
#include <sys/event.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#define BSD_KQUEUE
|
2017-05-21 01:21:48 +00:00
|
|
|
#else
|
2017-11-30 12:54:06 +00:00
|
|
|
#include <sys/sysmacros.h>
|
2017-05-21 01:21:48 +00:00
|
|
|
#endif
|
2014-10-22 15:27:08 +00:00
|
|
|
#include <sys/wait.h>
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-04-20 14:15:52 +00:00
|
|
|
#include <ctype.h>
|
2017-08-24 12:24:59 +00:00
|
|
|
#ifdef __linux__ /* Fix failure due to mvaddnwstr() */
|
|
|
|
#ifndef NCURSES_WIDECHAR
|
|
|
|
#define NCURSES_WIDECHAR 1
|
|
|
|
#endif
|
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
|
|
|
#ifndef _XOPEN_SOURCE_EXTENDED
|
|
|
|
#define _XOPEN_SOURCE_EXTENDED
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-08-26 08:04:43 +00:00
|
|
|
#ifndef __USE_XOPEN /* Fix failure due to wcswidth(), ncursesw/curses.h includes whcar.h on Ubuntu 14.04 */
|
|
|
|
#define __USE_XOPEN
|
|
|
|
#endif
|
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>
|
2017-04-20 14:15:52 +00:00
|
|
|
#include <grp.h>
|
2017-05-19 14:38:22 +00:00
|
|
|
#include <libgen.h>
|
2014-10-21 10:29:41 +00:00
|
|
|
#include <limits.h>
|
2017-04-24 08:03:33 +00:00
|
|
|
#ifdef __gnu_hurd__
|
|
|
|
#define PATH_MAX 4096
|
|
|
|
#endif
|
2014-10-07 06:05:30 +00:00
|
|
|
#include <locale.h>
|
2017-04-20 14:15:52 +00:00
|
|
|
#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>
|
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>
|
2017-03-30 04:39:21 +00:00
|
|
|
#include <time.h>
|
2017-04-20 14:15:52 +00:00
|
|
|
#include <unistd.h>
|
2017-08-24 14:06:33 +00:00
|
|
|
#include <readline/history.h>
|
2017-04-28 07:14:27 +00:00
|
|
|
#include <readline/readline.h>
|
2017-05-13 17:01:14 +00:00
|
|
|
#ifndef __USE_XOPEN_EXTENDED
|
|
|
|
#define __USE_XOPEN_EXTENDED 1
|
|
|
|
#endif
|
2017-04-09 18:41:29 +00:00
|
|
|
#include <ftw.h>
|
2017-08-26 08:04:43 +00:00
|
|
|
#include <wchar.h>
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-09-02 06:09:44 +00:00
|
|
|
#include "nnn.h"
|
2017-06-20 04:56:31 +00:00
|
|
|
|
2017-06-19 16:51:08 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2017-06-25 04:33:30 +00:00
|
|
|
static int
|
|
|
|
enabledbg()
|
2017-06-19 16:51:08 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-06-25 04:33:30 +00:00
|
|
|
static void
|
|
|
|
disabledbg()
|
2017-06-19 16:51:08 +00:00
|
|
|
{
|
|
|
|
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)
|
2017-12-18 19:46:03 +00:00
|
|
|
#define DPRINTF_P(x) xprintf(DEBUG_FD, #x "=%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 */
|
2018-05-01 21:12:30 +00:00
|
|
|
#define VERSION "1.8"
|
2017-09-08 19:40:21 +00:00
|
|
|
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
|
2017-12-18 19:46:03 +00:00
|
|
|
|
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)
|
2016-08-21 12:47:34 +00:00
|
|
|
#define TOUPPER(ch) \
|
|
|
|
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
|
2017-04-20 17:50:28 +00:00
|
|
|
#define MAX_CMD_LEN 5120
|
2017-12-24 09:53:33 +00:00
|
|
|
#define CWD "DIR: "
|
2017-07-03 04:16:37 +00:00
|
|
|
#define CURSR " > "
|
|
|
|
#define EMPTY " "
|
2017-04-01 07:26:25 +00:00
|
|
|
#define CURSYM(flag) (flag ? CURSR : EMPTY)
|
2017-06-03 23:19:16 +00:00
|
|
|
#define FILTER '/'
|
2017-08-24 04:45:32 +00:00
|
|
|
#define REGEX_MAX 128
|
2017-08-24 04:46:35 +00:00
|
|
|
#define BM_MAX 10
|
2017-12-18 19:46:03 +00:00
|
|
|
#define ENTRY_INCR 64 /* Number of dir 'entry' structures to allocate per shot */
|
|
|
|
#define NAMEBUF_INCR 0x1000 /* 64 dir entries at a time, avg. 64 chars per filename = 64*64B = 4KB */
|
2017-12-24 18:58:12 +00:00
|
|
|
#define DESCRIPTOR_LEN 32
|
2018-01-04 00:53:20 +00:00
|
|
|
#define _ALIGNMENT 0x10
|
|
|
|
#define _ALIGNMENT_MASK 0xF
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-06-20 15:59:37 +00:00
|
|
|
/* Macros to define process spawn behaviour as flags */
|
2017-07-02 10:42:30 +00:00
|
|
|
#define F_NONE 0x00 /* no flag set */
|
|
|
|
#define F_MARKER 0x01 /* draw marker to indicate nnn spawned (e.g. shell) */
|
|
|
|
#define F_NOWAIT 0x02 /* don't wait for child process (e.g. file manager) */
|
|
|
|
#define F_NOTRACE 0x04 /* suppress stdout and strerr (no traces) */
|
|
|
|
#define F_SIGINT 0x08 /* restore default SIGINT handler */
|
2018-01-07 21:57:41 +00:00
|
|
|
#define F_NORMAL 0x80 /* spawn child process in non-curses regular CLI mode */
|
2017-06-20 15:59:37 +00:00
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
/* CRC8 macros */
|
|
|
|
#define WIDTH (8 * sizeof(unsigned char))
|
|
|
|
#define TOPBIT (1 << (WIDTH - 1))
|
|
|
|
#define POLYNOMIAL 0xD8 /* 11011 followed by 0's */
|
2018-01-19 15:09:23 +00:00
|
|
|
#define CRC8_TABLE_LEN 256
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2018-04-25 19:26:45 +00:00
|
|
|
/* Volume info */
|
|
|
|
#define FREE 0
|
|
|
|
#define CAPACITY 1
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
/* Function macros */
|
2017-07-05 04:08:19 +00:00
|
|
|
#define exitcurses() endwin()
|
|
|
|
#define clearprompt() printmsg("")
|
|
|
|
#define printwarn() printmsg(strerror(errno))
|
2017-07-05 16:38:13 +00:00
|
|
|
#define istopdir(path) (path[1] == '\0' && path[0] == '/')
|
2017-12-24 15:50:36 +00:00
|
|
|
#define copyfilter() xstrlcpy(fltr, ifilter, NAME_MAX)
|
2017-12-24 17:53:52 +00:00
|
|
|
#define copycurname() xstrlcpy(oldname, dents[cur].name, NAME_MAX + 1)
|
2017-08-24 01:34:56 +00:00
|
|
|
#define settimeout() timeout(1000)
|
|
|
|
#define cleartimeout() timeout(-1)
|
2017-08-24 16:56:46 +00:00
|
|
|
#define errexit() printerr(__LINE__)
|
2017-07-05 04:08:19 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
#define EVENT_SIZE (sizeof(struct inotify_event))
|
|
|
|
#define EVENT_BUF_LEN (1024 * (EVENT_SIZE + 16))
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
#define NUM_EVENT_SLOTS 1
|
|
|
|
#define NUM_EVENT_FDS 1
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* TYPE DEFINITIONS */
|
2017-06-20 14:58:53 +00:00
|
|
|
typedef unsigned long ulong;
|
2017-06-21 18:21:53 +00:00
|
|
|
typedef unsigned int uint;
|
2017-06-20 14:58:53 +00:00
|
|
|
typedef unsigned char uchar;
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* STRUCTURES */
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Directory entry */
|
2017-04-01 07:26:25 +00:00
|
|
|
typedef struct entry {
|
2017-12-17 17:38:55 +00:00
|
|
|
char *name;
|
2015-01-31 22:02:59 +00:00
|
|
|
time_t t;
|
2017-03-29 20:21:52 +00:00
|
|
|
off_t size;
|
2017-06-22 01:56:05 +00:00
|
|
|
blkcnt_t blocks; /* number of 512B blocks allocated */
|
2017-12-04 14:22:35 +00:00
|
|
|
mode_t mode;
|
2017-12-24 15:33:23 +00:00
|
|
|
uint nlen; /* Length of file name; can be uchar (< NAME_MAX + 1) */
|
2018-01-04 00:53:20 +00:00
|
|
|
}__attribute__ ((packed, aligned(_ALIGNMENT))) *pEntry;
|
2014-10-09 13:23:12 +00:00
|
|
|
|
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 */
|
2017-07-02 10:42:30 +00:00
|
|
|
typedef struct {
|
2017-09-08 20:46:10 +00:00
|
|
|
ushort filtermode : 1; /* Set to enter filter mode */
|
|
|
|
ushort mtimeorder : 1; /* Set to sort by time modified */
|
|
|
|
ushort sizeorder : 1; /* Set to sort by file size */
|
|
|
|
ushort blkorder : 1; /* Set to sort by blocks used (disk usage) */
|
|
|
|
ushort showhidden : 1; /* Set to show hidden files */
|
2018-01-13 20:13:30 +00:00
|
|
|
ushort copymode : 1; /* Set when copying files */
|
2017-09-08 20:46:10 +00:00
|
|
|
ushort showdetail : 1; /* Clear to show fewer file info */
|
|
|
|
ushort showcolor : 1; /* Set to show dirs in blue */
|
|
|
|
ushort dircolor : 1; /* Current status of dir color */
|
|
|
|
ushort metaviewer : 1; /* Index of metadata viewer in utils[] */
|
2018-01-28 06:03:12 +00:00
|
|
|
ushort quote : 1; /* Copy paths within quotes */
|
2018-02-24 02:19:59 +00:00
|
|
|
ushort noxdisplay : 1; /* X11 is not available */
|
2017-09-08 20:46:10 +00:00
|
|
|
ushort color : 3; /* Color code for directories */
|
2017-06-20 14:58:53 +00:00
|
|
|
} settings;
|
2017-04-03 20:10:04 +00:00
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* GLOBALS */
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-06-30 01:54:24 +00:00
|
|
|
/* Configuration */
|
2018-02-24 02:19:59 +00:00
|
|
|
static settings cfg = {0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4};
|
2017-06-20 14:58:53 +00:00
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static struct entry *dents;
|
2018-01-13 20:13:30 +00:00
|
|
|
static char *pnamebuf, *pcopybuf;
|
2018-01-04 12:16:06 +00:00
|
|
|
static int ndents, cur, total_dents = ENTRY_INCR;
|
2017-07-02 19:25:47 +00:00
|
|
|
static uint idle;
|
2018-01-13 20:13:30 +00:00
|
|
|
static uint idletimeout, copybufpos, copybuflen;
|
2017-05-14 15:30:46 +00:00
|
|
|
static char *player;
|
2017-04-01 12:02:58 +00:00
|
|
|
static char *copier;
|
2017-06-06 14:46:32 +00:00
|
|
|
static char *editor;
|
2017-04-12 16:48:03 +00:00
|
|
|
static char *desktop_manager;
|
2017-06-22 01:56:05 +00:00
|
|
|
static blkcnt_t ent_blocks;
|
|
|
|
static blkcnt_t dir_blocks;
|
2017-06-22 04:09:17 +00:00
|
|
|
static ulong num_files;
|
2017-06-21 18:21:53 +00:00
|
|
|
static uint open_max;
|
2017-08-24 04:46:35 +00:00
|
|
|
static bm bookmark[BM_MAX];
|
2017-05-14 21:37:22 +00:00
|
|
|
|
2018-01-19 15:09:23 +00:00
|
|
|
static uchar crc8table[CRC8_TABLE_LEN];
|
2018-01-13 20:13:30 +00:00
|
|
|
static uchar g_crc;
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
static int inotify_fd, inotify_wd = -1;
|
|
|
|
static uint INOTIFY_MASK = IN_ATTRIB | IN_CREATE | IN_DELETE | IN_DELETE_SELF | IN_MODIFY | IN_MOVE_SELF | IN_MOVED_FROM | IN_MOVED_TO;
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
static int kq, event_fd = -1;
|
|
|
|
static struct kevent events_to_monitor[NUM_EVENT_FDS];
|
|
|
|
static uint KQUEUE_FFLAGS = NOTE_DELETE | NOTE_EXTEND | NOTE_LINK | NOTE_RENAME | NOTE_REVOKE | NOTE_WRITE;
|
|
|
|
static struct timespec gtimeout;
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-24 15:15:50 +00:00
|
|
|
/* Macros for utilities */
|
|
|
|
#define MEDIAINFO 0
|
|
|
|
#define EXIFTOOL 1
|
|
|
|
#define OPENER 2
|
|
|
|
#define NLAY 3
|
|
|
|
#define ATOOL 4
|
2018-04-24 23:34:37 +00:00
|
|
|
#define APACK 5
|
|
|
|
#define VIDIR 6
|
2018-05-18 19:16:56 +00:00
|
|
|
#define UNKNOWN 7
|
2018-02-24 15:15:50 +00:00
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Utilities to open files, run actions */
|
2017-07-02 18:27:41 +00:00
|
|
|
static char * const utils[] = {
|
2017-09-08 20:46:10 +00:00
|
|
|
"mediainfo",
|
|
|
|
"exiftool",
|
2017-06-05 18:26:38 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
"/usr/bin/open",
|
2018-05-07 12:29:31 +00:00
|
|
|
#elif defined __CYGWIN__
|
|
|
|
"cygstart",
|
2017-06-05 18:26:38 +00:00
|
|
|
#else
|
2017-12-26 18:23:20 +00:00
|
|
|
"xdg-open",
|
2017-06-05 18:26:38 +00:00
|
|
|
#endif
|
2017-09-27 14:49:42 +00:00
|
|
|
"nlay",
|
2018-02-24 14:16:58 +00:00
|
|
|
"atool",
|
2018-04-24 23:34:37 +00:00
|
|
|
"apack",
|
2018-05-18 19:16:56 +00:00
|
|
|
"vidir",
|
|
|
|
"UNKNOWN"
|
2017-06-05 18:26:38 +00:00
|
|
|
};
|
|
|
|
|
2018-01-14 06:41:46 +00:00
|
|
|
/* Common strings */
|
|
|
|
#define STR_NFTWFAIL_ID 0
|
2018-05-10 11:53:10 +00:00
|
|
|
#define STR_NOHOME_ID 1
|
|
|
|
#define STR_INPUT_ID 2
|
|
|
|
#define STR_INVBM_ID 3
|
|
|
|
#define STR_COPY_ID 4
|
|
|
|
#define STR_DATE_ID 5
|
2018-01-14 06:41:46 +00:00
|
|
|
|
|
|
|
static const char messages[][16] =
|
|
|
|
{
|
2018-04-24 03:13:32 +00:00
|
|
|
"nftw failed",
|
2018-01-14 06:41:46 +00:00
|
|
|
"HOME not set",
|
|
|
|
"no traversal",
|
|
|
|
"invalid key",
|
2018-04-24 03:13:32 +00:00
|
|
|
"copy not set",
|
2018-01-14 07:13:20 +00:00
|
|
|
"%F %T %z",
|
2018-01-14 06:41:46 +00:00
|
|
|
};
|
2017-07-03 13:38:38 +00:00
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* For use in functions which are isolated and don't return the buffer */
|
2017-12-30 08:24:49 +00:00
|
|
|
static char g_buf[MAX_CMD_LEN] __attribute__ ((aligned));
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2018-03-04 05:07:18 +00:00
|
|
|
/* Buffer for file path copy file */
|
|
|
|
static char g_cppath[48] __attribute__ ((aligned));
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Forward declarations */
|
2017-04-28 23:02:47 +00:00
|
|
|
static void redraw(char *path);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Functions */
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
/*
|
|
|
|
* CRC8 source:
|
|
|
|
* https://barrgroup.com/Embedded-Systems/How-To/CRC-Calculation-C-Code
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
crc8init()
|
|
|
|
{
|
|
|
|
uchar remainder, bit;
|
|
|
|
uint dividend;
|
|
|
|
|
|
|
|
/* Compute the remainder of each possible dividend */
|
2018-04-01 17:21:55 +00:00
|
|
|
for (dividend = 0; dividend < CRC8_TABLE_LEN; ++dividend) {
|
2018-01-13 20:13:30 +00:00
|
|
|
/* Start with the dividend followed by zeros */
|
|
|
|
remainder = dividend << (WIDTH - 8);
|
|
|
|
|
|
|
|
/* Perform modulo-2 division, a bit at a time */
|
2018-04-01 17:21:55 +00:00
|
|
|
for (bit = 8; bit > 0; --bit) {
|
2018-01-13 20:13:30 +00:00
|
|
|
/* Try to divide the current data bit */
|
|
|
|
if (remainder & TOPBIT)
|
|
|
|
remainder = (remainder << 1) ^ POLYNOMIAL;
|
|
|
|
else
|
|
|
|
remainder = (remainder << 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store the result into the table */
|
|
|
|
crc8table[dividend] = remainder;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uchar
|
|
|
|
crc8fast(uchar const message[], size_t n)
|
|
|
|
{
|
2018-04-25 19:06:51 +00:00
|
|
|
static uchar data, remainder;
|
|
|
|
static size_t byte;
|
2018-01-13 20:13:30 +00:00
|
|
|
|
|
|
|
/* Divide the message by the polynomial, a byte at a time */
|
2018-04-25 19:06:51 +00:00
|
|
|
for (remainder = byte = 0; byte < n; ++byte) {
|
2018-01-13 20:13:30 +00:00
|
|
|
data = message[byte] ^ (remainder >> (WIDTH - 8));
|
|
|
|
remainder = crc8table[data] ^ (remainder << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The final remainder is the CRC */
|
2018-01-13 21:57:24 +00:00
|
|
|
return remainder;
|
2018-01-13 20:13:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* Messages show up at the bottom */
|
|
|
|
static void
|
2017-12-24 15:33:23 +00:00
|
|
|
printmsg(const char *msg)
|
2017-08-24 15:18:01 +00:00
|
|
|
{
|
|
|
|
mvprintw(LINES - 1, 0, "%s\n", msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill curses and display error before exiting */
|
|
|
|
static void
|
2017-08-24 16:56:46 +00:00
|
|
|
printerr(int linenum)
|
2017-08-24 15:18:01 +00:00
|
|
|
{
|
|
|
|
exitcurses();
|
2017-08-24 16:56:46 +00:00
|
|
|
fprintf(stderr, "line %d: (%d) %s\n", linenum, errno, strerror(errno));
|
|
|
|
exit(1);
|
2017-08-24 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print prompt on the last line */
|
|
|
|
static void
|
|
|
|
printprompt(char *str)
|
|
|
|
{
|
|
|
|
clearprompt();
|
|
|
|
printw(str);
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Increase the limit on open file descriptors, if possible */
|
2017-04-11 04:47:50 +00:00
|
|
|
static rlim_t
|
|
|
|
max_openfds()
|
|
|
|
{
|
|
|
|
struct rlimit rl;
|
2017-06-15 14:04:56 +00:00
|
|
|
rlim_t limit = getrlimit(RLIMIT_NOFILE, &rl);
|
2017-04-11 04:47:50 +00:00
|
|
|
|
|
|
|
if (limit != 0)
|
|
|
|
return 32;
|
|
|
|
|
|
|
|
limit = rl.rlim_cur;
|
|
|
|
rl.rlim_cur = rl.rlim_max;
|
|
|
|
|
2017-07-25 04:43:22 +00:00
|
|
|
/* Return ~75% of max possible */
|
2017-08-20 19:25:45 +00:00
|
|
|
if (setrlimit(RLIMIT_NOFILE, &rl) == 0) {
|
|
|
|
limit = rl.rlim_max - (rl.rlim_max >> 2);
|
|
|
|
/*
|
2017-12-24 15:33:23 +00:00
|
|
|
* 20K is arbitrary. If the limit is set to max possible
|
2017-08-20 19:25:45 +00:00
|
|
|
* value, the memory usage increases to more than double.
|
|
|
|
*/
|
|
|
|
return limit > 20480 ? 20480 : limit;
|
|
|
|
}
|
2017-04-11 04:47:50 +00:00
|
|
|
|
2017-08-20 19:25:45 +00:00
|
|
|
return limit;
|
2017-04-11 04:47:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
/*
|
|
|
|
* Wrapper to realloc()
|
|
|
|
* Frees current memory if realloc() fails and returns NULL.
|
|
|
|
*
|
|
|
|
* As per the docs, the *alloc() family is supposed to be memory aligned:
|
|
|
|
* Ubuntu: http://manpages.ubuntu.com/manpages/xenial/man3/malloc.3.html
|
|
|
|
* OS X: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
|
|
|
|
*/
|
|
|
|
static void *
|
|
|
|
xrealloc(void *pcur, size_t len)
|
|
|
|
{
|
|
|
|
static void *pmem;
|
|
|
|
|
|
|
|
pmem = realloc(pcur, len);
|
|
|
|
if (!pmem && pcur)
|
|
|
|
free(pcur);
|
|
|
|
|
|
|
|
return pmem;
|
|
|
|
}
|
|
|
|
|
2017-06-30 20:03:34 +00:00
|
|
|
/*
|
|
|
|
* Just a safe strncpy(3)
|
|
|
|
* Always null ('\0') terminates if both src and dest are valid pointers.
|
|
|
|
* Returns the number of bytes copied including terminating null byte.
|
|
|
|
*/
|
|
|
|
static size_t
|
2017-04-02 15:45:31 +00:00
|
|
|
xstrlcpy(char *dest, const char *src, size_t n)
|
|
|
|
{
|
2017-12-29 05:38:07 +00:00
|
|
|
static ulong *s, *d;
|
2017-12-24 15:33:23 +00:00
|
|
|
static size_t len, blocks;
|
|
|
|
static const uint lsize = sizeof(ulong);
|
2017-08-24 15:18:01 +00:00
|
|
|
static const uint _WSHIFT = (sizeof(ulong) == 8) ? 3 : 2;
|
2017-06-30 20:03:34 +00:00
|
|
|
|
2017-12-29 05:38:07 +00:00
|
|
|
if (!src || !dest || !n)
|
2017-06-30 20:03:34 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
len = strlen(src) + 1;
|
2017-06-30 20:03:34 +00:00
|
|
|
if (n > len)
|
|
|
|
n = len;
|
|
|
|
else if (len > n)
|
|
|
|
/* Save total number of bytes to copy in len */
|
|
|
|
len = n;
|
|
|
|
|
2017-12-29 05:38:07 +00:00
|
|
|
/*
|
|
|
|
* To enable -O3 ensure src and dest are 16-byte aligned
|
|
|
|
* More info: http://www.felixcloutier.com/x86/MOVDQA.html
|
|
|
|
*/
|
2018-03-02 19:38:15 +00:00
|
|
|
if ((n >= lsize) && (((ulong)src & _ALIGNMENT_MASK) == 0 && ((ulong)dest & _ALIGNMENT_MASK) == 0)) {
|
2017-06-30 20:03:34 +00:00
|
|
|
s = (ulong *)src;
|
|
|
|
d = (ulong *)dest;
|
2017-12-29 05:38:07 +00:00
|
|
|
blocks = n >> _WSHIFT;
|
2018-01-08 18:43:11 +00:00
|
|
|
n &= lsize - 1;
|
2017-06-30 20:03:34 +00:00
|
|
|
|
|
|
|
while (blocks) {
|
|
|
|
*d = *s;
|
|
|
|
++d, ++s;
|
|
|
|
--blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!n) {
|
|
|
|
dest = (char *)d;
|
|
|
|
*--dest = '\0';
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = (char *)s;
|
|
|
|
dest = (char *)d;
|
|
|
|
}
|
|
|
|
|
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-06-30 20:03:34 +00:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
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.
|
2017-12-24 17:53:52 +00:00
|
|
|
* And we are NOT expecting a '/' at the end.
|
2017-07-05 04:47:42 +00:00
|
|
|
* Ideally 0 < n <= strlen(s).
|
2017-04-01 12:02:58 +00:00
|
|
|
*/
|
|
|
|
static void *
|
2017-07-05 04:47:42 +00:00
|
|
|
xmemrchr(uchar *s, uchar ch, size_t n)
|
2017-04-01 12:02:58 +00:00
|
|
|
{
|
2017-12-24 20:14:48 +00:00
|
|
|
static uchar *ptr;
|
|
|
|
|
2017-04-01 12:02:58 +00:00
|
|
|
if (!s || !n)
|
|
|
|
return NULL;
|
|
|
|
|
2017-12-24 20:14:48 +00:00
|
|
|
ptr = s + n;
|
2017-04-01 12:02:58 +00:00
|
|
|
|
2017-12-24 20:14:48 +00:00
|
|
|
do {
|
|
|
|
--ptr;
|
2017-06-17 06:58:21 +00:00
|
|
|
|
2017-12-24 20:14:48 +00:00
|
|
|
if (*ptr == ch)
|
|
|
|
return ptr;
|
|
|
|
} while (s != ptr);
|
2017-04-01 12:02:58 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-02 23:35:14 +00:00
|
|
|
* The following dirname(3) implementation does not
|
2017-04-20 17:50:28 +00:00
|
|
|
* 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)
|
|
|
|
{
|
2017-12-24 15:33:23 +00:00
|
|
|
static char * const buf = g_buf, *last_slash, *runp;
|
2017-12-12 21:11:30 +00:00
|
|
|
|
2017-04-20 17:50:28 +00:00
|
|
|
xstrlcpy(buf, path, PATH_MAX);
|
2017-04-01 12:02:58 +00:00
|
|
|
|
|
|
|
/* Find last '/'. */
|
2018-05-09 11:27:01 +00:00
|
|
|
last_slash = xmemrchr((uchar *)buf, '/', strlen(buf));
|
2017-04-01 12:02:58 +00:00
|
|
|
|
2017-04-20 17:50:28 +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. */
|
2017-04-20 17:50:28 +00:00
|
|
|
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. */
|
2017-04-20 17:50:28 +00:00
|
|
|
if (runp != buf)
|
2017-07-05 04:47:42 +00:00
|
|
|
last_slash = xmemrchr((uchar *)buf, '/', runp - buf);
|
2017-04-01 12:02:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (last_slash != NULL) {
|
|
|
|
/* Determine whether all remaining characters are slashes. */
|
2017-04-20 17:50:28 +00:00
|
|
|
for (runp = last_slash; runp != buf; --runp)
|
2017-04-01 12:02:58 +00:00
|
|
|
if (runp[-1] != '/')
|
|
|
|
break;
|
|
|
|
|
2017-04-20 17:50:28 +00:00
|
|
|
/* 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.
|
|
|
|
*/
|
2017-04-20 17:50:28 +00:00
|
|
|
if (last_slash == buf + 1)
|
2017-04-01 12:02:58 +00:00
|
|
|
++last_slash;
|
|
|
|
else
|
2017-04-20 17:50:28 +00:00
|
|
|
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.
|
|
|
|
*/
|
2017-04-20 17:50:28 +00:00
|
|
|
buf[0] = '.';
|
|
|
|
buf[1] = '\0';
|
2017-04-01 12:02:58 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 17:50:28 +00:00
|
|
|
return buf;
|
2017-04-01 12:02:58 +00:00
|
|
|
}
|
2014-10-22 14:02:15 +00:00
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
static char *
|
|
|
|
xbasename(char *path)
|
|
|
|
{
|
|
|
|
static char *base;
|
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
base = xmemrchr((uchar *)path, '/', strlen(path));
|
2017-12-24 17:53:52 +00:00
|
|
|
return base ? base + 1 : path;
|
|
|
|
}
|
|
|
|
|
2018-02-24 02:19:59 +00:00
|
|
|
/* Writes buflen char(s) from buf to a file */
|
|
|
|
static void
|
|
|
|
writecp(const char *buf, const size_t buflen)
|
|
|
|
{
|
2018-03-04 05:07:18 +00:00
|
|
|
FILE *fp = fopen(g_cppath, "w");
|
2018-02-24 02:19:59 +00:00
|
|
|
|
|
|
|
if (fp) {
|
|
|
|
fwrite(buf, 1, buflen, fp);
|
|
|
|
fclose(fp);
|
|
|
|
} else
|
|
|
|
printwarn();
|
|
|
|
}
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
static bool
|
2018-04-22 14:13:18 +00:00
|
|
|
appendfpath(const char *path, const size_t len)
|
2018-01-13 20:13:30 +00:00
|
|
|
{
|
2018-04-14 14:26:04 +00:00
|
|
|
if ((copybufpos >= copybuflen) || ((len + 3) > (copybuflen - copybufpos))) {
|
2018-01-13 20:13:30 +00:00
|
|
|
copybuflen += PATH_MAX;
|
|
|
|
pcopybuf = xrealloc(pcopybuf, copybuflen);
|
|
|
|
if (!pcopybuf) {
|
2018-02-24 14:16:58 +00:00
|
|
|
printmsg("no memory!");
|
2018-01-13 20:13:30 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 06:03:12 +00:00
|
|
|
if (copybufpos) {
|
2018-01-13 20:13:30 +00:00
|
|
|
pcopybuf[copybufpos - 1] = '\n';
|
2018-01-28 06:03:12 +00:00
|
|
|
if (cfg.quote) {
|
|
|
|
pcopybuf[copybufpos] = '\'';
|
|
|
|
++copybufpos;
|
|
|
|
}
|
|
|
|
} else if (cfg.quote) {
|
|
|
|
pcopybuf[copybufpos] = '\'';
|
|
|
|
++copybufpos;
|
|
|
|
}
|
2018-01-13 20:13:30 +00:00
|
|
|
|
|
|
|
copybufpos += xstrlcpy(pcopybuf + copybufpos, path, len);
|
2018-01-28 06:03:12 +00:00
|
|
|
if (cfg.quote) {
|
|
|
|
pcopybuf[copybufpos - 1] = '\'';
|
|
|
|
pcopybuf[copybufpos] = '\0';
|
|
|
|
++copybufpos;
|
|
|
|
}
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
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-07-05 16:38:13 +00:00
|
|
|
all_dots(const char *path)
|
2017-04-24 13:23:03 +00:00
|
|
|
{
|
2017-12-19 18:03:27 +00:00
|
|
|
int count = 0;
|
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
if (!path)
|
2017-04-24 13:23:03 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
while (*path == '.')
|
|
|
|
++count, ++path;
|
2017-04-24 13:23:03 +00:00
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
if (*path)
|
2017-04-24 13:23:03 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Initialize curses mode */
|
2017-06-15 16:04:47 +00:00
|
|
|
static void
|
|
|
|
initcurses(void)
|
|
|
|
{
|
|
|
|
if (initscr() == NULL) {
|
|
|
|
char *term = getenv("TERM");
|
|
|
|
|
|
|
|
if (term != NULL)
|
2017-07-03 13:38:38 +00:00
|
|
|
fprintf(stderr, "error opening TERM: %s\n", term);
|
2017-06-15 16:04:47 +00:00
|
|
|
else
|
2017-07-03 13:38:38 +00:00
|
|
|
fprintf(stderr, "initscr() failed\n");
|
2017-06-15 16:04:47 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-08-22 17:04:17 +00:00
|
|
|
|
2017-06-15 16:04:47 +00:00
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
nonl();
|
|
|
|
intrflush(stdscr, FALSE);
|
|
|
|
keypad(stdscr, TRUE);
|
|
|
|
curs_set(FALSE); /* Hide cursor */
|
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
2017-07-02 20:56:47 +00:00
|
|
|
if (cfg.showcolor)
|
2017-09-08 20:46:10 +00:00
|
|
|
init_pair(1, cfg.color, -1);
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout(); /* One second */
|
2017-06-15 16:04:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-22 14:19:00 +00:00
|
|
|
/*
|
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-22 14:19:00 +00:00
|
|
|
*/
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2017-12-24 15:33:23 +00:00
|
|
|
spawn(const char *file, const char *arg1, const char *arg2, const char *dir, uchar flag)
|
2014-10-21 13:21:00 +00:00
|
|
|
{
|
2017-12-19 18:03:27 +00:00
|
|
|
static char *shlvl;
|
|
|
|
static pid_t pid;
|
|
|
|
static int status;
|
2014-10-21 13:21:00 +00:00
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
if (flag & F_NORMAL)
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2017-06-15 16:04:47 +00:00
|
|
|
|
2014-10-21 13:21:00 +00:00
|
|
|
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-05-14 19:21:36 +00:00
|
|
|
|
2017-10-08 04:02:29 +00:00
|
|
|
shlvl = getenv("SHLVL");
|
|
|
|
|
2017-05-14 19:21:36 +00:00
|
|
|
/* Show a marker (to indicate nnn spawned shell) */
|
2017-10-08 04:02:29 +00:00
|
|
|
if (flag & F_MARKER && shlvl != NULL) {
|
2017-06-15 14:04:56 +00:00
|
|
|
printf("\n +-++-++-+\n | n n n |\n +-++-++-+\n\n");
|
2018-04-24 03:13:32 +00:00
|
|
|
printf("Next shell level: %d\n", atoi(shlvl) + 1);
|
2017-06-25 17:25:46 +00:00
|
|
|
}
|
2017-04-22 14:56:22 +00:00
|
|
|
|
2017-05-14 19:21:36 +00:00
|
|
|
/* Suppress stdout and stderr */
|
2017-07-02 10:42:30 +00:00
|
|
|
if (flag & F_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);
|
|
|
|
}
|
|
|
|
|
2018-03-15 22:54:29 +00:00
|
|
|
if (flag & F_NOWAIT) {
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
setsid();
|
|
|
|
}
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
if (flag & F_SIGINT)
|
2017-06-04 18:46:43 +00:00
|
|
|
signal(SIGINT, SIG_DFL);
|
2017-05-14 19:21:36 +00:00
|
|
|
execlp(file, file, arg1, arg2, NULL);
|
2014-10-21 13:21:00 +00:00
|
|
|
_exit(1);
|
|
|
|
} else {
|
2017-07-02 10:42:30 +00:00
|
|
|
if (!(flag & F_NOWAIT))
|
2017-04-22 14:19:00 +00:00
|
|
|
/* Ignore interruptions */
|
|
|
|
while (waitpid(pid, &status, 0) == -1)
|
|
|
|
DPRINTF_D(status);
|
2017-06-15 16:04:47 +00:00
|
|
|
|
2014-10-21 13:21:00 +00:00
|
|
|
DPRINTF_D(pid);
|
2017-07-02 10:42:30 +00:00
|
|
|
if (flag & F_NORMAL)
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2014-10-21 13:21:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 *
|
2017-12-24 15:33:23 +00:00
|
|
|
xgetenv(const char *name, char *fallback)
|
2015-11-20 15:42:33 +00:00
|
|
|
{
|
2017-12-12 21:11:30 +00:00
|
|
|
static char *value;
|
|
|
|
|
2015-11-20 15:42:33 +00:00
|
|
|
if (name == NULL)
|
|
|
|
return fallback;
|
2017-06-21 04:19:02 +00:00
|
|
|
|
2017-12-12 21:11:30 +00:00
|
|
|
value = getenv(name);
|
2017-06-21 04:19:02 +00:00
|
|
|
|
2015-11-26 15:10:12 +00:00
|
|
|
return value && value[0] ? value : fallback;
|
2015-11-20 15:42:33 +00:00
|
|
|
}
|
|
|
|
|
2017-08-23 12:43:22 +00:00
|
|
|
/* Check if a dir exists, IS a dir and is readable */
|
|
|
|
static bool
|
2017-12-24 15:33:23 +00:00
|
|
|
xdiraccess(const char *path)
|
2017-08-23 12:43:22 +00:00
|
|
|
{
|
|
|
|
static DIR *dirp;
|
|
|
|
|
|
|
|
dirp = opendir(path);
|
|
|
|
if (dirp == NULL) {
|
|
|
|
printwarn();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dirp);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
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
|
2017-12-24 15:33:23 +00:00
|
|
|
xstricmp(const char * const s1, const char * const s2)
|
2016-08-21 12:47:34 +00:00
|
|
|
{
|
2017-12-24 15:33:23 +00:00
|
|
|
static const char *c1, *c2;
|
2017-05-16 02:02:21 +00:00
|
|
|
|
2017-12-23 21:45:22 +00:00
|
|
|
c1 = s1;
|
|
|
|
while (isspace(*c1))
|
|
|
|
++c1;
|
2017-12-21 19:26:15 +00:00
|
|
|
|
2017-12-23 21:45:22 +00:00
|
|
|
c2 = s2;
|
|
|
|
while (isspace(*c2))
|
|
|
|
++c2;
|
2017-12-21 19:26:15 +00:00
|
|
|
|
|
|
|
if (*c1 == '-' || *c1 == '+')
|
|
|
|
++c1;
|
|
|
|
|
2017-05-16 02:02:21 +00:00
|
|
|
if (*c2 == '-' || *c2 == '+')
|
2017-06-17 06:58:21 +00:00
|
|
|
++c2;
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2017-12-23 21:45:22 +00:00
|
|
|
if (isdigit(*c1) && isdigit(*c2)) {
|
|
|
|
while (*c1 >= '0' && *c1 <= '9')
|
|
|
|
++c1;
|
|
|
|
while (isspace(*c1))
|
|
|
|
++c1;
|
|
|
|
|
|
|
|
while (*c2 >= '0' && *c2 <= '9')
|
|
|
|
++c2;
|
|
|
|
while (isspace(*c2))
|
|
|
|
++c2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*c1 && !*c2) {
|
2017-05-16 02:02:21 +00:00
|
|
|
static long long num1, num2;
|
|
|
|
|
2017-12-21 13:42:12 +00:00
|
|
|
num1 = strtoll(s1, NULL, 10);
|
|
|
|
num2 = strtoll(s2, NULL, 10);
|
2017-04-01 17:40:12 +00:00
|
|
|
if (num1 != num2) {
|
|
|
|
if (num1 > num2)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2017-12-21 12:19:31 +00:00
|
|
|
}
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2017-12-23 21:45:22 +00:00
|
|
|
return strcoll(s1, s2);
|
2016-08-21 12:47:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-20 16:10:52 +00:00
|
|
|
/* Return the integer value of a char representing HEX */
|
|
|
|
static char
|
|
|
|
xchartohex(char c)
|
|
|
|
{
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
return c - '0';
|
|
|
|
|
|
|
|
c = TOUPPER(c);
|
|
|
|
if (c >= 'A' && c <= 'F')
|
|
|
|
return c - 'A' + 10;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Trim all whitespace from both ends, / from end */
|
2017-04-20 14:15:52 +00:00
|
|
|
static char *
|
|
|
|
strstrip(char *s)
|
|
|
|
{
|
2017-04-25 04:31:52 +00:00
|
|
|
if (!s || !*s)
|
2017-04-20 14:15:52 +00:00
|
|
|
return s;
|
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
size_t len = strlen(s) - 1;
|
2017-04-25 04:31:52 +00:00
|
|
|
|
|
|
|
while (len != 0 && (isspace(s[len]) || s[len] == '/'))
|
2017-06-17 06:58:21 +00:00
|
|
|
--len;
|
2017-04-25 04:31:52 +00:00
|
|
|
s[len + 1] = '\0';
|
2017-04-20 14:15:52 +00:00
|
|
|
|
|
|
|
while (*s && isspace(*s))
|
2017-06-17 06:58:21 +00:00
|
|
|
++s;
|
2017-04-20 14:15:52 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static char *
|
2017-12-24 15:33:23 +00:00
|
|
|
getmime(const char *file)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2017-12-12 21:11:30 +00:00
|
|
|
static regex_t regex;
|
|
|
|
static uint i;
|
2017-12-24 15:33:23 +00:00
|
|
|
static const 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) {
|
2017-08-22 17:04:17 +00:00
|
|
|
if (regcomp(®ex, assocs[i].regex, REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
|
2014-10-09 09:33:49 +00:00
|
|
|
continue;
|
2018-04-01 17:21:55 +00:00
|
|
|
|
2018-03-18 22:12:56 +00:00
|
|
|
if (regexec(®ex, file, 0, NULL, 0) == 0) {
|
|
|
|
regfree(®ex);
|
2017-04-23 17:42:54 +00:00
|
|
|
return assocs[i].mime;
|
2018-03-18 22:12:56 +00:00
|
|
|
}
|
2014-10-09 09:33:49 +00:00
|
|
|
}
|
2017-12-24 15:33:23 +00:00
|
|
|
|
2018-03-18 22:12:56 +00:00
|
|
|
regfree(®ex);
|
2017-04-23 17:42:54 +00:00
|
|
|
return NULL;
|
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)
|
|
|
|
{
|
2017-04-20 20:16:00 +00:00
|
|
|
static size_t len;
|
|
|
|
static int r;
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2015-05-05 17:45:35 +00:00
|
|
|
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
|
2017-06-04 18:28:30 +00:00
|
|
|
if (r != 0 && filter && filter[0] != '\0') {
|
2016-01-07 10:26:44 +00:00
|
|
|
len = COLS;
|
2017-12-24 15:50:36 +00:00
|
|
|
if (len > NAME_MAX)
|
|
|
|
len = NAME_MAX;
|
2017-05-14 21:37:22 +00:00
|
|
|
regerror(r, regex, g_buf, len);
|
|
|
|
printmsg(g_buf);
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
2018-04-01 17:21:55 +00:00
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
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 */
|
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-03-29 20:21:52 +00:00
|
|
|
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.sizeorder) {
|
2017-04-09 18:41:29 +00:00
|
|
|
if (pb->size > pa->size)
|
|
|
|
return 1;
|
|
|
|
else if (pb->size < pa->size)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-06-22 01:56:05 +00:00
|
|
|
if (cfg.blkorder) {
|
|
|
|
if (pb->blocks > pa->blocks)
|
2017-04-09 18:41:29 +00:00
|
|
|
return 1;
|
2017-06-22 01:56:05 +00:00
|
|
|
else if (pb->blocks < pa->blocks)
|
2017-04-09 18:41:29 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2017-12-23 21:45:22 +00:00
|
|
|
return xstricmp(pa->name, pb->name);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
/*
|
|
|
|
* Returns SEL_* if key is bound and 0 otherwise.
|
2017-06-03 23:19:16 +00:00
|
|
|
* 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
|
2017-06-03 23:19:16 +00:00
|
|
|
nextsel(char **run, char **env, int *presel)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2017-06-21 18:21:53 +00:00
|
|
|
static int c;
|
2017-12-24 15:33:23 +00:00
|
|
|
static uint i;
|
|
|
|
static const uint len = LEN(bindings);
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
static char inotify_buf[EVENT_BUF_LEN];
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
static struct kevent event_data[NUM_EVENT_SLOTS];
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2017-06-21 18:21:53 +00:00
|
|
|
|
|
|
|
c = *presel;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-04-28 23:02:47 +00:00
|
|
|
if (c == 0)
|
|
|
|
c = getch();
|
2017-08-22 21:58:26 +00:00
|
|
|
else {
|
2017-06-03 23:19:16 +00:00
|
|
|
*presel = 0;
|
|
|
|
|
2017-08-22 21:58:26 +00:00
|
|
|
/* Unwatch dir if we are still in a filtered view */
|
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
if (inotify_wd >= 0) {
|
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
|
|
|
inotify_wd = -1;
|
|
|
|
}
|
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
if (event_fd >= 0) {
|
|
|
|
close(event_fd);
|
|
|
|
event_fd = -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
if (c == -1) {
|
2017-06-17 06:58:21 +00:00
|
|
|
++idle;
|
2017-08-22 21:58:26 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
/* Do not check for directory changes in du
|
|
|
|
* mode. A redraw forces du calculation.
|
|
|
|
* Check for changes every odd second.
|
|
|
|
*/
|
2017-08-22 21:58:26 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
if (!cfg.blkorder && inotify_wd >= 0 && idle & 1 && read(inotify_fd, inotify_buf, EVENT_BUF_LEN) > 0)
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2017-08-22 21:58:26 +00:00
|
|
|
if (!cfg.blkorder && event_fd >= 0 && idle & 1
|
|
|
|
&& kevent(kq, events_to_monitor, NUM_EVENT_SLOTS, event_data, NUM_EVENT_FDS, >imeout) > 0)
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2017-08-21 16:33:26 +00:00
|
|
|
c = CONTROL('L');
|
2017-08-20 20:48:14 +00:00
|
|
|
} else
|
2015-11-20 14:14:58 +00:00
|
|
|
idle = 0;
|
2014-11-06 11:46:37 +00:00
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
for (i = 0; i < len; ++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
|
|
|
}
|
2017-05-19 14:38:22 +00:00
|
|
|
|
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
|
|
|
|
*/
|
2018-03-18 22:24:19 +00:00
|
|
|
static int
|
2017-07-05 02:47:51 +00:00
|
|
|
fill(struct entry **dents, int (*filter)(regex_t *, char *), regex_t *re)
|
2017-04-28 23:02:47 +00:00
|
|
|
{
|
2017-05-17 02:46:33 +00:00
|
|
|
static int count;
|
2018-01-04 00:53:20 +00:00
|
|
|
static struct entry _dent, *pdent1, *pdent2;
|
2017-05-17 02:46:33 +00:00
|
|
|
|
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) {
|
2018-01-04 00:53:20 +00:00
|
|
|
pdent1 = &(*dents)[count];
|
|
|
|
pdent2 = &(*dents)[ndents];
|
2017-05-17 02:46:33 +00:00
|
|
|
|
2018-01-04 00:53:20 +00:00
|
|
|
*(&_dent) = *pdent1;
|
|
|
|
*pdent1 = *pdent2;
|
|
|
|
*pdent2 = *(&_dent);
|
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;
|
|
|
|
}
|
|
|
|
}
|
2018-03-18 22:24:19 +00:00
|
|
|
|
|
|
|
return ndents;
|
2017-04-28 23:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
matches(char *fltr)
|
|
|
|
{
|
|
|
|
static regex_t re;
|
|
|
|
|
|
|
|
/* Search filter */
|
|
|
|
if (setfilter(&re, fltr) != 0)
|
|
|
|
return -1;
|
|
|
|
|
2018-03-18 22:24:19 +00:00
|
|
|
ndents = fill(&dents, visible, &re);
|
2018-03-18 22:12:56 +00:00
|
|
|
regfree(&re);
|
2018-03-18 22:24:19 +00:00
|
|
|
if (ndents == 0)
|
|
|
|
return 0;
|
2018-03-18 22:12:56 +00:00
|
|
|
|
2017-04-28 23:02:47 +00:00
|
|
|
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-08-24 04:45:32 +00:00
|
|
|
filterentries(char *path)
|
2014-10-09 22:35:47 +00:00
|
|
|
{
|
2017-12-30 08:24:49 +00:00
|
|
|
static char ln[REGEX_MAX] __attribute__ ((aligned));
|
|
|
|
static wchar_t wln[REGEX_MAX] __attribute__ ((aligned));
|
2017-04-28 23:02:47 +00:00
|
|
|
static wint_t ch[2] = {0};
|
2017-12-19 19:12:11 +00:00
|
|
|
int r, total = ndents, oldcur = cur, len = 1;
|
2017-04-28 23:02:47 +00:00
|
|
|
char *pln = ln + 1;
|
|
|
|
|
2017-08-24 04:45:32 +00:00
|
|
|
ln[0] = wln[0] = FILTER;
|
|
|
|
ln[1] = wln[1] = '\0';
|
2017-04-28 23:02:47 +00:00
|
|
|
cur = 0;
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
cleartimeout();
|
2014-10-09 22:35:47 +00:00
|
|
|
echo();
|
|
|
|
curs_set(TRUE);
|
2017-04-28 23:02:47 +00:00
|
|
|
printprompt(ln);
|
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
while ((r = get_wch(ch)) != ERR) {
|
|
|
|
if (*ch == 127 /* handle DEL */ || *ch == KEY_DC || *ch == KEY_BACKSPACE) {
|
2017-12-14 13:42:14 +00:00
|
|
|
if (len == 1) {
|
|
|
|
cur = oldcur;
|
|
|
|
*ch = CONTROL('L');
|
|
|
|
goto end;
|
|
|
|
}
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-12-14 13:42:14 +00:00
|
|
|
wln[--len] = '\0';
|
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-12-14 13:42:14 +00:00
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
|
|
|
ndents = total;
|
|
|
|
if (matches(pln) == -1)
|
2017-08-25 08:40:57 +00:00
|
|
|
continue;
|
2017-12-14 13:42:14 +00:00
|
|
|
redraw(path);
|
|
|
|
printprompt(ln);
|
|
|
|
continue;
|
2017-08-25 08:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (r == OK) {
|
2018-04-25 16:27:46 +00:00
|
|
|
/* Handle all control chars in main loop */
|
|
|
|
if (keyname(*ch)[0] == '^') {
|
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
switch (*ch) {
|
|
|
|
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;
|
2018-04-25 16:27:46 +00:00
|
|
|
#if 0
|
2018-01-14 08:35:19 +00:00
|
|
|
case CONTROL('L'): // fallthrough
|
2018-01-06 06:28:01 +00:00
|
|
|
case CONTROL('K'): // fallthrough
|
2018-02-24 05:13:06 +00:00
|
|
|
case CONTROL('Y'): // fallthrough
|
2018-01-06 21:57:09 +00:00
|
|
|
case CONTROL('_'): // fallthrough
|
|
|
|
case CONTROL('R'): // fallthrough
|
2018-01-06 06:28:01 +00:00
|
|
|
case CONTROL('O'): // fallthrough
|
|
|
|
case CONTROL('B'): // fallthrough
|
|
|
|
case CONTROL('V'): // fallthrough
|
2018-01-09 08:51:09 +00:00
|
|
|
case CONTROL('J'): // fallthrough
|
2018-03-30 15:23:25 +00:00
|
|
|
case CONTROL(']'): // fallthrough
|
2018-02-24 16:13:41 +00:00
|
|
|
case CONTROL('G'): // fallthrough
|
2018-01-06 06:28:01 +00:00
|
|
|
case CONTROL('X'): // fallthrough
|
2018-02-24 05:13:06 +00:00
|
|
|
case CONTROL('F'): // fallthrough
|
2018-03-07 13:02:48 +00:00
|
|
|
case CONTROL('I'): // fallthrough
|
2018-01-28 06:53:23 +00:00
|
|
|
case CONTROL('T'):
|
2018-01-14 08:35:19 +00:00
|
|
|
if (len == 1)
|
2018-01-28 06:53:23 +00:00
|
|
|
cur = oldcur;
|
2017-06-04 12:22:51 +00:00
|
|
|
goto end;
|
2018-04-25 16:27:46 +00:00
|
|
|
#endif
|
2018-03-31 15:28:13 +00:00
|
|
|
case '?': // '?' is an invalid regex, show help instead
|
|
|
|
if (len == 1) {
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
} // fallthrough
|
2017-04-28 23:02:47 +00:00
|
|
|
default:
|
2017-07-02 20:19:14 +00:00
|
|
|
/* Reset cur in case it's a repeat search */
|
|
|
|
if (len == 1)
|
|
|
|
cur = 0;
|
|
|
|
|
2017-12-19 19:12:11 +00:00
|
|
|
if (len == REGEX_MAX - 1)
|
2017-08-24 04:45:32 +00:00
|
|
|
break;
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
wln[len] = (wchar_t)*ch;
|
2017-07-02 20:19:14 +00:00
|
|
|
wln[++len] = '\0';
|
2017-08-24 04:45:32 +00:00
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
2017-04-28 23:02:47 +00:00
|
|
|
ndents = total;
|
|
|
|
if (matches(pln) == -1)
|
|
|
|
continue;
|
|
|
|
redraw(path);
|
|
|
|
printprompt(ln);
|
|
|
|
}
|
2017-08-25 08:40:57 +00:00
|
|
|
} else {
|
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
2017-04-28 23:02:47 +00:00
|
|
|
end:
|
2014-10-09 22:35:47 +00:00
|
|
|
noecho();
|
2015-11-20 11:38:19 +00:00
|
|
|
curs_set(FALSE);
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout();
|
2017-06-03 23:19:16 +00:00
|
|
|
|
|
|
|
/* Return keys for navigation etc. */
|
2017-04-28 23:02:47 +00:00
|
|
|
return *ch;
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
/* Show a prompt with input string and return the changes */
|
|
|
|
static char *
|
2018-04-25 17:07:59 +00:00
|
|
|
xreadline(char *fname, char *prompt)
|
2017-08-24 01:34:56 +00:00
|
|
|
{
|
|
|
|
int old_curs = curs_set(1);
|
2017-08-24 04:45:32 +00:00
|
|
|
size_t len, pos;
|
2017-08-25 08:27:22 +00:00
|
|
|
int x, y, r;
|
|
|
|
wint_t ch[2] = {0};
|
2018-01-04 00:53:20 +00:00
|
|
|
static wchar_t * const buf = (wchar_t *)g_buf;
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
if (fname) {
|
|
|
|
DPRINTF_S(fname);
|
|
|
|
len = pos = mbstowcs(buf, fname, NAME_MAX);
|
|
|
|
} else
|
|
|
|
len = (size_t)-1;
|
|
|
|
|
2017-08-25 12:57:06 +00:00
|
|
|
if (len == (size_t)-1) {
|
2017-08-24 01:34:56 +00:00
|
|
|
buf[0] = '\0';
|
|
|
|
len = pos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
getyx(stdscr, y, x);
|
|
|
|
cleartimeout();
|
|
|
|
|
|
|
|
while (1) {
|
2017-08-25 21:12:33 +00:00
|
|
|
buf[len] = ' ';
|
2017-08-24 04:45:32 +00:00
|
|
|
mvaddnwstr(y, x, buf, len + 1);
|
2017-08-26 08:04:43 +00:00
|
|
|
move(y, x + wcswidth(buf, pos));
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2017-08-25 08:27:22 +00:00
|
|
|
if ((r = get_wch(ch)) != ERR) {
|
|
|
|
if (r == OK) {
|
|
|
|
if (*ch == KEY_ENTER || *ch == '\n' || *ch == '\r')
|
|
|
|
break;
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2017-08-25 16:19:55 +00:00
|
|
|
if (*ch == CONTROL('L')) {
|
|
|
|
clearprompt();
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
2017-08-25 16:19:55 +00:00
|
|
|
len = pos = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-03-27 02:35:47 +00:00
|
|
|
if (*ch == CONTROL('A')) {
|
|
|
|
pos = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*ch == CONTROL('E')) {
|
|
|
|
pos = len;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*ch == CONTROL('U')) {
|
|
|
|
clearprompt();
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
2018-03-27 02:35:47 +00:00
|
|
|
memmove(buf, buf + pos, (len - pos) << 2);
|
|
|
|
len -= pos;
|
|
|
|
pos = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Filter out all other control chars */
|
|
|
|
if (keyname(*ch)[0] == '^')
|
|
|
|
continue;
|
|
|
|
|
2017-10-09 17:25:44 +00:00
|
|
|
/* TAB breaks cursor position, ignore it */
|
2017-12-26 18:46:23 +00:00
|
|
|
if (*ch == '\t')
|
2017-10-09 17:25:44 +00:00
|
|
|
continue;
|
|
|
|
|
2018-01-04 00:53:20 +00:00
|
|
|
if (pos < NAME_MAX - 1) {
|
2017-08-25 08:27:22 +00:00
|
|
|
memmove(buf + pos + 1, buf + pos, (len - pos) << 2);
|
|
|
|
buf[pos] = *ch;
|
|
|
|
++len, ++pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (*ch) {
|
|
|
|
case KEY_LEFT:
|
|
|
|
if (pos > 0)
|
|
|
|
--pos;
|
|
|
|
break;
|
|
|
|
case KEY_RIGHT:
|
|
|
|
if (pos < len)
|
|
|
|
++pos;
|
|
|
|
break;
|
|
|
|
case KEY_BACKSPACE:
|
|
|
|
if (pos > 0) {
|
|
|
|
memmove(buf + pos - 1, buf + pos, (len - pos) << 2);
|
|
|
|
--len, --pos;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KEY_DC:
|
|
|
|
if (pos < len) {
|
|
|
|
memmove(buf + pos, buf + pos + 1, (len - pos - 1) << 2);
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-08-24 01:34:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[len] = '\0';
|
2017-12-27 20:17:44 +00:00
|
|
|
if (old_curs != ERR)
|
|
|
|
curs_set(old_curs);
|
2017-08-24 01:34:56 +00:00
|
|
|
|
|
|
|
settimeout();
|
2017-09-10 07:35:25 +00:00
|
|
|
DPRINTF_S(buf);
|
2017-08-24 04:45:32 +00:00
|
|
|
wcstombs(g_buf, buf, NAME_MAX);
|
2018-04-25 17:07:59 +00:00
|
|
|
clearprompt();
|
2017-08-24 04:45:32 +00:00
|
|
|
return g_buf;
|
2017-08-24 01:34:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-02 08:48:54 +00:00
|
|
|
/*
|
2018-01-13 20:13:30 +00:00
|
|
|
* Updates out with "dir/name or "/name"
|
2018-01-13 21:57:24 +00:00
|
|
|
* Returns the number of bytes copied including the terminating NULL byte
|
2017-04-02 08:48:54 +00:00
|
|
|
*/
|
2018-04-01 17:21:55 +00:00
|
|
|
static size_t
|
2016-02-10 15:38:22 +00:00
|
|
|
mkpath(char *dir, char *name, char *out, size_t n)
|
|
|
|
{
|
2018-01-13 21:57:24 +00:00
|
|
|
static size_t len;
|
|
|
|
|
2016-02-10 15:38:22 +00:00
|
|
|
/* Handle absolute path */
|
2017-03-29 14:12:23 +00:00
|
|
|
if (name[0] == '/')
|
2018-01-13 20:13:30 +00:00
|
|
|
return 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-07-05 16:38:13 +00:00
|
|
|
if (istopdir(dir))
|
2018-01-13 21:57:24 +00:00
|
|
|
len = 1;
|
2017-03-29 14:12:23 +00:00
|
|
|
else
|
2018-01-13 21:57:24 +00:00
|
|
|
len = xstrlcpy(out, dir, n);
|
2016-02-10 15:38:22 +00:00
|
|
|
}
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2018-01-13 21:57:24 +00:00
|
|
|
out[len - 1] = '/';
|
|
|
|
return (xstrlcpy(out + len, name, n - len) + len);
|
2016-02-10 15:38:22 +00:00
|
|
|
}
|
|
|
|
|
2017-06-11 04:15:50 +00:00
|
|
|
static void
|
|
|
|
parsebmstr(char *bms)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2017-08-24 04:46:35 +00:00
|
|
|
while (*bms && i < BM_MAX) {
|
2017-06-11 04:15:50 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
/*
|
|
|
|
* Get the real path to a bookmark
|
|
|
|
*
|
|
|
|
* NULL is returned in case of no match, path resolution failure etc.
|
|
|
|
* buf would be modified, so check return value before access
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
get_bm_loc(char *key, char *buf)
|
|
|
|
{
|
2017-12-25 12:05:27 +00:00
|
|
|
int r;
|
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
if (!key || !key[0])
|
|
|
|
return NULL;
|
|
|
|
|
2017-12-25 12:05:27 +00:00
|
|
|
for (r = 0; bookmark[r].key && r < BM_MAX; ++r) {
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(bookmark[r].key, key) == 0) {
|
2017-12-24 09:51:38 +00:00
|
|
|
if (bookmark[r].loc[0] == '~') {
|
|
|
|
char *home = getenv("HOME");
|
2017-12-27 20:17:44 +00:00
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
if (!home) {
|
2018-01-14 06:41:46 +00:00
|
|
|
DPRINTF_S(messages[STR_NOHOME_ID]);
|
2017-12-24 09:51:38 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buf, PATH_MAX, "%s%s", home, bookmark[r].loc + 1);
|
|
|
|
} else
|
|
|
|
xstrlcpy(buf, bookmark[r].loc, PATH_MAX);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF_S("Invalid key");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-09-02 08:32:29 +00:00
|
|
|
static void
|
|
|
|
resetdircolor(mode_t mode)
|
|
|
|
{
|
|
|
|
if (cfg.dircolor && !S_ISDIR(mode)) {
|
|
|
|
attroff(COLOR_PAIR(1) | A_BOLD);
|
|
|
|
cfg.dircolor = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
/*
|
|
|
|
* Replace escape characters in a string with '?'
|
2017-09-01 04:52:44 +00:00
|
|
|
* Adjust string length to maxcols if > 0;
|
2017-12-19 18:03:27 +00:00
|
|
|
*
|
2018-01-04 12:16:06 +00:00
|
|
|
* Interestingly, note that unescape() uses g_buf. What happens if
|
2017-12-19 18:03:27 +00:00
|
|
|
* str also points to g_buf? In this case we assume that the caller
|
|
|
|
* acknowledges that it's OK to lose the data in g_buf after this
|
|
|
|
* call to unescape().
|
|
|
|
* The API, on its part, first converts str to multibyte (after which
|
|
|
|
* it doesn't touch str anymore). Only after that it starts modifying
|
2018-01-04 12:16:06 +00:00
|
|
|
* g_buf. This is a phased operation.
|
2017-07-02 10:42:30 +00:00
|
|
|
*/
|
2017-05-03 13:57:55 +00:00
|
|
|
static char *
|
2017-09-01 04:52:44 +00:00
|
|
|
unescape(const char *str, uint maxcols)
|
2017-05-03 13:57:55 +00:00
|
|
|
{
|
2017-12-30 08:24:49 +00:00
|
|
|
static wchar_t wbuf[PATH_MAX] __attribute__ ((aligned));
|
2017-05-03 13:57:55 +00:00
|
|
|
static wchar_t *buf;
|
2017-09-01 12:20:14 +00:00
|
|
|
static size_t len;
|
2017-06-15 14:04:56 +00:00
|
|
|
|
2017-05-03 13:57:55 +00:00
|
|
|
/* Convert multi-byte to wide char */
|
2017-09-01 04:52:44 +00:00
|
|
|
len = mbstowcs(wbuf, str, PATH_MAX);
|
|
|
|
|
2018-01-04 12:16:06 +00:00
|
|
|
g_buf[0] = '\0';
|
2017-12-19 18:03:27 +00:00
|
|
|
buf = wbuf;
|
|
|
|
|
2017-09-01 12:20:14 +00:00
|
|
|
if (maxcols && len > maxcols) {
|
|
|
|
len = wcswidth(wbuf, len);
|
2017-09-01 04:52:44 +00:00
|
|
|
|
2017-09-01 12:20:14 +00:00
|
|
|
if (len > maxcols)
|
2017-09-01 04:52:44 +00:00
|
|
|
wbuf[maxcols] = 0;
|
|
|
|
}
|
2017-05-03 13:57:55 +00:00
|
|
|
|
|
|
|
while (*buf) {
|
2017-05-03 19:38:17 +00:00
|
|
|
if (*buf <= '\x1f' || *buf == '\x7f')
|
2017-05-03 13:57:55 +00:00
|
|
|
*buf = '\?';
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
++buf;
|
2017-05-03 13:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert wide char to multi-byte */
|
2018-01-04 12:16:06 +00:00
|
|
|
wcstombs(g_buf, wbuf, PATH_MAX);
|
|
|
|
return g_buf;
|
2017-05-03 13:57:55 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 12:19:43 +00:00
|
|
|
static char *
|
2017-03-29 20:21:52 +00:00
|
|
|
coolsize(off_t size)
|
|
|
|
{
|
2017-07-03 13:38:38 +00:00
|
|
|
static const char * const U = "BKMGTPEZY";
|
2017-04-01 07:26:25 +00:00
|
|
|
static char size_buf[12]; /* Buffer to hold human readable size */
|
2018-03-05 03:16:34 +00:00
|
|
|
static off_t rem;
|
2018-03-05 12:45:42 +00:00
|
|
|
static int i;
|
2017-04-10 12:47:12 +00:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
rem = 0;
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2017-05-19 14:38:22 +00:00
|
|
|
while (size > 1024) {
|
2018-01-08 18:43:11 +00:00
|
|
|
rem = size & (0x3FF); /* 1024 - 1 = 0x3FF */
|
2017-05-19 14:38:22 +00:00
|
|
|
size >>= 10;
|
2017-06-17 06:58:21 +00:00
|
|
|
++i;
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2018-03-05 12:45:42 +00:00
|
|
|
if (i == 1) {
|
|
|
|
rem = (rem * 1000) >> 10;
|
|
|
|
|
|
|
|
rem /= 10;
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 10) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
} else if (i == 2) {
|
|
|
|
rem = (rem * 1000) >> 10;
|
|
|
|
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 100) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
} else if (i > 0) {
|
|
|
|
rem = (rem * 10000) >> 10;
|
|
|
|
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 1000) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
snprintf(size_buf, 12, "%lu.%0*lu%c", (ulong)size, i, (ulong)rem, U[i]);
|
|
|
|
else
|
|
|
|
snprintf(size_buf, 12, "%lu%c", (ulong)size, U[i]);
|
|
|
|
|
2017-03-29 20:21:52 +00:00
|
|
|
return size_buf;
|
|
|
|
}
|
|
|
|
|
2018-01-04 00:53:20 +00:00
|
|
|
static char *
|
|
|
|
get_file_sym(mode_t mode)
|
|
|
|
{
|
|
|
|
static char ind[2] = "\0\0";
|
|
|
|
|
|
|
|
if (S_ISDIR(mode))
|
|
|
|
ind[0] = '/';
|
|
|
|
else if (S_ISLNK(mode))
|
|
|
|
ind[0] = '@';
|
|
|
|
else if (S_ISSOCK(mode))
|
|
|
|
ind[0] = '=';
|
|
|
|
else if (S_ISFIFO(mode))
|
|
|
|
ind[0] = '|';
|
|
|
|
else if (mode & 0100)
|
|
|
|
ind[0] = '*';
|
|
|
|
else
|
|
|
|
ind[0] = '\0';
|
|
|
|
|
|
|
|
return ind;
|
|
|
|
}
|
|
|
|
|
2017-09-02 08:39:34 +00:00
|
|
|
static void
|
|
|
|
printent(struct entry *ent, int sel, uint namecols)
|
|
|
|
{
|
|
|
|
static char *pname;
|
|
|
|
|
|
|
|
pname = unescape(ent->name, namecols);
|
|
|
|
|
|
|
|
/* Directories are always shown on top */
|
|
|
|
resetdircolor(ent->mode);
|
|
|
|
|
2018-01-04 00:53:20 +00:00
|
|
|
printw("%s%s%s\n", CURSYM(sel), pname, get_file_sym(ent->mode));
|
2017-09-02 08:39:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 09:11:07 +00:00
|
|
|
static void
|
2017-09-01 14:00:25 +00:00
|
|
|
printent_long(struct entry *ent, int sel, uint namecols)
|
2017-03-29 20:21:52 +00:00
|
|
|
{
|
2017-09-01 04:52:44 +00:00
|
|
|
static char buf[18], *pname;
|
2017-04-21 21:40:02 +00:00
|
|
|
|
2018-01-14 07:13:20 +00:00
|
|
|
strftime(buf, 18, "%F %R", localtime(&ent->t));
|
2017-09-01 14:00:25 +00:00
|
|
|
pname = unescape(ent->name, namecols);
|
2017-03-30 04:39:21 +00:00
|
|
|
|
2017-09-02 08:32:29 +00:00
|
|
|
/* Directories are always shown on top */
|
|
|
|
resetdircolor(ent->mode);
|
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
if (sel)
|
2017-03-30 05:14:26 +00:00
|
|
|
attron(A_REVERSE);
|
|
|
|
|
2018-01-07 14:38:59 +00:00
|
|
|
if (S_ISDIR(ent->mode)) {
|
|
|
|
if (cfg.blkorder)
|
2017-09-01 04:52:44 +00:00
|
|
|
printw("%s%-16.16s %8.8s/ %s/\n", CURSYM(sel), buf, coolsize(ent->blocks << 9), pname);
|
2018-01-07 14:38:59 +00:00
|
|
|
else
|
|
|
|
printw("%s%-16.16s / %s/\n", CURSYM(sel), buf, pname);
|
|
|
|
} else if (S_ISLNK(ent->mode))
|
|
|
|
printw("%s%-16.16s @ %s@\n", CURSYM(sel), buf, pname);
|
|
|
|
else if (S_ISSOCK(ent->mode))
|
|
|
|
printw("%s%-16.16s = %s=\n", CURSYM(sel), buf, pname);
|
|
|
|
else if (S_ISFIFO(ent->mode))
|
|
|
|
printw("%s%-16.16s | %s|\n", CURSYM(sel), buf, pname);
|
|
|
|
else if (S_ISBLK(ent->mode))
|
|
|
|
printw("%s%-16.16s b %s\n", CURSYM(sel), buf, pname);
|
|
|
|
else if (S_ISCHR(ent->mode))
|
|
|
|
printw("%s%-16.16s c %s\n", CURSYM(sel), buf, pname);
|
|
|
|
else if (ent->mode & 0100) {
|
|
|
|
if (cfg.blkorder)
|
2017-09-01 04:52:44 +00:00
|
|
|
printw("%s%-16.16s %8.8s* %s*\n", CURSYM(sel), buf, coolsize(ent->blocks << 9), pname);
|
2017-04-09 18:41:29 +00:00
|
|
|
else
|
2018-01-07 14:38:59 +00:00
|
|
|
printw("%s%-16.16s %8.8s* %s*\n", CURSYM(sel), buf, coolsize(ent->size), pname);
|
|
|
|
} else {
|
|
|
|
if (cfg.blkorder)
|
2017-09-01 04:52:44 +00:00
|
|
|
printw("%s%-16.16s %8.8s %s\n", CURSYM(sel), buf, coolsize(ent->blocks << 9), pname);
|
2018-01-07 14:38:59 +00:00
|
|
|
else
|
|
|
|
printw("%s%-16.16s %8.8s %s\n", CURSYM(sel), buf, coolsize(ent->size), pname);
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
2017-03-30 05:14:26 +00:00
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
if (sel)
|
2017-03-30 05:14:26 +00:00
|
|
|
attroff(A_REVERSE);
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 14:00:25 +00:00
|
|
|
static void (*printptr)(struct entry *ent, int sel, uint namecols) = &printent_long;
|
2017-06-06 15:31:28 +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 = '-';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "regular file", DESCRIPTOR_LEN);
|
2017-06-15 14:04:56 +00:00
|
|
|
if (mode & 0100)
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc + 12, ", executable", DESCRIPTOR_LEN - 12); /* Length of string "regular file" is 12 */
|
2017-04-02 23:35:14 +00:00
|
|
|
} else if (S_ISDIR(mode)) {
|
|
|
|
c = 'd';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "directory", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
} else if (S_ISBLK(mode)) {
|
|
|
|
c = 'b';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "block special device", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
} else if (S_ISCHR(mode)) {
|
|
|
|
c = 'c';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "character special device", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
#ifdef S_ISFIFO
|
|
|
|
} else if (S_ISFIFO(mode)) {
|
|
|
|
c = 'p';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "FIFO", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
#endif /* S_ISFIFO */
|
|
|
|
#ifdef S_ISLNK
|
|
|
|
} else if (S_ISLNK(mode)) {
|
|
|
|
c = 'l';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "symbolic link", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
#endif /* S_ISLNK */
|
|
|
|
#ifdef S_ISSOCK
|
|
|
|
} else if (S_ISSOCK(mode)) {
|
|
|
|
c = 's';
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(desc, "socket", DESCRIPTOR_LEN);
|
2017-04-02 23:35:14 +00:00
|
|
|
#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;
|
2017-04-02 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a mode field into "ls -l" type perms field. */
|
|
|
|
static char *
|
|
|
|
get_lsperms(mode_t mode, char *desc)
|
|
|
|
{
|
2017-08-22 17:04:17 +00:00
|
|
|
static const char * const rwx[] = {"---", "--x", "-w-", "-wx", "r--", "r-x", "rw-", "rwx"};
|
2017-12-19 18:03:27 +00:00
|
|
|
static char bits[11] = {'\0'};
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
bits[0] = get_fileind(mode, desc);
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(&bits[1], rwx[(mode >> 6) & 7], 4);
|
|
|
|
xstrlcpy(&bits[4], rwx[(mode >> 3) & 7], 4);
|
|
|
|
xstrlcpy(&bits[7], rwx[(mode & 7)], 4);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
if (mode & S_ISUID)
|
2017-06-15 14:04:56 +00:00
|
|
|
bits[3] = (mode & 0100) ? 's' : 'S'; /* user executable */
|
2017-04-02 23:35:14 +00:00
|
|
|
if (mode & S_ISGID)
|
2017-06-15 14:04:56 +00:00
|
|
|
bits[6] = (mode & 0010) ? 's' : 'l'; /* group executable */
|
2017-04-02 23:35:14 +00:00
|
|
|
if (mode & S_ISVTX)
|
2017-06-15 14:04:56 +00:00
|
|
|
bits[9] = (mode & 0001) ? 't' : 'T'; /* others executable */
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
return bits;
|
2017-04-02 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
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-10-15 23:54:56 +00:00
|
|
|
get_output(char *buf, size_t bytes, char *file, char *arg1, char *arg2, int pager)
|
2017-04-03 14:58:55 +00:00
|
|
|
{
|
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-07-02 15:02:38 +00:00
|
|
|
int tmp, flags;
|
2017-05-15 04:24:30 +00:00
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if (pipe(pipefd) == -1)
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-05-15 04:24:30 +00:00
|
|
|
|
2017-07-02 15:02:38 +00:00
|
|
|
for (tmp = 0; tmp < 2; ++tmp) {
|
|
|
|
/* Get previous flags */
|
|
|
|
flags = fcntl(pipefd[tmp], F_GETFL, 0);
|
|
|
|
|
|
|
|
/* Set bit for non-blocking flag */
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
|
|
|
|
/* Change flags on fd */
|
|
|
|
fcntl(pipefd[tmp], F_SETFL, flags);
|
|
|
|
}
|
|
|
|
|
2017-05-15 04:24:30 +00:00
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
|
|
|
/* In child */
|
|
|
|
close(pipefd[0]);
|
|
|
|
dup2(pipefd[1], STDOUT_FILENO);
|
|
|
|
dup2(pipefd[1], STDERR_FILENO);
|
2017-07-02 15:02:38 +00:00
|
|
|
close(pipefd[1]);
|
2017-05-15 04:24:30 +00:00
|
|
|
execlp(file, file, arg1, arg2, NULL);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In parent */
|
2017-07-02 15:02:38 +00:00
|
|
|
waitpid(pid, &tmp, 0);
|
2017-05-15 04:24:30 +00:00
|
|
|
close(pipefd[1]);
|
2017-07-02 15:02:38 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-06 21:57:09 +00:00
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
|
|
|
/* Show in pager in child */
|
|
|
|
dup2(pipefd[0], STDIN_FILENO);
|
2017-05-15 04:24:30 +00:00
|
|
|
close(pipefd[0]);
|
2017-07-02 15:02:38 +00:00
|
|
|
execlp("less", "less", NULL);
|
2017-05-15 12:52:00 +00:00
|
|
|
_exit(1);
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
/* In parent */
|
2017-07-02 15:02:38 +00:00
|
|
|
waitpid(pid, &tmp, 0);
|
|
|
|
close(pipefd[0]);
|
2017-05-15 04:24:30 +00:00
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
return NULL;
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 19:16:56 +00:00
|
|
|
static char *
|
|
|
|
xgetpwuid(uid_t uid)
|
|
|
|
{
|
|
|
|
struct passwd *pwd = getpwuid(uid);
|
|
|
|
if (!pwd)
|
2018-05-18 20:06:17 +00:00
|
|
|
return utils[UNKNOWN];
|
2018-05-18 19:16:56 +00:00
|
|
|
|
|
|
|
return pwd->pw_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
xgetgrgid(gid_t gid)
|
|
|
|
{
|
|
|
|
struct group *grp = getgrgid(gid);
|
|
|
|
if (!grp)
|
2018-05-18 20:06:17 +00:00
|
|
|
return utils[UNKNOWN];
|
2018-05-18 19:16:56 +00:00
|
|
|
|
|
|
|
return grp->gr_name;
|
|
|
|
}
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
/*
|
|
|
|
* 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)
|
2017-04-02 23:35:14 +00:00
|
|
|
{
|
2017-12-24 18:58:12 +00:00
|
|
|
char desc[DESCRIPTOR_LEN];
|
2017-12-19 18:03:27 +00:00
|
|
|
char *perms = get_lsperms(sb->st_mode, desc);
|
2017-05-14 21:37:22 +00:00
|
|
|
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;
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2018-01-04 12:40:59 +00:00
|
|
|
dprintf(fd, " File: '%s'", unescape(fname, 0));
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
/* Show file name or 'symlink' -> 'target' */
|
|
|
|
if (perms[0] == 'l') {
|
2017-05-15 04:48:33 +00:00
|
|
|
/* 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
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
if (len != -1) {
|
2017-05-15 04:48:33 +00:00
|
|
|
g_buf[len] = '\0';
|
2017-12-19 18:03:27 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We pass g_buf but unescape() operates on g_buf too!
|
|
|
|
* Read the API notes for information on how this works.
|
|
|
|
*/
|
2018-01-04 12:40:59 +00:00
|
|
|
dprintf(fd, " -> '%s'", unescape(g_buf, 0));
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
2018-01-04 12:40:59 +00:00
|
|
|
}
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show size, blocks, file type */
|
2017-10-09 02:17:02 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
2017-04-22 14:56:22 +00:00
|
|
|
dprintf(fd, "\n Size: %-15lld Blocks: %-10lld IO Block: %-6d %s",
|
2017-12-26 15:52:45 +00:00
|
|
|
(long long)sb->st_size, (long long)sb->st_blocks, sb->st_blksize, desc);
|
2017-04-22 14:56:22 +00:00
|
|
|
#else
|
2017-04-22 10:20:36 +00:00
|
|
|
dprintf(fd, "\n Size: %-15ld Blocks: %-10ld IO Block: %-6ld %s",
|
2017-12-26 19:02:26 +00:00
|
|
|
sb->st_size, sb->st_blocks, (long)sb->st_blksize, desc);
|
2017-12-26 15:52:45 +00:00
|
|
|
#endif
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show containing device, inode, hardlink count */
|
2017-10-09 02:17:02 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
2018-03-08 21:02:22 +00:00
|
|
|
snprintf(g_buf, 32, "%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",
|
2017-12-26 15:52:45 +00:00
|
|
|
g_buf, (unsigned long long)sb->st_ino, sb->st_nlink);
|
2017-04-22 14:56:22 +00:00
|
|
|
#else
|
2018-03-08 21:02:22 +00:00
|
|
|
snprintf(g_buf, 32, "%lxh/%lud", (ulong)sb->st_dev, (ulong)sb->st_dev);
|
2017-04-22 10:20:36 +00:00
|
|
|
dprintf(fd, "\n Device: %-15s Inode: %-11lu Links: %-9lu",
|
2017-12-26 19:02:26 +00:00
|
|
|
g_buf, sb->st_ino, (ulong)sb->st_nlink);
|
2017-12-26 15:52:45 +00:00
|
|
|
#endif
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show major, minor number for block or char device */
|
|
|
|
if (perms[0] == 'b' || perms[0] == 'c')
|
2017-08-22 17:04:17 +00:00
|
|
|
dprintf(fd, " Device type: %x,%x", major(sb->st_rdev), minor(sb->st_rdev));
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show permissions, owner, group */
|
2017-08-22 17:04:17 +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,
|
2018-05-18 19:16:56 +00:00
|
|
|
sb->st_mode & 7, perms, sb->st_uid, xgetpwuid(sb->st_uid), sb->st_gid, xgetgrgid(sb->st_gid));
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show last access time */
|
2018-01-14 06:41:46 +00:00
|
|
|
strftime(g_buf, 40, messages[STR_DATE_ID], localtime(&sb->st_atime));
|
2017-05-14 21:37:22 +00:00
|
|
|
dprintf(fd, "\n\n Access: %s", g_buf);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show last modification time */
|
2018-01-14 06:41:46 +00:00
|
|
|
strftime(g_buf, 40, messages[STR_DATE_ID], localtime(&sb->st_mtime));
|
2017-05-14 21:37:22 +00:00
|
|
|
dprintf(fd, "\n Modify: %s", g_buf);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
|
|
|
/* Show last status change time */
|
2018-01-14 06:41:46 +00:00
|
|
|
strftime(g_buf, 40, messages[STR_DATE_ID], localtime(&sb->st_ctime));
|
2017-05-14 21:37:22 +00:00
|
|
|
dprintf(fd, "\n Change: %s", g_buf);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
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);
|
2017-04-03 14:58:55 +00:00
|
|
|
if (p) {
|
2017-04-22 10:20:36 +00:00
|
|
|
dprintf(fd, "\n\n ");
|
2017-04-03 14:58:55 +00:00
|
|
|
while (*p) {
|
|
|
|
if (*p == ',') {
|
|
|
|
*p = '\0';
|
2017-04-22 10:20:36 +00:00
|
|
|
dprintf(fd, " %s\n", begin);
|
2017-04-03 14:58:55 +00:00
|
|
|
begin = p + 1;
|
|
|
|
}
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
++p;
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
2017-04-22 10:20:36 +00:00
|
|
|
dprintf(fd, " %s", begin);
|
2017-04-03 18:03:31 +00:00
|
|
|
}
|
2017-04-03 14:58:55 +00:00
|
|
|
|
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
|
|
|
|
2017-07-05 04:08:19 +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);
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-05-15 12:52:00 +00:00
|
|
|
return 0;
|
2017-04-02 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 12:20:00 +00:00
|
|
|
static size_t
|
2018-04-25 19:26:45 +00:00
|
|
|
get_fs_info(const char *path, bool type)
|
2017-08-11 20:12:55 +00:00
|
|
|
{
|
|
|
|
static struct statvfs svb;
|
|
|
|
|
|
|
|
if (statvfs(path, &svb) == -1)
|
2017-08-24 12:20:00 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-04-25 19:26:45 +00:00
|
|
|
if (type == CAPACITY)
|
2017-12-26 19:58:01 +00:00
|
|
|
return svb.f_blocks << ffs(svb.f_bsize >> 1);
|
2018-04-25 19:26:45 +00:00
|
|
|
else
|
|
|
|
return svb.f_bavail << ffs(svb.f_frsize >> 1);
|
2017-08-11 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
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-09-08 20:46:10 +00:00
|
|
|
if (!get_output(g_buf, MAX_CMD_LEN, "which", utils[cfg.metaviewer], NULL, 0))
|
2017-04-21 18:26:48 +00:00
|
|
|
return -1;
|
|
|
|
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2017-09-08 20:46:10 +00:00
|
|
|
get_output(NULL, 0, utils[cfg.metaviewer], fpath, arg, 1);
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-05-15 12:52:00 +00:00
|
|
|
return 0;
|
2017-04-21 18:26:48 +00:00
|
|
|
}
|
|
|
|
|
2017-09-27 14:49:42 +00:00
|
|
|
static int
|
|
|
|
handle_archive(char *fpath, char *arg, char *dir)
|
|
|
|
{
|
2018-02-24 15:15:50 +00:00
|
|
|
if (!get_output(g_buf, MAX_CMD_LEN, "which", utils[ATOOL], NULL, 0))
|
2017-09-27 14:49:42 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (arg[1] == 'x')
|
2018-02-24 15:15:50 +00:00
|
|
|
spawn(utils[ATOOL], arg, fpath, dir, F_NORMAL);
|
2017-09-27 14:49:42 +00:00
|
|
|
else {
|
|
|
|
exitcurses();
|
2018-02-24 15:15:50 +00:00
|
|
|
get_output(NULL, 0, utils[ATOOL], arg, fpath, 1);
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-09-27 14:49:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-20 16:10:52 +00:00
|
|
|
/*
|
|
|
|
* The help string tokens (each line) start with a HEX value
|
|
|
|
* which indicates the number of spaces to print before the
|
|
|
|
* particular token. This method was chosen instead of a flat
|
|
|
|
* string because the number of bytes in help was increasing
|
|
|
|
* the binary size by around a hundred bytes. This would only
|
|
|
|
* have increased as we keep adding new options.
|
|
|
|
*/
|
2017-04-22 07:20:02 +00:00
|
|
|
static int
|
2017-08-11 20:12:55 +00:00
|
|
|
show_help(char *path)
|
2017-04-03 17:03:46 +00:00
|
|
|
{
|
2017-06-11 13:54:02 +00:00
|
|
|
char tmp[] = "/tmp/nnnXXXXXX";
|
2017-06-15 14:04:56 +00:00
|
|
|
int i = 0, fd = mkstemp(tmp);
|
2017-08-20 16:10:52 +00:00
|
|
|
char *start, *end;
|
2018-04-10 01:28:52 +00:00
|
|
|
static char helpstr[] = {
|
2017-12-27 20:17:44 +00:00
|
|
|
"cKey | Function\n"
|
|
|
|
"e- + -\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"7↑, k, ^P | Prev entry\n"
|
2017-08-20 16:10:52 +00:00
|
|
|
"7↓, j, ^N | Next entry\n"
|
|
|
|
"7PgUp, ^U | Scroll half page up\n"
|
|
|
|
"7PgDn, ^D | Scroll half page down\n"
|
2017-12-24 13:16:56 +00:00
|
|
|
"1Home, g, ^, ^A | First entry\n"
|
|
|
|
"2End, G, $, ^E | Last entry\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"4→, ↵, l, ^M | Open file/enter dir\n"
|
|
|
|
"1←, Bksp, h, ^H | Parent dir\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"d^O | Open with...\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"5Insert, ^I | Toggle nav-as-you-type\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"e~ | Go HOME\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"e& | Start-up dir\n"
|
|
|
|
"e- | Last visited dir\n"
|
|
|
|
"e/ | Filter entries\n"
|
|
|
|
"d^/ | Open desktop search app\n"
|
|
|
|
"e. | Toggle show . files\n"
|
2018-01-07 03:44:25 +00:00
|
|
|
"d^B | Bookmark prompt\n"
|
2018-01-17 14:02:22 +00:00
|
|
|
"eb | Pin current dir\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"d^V | Go to pinned dir\n"
|
|
|
|
"ec | Change dir prompt\n"
|
|
|
|
"ed | Toggle detail view\n"
|
|
|
|
"eD | File details\n"
|
|
|
|
"em | Brief media info\n"
|
|
|
|
"eM | Full media info\n"
|
|
|
|
"en | Create new\n"
|
|
|
|
"d^R | Rename entry\n"
|
2018-03-19 00:02:16 +00:00
|
|
|
"er | Open dir in vidir\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"es | Toggle sort by size\n"
|
2018-01-09 08:51:09 +00:00
|
|
|
"aS, ^J | Toggle du mode\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"et | Toggle sort by mtime\n"
|
2018-03-30 15:23:25 +00:00
|
|
|
"a!, ^] | Spawn SHELL in dir\n"
|
2018-03-19 00:02:16 +00:00
|
|
|
"eR | Run custom script\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"ee | Edit entry in EDITOR\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"eo | Open DE filemanager\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"ep | Open entry in PAGER\n"
|
2018-04-24 23:34:37 +00:00
|
|
|
"ef | Archive entry\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"eF | List archive\n"
|
2018-01-13 03:58:29 +00:00
|
|
|
"d^F | Extract archive\n"
|
2018-04-01 18:09:51 +00:00
|
|
|
"d^K | Copy file path\n"
|
|
|
|
"d^Y | Toggle multi-copy\n"
|
2018-01-28 06:03:12 +00:00
|
|
|
"d^T | Toggle path quote\n"
|
2017-12-27 20:17:44 +00:00
|
|
|
"d^L | Redraw, clear prompt\n"
|
2018-03-30 15:53:28 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
"eL | Lock terminal\n"
|
|
|
|
#endif
|
2017-12-27 20:17:44 +00:00
|
|
|
"e? | Help, settings\n"
|
2018-02-24 16:13:41 +00:00
|
|
|
"aQ, ^G | Quit and cd\n"
|
2018-04-10 01:28:52 +00:00
|
|
|
"aq, ^X | Quit\n\n"};
|
2017-06-15 14:04:56 +00:00
|
|
|
|
|
|
|
if (fd == -1)
|
|
|
|
return -1;
|
|
|
|
|
2017-08-20 16:10:52 +00:00
|
|
|
start = end = helpstr;
|
|
|
|
while (*end) {
|
|
|
|
while (*end != '\n')
|
|
|
|
++end;
|
|
|
|
|
|
|
|
if (start == end) {
|
|
|
|
++end;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintf(fd, "%*c%.*s", xchartohex(*start), ' ', (int)(end - start), start + 1);
|
|
|
|
start = ++end;
|
|
|
|
}
|
|
|
|
|
2018-04-25 19:26:45 +00:00
|
|
|
dprintf(fd, "\nVolume: %s of ", coolsize(get_fs_info(path, FREE)));
|
|
|
|
dprintf(fd, "%s free\n\n", coolsize(get_fs_info(path, CAPACITY)));
|
2017-06-11 13:54:02 +00:00
|
|
|
|
|
|
|
if (getenv("NNN_BMS")) {
|
|
|
|
dprintf(fd, "BOOKMARKS\n");
|
2017-08-24 04:46:35 +00:00
|
|
|
for (; i < BM_MAX; ++i)
|
2017-06-11 13:54:02 +00:00
|
|
|
if (bookmark[i].key)
|
2017-10-15 23:54: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);
|
2018-03-31 21:54:55 +00:00
|
|
|
if (getenv("NNN_NO_X"))
|
2018-04-25 17:55:40 +00:00
|
|
|
dprintf(fd, "NNN_NO_X: %s (%s)\n", getenv("NNN_NO_X"), g_cppath);
|
2018-03-31 21:54:55 +00:00
|
|
|
if (getenv("NNN_SCRIPT"))
|
|
|
|
dprintf(fd, "NNN_SCRIPT: %s\n", getenv("NNN_SCRIPT"));
|
2018-04-04 01:03:26 +00:00
|
|
|
if (getenv("NNN_SHOW_HIDDEN"))
|
|
|
|
dprintf(fd, "NNN_SHOW_HIDDEN: %s\n", getenv("NNN_SHOW_HIDDEN"));
|
|
|
|
|
2018-04-14 04:51:39 +00:00
|
|
|
dprintf(fd, "\n");
|
2018-03-31 21:54:55 +00:00
|
|
|
|
|
|
|
if (getenv("PWD"))
|
|
|
|
dprintf(fd, "PWD: %s\n", getenv("PWD"));
|
|
|
|
if (getenv("SHELL"))
|
|
|
|
dprintf(fd, "SHELL: %s\n", getenv("SHELL"));
|
|
|
|
if (getenv("SHLVL"))
|
|
|
|
dprintf(fd, "SHLVL: %s\n", getenv("SHLVL"));
|
2018-04-08 00:43:33 +00:00
|
|
|
if (getenv("VISUAL"))
|
|
|
|
dprintf(fd, "VISUAL: %s\n", getenv("VISUAL"));
|
|
|
|
else if (getenv("EDITOR"))
|
2018-03-31 21:54:55 +00:00
|
|
|
dprintf(fd, "EDITOR: %s\n", getenv("EDITOR"));
|
|
|
|
if (getenv("PAGER"))
|
|
|
|
dprintf(fd, "PAGER: %s\n", getenv("PAGER"));
|
2017-08-11 20:12:55 +00:00
|
|
|
|
2017-09-08 19:40:21 +00:00
|
|
|
dprintf(fd, "\nVersion: %s\n%s\n", VERSION, GENERAL_INFO);
|
2017-06-11 13:54:02 +00:00
|
|
|
close(fd);
|
|
|
|
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2017-06-11 13:54:02 +00:00
|
|
|
get_output(NULL, 0, "cat", tmp, NULL, 1);
|
|
|
|
unlink(tmp);
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-06-11 13:54:02 +00:00
|
|
|
return 0;
|
2017-04-03 17:03:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 18:41:29 +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)
|
2017-04-09 18:41:29 +00:00
|
|
|
{
|
2017-06-22 01:37:51 +00:00
|
|
|
if (sb->st_blocks && (typeflag == FTW_F || typeflag == FTW_D))
|
2017-06-22 01:56:05 +00:00
|
|
|
ent_blocks += sb->st_blocks;
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
2017-04-09 18:41:29 +00:00
|
|
|
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-10 12:47:12 +00:00
|
|
|
static DIR *dirp;
|
|
|
|
static struct dirent *dp;
|
2017-12-18 19:46:03 +00:00
|
|
|
static char *namep, *pnb;
|
2017-07-05 16:38:13 +00:00
|
|
|
static struct entry *dentp;
|
2017-12-18 19:46:03 +00:00
|
|
|
static size_t off, namebuflen = NAMEBUF_INCR;
|
|
|
|
static ulong num_saved;
|
|
|
|
static int fd, n, count;
|
|
|
|
static struct stat sb_path, sb;
|
|
|
|
|
|
|
|
off = 0;
|
2017-07-05 16:38:13 +00:00
|
|
|
|
|
|
|
dirp = opendir(path);
|
|
|
|
if (dirp == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fd = dirfd(dirp);
|
2017-06-15 14:04:56 +00:00
|
|
|
|
2017-05-19 14:38:22 +00:00
|
|
|
n = 0;
|
2014-11-13 16:49:57 +00:00
|
|
|
|
2017-06-22 04:09:17 +00:00
|
|
|
if (cfg.blkorder) {
|
|
|
|
num_files = 0;
|
2017-06-22 01:37:51 +00:00
|
|
|
dir_blocks = 0;
|
2017-08-22 16:01:06 +00:00
|
|
|
|
|
|
|
if (fstatat(fd, ".", &sb_path, 0) == -1) {
|
|
|
|
printwarn();
|
|
|
|
return 0;
|
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
2017-06-21 18:21:53 +00:00
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
while ((dp = readdir(dirp)) != NULL) {
|
2017-07-05 16:38:13 +00:00
|
|
|
namep = dp->d_name;
|
2017-04-11 13:46:06 +00:00
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
if (filter(re, namep) == 0) {
|
2017-06-22 01:56:05 +00:00
|
|
|
if (!cfg.blkorder)
|
2017-06-21 18:21:53 +00:00
|
|
|
continue;
|
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
/* Skip self and parent */
|
2017-08-22 17:04:17 +00:00
|
|
|
if ((namep[0] == '.' && (namep[1] == '\0' || (namep[1] == '.' && namep[2] == '\0'))))
|
2017-07-05 16:38:13 +00:00
|
|
|
continue;
|
|
|
|
|
2017-10-15 23:54:56 +00:00
|
|
|
if (fstatat(fd, namep, &sb, AT_SYMLINK_NOFOLLOW) == -1)
|
2017-06-22 04:09:17 +00:00
|
|
|
continue;
|
|
|
|
|
2017-06-21 18:21:53 +00:00
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
2017-08-22 16:01:06 +00:00
|
|
|
if (sb_path.st_dev == sb.st_dev) {
|
|
|
|
ent_blocks = 0;
|
|
|
|
mkpath(path, namep, g_buf, PATH_MAX);
|
|
|
|
|
2017-08-22 17:04:17 +00:00
|
|
|
if (nftw(g_buf, sum_bsizes, open_max, FTW_MOUNT | FTW_PHYS) == -1) {
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_NFTWFAIL_ID]);
|
2017-08-22 16:01:06 +00:00
|
|
|
dir_blocks += sb.st_blocks;
|
|
|
|
} else
|
|
|
|
dir_blocks += ent_blocks;
|
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
} else {
|
|
|
|
if (sb.st_blocks)
|
|
|
|
dir_blocks += sb.st_blocks;
|
|
|
|
|
|
|
|
++num_files;
|
|
|
|
}
|
2017-06-21 18:21:53 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2017-04-11 13:46:06 +00:00
|
|
|
|
2017-07-05 16:38:13 +00:00
|
|
|
/* Skip self and parent */
|
|
|
|
if ((namep[0] == '.' && (namep[1] == '\0' ||
|
|
|
|
(namep[1] == '.' && namep[2] == '\0'))))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (fstatat(fd, namep, &sb, AT_SYMLINK_NOFOLLOW) == -1) {
|
2017-09-13 13:14:27 +00:00
|
|
|
DPRINTF_S(namep);
|
|
|
|
continue;
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:16:00 +00:00
|
|
|
if (n == total_dents) {
|
2017-12-18 19:46:03 +00:00
|
|
|
total_dents += ENTRY_INCR;
|
2018-01-04 12:16:06 +00:00
|
|
|
*dents = xrealloc(*dents, total_dents * sizeof(**dents));
|
2017-12-18 19:46:03 +00:00
|
|
|
if (*dents == NULL) {
|
|
|
|
if (pnamebuf)
|
|
|
|
free(pnamebuf);
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
DPRINTF_P(*dents);
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If there's not enough bytes left to copy a file name of length NAME_MAX, re-allocate */
|
|
|
|
if (namebuflen - off < NAME_MAX + 1) {
|
|
|
|
namebuflen += NAMEBUF_INCR;
|
2017-12-17 17:38:55 +00:00
|
|
|
|
|
|
|
pnb = pnamebuf;
|
2018-01-04 12:16:06 +00:00
|
|
|
pnamebuf = (char *)xrealloc(pnamebuf, namebuflen);
|
2017-12-17 17:38:55 +00:00
|
|
|
if (pnamebuf == NULL) {
|
|
|
|
free(*dents);
|
|
|
|
errexit();
|
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
DPRINTF_P(pnamebuf);
|
2017-12-17 17:38:55 +00:00
|
|
|
|
|
|
|
/* realloc() may result in memory move, we must re-adjust if that happens */
|
2017-12-20 16:50:28 +00:00
|
|
|
if (pnb != pnamebuf) {
|
|
|
|
dentp = *dents;
|
|
|
|
dentp->name = pnamebuf;
|
|
|
|
|
|
|
|
for (count = 1; count < n; ++dentp, ++count)
|
|
|
|
/* Current filename starts at last filename start + length */
|
|
|
|
(dentp + 1)->name = (char *)((size_t)dentp->name + dentp->nlen);
|
|
|
|
}
|
2017-04-11 13:46:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
dentp = *dents + n;
|
|
|
|
|
|
|
|
/* Copy file name */
|
2017-12-20 16:50:28 +00:00
|
|
|
dentp->name = (char *)((size_t)pnamebuf + off);
|
|
|
|
dentp->nlen = xstrlcpy(dentp->name, namep, NAME_MAX + 1);
|
|
|
|
off += dentp->nlen;
|
2017-06-21 18:21:53 +00:00
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
/* Copy other fields */
|
2017-07-05 16:38:13 +00:00
|
|
|
dentp->mode = sb.st_mode;
|
|
|
|
dentp->t = sb.st_mtime;
|
|
|
|
dentp->size = sb.st_size;
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-06-22 01:56:05 +00:00
|
|
|
if (cfg.blkorder) {
|
2017-04-09 18:41:29 +00:00
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
2017-06-22 01:56:05 +00:00
|
|
|
ent_blocks = 0;
|
2017-08-22 16:01:06 +00:00
|
|
|
num_saved = num_files + 1;
|
2017-07-05 16:38:13 +00:00
|
|
|
mkpath(path, namep, g_buf, PATH_MAX);
|
2017-06-22 12:50:48 +00:00
|
|
|
|
2017-08-22 17:04:17 +00:00
|
|
|
if (nftw(g_buf, sum_bsizes, open_max, FTW_MOUNT | FTW_PHYS) == -1) {
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_NFTWFAIL_ID]);
|
2017-07-05 16:38:13 +00:00
|
|
|
dentp->blocks = sb.st_blocks;
|
2017-04-09 18:41:29 +00:00
|
|
|
} else
|
2017-07-05 16:38:13 +00:00
|
|
|
dentp->blocks = ent_blocks;
|
2017-08-22 16:01:06 +00:00
|
|
|
|
|
|
|
if (sb_path.st_dev == sb.st_dev)
|
|
|
|
dir_blocks += dentp->blocks;
|
|
|
|
else
|
|
|
|
num_files = num_saved;
|
2017-06-22 04:09:17 +00:00
|
|
|
} else {
|
2017-07-05 16:38:13 +00:00
|
|
|
dentp->blocks = sb.st_blocks;
|
2017-08-22 16:01:06 +00:00
|
|
|
dir_blocks += dentp->blocks;
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
|
|
|
}
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
++n;
|
2014-10-22 15:21:50 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 16:49:57 +00:00
|
|
|
/* Should never be null */
|
2017-05-19 14:38:22 +00:00
|
|
|
if (closedir(dirp) == -1) {
|
2017-12-17 17:38:55 +00:00
|
|
|
if (*dents) {
|
|
|
|
free(pnamebuf);
|
2017-04-20 20:16:00 +00:00
|
|
|
free(*dents);
|
2017-12-17 17:38:55 +00:00
|
|
|
}
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-04-20 20:16:00 +00:00
|
|
|
}
|
2017-05-19 14:38:22 +00:00
|
|
|
|
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
|
|
|
{
|
2017-12-17 17:38:55 +00:00
|
|
|
free(pnamebuf);
|
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-12-24 17:53:52 +00:00
|
|
|
dentfind(struct entry *dents, const char *fname, int n)
|
2014-10-22 18:05:59 +00:00
|
|
|
{
|
2017-04-10 12:47:12 +00:00
|
|
|
static int i;
|
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
if (!fname)
|
2017-12-24 15:33:23 +00:00
|
|
|
return 0;
|
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
DPRINTF_S(fname);
|
2017-04-02 08:48:54 +00:00
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
for (i = 0; i < n; ++i)
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(fname, 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
|
2017-12-24 17:53:52 +00:00
|
|
|
populate(char *path, char *oldname, 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
|
|
|
|
2017-08-23 12:43:22 +00:00
|
|
|
/* Can fail when permissions change while browsing.
|
|
|
|
* It's assumed that path IS a directory when we are here.
|
|
|
|
*/
|
2017-06-30 12:19:43 +00:00
|
|
|
if (access(path, R_OK) == -1)
|
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 */
|
2017-05-19 14:38:22 +00:00
|
|
|
if (setfilter(&re, fltr) != 0)
|
2015-07-01 23:56:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2017-06-22 12:53:44 +00:00
|
|
|
if (cfg.blkorder) {
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("calculating...");
|
2017-06-23 12:22:42 +00:00
|
|
|
refresh();
|
2017-06-22 12:53:44 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
#ifdef DEBUGMODE
|
|
|
|
struct timespec ts1, ts2;
|
2017-12-27 20:17:44 +00:00
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
clock_gettime(CLOCK_REALTIME, &ts1); /* Use CLOCK_MONOTONIC on FreeBSD */
|
|
|
|
#endif
|
|
|
|
|
2016-02-10 15:16:19 +00:00
|
|
|
ndents = dentfill(path, &dents, visible, &re);
|
2018-03-18 22:12:56 +00:00
|
|
|
regfree(&re);
|
2018-03-18 22:24:19 +00:00
|
|
|
if (ndents == 0)
|
|
|
|
return 0;
|
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
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
#ifdef DEBUGMODE
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ts2);
|
|
|
|
DPRINTF_U(ts2.tv_nsec - ts1.tv_nsec);
|
|
|
|
#endif
|
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
/* Find cur from history */
|
2017-12-24 17:53:52 +00:00
|
|
|
cur = dentfind(dents, oldname, ndents);
|
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
|
|
|
{
|
2018-04-25 18:53:31 +00:00
|
|
|
static char buf[NAME_MAX + 65] __attribute__ ((aligned));
|
2017-04-21 21:40:02 +00:00
|
|
|
static size_t ncols;
|
2017-12-19 18:03:27 +00:00
|
|
|
static int nlines, i;
|
2017-09-01 13:28:32 +00:00
|
|
|
static bool mode_changed;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-09-01 13:28:32 +00:00
|
|
|
mode_changed = FALSE;
|
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();
|
2018-01-13 20:13:30 +00:00
|
|
|
if (cfg.copymode)
|
|
|
|
if (g_crc != crc8fast((uchar *)dents, ndents * sizeof(struct entry))) {
|
|
|
|
cfg.copymode = 0;
|
|
|
|
DPRINTF_S("copymode off");
|
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-09-01 13:28:32 +00:00
|
|
|
/* Fail redraw if < than 10 columns */
|
|
|
|
if (COLS < 10) {
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("too few columns!");
|
2017-09-01 13:28:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Strip trailing slashes */
|
2018-05-09 11:27:01 +00:00
|
|
|
for (i = strlen(path) - 1; i > 0; --i)
|
2015-07-01 23:56:47 +00:00
|
|
|
if (path[i] == '/')
|
|
|
|
path[i] = '\0';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
|
|
|
DPRINTF_D(cur);
|
|
|
|
DPRINTF_S(path);
|
|
|
|
|
2017-06-21 18:21:53 +00:00
|
|
|
if (!realpath(path, g_buf)) {
|
2017-08-20 20:48:14 +00:00
|
|
|
printwarn();
|
2016-08-20 16:09:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-01-06 15:21:41 +00:00
|
|
|
|
2017-04-21 21:40:02 +00:00
|
|
|
ncols = COLS;
|
|
|
|
if (ncols > PATH_MAX)
|
|
|
|
ncols = PATH_MAX;
|
2017-09-01 13:28:32 +00:00
|
|
|
|
2017-09-01 14:00:25 +00:00
|
|
|
/* No text wrapping in cwd line */
|
2018-05-09 11:27:01 +00:00
|
|
|
/* Show CWD: - strlen(CWD) - 1 = 6 */
|
2017-09-01 14:00:25 +00:00
|
|
|
g_buf[ncols - 6] = '\0';
|
|
|
|
printw(CWD "%s\n\n", g_buf);
|
|
|
|
|
2017-09-01 13:28:32 +00:00
|
|
|
/* Fallback to light mode if less than 35 columns */
|
|
|
|
if (ncols < 35 && cfg.showdetail) {
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
printptr = &printent;
|
|
|
|
mode_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
2017-09-01 14:00:25 +00:00
|
|
|
/* Calculate the number of cols available to print entry name */
|
|
|
|
if (cfg.showdetail)
|
|
|
|
ncols -= 32;
|
|
|
|
else
|
|
|
|
ncols -= 5;
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2017-06-30 01:54:24 +00:00
|
|
|
if (cfg.showcolor) {
|
2017-06-30 12:20:38 +00:00
|
|
|
attron(COLOR_PAIR(1) | A_BOLD);
|
2017-06-30 01:54:24 +00:00
|
|
|
cfg.dircolor = 1;
|
|
|
|
}
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* 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)
|
2017-09-01 14:00:25 +00:00
|
|
|
printptr(&dents[i], i == cur, ncols);
|
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)
|
2017-09-01 14:00:25 +00:00
|
|
|
printptr(&dents[i], i == cur, ncols);
|
2015-07-01 23:56:47 +00:00
|
|
|
} else {
|
2017-05-19 14:38:22 +00:00
|
|
|
static int odd;
|
2017-06-15 14:04:56 +00:00
|
|
|
|
2017-05-19 14:38:22 +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)
|
2017-09-01 14:00:25 +00:00
|
|
|
printptr(&dents[i], i == cur, ncols);
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
2017-03-29 21:15:46 +00:00
|
|
|
|
2017-06-30 12:20:38 +00:00
|
|
|
/* Must reset e.g. no files in dir */
|
|
|
|
if (cfg.dircolor) {
|
|
|
|
attroff(COLOR_PAIR(1) | A_BOLD);
|
|
|
|
cfg.dircolor = 0;
|
|
|
|
}
|
|
|
|
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.showdetail) {
|
2017-03-30 13:24:18 +00:00
|
|
|
if (ndents) {
|
2017-07-02 10:42:30 +00:00
|
|
|
static char sort[9];
|
2017-04-01 12:31:54 +00:00
|
|
|
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.mtimeorder)
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(sort, "by time ", 9);
|
2017-06-20 14:58:53 +00:00
|
|
|
else if (cfg.sizeorder)
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(sort, "by size ", 9);
|
2017-04-01 12:31:54 +00:00
|
|
|
else
|
|
|
|
sort[0] = '\0';
|
2017-03-31 14:02:59 +00:00
|
|
|
|
2017-09-27 12:07:36 +00:00
|
|
|
/* We need to show filename as it may be truncated in directory listing */
|
2017-06-22 01:56:05 +00:00
|
|
|
if (!cfg.blkorder)
|
2018-04-25 18:53:31 +00:00
|
|
|
snprintf(buf, NAME_MAX + 65, "%d/%d %s[%s%s]",
|
2018-03-08 21:02:22 +00:00
|
|
|
cur + 1, ndents, sort, unescape(dents[cur].name, 0), get_file_sym(dents[cur].mode));
|
2017-06-21 18:21:53 +00:00
|
|
|
else {
|
2018-04-25 18:53:31 +00:00
|
|
|
i = snprintf(buf, 64, "%d/%d du: %s (%lu files) ", cur + 1, ndents, coolsize(dir_blocks << 9), num_files);
|
|
|
|
snprintf(buf + i, NAME_MAX, "vol: %s free [%s%s]",
|
2018-04-25 19:26:45 +00:00
|
|
|
coolsize(get_fs_info(path, FREE)), unescape(dents[cur].name, 0), get_file_sym(dents[cur].mode));
|
2017-06-21 18:21:53 +00:00
|
|
|
}
|
2017-04-10 04:51:44 +00:00
|
|
|
|
2017-12-19 18:03:27 +00:00
|
|
|
printmsg(buf);
|
2017-03-30 13:24:18 +00:00
|
|
|
} else
|
|
|
|
printmsg("0 items");
|
2017-03-29 21:15:46 +00:00
|
|
|
}
|
2017-09-01 13:28:32 +00:00
|
|
|
|
|
|
|
if (mode_changed) {
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
}
|
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-12-30 08:24:49 +00:00
|
|
|
static char path[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
static char newpath[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
static char lastdir[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
static char mark[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
static char fltr[NAME_MAX + 1] __attribute__ ((aligned));
|
|
|
|
static char oldname[NAME_MAX + 1] __attribute__ ((aligned));
|
2017-12-21 19:28:02 +00:00
|
|
|
char *dir, *tmp, *run = NULL, *env = NULL;
|
2016-01-07 10:26:44 +00:00
|
|
|
struct stat sb;
|
2018-04-22 14:13:18 +00:00
|
|
|
int r, fd, presel, ncp, copystartid = 0, copyendid = 0;
|
2017-04-08 05:44:51 +00:00
|
|
|
enum action sel = SEL_RUNARG + 1;
|
2017-10-01 10:43:35 +00:00
|
|
|
bool dir_changed = FALSE;
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, ipath, PATH_MAX);
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = newpath[0] = lastdir[0] = mark[0] = '\0';
|
2017-06-03 23:19:16 +00:00
|
|
|
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
|
|
|
else
|
|
|
|
presel = 0;
|
|
|
|
|
2018-01-04 12:16:06 +00:00
|
|
|
dents = xrealloc(dents, total_dents * sizeof(struct entry));
|
2018-01-04 00:53:20 +00:00
|
|
|
if (dents == NULL)
|
|
|
|
errexit();
|
|
|
|
DPRINTF_P(dents);
|
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
/* Allocate buffer to hold names */
|
2018-01-04 12:16:06 +00:00
|
|
|
pnamebuf = (char *)xrealloc(pnamebuf, NAMEBUF_INCR);
|
2018-01-04 00:53:20 +00:00
|
|
|
if (pnamebuf == NULL) {
|
|
|
|
free(dents);
|
2017-12-18 19:46:03 +00:00
|
|
|
errexit();
|
2018-01-04 00:53:20 +00:00
|
|
|
}
|
|
|
|
DPRINTF_P(pnamebuf);
|
2017-12-18 19:46:03 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
begin:
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2017-10-01 10:43:35 +00:00
|
|
|
if (dir_changed && inotify_wd >= 0) {
|
2017-08-20 20:48:14 +00:00
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
2017-10-01 10:43:35 +00:00
|
|
|
inotify_wd = -1;
|
|
|
|
dir_changed = FALSE;
|
|
|
|
}
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2017-10-01 10:43:35 +00:00
|
|
|
if (dir_changed && event_fd >= 0) {
|
2017-08-21 16:33:26 +00:00
|
|
|
close(event_fd);
|
2017-10-01 10:43:35 +00:00
|
|
|
event_fd = -1;
|
|
|
|
dir_changed = FALSE;
|
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
if (populate(path, oldname, fltr) == -1) {
|
2016-02-08 16:52:07 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2017-10-01 10:43:35 +00:00
|
|
|
if (inotify_wd == -1)
|
|
|
|
inotify_wd = inotify_add_watch(inotify_fd, path, INOTIFY_MASK);
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2017-10-01 10:43:35 +00:00
|
|
|
if (event_fd == -1) {
|
2017-10-08 01:42:12 +00:00
|
|
|
#if defined(O_EVTONLY)
|
2017-10-01 10:43:35 +00:00
|
|
|
event_fd = open(path, O_EVTONLY);
|
2017-10-08 01:42:12 +00:00
|
|
|
#else
|
|
|
|
event_fd = open(path, O_RDONLY);
|
|
|
|
#endif
|
2017-10-01 10:43:35 +00:00
|
|
|
if (event_fd >= 0)
|
2017-10-15 23:54:56 +00:00
|
|
|
EV_SET(&events_to_monitor[0], event_fd, EVFILT_VNODE, EV_ADD | EV_CLEAR, KQUEUE_FFLAGS, 0, path);
|
2017-10-01 10:43:35 +00:00
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
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-25 19:12:07 +00:00
|
|
|
/* Exit if parent has exited */
|
|
|
|
if (getppid() == 1)
|
|
|
|
_exit(0);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-06-03 23:19:16 +00:00
|
|
|
sel = nextsel(&run, &env, &presel);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-04-08 05:44:51 +00:00
|
|
|
switch (sel) {
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_BACK:
|
2014-10-10 10:14:55 +00:00
|
|
|
/* There is no going back */
|
2017-07-05 16:38:13 +00:00
|
|
|
if (istopdir(path)) {
|
2018-05-10 11:53:10 +00:00
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
goto nochange;
|
2017-04-01 21:20:56 +00:00
|
|
|
}
|
2017-05-19 14:38:22 +00:00
|
|
|
|
2015-07-02 00:07:09 +00:00
|
|
|
dir = xdirname(path);
|
2017-06-30 12:19:43 +00:00
|
|
|
if (access(dir, R_OK) == -1) {
|
2014-10-22 16:25:25 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-20 16:27:24 +00:00
|
|
|
|
2014-10-23 15:10:45 +00:00
|
|
|
/* Save history */
|
2017-12-24 17:53:52 +00:00
|
|
|
xstrlcpy(oldname, xbasename(path), NAME_MAX + 1);
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, dir, PATH_MAX);
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
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)
|
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);
|
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;
|
|
|
|
}
|
2017-12-12 21:02:45 +00:00
|
|
|
if (fstat(fd, &sb) == -1) {
|
2014-10-08 15:30:39 +00:00
|
|
|
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:
|
2017-06-30 12:19:43 +00:00
|
|
|
if (access(newpath, R_OK) == -1) {
|
2014-10-22 16:25:25 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2014-10-22 16:07:04 +00:00
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
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
|
|
|
{
|
2017-06-15 14:04:56 +00:00
|
|
|
/* If NNN_USE_EDITOR is set,
|
|
|
|
* open text in EDITOR
|
|
|
|
*/
|
2017-06-06 14:46:32 +00:00
|
|
|
if (editor) {
|
2017-07-02 10:42:30 +00:00
|
|
|
if (getmime(dents[cur].name)) {
|
2018-03-19 00:29:15 +00:00
|
|
|
spawn(editor, newpath, NULL, path, F_NORMAL);
|
2017-06-06 14:46:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-08-21 02:55:12 +00:00
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
/* Recognize and open plain
|
|
|
|
* text files with vi
|
|
|
|
*/
|
2017-08-22 17:04:17 +00:00
|
|
|
if (get_output(g_buf, MAX_CMD_LEN, "file", "-bi", newpath, 0) == NULL)
|
2017-06-06 14:46:32 +00:00
|
|
|
continue;
|
2017-04-05 16:48:21 +00:00
|
|
|
|
2017-06-06 14:46:32 +00:00
|
|
|
if (strstr(g_buf, "text/") == g_buf) {
|
2018-03-19 00:29:15 +00:00
|
|
|
spawn(editor, newpath, NULL, path, F_NORMAL);
|
2017-06-06 14:46:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
2017-04-23 17:42:54 +00:00
|
|
|
|
2017-06-05 18:26:38 +00:00
|
|
|
/* Invoke desktop opener as last resort */
|
2018-03-15 22:54:29 +00:00
|
|
|
spawn(utils[OPENER], newpath, NULL, NULL, F_NOWAIT | F_NOTRACE);
|
2017-06-05 18:26:38 +00:00
|
|
|
continue;
|
2017-04-01 07:26:25 +00:00
|
|
|
}
|
2014-10-22 15:50:30 +00:00
|
|
|
default:
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("unsupported file");
|
2014-10-22 15:50:30 +00:00
|
|
|
goto nochange;
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
2014-11-06 08:54:20 +00:00
|
|
|
case SEL_NEXT:
|
2016-02-10 15:16:19 +00:00
|
|
|
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;
|
2014-11-06 08:54:20 +00:00
|
|
|
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;
|
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:
|
2017-04-20 14:15:52 +00:00
|
|
|
{
|
2017-08-23 12:43:22 +00:00
|
|
|
char *input;
|
|
|
|
int truecd;
|
2017-04-25 04:31:52 +00:00
|
|
|
|
|
|
|
/* Save the program start dir */
|
2017-04-20 17:50:28 +00:00
|
|
|
tmp = getcwd(newpath, PATH_MAX);
|
2014-10-21 14:13:21 +00:00
|
|
|
if (tmp == NULL) {
|
2017-04-20 14:15:52 +00:00
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Switch to current path for readline(3) */
|
2017-04-20 14:15:52 +00:00
|
|
|
if (chdir(path) == -1) {
|
|
|
|
printwarn();
|
2014-10-21 14:13:21 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-05 04:55:59 +00:00
|
|
|
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2018-04-25 18:29:36 +00:00
|
|
|
tmp = readline("cd: ");
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-04-20 16:27:24 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Change back to program start dir */
|
2017-04-20 17:50:28 +00:00
|
|
|
if (chdir(newpath) == -1)
|
2017-04-20 14:15:52 +00:00
|
|
|
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);
|
2017-04-20 14:15:52 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
input = tmp;
|
2017-04-20 14:15:52 +00:00
|
|
|
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
|
|
|
}
|
2017-04-20 14:15:52 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
truecd = 0;
|
|
|
|
|
2017-04-05 04:55:59 +00:00
|
|
|
if (tmp[0] == '~') {
|
2017-04-25 04:31:52 +00:00
|
|
|
/* 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-08-22 17:04:17 +00:00
|
|
|
snprintf(newpath, PATH_MAX, "%s%s", home, tmp + 1);
|
2017-04-25 04:31:52 +00:00
|
|
|
else {
|
|
|
|
free(input);
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_NOHOME_ID]);
|
2017-06-11 04:15:50 +00:00
|
|
|
goto nochange;
|
2017-04-25 04:31:52 +00:00
|
|
|
}
|
2017-04-20 16:27:24 +00:00
|
|
|
} else if (tmp[0] == '-' && tmp[1] == '\0') {
|
2017-04-25 04:31:52 +00:00
|
|
|
if (lastdir[0] == '\0') {
|
|
|
|
free(input);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-24 13:23:03 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Switch to last visited dir */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(newpath, lastdir, PATH_MAX);
|
2017-04-25 04:31:52 +00:00
|
|
|
truecd = 1;
|
2017-04-24 13:23:03 +00:00
|
|
|
} else if ((r = all_dots(tmp))) {
|
|
|
|
if (r == 1) {
|
2017-04-25 04:31:52 +00:00
|
|
|
/* 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-07-02 10:42:30 +00:00
|
|
|
/* Show a message if already at / */
|
2017-07-05 16:38:13 +00:00
|
|
|
if (istopdir(path)) {
|
2017-07-02 10:42:30 +00:00
|
|
|
free(input);
|
2018-05-10 11:53:10 +00:00
|
|
|
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
--r; /* One . for the current dir */
|
2017-04-24 13:23:03 +00:00
|
|
|
dir = path;
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
/* Note: fd is used as a tmp variable here */
|
2017-06-17 06:58:21 +00:00
|
|
|
for (fd = 0; fd < r; ++fd) {
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Reached / ? */
|
2017-07-05 16:38:13 +00:00
|
|
|
if (istopdir(path)) {
|
2017-07-02 10:42:30 +00:00
|
|
|
/* Can't cd beyond / */
|
2017-04-24 13:23:03 +00:00
|
|
|
break;
|
2017-06-15 14:04:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dir = xdirname(dir);
|
2017-06-30 12:19:43 +00:00
|
|
|
if (access(dir, R_OK) == -1) {
|
2017-06-15 14:04:56 +00:00
|
|
|
printwarn();
|
|
|
|
free(input);
|
|
|
|
goto nochange;
|
2017-04-24 13:23:03 +00:00
|
|
|
}
|
2017-04-20 16:27:24 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 04:31:52 +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
|
|
|
|
*/
|
2017-04-25 04:31:52 +00:00
|
|
|
if (r == 1) {
|
2017-12-24 17:53:52 +00:00
|
|
|
xstrlcpy(oldname, xbasename(path), NAME_MAX + 1);
|
2017-04-25 04:31:52 +00:00
|
|
|
truecd = 2;
|
|
|
|
}
|
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(newpath, dir, PATH_MAX);
|
2017-04-25 04:31:52 +00:00
|
|
|
} 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);
|
|
|
|
|
2017-08-23 12:43:22 +00:00
|
|
|
if (!xdiraccess(newpath))
|
|
|
|
goto nochange;
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
if (truecd == 0) {
|
|
|
|
/* Probable change in dir */
|
|
|
|
/* No-op if it's the same directory */
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(path, newpath) == 0)
|
2017-04-25 04:31:52 +00:00
|
|
|
break;
|
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2017-04-25 04:31:52 +00:00
|
|
|
} else if (truecd == 1)
|
|
|
|
/* Sure change in dir */
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2017-04-25 04:31:52 +00:00
|
|
|
|
2017-04-08 08:16:03 +00:00
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Save the newly opted dir in path */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
2017-04-25 04:31:52 +00:00
|
|
|
|
2016-01-07 10:26:44 +00:00
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2014-10-22 15:56:31 +00:00
|
|
|
DPRINTF_S(path);
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2017-04-20 14:15:52 +00:00
|
|
|
}
|
2016-02-25 15:06:57 +00:00
|
|
|
case SEL_CDHOME:
|
2017-12-21 19:28:02 +00:00
|
|
|
dir = getenv("HOME");
|
|
|
|
if (dir == NULL) {
|
2016-02-25 15:06:57 +00:00
|
|
|
clearprompt();
|
|
|
|
goto nochange;
|
2017-07-02 18:58:09 +00:00
|
|
|
} // fallthrough
|
|
|
|
case SEL_CDBEGIN:
|
2017-12-21 19:28:02 +00:00
|
|
|
if (sel == SEL_CDBEGIN)
|
|
|
|
dir = ipath;
|
2017-04-25 04:31:52 +00:00
|
|
|
|
2017-12-21 19:28:02 +00:00
|
|
|
if (!xdiraccess(dir)) {
|
2016-02-25 15:06:57 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(path, dir) == 0) {
|
2017-04-25 04:31:52 +00:00
|
|
|
break;
|
2017-04-23 21:06:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
2017-04-23 21:06:49 +00:00
|
|
|
|
2017-12-21 19:28:02 +00:00
|
|
|
xstrlcpy(path, dir, PATH_MAX);
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2017-04-23 21:06:49 +00:00
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-04-23 21:06:49 +00:00
|
|
|
DPRINTF_S(path);
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
2017-04-23 21:06:49 +00:00
|
|
|
goto begin;
|
2017-08-20 11:17:23 +00:00
|
|
|
case SEL_CDLAST: // fallthrough
|
|
|
|
case SEL_VISIT:
|
|
|
|
if (sel == SEL_VISIT) {
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(mark, path) == 0)
|
2017-08-20 11:17:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
tmp = mark;
|
|
|
|
} else
|
|
|
|
tmp = lastdir;
|
|
|
|
|
|
|
|
if (tmp[0] == '\0') {
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("not set...");
|
2017-07-02 18:58:09 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-25 04:31:52 +00:00
|
|
|
|
2017-08-23 12:43:22 +00:00
|
|
|
if (!xdiraccess(tmp))
|
2017-04-25 04:31:52 +00:00
|
|
|
goto nochange;
|
|
|
|
|
2017-08-20 11:17:23 +00:00
|
|
|
xstrlcpy(newpath, tmp, PATH_MAX);
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2017-04-25 04:31:52 +00:00
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-04-08 08:16:03 +00:00
|
|
|
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:
|
2018-04-25 17:39:00 +00:00
|
|
|
tmp = xreadline(NULL, "key: ");
|
2018-03-03 13:49:06 +00:00
|
|
|
if (tmp == NULL || tmp[0] == '\0')
|
2017-08-22 19:16:58 +00:00
|
|
|
break;
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2018-03-03 13:49:06 +00:00
|
|
|
/* Interpret ~, - and & keys */
|
|
|
|
if ((tmp[1] == '\0') && (tmp[0] == '~' || tmp[0] == '-' || tmp[0] == '&')) {
|
|
|
|
presel = tmp[0];
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
if (get_bm_loc(tmp, newpath) == NULL) {
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_INVBM_ID]);
|
2017-12-24 09:51:38 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
if (!xdiraccess(newpath))
|
|
|
|
goto nochange;
|
2017-07-02 10:42:30 +00:00
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(path, newpath) == 0)
|
2017-07-02 10:42:30 +00:00
|
|
|
break;
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
oldname[0] = '\0';
|
2017-06-11 04:15:50 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
dir_changed = TRUE;
|
2017-06-11 04:15:50 +00:00
|
|
|
|
|
|
|
/* Save the newly opted dir in path */
|
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
|
|
|
|
|
|
|
/* Reset filter */
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-06-11 04:15:50 +00:00
|
|
|
DPRINTF_S(path);
|
|
|
|
|
2017-06-20 14:58:53 +00:00
|
|
|
if (cfg.filtermode)
|
2017-06-03 23:19:16 +00:00
|
|
|
presel = FILTER;
|
2017-04-08 08:16:03 +00:00
|
|
|
goto begin;
|
2017-09-01 14:27:36 +00:00
|
|
|
case SEL_PIN:
|
2017-08-20 11:17:23 +00:00
|
|
|
xstrlcpy(mark, path, PATH_MAX);
|
|
|
|
printmsg(mark);
|
|
|
|
goto nochange;
|
2017-12-12 20:16:50 +00:00
|
|
|
case SEL_FLTR:
|
|
|
|
presel = filterentries(path);
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2017-12-12 20:16:50 +00:00
|
|
|
DPRINTF_S(fltr);
|
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
2017-12-12 20:16:50 +00:00
|
|
|
goto nochange;
|
|
|
|
case SEL_MFLTR:
|
|
|
|
cfg.filtermode ^= 1;
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2018-02-13 07:58:18 +00:00
|
|
|
else {
|
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
copycurname();
|
|
|
|
|
|
|
|
/* Start watching the directory */
|
2018-01-17 14:52:07 +00:00
|
|
|
goto begin;
|
2018-02-13 07:58:18 +00:00
|
|
|
}
|
2017-12-12 20:16:50 +00:00
|
|
|
goto nochange;
|
|
|
|
case SEL_SEARCH:
|
|
|
|
spawn(player, path, "search", NULL, F_NORMAL);
|
|
|
|
break;
|
2016-02-25 14:54:41 +00:00
|
|
|
case SEL_TOGGLEDOT:
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.showhidden ^= 1;
|
|
|
|
initfilter(cfg.showhidden, &ifilter);
|
2017-12-24 15:50:36 +00:00
|
|
|
copyfilter();
|
2016-02-25 14:54:41 +00:00
|
|
|
goto begin;
|
2017-03-29 20:21:52 +00:00
|
|
|
case SEL_DETAIL:
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.showdetail ^= 1;
|
2017-08-22 17:04:17 +00:00
|
|
|
cfg.showdetail ? (printptr = &printent_long) : (printptr = &printent);
|
2017-03-30 05:14:26 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
2017-03-29 20:21:52 +00:00
|
|
|
goto begin;
|
2017-04-02 23:35:14 +00:00
|
|
|
case SEL_STATS:
|
2017-05-15 12:52:00 +00:00
|
|
|
if (ndents > 0) {
|
2017-12-24 17:53:52 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
if (lstat(newpath, &sb) == -1) {
|
2017-05-15 12:52:00 +00:00
|
|
|
if (dents)
|
|
|
|
dentfree(dents);
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-05-15 12:52:00 +00:00
|
|
|
} else {
|
2017-12-24 17:53:52 +00:00
|
|
|
if (show_stats(newpath, dents[cur].name, &sb) < 0) {
|
2017-08-22 19:16:58 +00:00
|
|
|
printwarn();
|
2017-05-15 12:52:00 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-22 10:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-22 07:20:02 +00:00
|
|
|
break;
|
2017-09-27 14:49:42 +00:00
|
|
|
case SEL_LIST: // fallthrough
|
|
|
|
case SEL_EXTRACT: // fallthrough
|
2017-07-02 18:58:09 +00:00
|
|
|
case SEL_MEDIA: // fallthrough
|
2017-04-21 18:26:48 +00:00
|
|
|
case SEL_FMEDIA:
|
2017-05-15 12:52:00 +00:00
|
|
|
if (ndents > 0) {
|
2017-12-24 17:53:52 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
2017-04-21 18:26:48 +00:00
|
|
|
|
2017-09-27 14:49:42 +00:00
|
|
|
if (sel == SEL_MEDIA || sel == SEL_FMEDIA)
|
2017-12-24 17:53:52 +00:00
|
|
|
r = show_mediainfo(newpath, run);
|
2017-09-27 14:49:42 +00:00
|
|
|
else
|
2017-12-24 17:53:52 +00:00
|
|
|
r = handle_archive(newpath, run, path);
|
2017-09-27 14:49:42 +00:00
|
|
|
|
|
|
|
if (r == -1) {
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(newpath, "missing ", PATH_MAX);
|
2017-09-27 14:49:42 +00:00
|
|
|
if (sel == SEL_MEDIA || sel == SEL_FMEDIA)
|
2017-12-24 18:58:12 +00:00
|
|
|
xstrlcpy(newpath + 8, utils[cfg.metaviewer], 32);
|
2017-09-27 16:37:04 +00:00
|
|
|
else
|
2018-02-24 15:15:50 +00:00
|
|
|
xstrlcpy(newpath + 8, utils[ATOOL], 32);
|
2017-09-27 14:49:42 +00:00
|
|
|
|
2017-12-24 18:58:12 +00:00
|
|
|
printmsg(newpath);
|
2017-05-15 12:52:00 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2018-04-25 16:26:13 +00:00
|
|
|
|
|
|
|
/* In case of successful archive extract, reload contents */
|
|
|
|
if (sel == SEL_EXTRACT) {
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
|
|
|
|
/* Save current */
|
|
|
|
copycurname();
|
|
|
|
|
|
|
|
/* Repopulate as directory content may have changed */
|
|
|
|
goto begin;
|
|
|
|
}
|
2017-04-22 07:20:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2017-04-12 16:48:03 +00:00
|
|
|
case SEL_DFB:
|
2017-04-22 07:20:02 +00:00
|
|
|
if (!desktop_manager) {
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("set NNN_DE_FILE_MANAGER");
|
2017-04-12 16:48:03 +00:00
|
|
|
goto nochange;
|
2017-04-22 07:20:02 +00:00
|
|
|
}
|
2017-04-12 16:48:03 +00:00
|
|
|
|
2018-03-15 22:54:29 +00:00
|
|
|
spawn(desktop_manager, path, NULL, path, F_NOWAIT | F_NOTRACE);
|
2017-04-22 07:20:02 +00:00
|
|
|
break;
|
2017-03-29 20:21:52 +00:00
|
|
|
case SEL_FSIZE:
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.sizeorder ^= 1;
|
|
|
|
cfg.mtimeorder = 0;
|
2017-06-22 01:56:05 +00:00
|
|
|
cfg.blkorder = 0;
|
2018-01-13 20:13:30 +00:00
|
|
|
cfg.copymode = 0;
|
2017-04-09 18:41:29 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
2017-04-09 18:41:29 +00:00
|
|
|
goto begin;
|
|
|
|
case SEL_BSIZE:
|
2017-06-22 01:56:05 +00:00
|
|
|
cfg.blkorder ^= 1;
|
|
|
|
if (cfg.blkorder) {
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.showdetail = 1;
|
2017-04-11 04:47:50 +00:00
|
|
|
printptr = &printent_long;
|
|
|
|
}
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.mtimeorder = 0;
|
|
|
|
cfg.sizeorder = 0;
|
2018-01-13 20:13:30 +00:00
|
|
|
cfg.copymode = 0;
|
2017-03-29 20:21:52 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
2017-03-29 20:21:52 +00:00
|
|
|
goto begin;
|
2015-01-31 22:02:59 +00:00
|
|
|
case SEL_MTIME:
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.mtimeorder ^= 1;
|
|
|
|
cfg.sizeorder = 0;
|
2017-06-22 01:56:05 +00:00
|
|
|
cfg.blkorder = 0;
|
2018-01-13 20:13:30 +00:00
|
|
|
cfg.copymode = 0;
|
2015-07-12 23:56:51 +00:00
|
|
|
/* Save current */
|
2016-02-10 15:16:19 +00:00
|
|
|
if (ndents > 0)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
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)
|
2017-12-24 17:53:52 +00:00
|
|
|
copycurname();
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2017-03-30 15:47:00 +00:00
|
|
|
case SEL_COPY:
|
2018-04-16 20:52:23 +00:00
|
|
|
if (!(cfg.noxdisplay || copier))
|
|
|
|
printmsg(messages[STR_COPY_ID]);
|
|
|
|
else if (ndents) {
|
2018-01-13 20:13:30 +00:00
|
|
|
if (cfg.copymode) {
|
2018-01-28 06:34:56 +00:00
|
|
|
r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
2018-04-22 14:13:18 +00:00
|
|
|
if (!appendfpath(newpath, r))
|
2018-01-13 20:13:30 +00:00
|
|
|
goto nochange;
|
2018-04-22 14:13:18 +00:00
|
|
|
++ncp;
|
2018-01-28 06:34:56 +00:00
|
|
|
printmsg(newpath);
|
|
|
|
} else if (cfg.quote) {
|
|
|
|
g_buf[0] = '\'';
|
|
|
|
r = mkpath(path, dents[cur].name, g_buf + 1, PATH_MAX);
|
|
|
|
g_buf[r] = '\'';
|
|
|
|
g_buf[r + 1] = '\0';
|
|
|
|
|
2018-02-24 02:19:59 +00:00
|
|
|
if (cfg.noxdisplay)
|
|
|
|
writecp(g_buf, r + 1); /* Truncate NULL from end */
|
|
|
|
else
|
2018-04-14 09:17:34 +00:00
|
|
|
spawn(copier, g_buf, NULL, NULL, F_NOTRACE);
|
2018-02-24 02:19:59 +00:00
|
|
|
|
2018-01-29 15:19:38 +00:00
|
|
|
g_buf[r] = '\0';
|
|
|
|
printmsg(g_buf + 1);
|
2018-01-28 06:34:56 +00:00
|
|
|
} else {
|
2018-02-24 02:19:59 +00:00
|
|
|
r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
|
|
|
if (cfg.noxdisplay)
|
|
|
|
writecp(newpath, r - 1); /* Truncate NULL from end */
|
|
|
|
else
|
2018-04-14 09:17:34 +00:00
|
|
|
spawn(copier, newpath, NULL, NULL, F_NOTRACE);
|
2018-01-28 06:34:56 +00:00
|
|
|
printmsg(newpath);
|
|
|
|
}
|
2018-04-16 20:52:23 +00:00
|
|
|
}
|
2018-01-13 20:13:30 +00:00
|
|
|
goto nochange;
|
|
|
|
case SEL_COPYMUL:
|
2018-04-16 20:52:23 +00:00
|
|
|
if (!(cfg.noxdisplay || copier))
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_COPY_ID]);
|
2018-04-16 20:52:23 +00:00
|
|
|
else if (ndents) {
|
|
|
|
cfg.copymode ^= 1;
|
|
|
|
if (cfg.copymode) {
|
|
|
|
g_crc = crc8fast((uchar *)dents, ndents * sizeof(struct entry));
|
|
|
|
copystartid = cur;
|
|
|
|
copybufpos = 0;
|
2018-04-22 14:13:18 +00:00
|
|
|
ncp = 0;
|
2018-04-16 20:52:23 +00:00
|
|
|
printmsg("multi-copy on");
|
|
|
|
DPRINTF_S("copymode on");
|
|
|
|
} else {
|
2018-04-22 14:13:18 +00:00
|
|
|
if (!ncp) { /* Handle range selection */
|
2018-04-16 20:52:23 +00:00
|
|
|
if (cur < copystartid) {
|
|
|
|
copyendid = copystartid;
|
|
|
|
copystartid = cur;
|
|
|
|
} else
|
|
|
|
copyendid = cur;
|
|
|
|
|
|
|
|
if (copystartid < copyendid) {
|
2018-04-22 14:13:18 +00:00
|
|
|
for (r = copystartid; r <= copyendid; ++r)
|
|
|
|
if (!appendfpath(newpath, mkpath(path, dents[r].name, newpath, PATH_MAX)))
|
|
|
|
goto nochange;
|
2018-04-16 20:52:23 +00:00
|
|
|
|
|
|
|
snprintf(newpath, PATH_MAX, "%d files copied", copyendid - copystartid + 1);
|
|
|
|
printmsg(newpath);
|
2018-01-13 20:13:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-22 14:13:18 +00:00
|
|
|
if (copybufpos) { /* File path(s) written to the buffer */
|
2018-04-16 20:52:23 +00:00
|
|
|
if (cfg.noxdisplay)
|
|
|
|
writecp(pcopybuf, copybufpos - 1); /* Truncate NULL from end */
|
|
|
|
else
|
|
|
|
spawn(copier, pcopybuf, NULL, NULL, F_NOTRACE);
|
2018-04-22 14:13:18 +00:00
|
|
|
|
|
|
|
if (ncp) /* Some files cherry picked */
|
|
|
|
{
|
|
|
|
snprintf(newpath, PATH_MAX, "%d files copied", ncp);
|
|
|
|
printmsg(newpath);
|
|
|
|
}
|
2018-04-16 20:52:23 +00:00
|
|
|
} else
|
|
|
|
printmsg("multi-copy off");
|
|
|
|
}
|
2018-01-13 20:13:30 +00:00
|
|
|
}
|
2017-03-30 15:47:00 +00:00
|
|
|
goto nochange;
|
2018-01-28 06:03:12 +00:00
|
|
|
case SEL_QUOTE:
|
|
|
|
cfg.quote ^= 1;
|
|
|
|
DPRINTF_D(cfg.quote);
|
|
|
|
if (cfg.quote)
|
|
|
|
printmsg("quotes on");
|
|
|
|
else
|
|
|
|
printmsg("quotes off");
|
|
|
|
goto nochange;
|
2018-04-25 17:07:59 +00:00
|
|
|
case SEL_OPEN: // fallthrough
|
2018-04-24 23:34:37 +00:00
|
|
|
case SEL_ARCHIVE: // fallthrough
|
2017-09-10 07:35:25 +00:00
|
|
|
case SEL_NEW:
|
2018-04-25 17:07:59 +00:00
|
|
|
if (sel == SEL_OPEN)
|
|
|
|
tmp = xreadline(NULL, "open with: ");
|
|
|
|
else
|
|
|
|
tmp = xreadline(NULL, "name: ");
|
2017-12-25 10:25:53 +00:00
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
if (tmp == NULL || tmp[0] == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Allow only relative, same dir paths */
|
2018-05-09 11:27:01 +00:00
|
|
|
if (tmp[0] == '/' || strcmp(xbasename(tmp), tmp) != 0) {
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_INPUT_ID]);
|
2017-09-10 07:35:25 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2017-12-25 10:25:53 +00:00
|
|
|
if (sel == SEL_OPEN) {
|
2018-01-14 04:48:53 +00:00
|
|
|
printprompt("press 'c' for cli mode");
|
2017-12-25 10:25:53 +00:00
|
|
|
cleartimeout();
|
|
|
|
r = getch();
|
|
|
|
settimeout();
|
|
|
|
if (r == 'c')
|
|
|
|
r = F_NORMAL;
|
|
|
|
else
|
2018-01-07 21:57:41 +00:00
|
|
|
r = F_NOWAIT | F_NOTRACE;
|
2017-12-25 10:25:53 +00:00
|
|
|
|
|
|
|
mkpath(path, dents[cur].name, newpath, PATH_MAX);
|
|
|
|
spawn(tmp, newpath, NULL, path, r);
|
2018-04-24 23:34:37 +00:00
|
|
|
continue;
|
|
|
|
} else if (sel == SEL_ARCHIVE) {
|
|
|
|
/* newpath is used as temporary buffer */
|
|
|
|
if (!get_output(newpath, PATH_MAX, "which", utils[APACK], NULL, 0)) {
|
|
|
|
printmsg("apack missing");
|
|
|
|
continue;
|
|
|
|
}
|
2017-12-25 10:25:53 +00:00
|
|
|
|
2018-04-24 23:34:37 +00:00
|
|
|
spawn(utils[APACK], tmp, dents[cur].name, path, F_NORMAL);
|
2018-04-25 16:26:13 +00:00
|
|
|
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
|
|
|
|
/* Save current */
|
|
|
|
copycurname();
|
|
|
|
|
|
|
|
/* Repopulate as directory content may have changed */
|
|
|
|
goto begin;
|
2017-12-25 10:25:53 +00:00
|
|
|
}
|
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
/* Open the descriptor to currently open directory */
|
|
|
|
fd = open(path, O_RDONLY | O_DIRECTORY);
|
|
|
|
if (fd == -1) {
|
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if another file with same name exists */
|
|
|
|
if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) {
|
2018-01-14 04:48:53 +00:00
|
|
|
printmsg("entry exists");
|
2017-09-10 07:35:25 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if it's a dir or file */
|
2018-01-14 06:41:46 +00:00
|
|
|
printprompt("press 'f'(ile) or 'd'(ir)");
|
2017-09-10 07:35:25 +00:00
|
|
|
cleartimeout();
|
|
|
|
r = getch();
|
|
|
|
settimeout();
|
|
|
|
if (r == 'f') {
|
2017-12-27 20:17:44 +00:00
|
|
|
r = openat(fd, tmp, O_CREAT, 0666);
|
2017-09-10 07:35:25 +00:00
|
|
|
close(r);
|
|
|
|
} else if (r == 'd')
|
2017-12-27 20:17:44 +00:00
|
|
|
r = mkdirat(fd, tmp, 0777);
|
2017-09-10 07:35:25 +00:00
|
|
|
else {
|
|
|
|
close(fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == -1) {
|
|
|
|
printwarn();
|
|
|
|
close(fd);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2017-12-24 17:53:52 +00:00
|
|
|
xstrlcpy(oldname, tmp, NAME_MAX + 1);
|
2017-09-10 07:35:25 +00:00
|
|
|
goto begin;
|
2017-08-22 19:16:58 +00:00
|
|
|
case SEL_RENAME:
|
|
|
|
if (ndents <= 0)
|
|
|
|
break;
|
|
|
|
|
2018-04-25 17:07:59 +00:00
|
|
|
tmp = xreadline(dents[cur].name, "");
|
2017-08-24 01:34:56 +00:00
|
|
|
if (tmp == NULL || tmp[0] == '\0')
|
2017-08-22 19:16:58 +00:00
|
|
|
break;
|
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
/* Allow only relative, same dir paths */
|
2018-05-09 11:27:01 +00:00
|
|
|
if (tmp[0] == '/' || strcmp(xbasename(tmp), tmp) != 0) {
|
2018-01-14 06:41:46 +00:00
|
|
|
printmsg(messages[STR_INPUT_ID]);
|
2017-08-22 19:16:58 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip renaming to same name */
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(tmp, dents[cur].name) == 0)
|
2017-08-22 19:16:58 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Open the descriptor to currently open directory */
|
2017-08-22 21:58:26 +00:00
|
|
|
fd = open(path, O_RDONLY | O_DIRECTORY);
|
2017-08-22 19:16:58 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
printwarn();
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if another file with same name exists */
|
|
|
|
if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) {
|
|
|
|
/* File with the same name exists */
|
2018-01-14 04:48:53 +00:00
|
|
|
printprompt("press 'y' to overwrite");
|
2017-08-24 01:34:56 +00:00
|
|
|
cleartimeout();
|
|
|
|
r = getch();
|
|
|
|
settimeout();
|
|
|
|
if (r != 'y') {
|
2017-08-22 19:16:58 +00:00
|
|
|
close(fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rename the file */
|
2017-12-12 21:02:45 +00:00
|
|
|
if (renameat(fd, dents[cur].name, fd, tmp) != 0) {
|
2017-08-22 19:16:58 +00:00
|
|
|
printwarn();
|
|
|
|
close(fd);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2017-12-24 17:53:52 +00:00
|
|
|
xstrlcpy(oldname, tmp, NAME_MAX + 1);
|
2017-08-22 19:16:58 +00:00
|
|
|
goto begin;
|
2018-02-24 14:16:58 +00:00
|
|
|
case SEL_RENAMEALL:
|
2018-02-24 15:15:50 +00:00
|
|
|
if (!get_output(g_buf, MAX_CMD_LEN, "which", utils[VIDIR], NULL, 0)) {
|
2018-02-24 14:16:58 +00:00
|
|
|
printmsg("vidir missing");
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2018-03-19 00:29:15 +00:00
|
|
|
spawn(utils[VIDIR], ".", NULL, path, F_NORMAL);
|
2018-02-24 14:16:58 +00:00
|
|
|
|
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
copycurname();
|
|
|
|
goto begin;
|
2017-04-03 17:03:46 +00:00
|
|
|
case SEL_HELP:
|
2017-08-11 20:12:55 +00:00
|
|
|
show_help(path);
|
2018-03-31 15:28:13 +00:00
|
|
|
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2017-04-22 07:20:02 +00:00
|
|
|
break;
|
2018-03-31 15:28:13 +00:00
|
|
|
case SEL_RUN: // fallthrough
|
2018-03-19 00:02:16 +00:00
|
|
|
case SEL_RUNSCRIPT:
|
2015-11-20 15:42:33 +00:00
|
|
|
run = xgetenv(env, run);
|
2018-03-16 17:16:03 +00:00
|
|
|
|
2018-03-19 00:02:16 +00:00
|
|
|
if (sel == SEL_RUNSCRIPT) {
|
|
|
|
tmp = getenv("NNN_SCRIPT");
|
|
|
|
if (tmp)
|
|
|
|
spawn(run, tmp, NULL, path, F_NORMAL | F_SIGINT);
|
|
|
|
} else {
|
|
|
|
spawn(run, NULL, NULL, path, F_NORMAL | F_MARKER);
|
|
|
|
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
}
|
2018-03-16 17:16:03 +00:00
|
|
|
|
2018-02-15 13:51:58 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents > 0)
|
|
|
|
copycurname();
|
2018-03-16 17:16:03 +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);
|
2018-05-09 11:27:01 +00:00
|
|
|
if ((!run || !run[0]) && (strcmp("VISUAL", env) == 0))
|
2018-04-08 00:43:33 +00:00
|
|
|
run = editor ? editor : xgetenv("EDITOR", "vi");
|
2017-07-02 10:42:30 +00:00
|
|
|
spawn(run, dents[cur].name, NULL, path, F_NORMAL);
|
2015-03-12 14:12:01 +00:00
|
|
|
break;
|
2018-03-30 15:53:28 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
case SEL_LOCK:
|
|
|
|
spawn(player, "", "screensaver", NULL, F_NORMAL | F_SIGINT);
|
|
|
|
break;
|
|
|
|
#endif
|
2017-12-12 20:16:50 +00:00
|
|
|
case SEL_CDQUIT:
|
|
|
|
{
|
|
|
|
char *tmpfile = "/tmp/nnn";
|
|
|
|
|
|
|
|
tmp = getenv("NNN_TMPFILE");
|
|
|
|
if (tmp)
|
|
|
|
tmpfile = tmp;
|
|
|
|
|
|
|
|
FILE *fp = fopen(tmpfile, "w");
|
|
|
|
|
|
|
|
if (fp) {
|
|
|
|
fprintf(fp, "cd \"%s\"", path);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fall through to exit */
|
|
|
|
} // fallthrough
|
|
|
|
case SEL_QUIT:
|
|
|
|
dentfree(dents);
|
|
|
|
return;
|
2018-03-05 12:45:42 +00:00
|
|
|
} /* switch (sel) */
|
|
|
|
|
2015-11-20 14:14:58 +00:00
|
|
|
/* Screensaver */
|
|
|
|
if (idletimeout != 0 && idle == idletimeout) {
|
|
|
|
idle = 0;
|
2017-08-22 17:04:17 +00:00
|
|
|
spawn(player, "", "screensaver", NULL, F_NORMAL | F_SIGINT);
|
2015-11-20 14:14:58 +00:00
|
|
|
}
|
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-12-24 13:16:56 +00:00
|
|
|
printf("usage: nnn [-b key] [-c N] [-e] [-i] [-l]\n\
|
|
|
|
[-p 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\
|
2017-12-24 13:16:56 +00:00
|
|
|
PATH start dir [default: current dir]\n\n\
|
2017-04-14 18:44:25 +00:00
|
|
|
optional arguments:\n\
|
2017-12-24 09:51:38 +00:00
|
|
|
-b key specify bookmark key to open\n\
|
2017-07-03 04:16:37 +00:00
|
|
|
-c N specify dir color, disables if N>7\n\
|
|
|
|
-e use exiftool instead of mediainfo\n\
|
|
|
|
-i start in navigate-as-you-type mode\n\
|
|
|
|
-l start in light mode (fewer details)\n\
|
|
|
|
-p nlay path to custom nlay\n\
|
|
|
|
-S start in disk usage analyzer mode\n\
|
|
|
|
-v show program version and exit\n\
|
|
|
|
-h show this help and exit\n\n\
|
2017-09-08 19:40:21 +00:00
|
|
|
Version: %s\n%s\n", VERSION, GENERAL_INFO);
|
2017-04-14 18:44:25 +00:00
|
|
|
exit(0);
|
2015-11-26 16:00:26 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2017-12-30 08:24:49 +00:00
|
|
|
static char cwd[PATH_MAX] __attribute__ ((aligned));
|
2017-12-24 09:51:38 +00:00
|
|
|
char *ipath = NULL, *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 */
|
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-12-24 09:51:38 +00:00
|
|
|
while ((opt = getopt(argc, argv, "Slib:c:ep:vh")) != -1) {
|
2017-04-01 05:18:18 +00:00
|
|
|
switch (opt) {
|
2017-04-14 11:20:16 +00:00
|
|
|
case 'S':
|
2017-06-22 01:56:05 +00:00
|
|
|
cfg.blkorder = 1;
|
2017-06-06 15:31:28 +00:00
|
|
|
break;
|
|
|
|
case 'l':
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.showdetail = 0;
|
2017-06-06 15:31:28 +00:00
|
|
|
printptr = &printent;
|
2017-04-01 05:18:18 +00:00
|
|
|
break;
|
2017-06-04 06:15:17 +00:00
|
|
|
case 'i':
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.filtermode = 1;
|
2017-06-03 23:19:16 +00:00
|
|
|
break;
|
2017-12-24 09:51:38 +00:00
|
|
|
case 'b':
|
|
|
|
ipath = optarg;
|
|
|
|
break;
|
2017-07-02 20:56:47 +00:00
|
|
|
case 'c':
|
2017-10-01 13:29:43 +00:00
|
|
|
if (atoi(optarg) > 7)
|
2017-07-02 20:56:47 +00:00
|
|
|
cfg.showcolor = 0;
|
2017-09-08 20:46:10 +00:00
|
|
|
else
|
|
|
|
cfg.color = (uchar)atoi(optarg);
|
2017-06-30 01:54:24 +00:00
|
|
|
break;
|
2017-07-02 18:27:41 +00:00
|
|
|
case 'e':
|
2018-02-24 15:15:50 +00:00
|
|
|
cfg.metaviewer = EXIFTOOL;
|
2017-07-02 18:27:41 +00:00
|
|
|
break;
|
2017-05-14 15:30:46 +00:00
|
|
|
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;
|
2017-06-04 18:46:43 +00:00
|
|
|
case 'h': // fallthrough
|
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
|
|
|
}
|
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
/* Parse bookmarks string, if available */
|
|
|
|
bmstr = getenv("NNN_BMS");
|
|
|
|
if (bmstr)
|
|
|
|
parsebmstr(bmstr);
|
|
|
|
|
|
|
|
if (ipath) { /* Open a bookmark directly */
|
|
|
|
if (get_bm_loc(ipath, cwd) == NULL) {
|
2018-01-14 06:41:46 +00:00
|
|
|
fprintf(stderr, "%s\n", messages[STR_INVBM_ID]);
|
2017-12-24 09:51:38 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ipath = cwd;
|
|
|
|
} else if (argc == optind) {
|
2017-04-01 05:18:18 +00:00
|
|
|
/* Start in the current directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
ipath = getcwd(cwd, PATH_MAX);
|
2014-10-21 10:29:41 +00:00
|
|
|
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-06-30 20:03:34 +00:00
|
|
|
/* Increase current open file descriptor limit */
|
2017-04-11 04:47:50 +00:00
|
|
|
open_max = max_openfds();
|
|
|
|
|
2018-04-04 01:03:26 +00:00
|
|
|
if (getuid() == 0 || getenv("NNN_SHOW_HIDDEN"))
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.showhidden = 1;
|
|
|
|
initfilter(cfg.showhidden, &ifilter);
|
2017-04-01 05:18:18 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
/* Initialize inotify */
|
|
|
|
inotify_fd = inotify_init1(IN_NONBLOCK);
|
|
|
|
if (inotify_fd < 0) {
|
2017-12-24 15:52:54 +00:00
|
|
|
fprintf(stderr, "inotify init! %s\n", strerror(errno));
|
2017-08-20 20:48:14 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
kq = kqueue();
|
|
|
|
if (kq < 0) {
|
2017-12-24 15:52:54 +00:00
|
|
|
fprintf(stderr, "kqueue init! %s\n", strerror(errno));
|
2017-08-21 16:33:26 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtimeout.tv_sec = 0;
|
2017-10-08 01:42:12 +00:00
|
|
|
gtimeout.tv_nsec = 0;
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-06 14:46:32 +00:00
|
|
|
/* Edit text in EDITOR, if opted */
|
2018-04-08 00:43:33 +00:00
|
|
|
if (getenv("NNN_USE_EDITOR")) {
|
|
|
|
editor = xgetenv("VISUAL", NULL);
|
|
|
|
if (!editor)
|
|
|
|
editor = xgetenv("EDITOR", "vi");
|
|
|
|
}
|
2016-08-21 08:18:19 +00:00
|
|
|
|
2017-06-04 18:46:43 +00:00
|
|
|
/* Set player if not set already */
|
|
|
|
if (!player)
|
2018-02-24 15:15:50 +00:00
|
|
|
player = utils[NLAY];
|
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-06-04 18:46:43 +00:00
|
|
|
/* Get screensaver wait time, if set; copier used as tmp var */
|
|
|
|
copier = getenv("NNN_IDLE_TIMEOUT");
|
|
|
|
if (copier)
|
|
|
|
idletimeout = abs(atoi(copier));
|
|
|
|
|
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
|
|
|
|
2018-01-28 06:03:12 +00:00
|
|
|
/* Enable quotes if opted */
|
|
|
|
if (getenv("NNN_QUOTE_ON"))
|
|
|
|
cfg.quote = 1;
|
|
|
|
|
2018-02-24 02:19:59 +00:00
|
|
|
/* Check if X11 is available */
|
2018-03-04 05:07:18 +00:00
|
|
|
if (getenv("NNN_NO_X")) {
|
2018-02-24 02:19:59 +00:00
|
|
|
cfg.noxdisplay = 1;
|
|
|
|
|
2018-03-04 05:07:18 +00:00
|
|
|
struct passwd *pass = getpwuid(getuid());
|
|
|
|
xstrlcpy(g_cppath, "/tmp/nnncp", 11);
|
|
|
|
xstrlcpy(g_cppath + 10, pass->pw_name, 33);
|
|
|
|
}
|
|
|
|
|
2015-11-03 17:48:39 +00:00
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
/* Test initial path */
|
2017-08-23 12:43:22 +00:00
|
|
|
if (!xdiraccess(ipath)) {
|
2015-11-26 15:54:54 +00:00
|
|
|
fprintf(stderr, "%s: %s\n", ipath, strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-06-25 04:33:30 +00:00
|
|
|
/* Set locale */
|
|
|
|
setlocale(LC_ALL, "");
|
2018-01-13 20:13:30 +00:00
|
|
|
crc8init();
|
|
|
|
|
2017-06-19 16:51:08 +00:00
|
|
|
#ifdef DEBUGMODE
|
|
|
|
enabledbg();
|
|
|
|
#endif
|
2014-10-07 11:37:23 +00:00
|
|
|
initcurses();
|
2014-10-09 22:35:47 +00:00
|
|
|
browse(ipath, ifilter);
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2017-08-20 20:48:14 +00:00
|
|
|
|
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
/* Shutdown inotify */
|
|
|
|
if (inotify_wd >= 0)
|
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
|
|
|
close(inotify_fd);
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
if (event_fd >= 0)
|
|
|
|
close(event_fd);
|
|
|
|
close(kq);
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2017-08-21 16:33:26 +00:00
|
|
|
|
2017-06-19 16:51:08 +00:00
|
|
|
#ifdef DEBUGMODE
|
|
|
|
disabledbg();
|
|
|
|
#endif
|
2015-11-26 15:54:54 +00:00
|
|
|
exit(0);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|