nnn/src/nnn.c

4667 lines
102 KiB
C
Raw Normal View History

2017-08-24 15:18:01 +00:00
/*
2019-04-21 18:29:51 +00:00
2018-10-04 19:08:57 +00:00
* BSD 2-Clause License
*
2019-02-23 09:25:01 +00:00
* Copyright (C) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
* Copyright (C) 2014-2016, Dimitris Papastamos <sin@2f30.org>
* Copyright (C) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
2018-09-07 15:50:10 +00:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
2018-10-04 19:08:57 +00:00
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
2018-09-07 15:50:10 +00:00
*
2018-10-04 19:08:57 +00:00
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
2018-09-07 15:50:10 +00:00
*
2018-10-04 19:08:57 +00:00
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2017-08-24 15:18:01 +00:00
*/
2017-08-20 20:48:14 +00:00
#ifdef __linux__
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
2018-11-23 19:56:18 +00:00
#if defined(__arm__) || defined(__i386__)
2018-12-04 15:39:56 +00:00
#define _FILE_OFFSET_BITS 64 /* Support large files on 32-bit */
2017-09-24 17:58:27 +00:00
#endif
2017-08-20 20:48:14 +00:00
#include <sys/inotify.h>
#define LINUX_INOTIFY
#if !defined(__GLIBC__)
#include <sys/types.h>
#endif
2017-08-20 20:48:14 +00:00
#endif
#include <sys/resource.h>
#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
#else
2017-11-30 12:54:06 +00:00
#include <sys/sysmacros.h>
#endif
2014-10-22 15:27:08 +00:00
#include <sys/wait.h>
2014-10-07 06:05:30 +00:00
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
2019-01-20 12:02:44 +00:00
#ifndef __USE_XOPEN /* Fix wcswidth() failure, ncursesw/curses.h includes whcar.h on Ubuntu 14.04 */
#define __USE_XOPEN
#endif
2015-06-09 08:12:17 +00:00
#include <dirent.h>
2014-10-07 06:05:30 +00:00
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
#include <limits.h>
#ifdef __gnu_hurd__
#define PATH_MAX 4096
#endif
2014-10-07 06:05:30 +00:00
#include <locale.h>
2019-01-25 16:34:39 +00:00
#include <stdio.h>
2019-02-22 00:05:26 +00:00
#ifndef NORL
2019-01-24 06:35:13 +00:00
#include <readline/history.h>
#include <readline/readline.h>
2019-02-22 00:05:26 +00:00
#endif
2014-10-09 09:33:49 +00:00
#include <regex.h>
2015-06-09 08:12:17 +00:00
#include <signal.h>
#include <stdarg.h>
2015-06-09 08:12:17 +00:00
#include <stdlib.h>
2014-10-07 06:05:30 +00:00
#include <string.h>
2018-08-28 14:06:10 +00:00
#include <strings.h>
2017-03-30 04:39:21 +00:00
#include <time.h>
#include <unistd.h>
2017-05-13 17:01:14 +00:00
#ifndef __USE_XOPEN_EXTENDED
#define __USE_XOPEN_EXTENDED 1
#endif
#include <ftw.h>
#include <wchar.h>
2017-09-02 06:09:44 +00:00
#include "nnn.h"
2019-03-17 23:35:47 +00:00
#include "dbg.h"
2014-10-07 06:05:30 +00:00
2017-06-20 04:56:31 +00:00
/* Macro definitions */
2019-05-27 02:30:32 +00:00
#define VERSION "2.5"
2019-01-20 18:21:45 +00:00
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
2019-03-17 23:35:47 +00:00
#ifndef S_BLKSIZE
#define S_BLKSIZE 512 /* S_BLKSIZE is missing on Android NDK (Termux) */
#endif
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))
#undef MAX
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define ISODD(x) ((x) & 1)
2019-03-11 16:19:35 +00:00
#define ISBLANK(x) ((x) == ' ' || (x) == '\t')
#define TOUPPER(ch) \
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
2018-12-20 16:34:48 +00:00
#define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1))
2019-03-09 16:00:16 +00:00
#define CURSR ">>"
2019-03-04 18:54:58 +00:00
#define EMPTY " "
2018-11-03 10:20:01 +00:00
#define CURSYM(flag) ((flag) ? CURSR : EMPTY)
#define FILTER '/'
2019-03-10 23:55:17 +00:00
#define MSGWAIT '$'
2019-03-09 09:26:18 +00:00
#define REGEX_MAX 48
2017-08-24 04:46:35 +00:00
#define BM_MAX 10
#define ENTRY_INCR 64 /* Number of dir 'entry' structures to allocate per shot */
2019-02-28 15:37:42 +00:00
#define NAMEBUF_INCR 0x800 /* 64 dir entries at once, avg. 32 chars per filename = 64*32B = 2KB */
2017-12-24 18:58:12 +00:00
#define DESCRIPTOR_LEN 32
2018-11-21 21:43:55 +00:00
#define _ALIGNMENT 0x10 /* 16-byte alignment */
#define _ALIGNMENT_MASK 0xF
2019-04-21 18:29:51 +00:00
#define TMP_LEN_MAX 64
2018-12-04 12:51:01 +00:00
#define CTX_MAX 4
2018-12-03 16:14:33 +00:00
#define DOT_FILTER_LEN 7
2019-01-04 14:06:03 +00:00
#define ASCII_MAX 128
2019-03-10 05:43:12 +00:00
#define EXEC_ARGS_MAX 8
2019-05-09 02:38:32 +00:00
#define SCROLLOFF 5
2019-05-15 16:59:38 +00:00
#define LONG_SIZE sizeof(ulong)
2014-10-07 06:05:30 +00:00
2019-03-01 01:16:13 +00:00
/* Entry flags */
#define DIR_OR_LINK_TO_DIR 0x1
#define FILE_COPIED 0x10
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 */
2019-03-10 07:27:41 +00:00
#define F_MULTI 0x01 /* first arg can be combination of args; to be used with F_NORMAL */
2017-07-02 10:42:30 +00:00
#define F_NOWAIT 0x02 /* don't wait for child process (e.g. file manager) */
#define F_NOTRACE 0x04 /* suppress stdout and strerr (no traces) */
2019-03-11 02:18:23 +00:00
#define F_NORMAL 0x08 /* spawn child process in non-curses regular CLI mode */
2019-03-10 07:27:41 +00:00
2019-03-11 02:18:23 +00:00
#define F_CLI (F_NORMAL | F_MULTI)
2017-06-20 15:59:37 +00:00
/* CRC8 macros */
2018-10-19 02:31:42 +00:00
#define WIDTH (sizeof(unsigned char) << 3)
#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
/* Version compare macros */
2019-02-22 19:32:05 +00:00
/*
* states: S_N: normal, S_I: comparing integral part, S_F: comparing
2019-03-31 04:26:30 +00:00
* fractional parts, S_Z: idem but with leading Zeroes only
2019-02-22 19:32:05 +00:00
*/
#define S_N 0x0
#define S_I 0x3
#define S_F 0x6
#define S_Z 0x9
/* result_type: VCMP: return diff; VLEN: compare using len_diff/diff */
#define VCMP 2
#define VLEN 3
2018-04-25 19:26:45 +00:00
/* Volume info */
#define FREE 0
#define CAPACITY 1
2017-08-24 15:18:01 +00:00
/* TYPE DEFINITIONS */
2017-06-20 14:58:53 +00:00
typedef unsigned long ulong;
typedef unsigned int uint;
2017-06-20 14:58:53 +00:00
typedef unsigned char uchar;
typedef unsigned short ushort;
2017-06-20 14:58:53 +00:00
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 {
char *name;
time_t t;
off_t size;
blkcnt_t blocks; /* number of 512B blocks allocated */
2017-12-04 14:22:35 +00:00
mode_t mode;
ushort nlen; /* Length of file name; can be uchar (< NAME_MAX + 1) */
uchar flags; /* Flags specific to the file */
2019-03-11 14:38:03 +00:00
} __attribute__ ((aligned(_ALIGNMENT))) *pEntry;
2017-06-20 04:56:31 +00:00
/* Bookmark */
2017-06-11 04:15:50 +00:00
typedef struct {
2018-11-12 17:59:29 +00:00
int key;
2017-06-11 04:15:50 +00:00
char *loc;
2019-03-11 14:38:03 +00:00
} bm;
2017-06-11 04:15:50 +00:00
2019-04-09 17:22:27 +00:00
/*
* Settings
* NOTE: update default values if changing order
*/
2017-07-02 10:42:30 +00:00
typedef struct {
2018-11-08 12:42:55 +00:00
uint filtermode : 1; /* Set to enter filter mode */
uint mtimeorder : 1; /* Set to sort by time modified */
uint sizeorder : 1; /* Set to sort by file size */
uint apparentsz : 1; /* Set to sort by apparent size (disk usage) */
uint blkorder : 1; /* Set to sort by blocks used (disk usage) */
uint showhidden : 1; /* Set to show hidden files */
uint copymode : 1; /* Set when copying files */
uint showdetail : 1; /* Clear to show fewer file info */
uint ctxactive : 1; /* Context active or not */
uint reserved : 8;
/* The following settings are global */
uint curctx : 2; /* Current context number */
2019-04-09 17:22:27 +00:00
uint dircolor : 1; /* Current status of dir color */
2018-11-23 17:11:47 +00:00
uint picker : 1; /* Write selection to user-specified file */
uint pickraw : 1; /* Write selection to sdtout before exit */
uint nonavopen : 1; /* Open file on right arrow or `l` */
2019-04-09 17:22:27 +00:00
uint autoselect : 1; /* Auto-select dir in nav-as-you-type mode */
uint metaviewer : 1; /* Index of metadata viewer in utils[] */
2018-12-01 00:28:15 +00:00
uint useeditor : 1; /* Use VISUAL to open text files */
2019-04-18 14:57:35 +00:00
uint runplugin : 1; /* Choose plugin mode */
uint runctx : 2; /* The context in which plugin is to be run */
2019-01-13 17:19:14 +00:00
uint filter_re : 1; /* Use regex filters */
2019-02-27 15:33:14 +00:00
uint wild : 1; /* Do not sort entries on dir load */
2019-03-02 11:23:16 +00:00
uint trash : 1; /* Move removed files to trash */
2017-06-20 14:58:53 +00:00
} settings;
2017-04-03 20:10:04 +00:00
2018-11-08 12:42:55 +00:00
/* Contexts or workspaces */
typedef struct {
2018-11-09 09:26:11 +00:00
char c_path[PATH_MAX]; /* Current dir */
char c_last[PATH_MAX]; /* Last visited dir */
char c_name[NAME_MAX + 1]; /* Current file name */
char c_fltr[REGEX_MAX]; /* Current filter */
2018-11-09 09:26:11 +00:00
settings c_cfg; /* Current configuration */
2018-12-04 23:31:29 +00:00
uint color; /* Color code for directories */
2019-03-11 14:38:03 +00:00
} context;
2018-11-08 12:42:55 +00:00
2017-08-24 15:18:01 +00:00
/* GLOBALS */
2017-04-28 23:02:47 +00:00
2018-11-08 12:42:55 +00:00
/* Configuration, contexts */
2019-04-09 17:22:27 +00:00
static settings cfg = {
0, /* filtermode */
0, /* mtimeorder */
0, /* sizeorder */
0, /* apparentsz */
0, /* blkorder */
0, /* showhidden */
0, /* copymode */
1, /* showdetail */
1, /* ctxactive */
0, /* reserved */
0, /* curctx */
0, /* dircolor */
0, /* picker */
0, /* pickraw */
0, /* nonavopen */
1, /* autoselect */
0, /* metaviewer */
0, /* useeditor */
2019-04-18 14:57:35 +00:00
0, /* runplugin */
2019-04-09 17:22:27 +00:00
0, /* runctx */
1, /* filter_re */
0, /* wild */
0, /* trash */
2019-04-13 16:29:34 +00:00
};
2018-12-04 12:51:01 +00:00
static context g_ctx[CTX_MAX] __attribute__ ((aligned));
2017-06-20 14:58:53 +00:00
2017-04-01 09:11:07 +00:00
static struct entry *dents;
static char *pnamebuf, *pcopybuf;
2019-05-09 02:38:32 +00:00
static int ndents, cur, curscroll, total_dents = ENTRY_INCR;
2019-03-10 23:38:39 +00:00
static int xlines, xcols;
2017-07-02 19:25:47 +00:00
static uint idle;
static uint idletimeout, copybufpos, copybuflen;
2019-01-16 14:41:33 +00:00
static char *opener;
2017-04-01 12:02:58 +00:00
static char *copier;
2019-01-04 18:26:02 +00:00
static char *editor;
2019-03-10 07:27:41 +00:00
static char *pager;
static char *shell;
2019-01-24 16:15:02 +00:00
static char *home;
2019-04-23 03:20:25 +00:00
static char *initpath;
2019-04-21 18:29:51 +00:00
static char *cfgdir;
static char *g_cppath;
static char *plugindir;
static blkcnt_t ent_blocks;
static blkcnt_t dir_blocks;
2017-06-22 04:09:17 +00:00
static ulong num_files;
2017-08-24 04:46:35 +00:00
static bm bookmark[BM_MAX];
2019-04-22 18:27:26 +00:00
static size_t g_tmpfplen;
2018-10-19 08:38:02 +00:00
static uchar g_crc;
2018-10-04 18:56:31 +00:00
static uchar BLK_SHIFT = 9;
2019-02-08 15:01:37 +00:00
static bool interrupted = FALSE;
2019-03-10 16:51:27 +00:00
/* Retain old signal handlers */
#ifdef __linux__
2019-03-10 16:14:16 +00:00
static sighandler_t oldsighup; /* old value of hangup signal */
static sighandler_t oldsigtstp; /* old value of SIGTSTP */
2019-03-10 16:51:27 +00:00
#else
static sig_t oldsighup;
static sig_t oldsigtstp;
#endif
2019-03-10 16:14:16 +00:00
2018-10-19 08:38:02 +00:00
/* For use in functions which are isolated and don't return the buffer */
2018-12-04 12:51:01 +00:00
static char g_buf[CMD_LEN_MAX] __attribute__ ((aligned));
2018-10-19 08:38:02 +00:00
2019-04-21 18:29:51 +00:00
/* Buffer to store tmp file path to show selection, file stats and help */
static char g_tmpfpath[TMP_LEN_MAX] __attribute__ ((aligned));
/* Replace-str for xargs on different platforms */
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
#define REPLACE_STR 'J'
#elif defined(__linux__) || defined(__CYGWIN__)
#define REPLACE_STR 'I'
#else
#define REPLACE_STR 'I'
#endif
/* Options to identify file mime */
#ifdef __APPLE__
2019-05-26 11:14:17 +00:00
#define FILE_OPTS "-bIL"
#else
2019-05-26 11:14:17 +00:00
#define FILE_OPTS "-biL"
#endif
2018-02-24 15:15:50 +00:00
/* Macros for utilities */
#define MEDIAINFO 0
#define EXIFTOOL 1
#define OPENER 2
2018-11-10 06:36:21 +00:00
#define ATOOL 3
2019-05-19 15:59:29 +00:00
#define BSDTAR 4
#define LOCKER 5
#define NLAUNCH 6
#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[] = {
"mediainfo",
"exiftool",
#ifdef __APPLE__
"/usr/bin/open",
2018-05-07 12:29:31 +00:00
#elif defined __CYGWIN__
"cygstart",
#else
"xdg-open",
#endif
2018-02-24 14:16:58 +00:00
"atool",
2019-05-19 15:59:29 +00:00
"bsdtar",
2018-11-10 06:36:21 +00:00
#ifdef __APPLE__
"bashlock",
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
"lock",
#else
"vlock",
#endif
"nlaunch",
"UNKNOWN"
};
#ifdef __linux__
static char cp[] = "cpg -giRp";
static char mv[] = "mvg -gi";
#endif
2018-01-14 06:41:46 +00:00
/* Common strings */
2019-04-22 19:43:02 +00:00
#define STR_INPUT_ID 0
#define STR_INVBM_KEY 1
#define STR_DATE_ID 2
#define STR_TMPFILE 3
2019-04-27 12:28:55 +00:00
#define NONE_SELECTED 4
2019-05-19 15:59:29 +00:00
#define UTIL_MISSING 5
2018-01-14 06:41:46 +00:00
2019-01-20 16:42:43 +00:00
static const char * const messages[] = {
2018-01-14 06:41:46 +00:00
"no traversal",
"invalid key",
2018-01-14 07:13:20 +00:00
"%F %T %z",
2019-01-17 16:01:30 +00:00
"/.nnnXXXXXX",
2019-04-27 12:28:55 +00:00
"empty selection",
2019-05-19 15:59:29 +00:00
"utility missing",
2018-01-14 06:41:46 +00:00
};
2017-07-03 13:38:38 +00:00
2019-03-31 04:26:30 +00:00
/* Supported configuration environment variables */
2019-01-20 18:21:45 +00:00
#define NNN_BMS 0
#define NNN_OPENER 1
#define NNN_CONTEXT_COLORS 2
#define NNN_IDLE_TIMEOUT 3
#define NNN_COPIER 4
2019-04-21 18:29:51 +00:00
#define NNN_NOTE 5
#define NNN_TMPFILE 6
2019-04-21 20:44:43 +00:00
#define NNNLVL 7 /* strings end here */
#define NNN_USE_EDITOR 8 /* flags begin here */
#define NNN_NO_AUTOSELECT 9
#define NNN_RESTRICT_NAV_OPEN 10
#define NNN_TRASH 11
#ifdef __linux__
#define NNN_OPS_PROG 12
#endif
2019-01-20 18:21:45 +00:00
static const char * const env_cfg[] = {
2019-01-20 17:47:30 +00:00
"NNN_BMS",
2019-01-20 18:21:45 +00:00
"NNN_OPENER",
2019-01-20 17:47:30 +00:00
"NNN_CONTEXT_COLORS",
"NNN_IDLE_TIMEOUT",
"NNN_COPIER",
"NNN_NOTE",
2019-01-20 18:21:45 +00:00
"NNN_TMPFILE",
"NNNLVL",
2019-01-20 18:21:45 +00:00
"NNN_USE_EDITOR",
2019-01-20 17:47:30 +00:00
"NNN_NO_AUTOSELECT",
"NNN_RESTRICT_NAV_OPEN",
2019-03-02 11:23:16 +00:00
"NNN_TRASH",
#ifdef __linux__
2019-03-09 08:16:18 +00:00
"NNN_OPS_PROG",
#endif
2019-01-20 18:21:45 +00:00
};
2019-03-31 04:26:30 +00:00
/* Required environment variables */
2019-01-24 16:39:41 +00:00
#define SHELL 0
#define VISUAL 1
#define EDITOR 2
#define PAGER 3
2019-01-20 18:21:45 +00:00
static const char * const envs[] = {
"SHELL",
"VISUAL",
"EDITOR",
"PAGER",
2019-01-20 17:47:30 +00:00
};
2019-03-17 23:35:47 +00:00
/* Event handling */
#ifdef LINUX_INOTIFY
#define NUM_EVENT_SLOTS 16 /* Make room for 16 events */
2019-03-17 23:35:47 +00:00
#define EVENT_SIZE (sizeof(struct inotify_event))
#define EVENT_BUF_LEN (EVENT_SIZE * NUM_EVENT_SLOTS)
2019-03-17 23:35:47 +00:00
static int inotify_fd, inotify_wd = -1;
2019-03-23 03:12:34 +00:00
static uint INOTIFY_MASK = /* IN_ATTRIB | */ IN_CREATE | IN_DELETE | IN_DELETE_SELF
2019-03-17 23:35:47 +00:00
| IN_MODIFY | IN_MOVE_SELF | IN_MOVED_FROM | IN_MOVED_TO;
#elif defined(BSD_KQUEUE)
#define NUM_EVENT_SLOTS 1
#define NUM_EVENT_FDS 1
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;
#endif
/* Function macros */
#define exitcurses() endwin()
#define clearprompt() printmsg("")
2019-04-26 19:25:28 +00:00
#define printwarn(presel) printwait(strerror(errno), presel)
2019-03-17 23:35:47 +00:00
#define istopdir(path) ((path)[1] == '\0' && (path)[0] == '/')
#define copycurname() xstrlcpy(lastname, dents[cur].name, NAME_MAX + 1)
2019-03-17 23:35:47 +00:00
#define settimeout() timeout(1000)
#define cleartimeout() timeout(-1)
#define errexit() printerr(__LINE__)
#define setdirwatch() (cfg.filtermode ? (presel = FILTER) : (dir_changed = TRUE))
/* We don't care about the return value from strcmp() */
#define xstrcmp(a, b) (*(a) != *(b) ? -1 : strcmp((a), (b)))
/* A faster version of xisdigit */
#define xisdigit(c) ((unsigned int) (c) - '0' <= 9)
#define xerror() perror(xitoa(__LINE__))
2017-06-20 04:56:31 +00:00
/* Forward declarations */
2017-04-28 23:02:47 +00:00
static void redraw(char *path);
2019-04-21 19:51:16 +00:00
static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag);
2019-02-22 19:32:05 +00:00
static int (*nftw_fn)(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf);
static int dentfind(const char *fname, int n);
2019-05-10 02:14:24 +00:00
static void move_cursor(int target, int ignore_scrolloff);
2017-06-20 04:56:31 +00:00
/* Functions */
/*
* CRC8 source:
* https://barrgroup.com/Embedded-Systems/How-To/CRC-Calculation-C-Code
*/
2019-02-27 17:06:22 +00:00
static uchar crc8fast(const uchar * const message, size_t n)
{
2019-05-27 01:53:30 +00:00
uchar data, remainder = 0;
size_t byte = 0;
2019-02-05 19:34:35 +00:00
/* CRC data */
2019-03-14 13:28:04 +00:00
static const uchar crc8table[CRC8_TABLE_LEN] __attribute__ ((aligned)) = {
2019-02-05 19:34:35 +00:00
0, 94, 188, 226, 97, 63, 221, 131, 194, 156, 126, 32, 163, 253, 31, 65,
157, 195, 33, 127, 252, 162, 64, 30, 95, 1, 227, 189, 62, 96, 130, 220,
35, 125, 159, 193, 66, 28, 254, 160, 225, 191, 93, 3, 128, 222, 60, 98,
190, 224, 2, 92, 223, 129, 99, 61, 124, 34, 192, 158, 29, 67, 161, 255,
70, 24, 250, 164, 39, 121, 155, 197, 132, 218, 56, 102, 229, 187, 89, 7,
219, 133, 103, 57, 186, 228, 6, 88, 25, 71, 165, 251, 120, 38, 196, 154,
101, 59, 217, 135, 4, 90, 184, 230, 167, 249, 27, 69, 198, 152, 122, 36,
248, 166, 68, 26, 153, 199, 37, 123, 58, 100, 134, 216, 91, 5, 231, 185,
140, 210, 48, 110, 237, 179, 81, 15, 78, 16, 242, 172, 47, 113, 147, 205,
17, 79, 173, 243, 112, 46, 204, 146, 211, 141, 111, 49, 178, 236, 14, 80,
175, 241, 19, 77, 206, 144, 114, 44, 109, 51, 209, 143, 12, 82, 176, 238,
50, 108, 142, 208, 83, 13, 239, 177, 240, 174, 76, 18, 145, 207, 45, 115,
202, 148, 118, 40, 171, 245, 23, 73, 8, 86, 180, 234, 105, 55, 213, 139,
87, 9, 235, 181, 54, 104, 138, 212, 149, 203, 41, 119, 244, 170, 72, 22,
233, 183, 85, 11, 136, 214, 52, 106, 43, 117, 151, 201, 74, 20, 246, 168,
116, 42, 200, 150, 21, 75, 169, 247, 182, 232, 10, 84, 215, 137, 107, 53,
};
2018-07-06 08:05:18 +00:00
/* Divide the message by the polynomial, a byte at a time */
2019-05-27 01:53:30 +00:00
while (byte < n) {
2018-07-06 08:05:18 +00:00
data = message[byte] ^ (remainder >> (WIDTH - 8));
remainder = crc8table[data] ^ (remainder << 8);
2019-05-27 01:53:30 +00:00
++byte;
2018-07-06 08:05:18 +00:00
}
2018-07-06 08:05:18 +00:00
/* The final remainder is the CRC */
return remainder;
}
2019-03-09 03:43:36 +00:00
static void sigint_handler(int sig)
2019-02-08 15:01:37 +00:00
{
interrupted = TRUE;
}
2019-03-09 03:43:36 +00:00
static uint xatoi(const char *str)
{
int val = 0;
if (!str)
return 0;
while (xisdigit(*str)) {
val = val * 10 + (*str - '0');
++str;
}
return val;
}
static char *xitoa(uint val)
{
static char ascbuf[32] = {0};
int i;
for (i = 30; val && i; --i, val /= 10)
2019-05-16 16:11:20 +00:00
ascbuf[i] = '0' + (val % 10);
2019-03-09 03:43:36 +00:00
return &ascbuf[++i];
}
2017-08-24 15:18:01 +00:00
/* Messages show up at the bottom */
2019-03-11 15:03:19 +00:00
static inline void printmsg(const char *msg)
2017-08-24 15:18:01 +00:00
{
2019-03-10 23:38:39 +00:00
mvprintw(xlines - 1, 0, "%s\n", msg);
2017-08-24 15:18:01 +00:00
}
2019-03-10 23:55:17 +00:00
static void printwait(const char *msg, int *presel)
{
printmsg(msg);
2019-04-26 19:25:28 +00:00
if (presel)
*presel = MSGWAIT;
2019-03-10 23:55:17 +00:00
}
2017-08-24 15:18:01 +00:00
/* Kill curses and display error before exiting */
2018-10-22 14:25:45 +00:00
static void printerr(int linenum)
2017-08-24 15:18:01 +00:00
{
exitcurses();
2019-03-09 03:43:36 +00:00
perror(xitoa(linenum));
2019-04-21 18:29:51 +00:00
if (!cfg.picker && g_cppath)
unlink(g_cppath);
free(pcopybuf);
2017-08-24 16:56:46 +00:00
exit(1);
2017-08-24 15:18:01 +00:00
}
/* Print prompt on the last line */
static void printprompt(const char *str)
2017-08-24 15:18:01 +00:00
{
clearprompt();
printw(str);
}
static int get_input(const char *prompt)
{
2019-02-22 19:32:05 +00:00
int r;
if (prompt)
printprompt(prompt);
cleartimeout();
2019-02-22 19:32:05 +00:00
r = getch();
settimeout();
return r;
2017-08-24 15:18:01 +00:00
}
2019-03-13 13:31:22 +00:00
static void xdelay(void)
{
refresh();
usleep(350000); /* 350 ms delay */
}
2019-02-22 19:32:05 +00:00
static char confirm_force(void)
2018-12-01 08:57:05 +00:00
{
2019-01-25 16:43:20 +00:00
int r = get_input("use force? [y/Y]");
2019-02-22 19:32:05 +00:00
2018-12-01 08:57:05 +00:00
if (r == 'y' || r == 'Y')
return 'f'; /* forceful */
return 'i'; /* interactive */
}
2017-06-20 04:56:31 +00:00
/* Increase the limit on open file descriptors, if possible */
2019-02-22 19:32:05 +00:00
static rlim_t max_openfds(void)
{
struct rlimit rl;
2017-06-15 14:04:56 +00:00
rlim_t limit = getrlimit(RLIMIT_NOFILE, &rl);
if (limit != 0)
return 32;
limit = rl.rlim_cur;
rl.rlim_cur = rl.rlim_max;
/* 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-08-20 19:25:45 +00:00
return limit;
}
/*
* 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
2018-12-15 08:11:33 +00:00
* macOS: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
*/
2018-10-22 14:25:45 +00:00
static void *xrealloc(void *pcur, size_t len)
{
2019-02-27 17:06:22 +00:00
void *pmem = realloc(pcur, len);
2018-10-27 18:50:39 +00:00
if (!pmem)
free(pcur);
return pmem;
}
/*
* 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.
*/
2018-10-22 14:25:45 +00:00
static size_t xstrlcpy(char *dest, const char *src, size_t n)
{
2019-02-27 17:06:22 +00:00
if (!src || !dest || !n)
return 0;
2019-05-15 16:59:38 +00:00
ulong *s, *d;
2019-02-27 17:06:22 +00:00
size_t len = strlen(src) + 1, blocks;
2019-05-15 16:59:38 +00:00
const uint _WSHIFT = (LONG_SIZE == 8) ? 3 : 2;
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
*/
2019-05-15 16:59:38 +00:00
if ((n >= LONG_SIZE) && (((ulong)src & _ALIGNMENT_MASK) == 0 &&
2018-12-15 08:11:33 +00:00
((ulong)dest & _ALIGNMENT_MASK) == 0)) {
s = (ulong *)src;
d = (ulong *)dest;
2017-12-29 05:38:07 +00:00
blocks = n >> _WSHIFT;
2019-05-15 16:59:38 +00:00
n &= LONG_SIZE - 1;
while (blocks) {
2019-02-28 15:37:42 +00:00
*d = *s; // NOLINT
++d, ++s;
--blocks;
}
if (!n) {
dest = (char *)d;
*--dest = '\0';
return len;
}
src = (char *)s;
dest = (char *)d;
}
2019-03-07 21:53:23 +00:00
while (--n && (*dest = *src)) // NOLINT
2017-06-17 06:58:21 +00:00
++dest, ++src;
2017-05-16 16:52:49 +00:00
if (!n)
*dest = '\0';
return len;
}
2017-04-01 12:02:58 +00:00
/*
* The poor man's implementation of memrchr(3).
2017-04-01 12:02:58 +00:00
* We are only looking for '/' in this program.
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
*/
2018-10-22 14:25:45 +00:00
static void *xmemrchr(uchar *s, uchar ch, size_t n)
2017-04-01 12:02:58 +00:00
{
if (!s || !n)
return NULL;
2019-02-27 17:06:22 +00:00
uchar *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;
}
2018-10-22 14:25:45 +00:00
static char *xbasename(char *path)
2017-12-24 17:53:52 +00:00
{
2019-05-15 16:59:38 +00:00
char *base = xmemrchr((uchar *)path, '/', strlen(path)); // NOLINT
2019-03-04 19:34:01 +00:00
2017-12-24 17:53:52 +00:00
return base ? base + 1 : path;
}
2019-04-27 14:35:57 +00:00
static int create_tmp_file()
{
xstrlcpy(g_tmpfpath + g_tmpfplen - 1, messages[STR_TMPFILE], TMP_LEN_MAX - g_tmpfplen);
return mkstemp(g_tmpfpath);
}
/* Writes buflen char(s) from buf to a file */
2018-10-22 14:25:45 +00:00
static void writecp(const char *buf, const size_t buflen)
{
2019-04-21 18:29:51 +00:00
if (cfg.pickraw || !g_cppath)
2018-09-07 02:49:15 +00:00
return;
2019-02-27 17:06:22 +00:00
FILE *fp = fopen(g_cppath, "w");
if (fp) {
fwrite(buf, 1, buflen, fp);
fclose(fp);
} else
2019-04-26 19:25:28 +00:00
printwarn(NULL);
}
2019-03-10 23:55:17 +00:00
static void appendfpath(const char *path, const size_t len)
{
if ((copybufpos >= copybuflen) || ((len + 3) > (copybuflen - copybufpos))) {
copybuflen += PATH_MAX;
pcopybuf = xrealloc(pcopybuf, copybuflen);
2019-03-10 23:55:17 +00:00
if (!pcopybuf)
errexit();
}
copybufpos += xstrlcpy(pcopybuf + copybufpos, path, len);
}
/* Write selected file paths to fd, linefeed separated */
2019-05-22 15:02:29 +00:00
static ssize_t selectiontofd(int fd, uint *pcount)
{
2019-05-22 15:02:29 +00:00
uint lastpos, count = 0;
char *pbuf = pcopybuf;
2019-01-21 16:20:29 +00:00
ssize_t pos = 0, len, r;
2019-05-22 15:02:29 +00:00
if (pcount)
*pcount = 0;
if (!copybufpos)
return 0;
lastpos = copybufpos - 1;
2019-01-21 16:20:29 +00:00
while (pos <= lastpos) {
len = strlen(pbuf);
2019-01-20 12:20:49 +00:00
pos += len;
r = write(fd, pbuf, len);
if (r != len)
return pos;
2019-01-21 16:20:29 +00:00
if (pos <= lastpos) {
if (write(fd, "\n", 1) != 1)
return pos;
pbuf += len + 1;
}
++pos;
2019-05-22 15:02:29 +00:00
++count;
}
2019-05-22 15:02:29 +00:00
if (pcount)
*pcount = count;
return pos;
}
2019-03-10 23:55:17 +00:00
static void showcplist(void)
{
int fd;
ssize_t pos;
if (!copybufpos)
2019-03-10 23:55:17 +00:00
return;
2019-04-27 14:35:57 +00:00
fd = create_tmp_file();
2019-03-10 23:55:17 +00:00
if (fd == -1) {
DPRINTF_S("mkstemp failed!");
return;
}
2019-05-22 15:02:29 +00:00
pos = selectiontofd(fd, NULL);
close(fd);
if (pos && pos == copybufpos)
2019-03-11 02:18:23 +00:00
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
unlink(g_tmpfpath);
}
2019-02-22 19:32:05 +00:00
static bool cpsafe(void)
{
2019-04-21 18:29:51 +00:00
/* Fail if selection file path not generated */
if (!g_cppath) {
printmsg("selection file not found");
return FALSE;
}
/* Warn if selection not completed */
if (cfg.copymode) {
printmsg("finish selection first");
return FALSE;
}
2019-04-21 18:29:51 +00:00
/* Fail if selection file path isn't accessible */
2019-03-31 04:26:30 +00:00
if (access(g_cppath, R_OK | W_OK) == -1) {
2019-05-16 13:29:20 +00:00
errno == ENOENT ? printmsg(messages[NONE_SELECTED]) : printwarn(NULL);
return FALSE;
}
return TRUE;
}
2019-03-01 01:16:13 +00:00
/* Reset copy indicators */
2019-03-04 19:34:01 +00:00
static void resetcpind(void)
2019-03-01 01:16:13 +00:00
{
int r = 0;
/* Reset copy indicators */
for (; r < ndents; ++r)
if (dents[r].flags & FILE_COPIED)
dents[r].flags &= ~FILE_COPIED;
}
2017-06-20 04:56:31 +00:00
/* Initialize curses mode */
2018-12-08 09:58:55 +00:00
static bool initcurses(void)
{
2019-03-21 15:39:55 +00:00
short i;
2019-03-11 16:19:35 +00:00
2019-01-03 18:13:04 +00:00
if (cfg.picker) {
if (!newterm(NULL, stderr, stdin)) {
fprintf(stderr, "newterm!\n");
return FALSE;
}
} else if (!initscr()) {
char *term = getenv("TERM");
2019-04-11 13:57:38 +00:00
if (term)
2017-07-03 13:38:38 +00:00
fprintf(stderr, "error opening TERM: %s\n", term);
else
2019-01-03 18:13:04 +00:00
fprintf(stderr, "initscr!\n");
2018-12-08 09:58:55 +00:00
return FALSE;
}
2017-08-22 17:04:17 +00:00
cbreak();
noecho();
nonl();
2019-03-11 16:19:35 +00:00
//intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
2019-05-18 05:25:17 +00:00
mousemask(BUTTON1_CLICKED | BUTTON1_DOUBLE_CLICKED | BUTTON2_CLICKED, NULL);
curs_set(FALSE); /* Hide cursor */
start_color();
use_default_colors();
2019-02-28 14:43:37 +00:00
/* Initialize default colors */
2019-03-11 16:19:35 +00:00
for (i = 0; i < CTX_MAX; ++i)
init_pair(i + 1, g_ctx[i].color, -1);
2019-02-28 14:43:37 +00:00
2017-08-24 01:34:56 +00:00
settimeout(); /* One second */
2019-01-05 21:23:13 +00:00
set_escdelay(25);
2018-12-08 09:58:55 +00:00
return TRUE;
}
2019-03-10 08:53:18 +00:00
/* No NULL check here as spawn() guards against it */
2019-03-10 05:43:12 +00:00
static int parseargs(char *line, char **argv)
{
int count = 0;
argv[count++] = line;
2019-03-10 08:53:18 +00:00
while (*line) { // NOLINT
2019-03-11 16:19:35 +00:00
if (ISBLANK(*line)) {
2019-03-10 05:43:12 +00:00
*line++ = '\0';
2019-03-10 08:53:18 +00:00
if (!*line) // NOLINT
2019-03-10 05:43:12 +00:00
return count;
argv[count++] = line;
if (count == EXEC_ARGS_MAX)
return -1;
}
++line;
2019-03-17 14:10:57 +00:00
}
2019-03-10 05:43:12 +00:00
return count;
}
2019-03-10 16:14:16 +00:00
static pid_t xfork(uchar flag)
{
pid_t p = fork();
if (p > 0) {
/* the parent ignores the interrupt, quit and hangup signals */
oldsighup = signal(SIGHUP, SIG_IGN);
oldsigtstp = signal(SIGTSTP, SIG_DFL);
} else if (p == 0) {
/* so they can be used to stop the child */
signal(SIGHUP, SIG_DFL);
signal(SIGINT, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
signal(SIGTSTP, SIG_DFL);
if (flag & F_NOWAIT)
setsid();
}
if (p == -1)
perror("fork");
return p;
}
2019-04-21 19:51:16 +00:00
static int join(pid_t p, uchar flag)
2019-03-10 16:14:16 +00:00
{
2019-04-21 19:51:16 +00:00
int status = 0xFFFF;
2019-03-10 16:14:16 +00:00
2019-04-21 19:51:16 +00:00
if (!(flag & F_NOWAIT)) {
2019-03-10 16:14:16 +00:00
/* wait for the child to exit */
2019-03-17 14:10:57 +00:00
do {
} while (waitpid(p, &status, 0) == -1);
2019-03-10 16:14:16 +00:00
2019-04-21 19:51:16 +00:00
if (WIFEXITED(status)) {
status = WEXITSTATUS(status);
DPRINTF_D(status);
}
}
2019-03-10 16:14:16 +00:00
/* restore parent's signal handling */
signal(SIGHUP, oldsighup);
signal(SIGTSTP, oldsigtstp);
2019-04-21 19:51:16 +00:00
return status;
2019-03-10 16:14:16 +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.
*/
2019-04-21 19:51:16 +00:00
static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag)
{
pid_t pid;
2019-04-21 19:51:16 +00:00
int status, retstatus = 0xFFFF;
2019-03-10 05:43:12 +00:00
char *argv[EXEC_ARGS_MAX] = {0};
char *cmd = NULL;
2019-04-11 14:29:44 +00:00
if (!file || !*file)
2019-04-21 19:51:16 +00:00
return retstatus;
2018-12-06 17:27:59 +00:00
/* Swap args if the first arg is NULL and second isn't */
if (!arg1 && arg2) {
arg1 = arg2;
2019-03-10 05:43:12 +00:00
arg2 = NULL;
}
if (flag & F_MULTI) {
size_t len = strlen(file) + 1;
2019-03-17 14:10:57 +00:00
2019-03-10 05:43:12 +00:00
cmd = (char *)malloc(len);
if (!cmd) {
2019-03-17 14:10:57 +00:00
DPRINTF_S("malloc()!");
2019-04-21 19:51:16 +00:00
return retstatus;
2019-03-10 05:43:12 +00:00
}
xstrlcpy(cmd, file, len);
status = parseargs(cmd, argv);
2019-03-10 07:27:41 +00:00
if (status == -1 || status > (EXEC_ARGS_MAX - 3)) { /* arg1, arg2 and last NULL */
2019-03-10 05:43:12 +00:00
free(cmd);
2019-03-17 14:10:57 +00:00
DPRINTF_S("NULL or too many args");
2019-04-21 19:51:16 +00:00
return retstatus;
2019-03-10 05:43:12 +00:00
}
2019-03-10 07:27:41 +00:00
argv[status++] = arg1;
argv[status] = arg2;
2019-03-10 05:43:12 +00:00
} else {
argv[0] = file;
argv[1] = arg1;
argv[2] = arg2;
2018-12-06 17:27:59 +00:00
}
2019-03-11 16:19:35 +00:00
if (flag & F_NORMAL)
2019-03-04 18:12:01 +00:00
exitcurses();
2019-03-10 16:14:16 +00:00
pid = xfork(flag);
if (pid == 0) {
2019-03-10 16:51:27 +00:00
if (dir && chdir(dir) == -1)
_exit(1);
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);
}
2019-03-10 05:43:12 +00:00
execvp(*argv, argv);
_exit(1);
} else {
retstatus = join(pid, flag);
DPRINTF_D(pid);
2019-05-07 12:54:07 +00:00
if (flag & F_NORMAL)
refresh();
2019-01-05 18:32:55 +00:00
free(cmd);
2019-01-05 18:32:55 +00:00
}
2019-04-21 19:51:16 +00:00
return retstatus;
2019-01-05 18:32:55 +00:00
}
2017-06-20 04:56:31 +00:00
/* Get program name from env var, else return fallback program */
2018-10-22 14:25:45 +00:00
static char *xgetenv(const char *name, char *fallback)
{
2019-02-27 17:06:22 +00:00
char *value = getenv(name);
2017-06-21 04:19:02 +00:00
return value && value[0] ? value : fallback;
}
2019-04-24 15:01:52 +00:00
/* Checks if an env variable is set to 1 */
static bool xgetenv_set(const char *name)
{
char *value = getenv(name);
2019-04-25 13:32:55 +00:00
if (value && value[0] == '1' && !value[1])
2019-04-24 15:01:52 +00:00
return TRUE;
return FALSE;
}
2017-08-23 12:43:22 +00:00
/* Check if a dir exists, IS a dir and is readable */
2018-10-22 14:25:45 +00:00
static bool xdiraccess(const char *path)
2017-08-23 12:43:22 +00:00
{
2019-02-27 17:06:22 +00:00
DIR *dirp = opendir(path);
2017-08-23 12:43:22 +00:00
2019-04-11 13:57:38 +00:00
if (!dirp) {
2019-04-26 19:25:28 +00:00
printwarn(NULL);
2017-08-23 12:43:22 +00:00
return FALSE;
}
closedir(dirp);
return TRUE;
}
2019-03-02 09:39:00 +00:00
static void cpstr(char *buf)
{
snprintf(buf, CMD_LEN_MAX,
#ifdef __linux__
"xargs -0 -a %s -%c src %s src .", g_cppath, REPLACE_STR, cp);
#else
"cat %s | xargs -0 -o -%c src cp -iRp src .", g_cppath, REPLACE_STR);
#endif
}
2019-03-09 03:13:56 +00:00
static void mvstr(char *buf)
2019-03-02 09:39:00 +00:00
{
snprintf(buf, CMD_LEN_MAX,
#ifdef __linux__
2019-03-09 03:13:56 +00:00
"xargs -0 -a %s -%c src %s src .", g_cppath, REPLACE_STR, mv);
2019-03-02 09:39:00 +00:00
#else
2019-03-09 03:13:56 +00:00
"cat %s | xargs -0 -o -%c src mv -i src .", g_cppath, REPLACE_STR);
2019-03-02 09:39:00 +00:00
#endif
}
2019-03-09 03:13:56 +00:00
static void rmmulstr(char *buf)
2019-03-02 09:39:00 +00:00
{
2019-03-09 03:35:32 +00:00
if (cfg.trash) {
snprintf(buf, CMD_LEN_MAX,
#ifdef __linux__
"xargs -0 -a %s trash-put", g_cppath);
#else
"cat %s | xargs -0 trash-put", g_cppath);
#endif
} else {
snprintf(buf, CMD_LEN_MAX,
2019-03-02 09:39:00 +00:00
#ifdef __linux__
2019-03-09 03:35:32 +00:00
"xargs -0 -a %s rm -%cr", g_cppath, confirm_force());
2019-03-02 09:39:00 +00:00
#else
2019-03-09 03:35:32 +00:00
"cat %s | xargs -0 -o rm -%cr", g_cppath, confirm_force());
2019-03-02 09:39:00 +00:00
#endif
2019-03-09 03:35:32 +00:00
}
2019-03-02 09:39:00 +00:00
}
2019-03-09 03:13:56 +00:00
static void xrm(char *path)
2019-03-02 09:39:00 +00:00
{
2019-03-09 03:35:32 +00:00
if (cfg.trash)
2019-03-11 02:18:23 +00:00
spawn("trash-put", path, NULL, NULL, F_NORMAL);
2019-03-09 03:35:32 +00:00
else {
2019-03-13 18:42:37 +00:00
char rm_opts[] = "-ir";
2019-03-02 09:39:00 +00:00
2019-03-13 18:42:37 +00:00
rm_opts[1] = confirm_force();
2019-03-11 02:18:23 +00:00
spawn("rm", rm_opts, path, NULL, F_NORMAL);
2019-03-09 03:35:32 +00:00
}
2019-03-02 09:39:00 +00:00
}
2019-05-22 15:02:29 +00:00
static bool batch_rename(const char *path)
{
2019-05-22 15:02:29 +00:00
int fd1 = -1, fd2 = -1, i;
uint count = 0, lines = 0;
bool dir = FALSE, ret = FALSE;
const char renamecmd[] = "paste -d'\n' %s %s | xargs -d'\n' -n2 mv 2>/dev/null";
char foriginal[TMP_LEN_MAX] = {0};
2019-05-22 15:02:29 +00:00
char buf[sizeof(renamecmd) + (PATH_MAX << 1)];
if ((fd1 = create_tmp_file()) == -1)
2019-05-22 15:02:29 +00:00
return ret;
xstrlcpy(foriginal, g_tmpfpath, strlen(g_tmpfpath)+1);
if ((fd2 = create_tmp_file()) == -1) {
unlink(foriginal);
close(fd1);
2019-05-22 15:02:29 +00:00
return ret;
}
2019-05-22 15:02:29 +00:00
if (!copybufpos) {
if (!ndents)
return TRUE;
for (i = 0; i < ndents; ++i)
appendfpath(dents[i].name, NAME_MAX);
dir = TRUE;
}
2019-05-22 15:02:29 +00:00
selectiontofd(fd1, &count);
selectiontofd(fd2, NULL);
close(fd2);
2019-05-22 15:02:29 +00:00
if (dir)
copybufpos = 0;
2019-05-22 15:02:29 +00:00
spawn(editor, g_tmpfpath, NULL, path, F_CLI);
// Reopen file descriptor to get updated contents:
if ((fd2 = open(g_tmpfpath, O_RDONLY)) == -1)
2019-05-22 15:02:29 +00:00
goto finish;
while ((i = read(fd2, buf, sizeof(buf))) > 0) {
2019-05-22 15:02:29 +00:00
while (i)
lines += (buf[--i] == '\n');
}
2019-05-22 15:02:29 +00:00
if (i < 0)
goto finish;
DPRINTF_U(count);
DPRINTF_U(lines);
if (count != lines) {
DPRINTF_S("cannot delete files");
goto finish;
}
snprintf(buf, sizeof(buf), renamecmd, foriginal, g_tmpfpath);
spawn("sh", "-c", buf, path, F_NORMAL);
2019-05-22 15:02:29 +00:00
ret = TRUE;
2019-05-22 15:02:29 +00:00
finish:
if (fd1 >= 0)
close(fd1);
unlink(foriginal);
2019-05-22 15:02:29 +00:00
if (fd2 >= 0)
close(fd2);
unlink(g_tmpfpath);
2019-05-22 15:02:29 +00:00
return ret;
}
2019-05-19 15:59:29 +00:00
static void archive_selection(const char *cmd, const char *archive, const char *curpath)
2019-03-02 18:58:53 +00:00
{
snprintf(g_buf, CMD_LEN_MAX,
#ifdef __linux__
"xargs -0 -a %s %s %s",
#else
"cat %s | xargs -0 -o %s %s",
#endif
2019-05-19 15:59:29 +00:00
g_cppath, cmd, archive);
2019-03-11 02:18:23 +00:00
spawn("sh", "-c", g_buf, curpath, F_NORMAL);
2019-03-02 18:58:53 +00:00
}
2019-03-02 19:35:13 +00:00
static bool write_lastdir(const char *curpath)
{
char *tmp = getenv(env_cfg[NNN_TMPFILE]);
if (!tmp) {
printmsg("set NNN_TMPFILE");
return FALSE;
}
FILE *fp = fopen(tmp, "w");
if (fp) {
fprintf(fp, "cd \"%s\"", curpath);
fclose(fp);
}
return TRUE;
}
static int digit_compare(const char *a, const char *b)
{
while (*a && *b && *a == *b)
++a, ++b;
return *a - *b;
}
/*
* 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.
*/
2018-10-22 14:25:45 +00:00
static int xstricmp(const char * const s1, const char * const s2)
{
2019-05-27 01:53:30 +00:00
const char *c1 = s1, *c2 = s2, *m1, *m2;
2019-02-27 17:06:22 +00:00
int count1 = 0, count2 = 0, bias;
2019-05-27 01:53:30 +00:00
char sign[2] = {'+', '+'};
2019-03-11 16:19:35 +00:00
while (ISBLANK(*c1))
++c1;
2019-03-11 16:19:35 +00:00
while (ISBLANK(*c2))
++c2;
if (*c1 == '-' || *c1 == '+') {
if (*c1 == '-')
sign[0] = '-';
++c1;
}
if (*c2 == '-' || *c2 == '+') {
if (*c2 == '-')
sign[1] = '-';
2017-06-17 06:58:21 +00:00
++c2;
}
2019-02-05 13:59:59 +00:00
if (xisdigit(*c1) && xisdigit(*c2)) {
while (*c1 == '0')
++c1;
m1 = c1;
while (*c2 == '0')
++c2;
m2 = c2;
2019-02-05 13:59:59 +00:00
while (xisdigit(*c1)) {
++count1;
++c1;
}
2019-03-11 16:19:35 +00:00
while (ISBLANK(*c1))
++c1;
2019-02-05 13:59:59 +00:00
while (xisdigit(*c2)) {
++count2;
++c2;
}
2019-03-11 16:19:35 +00:00
while (ISBLANK(*c2))
++c2;
if (*c1 && !*c2)
return 1;
if (!*c1 && *c2)
return -1;
if (!*c1 && !*c2) {
if (sign[0] != sign[1])
return ((sign[0] == '+') ? 1 : -1);
if (count1 > count2)
return 1;
2018-11-03 10:20:01 +00:00
if (count1 < count2)
return -1;
bias = digit_compare(m1, m2);
if (bias)
return bias;
}
}
return strcoll(s1, s2);
}
/*
* Version comparison
*
* The code for version compare is a modified version of the GLIBC
* and uClibc implementation of strverscmp(). The source is here:
* https://elixir.bootlin.com/uclibc-ng/latest/source/libc/string/strverscmp.c
*/
/*
* Compare S1 and S2 as strings holding indices/version numbers,
* returning less than, equal to or greater than zero if S1 is less than,
* equal to or greater than S2 (for more info, see the texinfo doc).
*/
static int xstrverscmp(const char * const s1, const char * const s2)
{
2019-02-27 17:06:22 +00:00
const uchar *p1 = (const uchar *)s1;
const uchar *p2 = (const uchar *)s2;
uchar c1, c2;
int state, diff;
2019-02-22 19:32:05 +00:00
/*
* Symbol(s) 0 [1-9] others
* Transition (10) 0 (01) d (00) x
*/
static const uint8_t next_state[] = {
/* state x d 0 */
/* S_N */ S_N, S_I, S_Z,
/* S_I */ S_N, S_I, S_I,
/* S_F */ S_N, S_F, S_F,
/* S_Z */ S_N, S_F, S_Z
};
2019-02-22 19:32:05 +00:00
static const int8_t result_type[] __attribute__ ((aligned)) = {
/* state x/x x/d x/0 d/x d/d d/0 0/x 0/d 0/0 */
/* S_N */ VCMP, VCMP, VCMP, VCMP, VLEN, VCMP, VCMP, VCMP, VCMP,
2019-02-22 19:32:05 +00:00
/* S_I */ VCMP, -1, -1, 1, VLEN, VLEN, 1, VLEN, VLEN,
/* S_F */ VCMP, VCMP, VCMP, VCMP, VCMP, VCMP, VCMP, VCMP, VCMP,
2019-02-22 19:32:05 +00:00
/* S_Z */ VCMP, 1, 1, -1, VCMP, VCMP, -1, VCMP, VCMP
};
if (p1 == p2)
return 0;
2019-04-01 15:41:23 +00:00
c1 = TOUPPER(*p1);
++p1;
c2 = TOUPPER(*p2);
++p2;
/* Hint: '0' is a digit too. */
state = S_N + ((c1 == '0') + (xisdigit(c1) != 0));
while ((diff = c1 - c2) == 0) {
if (c1 == '\0')
return diff;
state = next_state[state];
2019-04-01 15:41:23 +00:00
c1 = TOUPPER(*p1);
++p1;
c2 = TOUPPER(*p2);
++p2;
state += (c1 == '0') + (xisdigit(c1) != 0);
}
state = result_type[state * 3 + (((c2 == '0') + (xisdigit(c2) != 0)))];
switch (state) {
case VCMP:
return diff;
case VLEN:
2019-02-22 19:32:05 +00:00
while (xisdigit(*p1++))
if (!xisdigit(*p2++))
return 1;
2019-02-22 19:32:05 +00:00
return xisdigit(*p2) ? -1 : diff;
default:
return state;
}
}
static int (*cmpfn)(const char * const s1, const char * const s2) = &xstricmp;
2017-08-20 16:10:52 +00:00
/* Return the integer value of a char representing HEX */
2018-10-22 14:25:45 +00:00
static char xchartohex(char c)
2017-08-20 16:10:52 +00:00
{
2019-02-05 13:59:59 +00:00
if (xisdigit(c))
2017-08-20 16:10:52 +00:00
return c - '0';
c = TOUPPER(c);
if (c >= 'A' && c <= 'F')
return c - 'A' + 10;
return c;
}
2019-02-27 17:06:22 +00:00
static int setfilter(regex_t *regex, const char *filter)
{
2019-02-27 17:06:22 +00:00
int r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
2019-02-28 15:37:42 +00:00
if (r != 0 && filter && filter[0] != '\0')
2019-03-10 23:38:39 +00:00
mvprintw(xlines - 1, 0, "regex error: %d\n", r);
2018-04-01 17:21:55 +00:00
return r;
}
2019-02-27 17:06:22 +00:00
static int visible_re(regex_t *regex, const char *fname, const char *fltr)
{
2019-01-13 17:19:14 +00:00
return regexec(regex, fname, 0, NULL, 0) == 0;
}
2019-02-27 17:06:22 +00:00
static int visible_str(regex_t *regex, const char *fname, const char *fltr)
2019-01-13 17:19:14 +00:00
{
return strcasestr(fname, fltr) != NULL;
}
2019-02-27 17:06:22 +00:00
static int (*filterfn)(regex_t *regex, const char *fname, const char *fltr) = &visible_re;
2019-01-13 17:19:14 +00:00
2018-10-22 14:25:45 +00:00
static int entrycmp(const void *va, const void *vb)
2014-10-07 06:05:30 +00:00
{
2019-03-04 19:34:01 +00:00
const struct entry *pa = (pEntry)va;
const struct entry *pb = (pEntry)vb;
2017-04-01 20:18:33 +00:00
2019-01-29 15:52:28 +00:00
if ((pb->flags & DIR_OR_LINK_TO_DIR) != (pa->flags & DIR_OR_LINK_TO_DIR)) {
if (pb->flags & DIR_OR_LINK_TO_DIR)
return 1;
2018-11-03 10:20:01 +00:00
2017-04-01 20:18:33 +00:00
return -1;
2019-01-29 15:52:28 +00:00
}
2017-04-01 20:18:33 +00:00
/* Do the actual sorting */
2019-03-21 15:39:55 +00:00
if (cfg.mtimeorder) {
if (pb->t >= pa->t)
return (int)(pb->t - pa->t);
return -1;
}
2017-06-20 14:58:53 +00:00
if (cfg.sizeorder) {
if (pb->size > pa->size)
return 1;
2018-11-03 10:20:01 +00:00
if (pb->size < pa->size)
return -1;
2019-03-04 15:01:57 +00:00
} else if (cfg.blkorder) {
if (pb->blocks > pa->blocks)
return 1;
2018-11-03 10:20:01 +00:00
if (pb->blocks < pa->blocks)
return -1;
}
return cmpfn(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.
* Also modifies the run and env pointers (used on SEL_{RUN,RUNARG}).
* The next keyboard input can be simulated by presel.
*/
2019-03-10 23:55:17 +00:00
static int nextsel(int presel)
2014-10-07 06:05:30 +00:00
{
2019-05-27 01:53:30 +00:00
int c = presel;
2019-02-27 17:06:22 +00:00
uint i;
const uint len = LEN(bindings);
2017-08-20 20:48:14 +00:00
#ifdef LINUX_INOTIFY
struct inotify_event *event;
static char inotify_buf[EVENT_BUF_LEN]
__attribute__ ((aligned(__alignof__(struct inotify_event))));
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
2014-10-07 06:05:30 +00:00
2019-03-12 21:22:50 +00:00
if (c == 0 || c == MSGWAIT) {
2017-04-28 23:02:47 +00:00
c = getch();
2018-11-26 21:49:37 +00:00
DPRINTF_D(c);
2019-03-10 23:55:17 +00:00
2019-03-12 21:22:50 +00:00
if (presel == MSGWAIT) {
if (cfg.filtermode)
c = FILTER;
else
c = CONTROL('L');
}
2019-03-10 23:55:17 +00:00
}
2017-08-22 21:58:26 +00:00
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
2018-11-10 08:26:14 +00:00
/*
2019-01-20 12:02:44 +00:00
* Do not check for directory changes in du mode.
* A redraw forces du calculation.
2017-08-20 20:48:14 +00:00
* 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)) {
2019-03-19 14:43:03 +00:00
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
if (i > 0) {
2019-05-27 01:53:30 +00:00
char *ptr;
2019-03-19 14:43:03 +00:00
for (ptr = inotify_buf; ptr < inotify_buf + i;
ptr += sizeof(struct inotify_event) + event->len) {
event = (struct inotify_event *) ptr;
DPRINTF_D(event->wd);
DPRINTF_D(event->mask);
2019-03-20 00:20:20 +00:00
if (!event->wd)
break;
if (event->mask & INOTIFY_MASK) {
c = CONTROL('L');
2019-03-20 00:20:20 +00:00
DPRINTF_S("issue refresh");
break;
}
}
2019-03-20 00:20:20 +00:00
DPRINTF_S("inotify read done");
}
}
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
2019-01-20 12:02:44 +00:00
&& kevent(kq, events_to_monitor, NUM_EVENT_SLOTS,
event_data, NUM_EVENT_FDS, &gtimeout) > 0)
2019-02-11 15:41:28 +00:00
c = CONTROL('L');
#endif
2017-08-20 20:48:14 +00:00
} else
idle = 0;
2017-06-17 06:58:21 +00:00
for (i = 0; i < len; ++i)
2019-01-21 16:20:29 +00:00
if (c == bindings[i].sym)
return bindings[i].act;
2014-10-07 06:05:30 +00:00
return 0;
}
2019-02-26 17:45:01 +00:00
static inline void swap_ent(int id1, int id2)
{
2019-02-27 17:06:22 +00:00
struct entry _dent, *pdent1 = &dents[id1], *pdent2 = &dents[id2];
2019-02-26 17:45:01 +00:00
*(&_dent) = *pdent1;
*pdent1 = *pdent2;
*pdent2 = *(&_dent);
}
2017-05-17 02:46:33 +00:00
/*
* Move non-matching entries to the end
*/
2019-02-27 17:06:22 +00:00
static int fill(const char *fltr, regex_t *re)
2017-04-28 23:02:47 +00:00
{
2019-02-28 15:37:42 +00:00
int count = 0;
for (; count < ndents; ++count) {
2019-01-13 17:19:14 +00:00
if (filterfn(re, dents[count].name, fltr) == 0) {
2017-05-17 02:46:33 +00:00
if (count != --ndents) {
2019-02-26 17:45:01 +00:00
swap_ent(count, ndents);
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
}
2019-02-27 17:06:22 +00:00
static int matches(const char *fltr)
2017-04-28 23:02:47 +00:00
{
2019-02-27 17:06:22 +00:00
regex_t re;
2017-04-28 23:02:47 +00:00
/* Search filter */
2019-01-13 17:19:14 +00:00
if (cfg.filter_re && setfilter(&re, fltr) != 0)
2017-04-28 23:02:47 +00:00
return -1;
2019-01-13 17:19:14 +00:00
ndents = fill(fltr, &re);
if (cfg.filter_re)
regfree(&re);
if (!ndents)
2018-03-18 22:24:19 +00:00
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;
}
2018-10-22 14:25:45 +00:00
static int filterentries(char *path)
{
2019-05-15 16:59:38 +00:00
wchar_t *wln = (wchar_t *)alloca(sizeof(wchar_t) * REGEX_MAX);
char *ln = g_ctx[cfg.curctx].c_fltr;
2019-02-27 17:06:22 +00:00
wint_t ch[2] = {0};
int r, total = ndents, oldcur = cur, len;
2019-04-12 10:12:33 +00:00
char *pln = g_ctx[cfg.curctx].c_fltr + 1;
2017-04-28 23:02:47 +00:00
cur = 0;
if (ndents && ln[0] == FILTER && *pln) {
if (matches(pln) != -1)
redraw(path);
len = mbstowcs(wln, ln, REGEX_MAX);
} else {
ln[0] = wln[0] = FILTER;
ln[1] = wln[1] = '\0';
len = 1;
}
2017-08-24 01:34:56 +00:00
cleartimeout();
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) {
2018-10-27 20:22:07 +00:00
switch (*ch) {
case KEY_DC: // fallthrough
case KEY_BACKSPACE: // fallthrough
case '\b': // fallthrough
case CONTROL('L'): // fallthrough
case 127: /* handle DEL */
if (len == 1 && *ch != CONTROL('L')) {
2017-12-14 13:42:14 +00:00
cur = oldcur;
*ch = CONTROL('L');
goto end;
}
2017-04-28 23:02:47 +00:00
2018-10-27 20:22:07 +00:00
if (*ch == CONTROL('L'))
while (len > 1)
wln[--len] = '\0';
else
wln[--len] = '\0';
2017-12-14 13:42:14 +00:00
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;
2018-08-28 17:21:26 +00:00
if (matches(pln) != -1)
redraw(path);
2017-12-14 13:42:14 +00:00
printprompt(ln);
continue;
2018-10-27 20:22:07 +00:00
case 27: /* Exit filter mode on Escape */
2019-01-05 21:38:46 +00:00
if (len == 1)
cur = oldcur;
2018-10-27 03:05:05 +00:00
goto end;
}
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 */
2019-01-04 14:06:03 +00:00
if (*ch < ASCII_MAX && keyname(*ch)[0] == '^' && *ch != '^') {
2018-04-25 16:27:46 +00:00
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;
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);
2018-08-07 23:34:34 +00:00
/* Forward-filtering optimization:
* - new matches can only be a subset of current matches.
*/
/* ndents = total; */
2017-04-28 23:02:47 +00:00
if (matches(pln) == -1)
continue;
/* If the only match is a dir, auto-select and cd into it */
2019-01-20 12:02:44 +00:00
if (ndents == 1 && cfg.filtermode
&& cfg.autoselect && S_ISDIR(dents[0].mode)) {
*ch = KEY_ENTER;
cur = 0;
goto end;
}
/*
* redraw() should be above the auto-select optimization, for
* the case where there's an issue with dir auto-select, say,
2018-11-09 14:37:47 +00:00
* due to a permission problem. The transition is _jumpy_ in
* case of such an error. However, we optimize for successful
* cases where the dir has permissions. This skips a redraw().
*/
2017-04-28 23:02:47 +00:00
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:
2019-04-12 10:12:33 +00:00
if (*ch != '\t')
g_ctx[cfg.curctx].c_fltr[0] = g_ctx[cfg.curctx].c_fltr[1] = '\0';
2019-04-12 10:12:33 +00:00
2019-05-10 02:14:24 +00:00
move_cursor(cur, 0);
2019-05-09 02:38:32 +00:00
curs_set(FALSE);
2017-08-24 01:34:56 +00:00
settimeout();
/* Return keys for navigation etc. */
2017-04-28 23:02:47 +00:00
return *ch;
}
2017-08-24 01:34:56 +00:00
/* Show a prompt with input string and return the changes */
2018-12-09 13:48:00 +00:00
static char *xreadline(char *prefill, char *prompt)
2017-08-24 01:34:56 +00:00
{
2017-08-24 04:45:32 +00:00
size_t len, pos;
int x, y, r;
wint_t ch[2] = {0};
2019-02-27 17:06:22 +00:00
wchar_t * const buf = (wchar_t *)g_buf;
2017-08-24 01:34:56 +00:00
cleartimeout();
2018-04-25 17:07:59 +00:00
printprompt(prompt);
2018-12-09 13:48:00 +00:00
if (prefill) {
DPRINTF_S(prefill);
len = pos = mbstowcs(buf, prefill, NAME_MAX);
2017-09-10 07:35:25 +00:00
} 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);
2018-10-27 03:05:05 +00:00
curs_set(TRUE);
2017-08-24 01:34:56 +00:00
while (1) {
buf[len] = ' ';
2017-08-24 04:45:32 +00:00
mvaddnwstr(y, x, buf, len + 1);
move(y, x + wcswidth(buf, pos));
2017-08-24 01:34:56 +00:00
2018-07-12 14:28:53 +00:00
r = get_wch(ch);
if (r != ERR) {
if (r == OK) {
2018-07-04 13:32:47 +00:00
switch (*ch) {
case KEY_ENTER: // fallthrough
case '\n': // fallthrough
2018-07-04 13:32:47 +00:00
case '\r':
goto END;
2019-02-22 19:32:05 +00:00
case 127: // fallthrough
2019-01-20 12:02:44 +00:00
case '\b': /* rhel25 sends '\b' for backspace */
if (pos > 0) {
memmove(buf + pos - 1, buf + pos, (len - pos) << 2);
--len, --pos;
} // fallthrough
2018-07-04 13:32:47 +00:00
case '\t': /* TAB breaks cursor position, ignore it */
continue;
2018-07-04 13:32:47 +00:00
case CONTROL('L'):
2018-04-25 17:07:59 +00:00
printprompt(prompt);
2017-08-25 16:19:55 +00:00
len = pos = 0;
continue;
2018-07-04 13:32:47 +00:00
case CONTROL('A'):
pos = 0;
continue;
2018-07-04 13:32:47 +00:00
case CONTROL('E'):
pos = len;
continue;
2018-07-04 13:32:47 +00:00
case CONTROL('U'):
2018-04-25 17:07:59 +00:00
printprompt(prompt);
memmove(buf, buf + pos, (len - pos) << 2);
len -= pos;
pos = 0;
continue;
2018-10-27 03:05:05 +00:00
case 27: /* Exit prompt on Escape */
len = 0;
goto END;
}
/* Filter out all other control chars */
2019-01-04 14:06:03 +00:00
if (*ch < ASCII_MAX && keyname(*ch)[0] == '^')
continue;
if (pos < NAME_MAX - 1) {
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) {
2019-01-20 12:02:44 +00:00
memmove(buf + pos, buf + pos + 1,
(len - pos - 1) << 2);
--len;
}
break;
2019-03-25 15:50:18 +00:00
case KEY_END:
pos = len;
break;
case KEY_HOME:
pos = 0;
break;
default:
break;
}
2017-08-24 01:34:56 +00:00
}
}
}
2018-07-04 13:32:47 +00:00
END:
2018-10-27 03:05:05 +00:00
curs_set(FALSE);
2017-08-24 01:34:56 +00:00
settimeout();
2018-11-07 16:43:56 +00:00
clearprompt();
2018-10-27 03:05:05 +00:00
2018-11-07 16:43:56 +00:00
buf[len] = '\0';
2018-12-17 01:42:50 +00:00
wcstombs(g_buf + ((NAME_MAX + 1) << 2), buf, NAME_MAX);
return g_buf + ((NAME_MAX + 1) << 2);
2017-08-24 01:34:56 +00:00
}
2019-04-26 20:11:35 +00:00
#ifndef NORL
/*
* Caller should check the value of presel to confirm if it needs to wait to show warning
*/
static char *getreadline(char *prompt, char *path, char *curpath, int *presel)
{
/* Switch to current path for readline(3) */
if (chdir(path) == -1) {
printwarn(presel);
return NULL;
}
exitcurses();
2019-06-01 02:03:11 +00:00
char *input = readline(prompt);
2019-04-26 20:11:35 +00:00
refresh();
if (chdir(curpath) == -1) {
printwarn(presel);
free(input);
return NULL;
}
if (input && input[0]) {
add_history(input);
xstrlcpy(g_buf, input, CMD_LEN_MAX);
free(input);
return g_buf;
}
free(input);
return NULL;
}
#endif
2017-04-02 08:48:54 +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
*/
2019-01-20 21:19:05 +00:00
static size_t mkpath(char *dir, char *name, char *out)
{
2019-02-27 17:06:22 +00:00
size_t len;
2018-01-13 21:57:24 +00:00
/* Handle absolute path */
2017-03-29 14:12:23 +00:00
if (name[0] == '/')
2019-01-20 21:19:05 +00:00
return xstrlcpy(out, name, PATH_MAX);
2018-07-08 16:02:26 +00:00
/* Handle root case */
if (istopdir(dir))
len = 1;
else
2019-01-20 21:19:05 +00:00
len = xstrlcpy(out, dir, PATH_MAX);
2019-05-15 16:59:38 +00:00
out[len - 1] = '/'; // NOLINT
2019-01-20 21:19:05 +00:00
return (xstrlcpy(out + len, name, PATH_MAX - len) + len);
}
2019-01-20 12:20:49 +00:00
/*
* Create symbolic/hard link(s) to file(s) in selection list
* Returns the number of links created
*/
2019-04-27 12:28:55 +00:00
static int xlink(char *suffix, char *path, char *buf, int *presel, int type)
2019-01-20 11:29:55 +00:00
{
int count = 0;
char *pbuf = pcopybuf, *fname;
ssize_t pos = 0, len, r;
int (*link_fn)(const char *, const char *) = NULL;
/* Check if selection is empty */
2019-04-27 12:28:55 +00:00
if (!copybufpos) {
printwait(messages[NONE_SELECTED], presel);
return -1;
}
2019-01-20 11:29:55 +00:00
if (type == 's') /* symbolic link */
link_fn = &symlink;
2019-04-27 12:28:55 +00:00
else /* hard link */
2019-01-20 11:29:55 +00:00
link_fn = &link;
while (pos < copybufpos) {
len = strlen(pbuf);
fname = xbasename(pbuf);
2019-01-20 21:19:05 +00:00
r = mkpath(path, fname, buf);
2019-01-20 11:29:55 +00:00
xstrlcpy(buf + r - 1, suffix, PATH_MAX - r - 1);
2019-01-20 16:17:16 +00:00
if (!link_fn(pbuf, buf))
2019-01-20 11:29:55 +00:00
++count;
pos += len + 1;
pbuf += len + 1;
}
2019-04-27 12:28:55 +00:00
if (!count)
printwait("none created", presel);
2019-01-20 11:29:55 +00:00
return count;
}
2019-02-22 19:32:05 +00:00
static bool parsebmstr(void)
2017-06-11 04:15:50 +00:00
{
int i = 0;
2019-01-20 18:21:45 +00:00
char *bms = getenv(env_cfg[NNN_BMS]);
2019-01-25 16:33:08 +00:00
char *nextkey = bms;
2019-02-22 19:32:05 +00:00
2019-01-25 16:45:11 +00:00
if (!bms || !*bms)
2018-12-08 09:58:55 +00:00
return TRUE;
2017-06-11 04:15:50 +00:00
2017-08-24 04:46:35 +00:00
while (*bms && i < BM_MAX) {
2019-01-25 16:33:08 +00:00
if (bms == nextkey) {
bookmark[i].key = *bms;
if (*++bms != ':')
return FALSE;
if (*++bms == '\0')
return FALSE;
bookmark[i].loc = bms;
++i;
2017-06-11 04:15:50 +00:00
}
2019-01-25 16:33:08 +00:00
if (*bms == ';') {
2019-03-07 21:18:20 +00:00
/* Remove trailing space */
if (i > 0 && *(bms - 1) == '/')
*(bms - 1) = '\0';
2017-06-11 04:15:50 +00:00
*bms = '\0';
2019-01-25 16:33:08 +00:00
nextkey = bms + 1;
}
2017-06-11 04:15:50 +00:00
2017-06-17 06:58:21 +00:00
++bms;
2019-01-25 16:33:08 +00:00
}
if (i < BM_MAX) {
if (*bookmark[i - 1].loc == '\0')
return FALSE;
bookmark[i].key = '\0';
2017-06-11 04:15:50 +00:00
}
2018-11-11 21:34:17 +00:00
2018-12-08 09:58:55 +00:00
return TRUE;
2017-06-11 04:15:50 +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
*/
2019-02-27 17:06:22 +00:00
static char *get_bm_loc(char *buf, int key)
{
2019-02-28 15:37:42 +00:00
int r = 0;
for (; bookmark[r].key && r < BM_MAX; ++r) {
2018-11-12 17:59:29 +00:00
if (bookmark[r].key == key) {
if (bookmark[r].loc[0] == '~') {
2019-04-23 03:20:25 +00:00
ssize_t len = strlen(home);
ssize_t loclen = strlen(bookmark[r].loc);
2019-03-04 19:34:01 +00:00
2019-04-23 03:20:25 +00:00
if (!buf)
buf = (char *)malloc(len + loclen);
2019-04-23 03:20:25 +00:00
xstrlcpy(buf, home, len + 1);
xstrlcpy(buf + len, bookmark[r].loc + 1, loclen);
return buf;
2019-04-23 14:29:37 +00:00
}
return realpath(bookmark[r].loc, buf);
}
}
DPRINTF_S("Invalid key");
return NULL;
}
2019-03-01 08:24:40 +00:00
static inline void resetdircolor(int flags)
{
2019-02-01 05:33:11 +00:00
if (cfg.dircolor && !(flags & DIR_OR_LINK_TO_DIR)) {
2018-12-03 16:14:33 +00:00
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
cfg.dircolor = 0;
}
}
2017-07-02 10:42:30 +00:00
/*
* Replace escape characters in a string with '?'
* Adjust string length to maxcols if > 0;
2019-03-09 09:26:18 +00:00
* Max supported str length: NAME_MAX;
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
*/
2018-10-22 14:25:45 +00:00
static char *unescape(const char *str, uint maxcols)
{
2019-03-09 09:26:18 +00:00
static wchar_t wbuf[NAME_MAX + 1] __attribute__ ((aligned));
2019-03-09 12:48:32 +00:00
wchar_t *buf = wbuf;
2019-05-27 01:53:30 +00:00
size_t lencount = 0;
2017-06-15 14:04:56 +00:00
/* Convert multi-byte to wide char */
2019-05-27 01:53:30 +00:00
size_t len = mbstowcs(wbuf, str, NAME_MAX);
2019-03-09 12:48:32 +00:00
while (*buf && lencount <= maxcols) {
if (*buf <= '\x1f' || *buf == '\x7f')
*buf = '\?';
++buf;
++lencount;
}
len = lencount = wcswidth(wbuf, len);
2017-12-19 18:03:27 +00:00
2019-03-09 12:48:32 +00:00
/* Reduce number of wide chars to max columns */
if (len > maxcols) {
lencount = maxcols + 1;
2019-02-12 15:42:34 +00:00
2019-02-13 18:11:49 +00:00
/* Reduce wide chars one by one till it fits */
2019-02-12 03:22:31 +00:00
while (len > maxcols)
len = wcswidth(wbuf, --lencount);
wbuf[lencount] = L'\0';
}
/* Convert wide char to multi-byte */
2019-03-09 09:26:18 +00:00
wcstombs(g_buf, wbuf, NAME_MAX);
2018-01-04 12:16:06 +00:00
return g_buf;
}
2018-10-22 14:25:45 +00:00
static char *coolsize(off_t size)
{
2019-05-15 16:59:38 +00:00
const char * const U = "BKMGTPEZY";
2017-04-01 07:26:25 +00:00
static char size_buf[12]; /* Buffer to hold human readable size */
2019-05-27 01:53:30 +00:00
off_t rem = 0;
int i = 0;
2019-05-16 19:02:07 +00:00
while (size >= 1024) {
2018-01-08 18:43:11 +00:00
rem = size & (0x3FF); /* 1024 - 1 = 0x3FF */
size >>= 10;
2017-06-17 06:58:21 +00:00
++i;
}
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;
}
2018-11-07 16:53:15 +00:00
if (i > 0 && i < 6)
2019-05-16 19:02:07 +00:00
snprintf(size_buf, 12, "%u.%0*u%c", (uint)size, i & 0b11, (uint)rem, U[i]);
2018-03-05 12:45:42 +00:00
else
2019-05-16 19:02:07 +00:00
snprintf(size_buf, 12, "%u%c", (uint)size, U[i]);
2018-03-05 12:45:42 +00:00
return size_buf;
}
2019-05-09 02:04:10 +00:00
static void printent(const struct entry *ent, int sel, uint namecols)
{
2019-05-09 02:04:10 +00:00
const char *pname = unescape(ent->name, namecols);
const char cp = (ent->flags & FILE_COPIED) ? '+' : ' ';
2019-05-27 01:53:30 +00:00
char ind[2] = {'\0', '\0'};
2019-05-09 02:04:10 +00:00
mode_t mode = ent->mode;
2019-03-04 18:07:51 +00:00
2019-01-21 14:07:00 +00:00
switch (mode & S_IFMT) {
case S_IFREG:
if (mode & 0100)
ind[0] = '*';
break;
case S_IFDIR:
ind[0] = '/';
2019-01-21 14:07:00 +00:00
break;
case S_IFLNK:
ind[0] = '@';
2019-01-21 14:07:00 +00:00
break;
case S_IFSOCK:
ind[0] = '=';
2019-01-21 14:07:00 +00:00
break;
case S_IFIFO:
ind[0] = '|';
2019-01-21 14:07:00 +00:00
break;
case S_IFBLK: // fallthrough
case S_IFCHR:
break;
default:
ind[0] = '?';
break;
}
2017-09-02 08:39:34 +00:00
/* Directories are always shown on top */
2019-02-01 05:33:11 +00:00
resetdircolor(ent->flags);
2017-09-02 08:39:34 +00:00
2019-05-09 02:04:10 +00:00
printw("%s%c%s%s\n", CURSYM(sel), cp, pname, ind);
2017-09-02 08:39:34 +00:00
}
2019-02-27 17:06:22 +00:00
static void printent_long(const struct entry *ent, int sel, uint namecols)
{
2019-03-04 18:54:58 +00:00
char timebuf[18], permbuf[4], ind1 = '\0', ind2[] = "\0\0";
const char cp = (ent->flags & FILE_COPIED) ? '+' : ' ';
2017-04-21 21:40:02 +00:00
2019-02-23 14:04:07 +00:00
/* Timestamp */
strftime(timebuf, 18, "%F %R", localtime(&ent->t));
/* Permissions */
2019-05-16 19:04:50 +00:00
permbuf[0] = '0' + ((ent->mode >> 6) & 7);
permbuf[1] = '0' + ((ent->mode >> 3) & 7);
permbuf[2] = '0' + (ent->mode & 7);
2019-03-01 08:24:40 +00:00
permbuf[3] = '\0';
2019-02-23 14:04:07 +00:00
/* Trim escape chars from name */
2019-02-27 17:06:22 +00:00
const char *pname = unescape(ent->name, namecols);
2017-03-30 04:39:21 +00:00
/* Directories are always shown on top */
2019-02-01 05:33:11 +00:00
resetdircolor(ent->flags);
2017-06-15 14:04:56 +00:00
if (sel)
attron(A_REVERSE);
2019-01-21 14:07:00 +00:00
switch (ent->mode & S_IFMT) {
case S_IFREG:
if (ent->mode & 0100)
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s %8.8s* %s*\n", cp, timebuf, permbuf,
2019-01-21 14:07:00 +00:00
coolsize(cfg.blkorder ? ent->blocks << BLK_SHIFT : ent->size), pname);
else
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s %8.8s %s\n", cp, timebuf, permbuf,
2019-01-21 14:07:00 +00:00
coolsize(cfg.blkorder ? ent->blocks << BLK_SHIFT : ent->size), pname);
break;
case S_IFDIR:
2018-01-07 14:38:59 +00:00
if (cfg.blkorder)
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s %8.8s/ %s/\n",
2019-03-01 01:16:13 +00:00
cp, timebuf, permbuf, coolsize(ent->blocks << BLK_SHIFT), pname);
2018-01-07 14:38:59 +00:00
else
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s / %s/\n", cp, timebuf, permbuf, pname);
2019-01-21 14:07:00 +00:00
break;
case S_IFLNK:
2019-01-29 15:52:28 +00:00
if (ent->flags & DIR_OR_LINK_TO_DIR)
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s @/ %s@\n", cp, timebuf, permbuf, pname);
else
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s @ %s@\n", cp, timebuf, permbuf, pname);
2019-01-21 14:07:00 +00:00
break;
case S_IFSOCK:
2019-03-01 08:24:40 +00:00
ind1 = ind2[0] = '='; // fallthrough
2019-01-21 14:07:00 +00:00
case S_IFIFO:
2019-03-01 08:24:40 +00:00
if (!ind1)
ind1 = ind2[0] = '|'; // fallthrough
2019-01-21 14:07:00 +00:00
case S_IFBLK:
2019-03-01 08:24:40 +00:00
if (!ind1)
ind1 = 'b'; // fallthrough
2019-01-21 14:07:00 +00:00
case S_IFCHR:
2019-03-01 08:24:40 +00:00
if (!ind1)
ind1 = 'c'; // fallthrough
2019-01-21 14:07:00 +00:00
default:
2019-03-01 08:24:40 +00:00
if (!ind1)
ind1 = ind2[0] = '?';
2019-03-01 08:47:45 +00:00
printw("%c%-16.16s %s %c %s%s\n", cp, timebuf, permbuf, ind1, pname, ind2);
2019-01-21 14:07:00 +00:00
break;
}
2017-06-15 14:04:56 +00:00
if (sel)
attroff(A_REVERSE);
}
2019-02-27 17:06:22 +00:00
static void (*printptr)(const struct entry *ent, int sel, uint namecols) = &printent_long;
2019-04-09 14:55:17 +00:00
static void savecurctx(settings *curcfg, char *path, char *curname, int r /* next context num */)
{
settings cfg = *curcfg;
2019-04-21 14:23:13 +00:00
bool copymode = cfg.copymode ? TRUE : FALSE;
2019-04-09 14:55:17 +00:00
#ifdef DIR_LIMITED_COPY
g_crc = 0;
#endif
/* Save current context */
xstrlcpy(g_ctx[cfg.curctx].c_name, curname, NAME_MAX + 1);
g_ctx[cfg.curctx].c_cfg = cfg;
if (g_ctx[r].c_cfg.ctxactive) { /* Switch to saved context */
/* Switch light/detail mode */
if (cfg.showdetail != g_ctx[r].c_cfg.showdetail)
/* set the reverse */
printptr = cfg.showdetail ? &printent : &printent_long;
cfg = g_ctx[r].c_cfg;
} else { /* Setup a new context from current context */
g_ctx[r].c_cfg.ctxactive = 1;
xstrlcpy(g_ctx[r].c_path, path, PATH_MAX);
g_ctx[r].c_last[0] = '\0';
xstrlcpy(g_ctx[r].c_name, curname, NAME_MAX + 1);
g_ctx[r].c_fltr[0] = g_ctx[r].c_fltr[1] = '\0';
g_ctx[r].c_cfg = cfg;
2019-04-18 14:57:35 +00:00
g_ctx[r].c_cfg.runplugin = 0;
2019-04-09 14:55:17 +00:00
}
2019-04-21 14:23:13 +00:00
/* Continue copy mode */
cfg.copymode = copymode;
2019-04-09 14:55:17 +00:00
cfg.curctx = r;
*curcfg = cfg;
}
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.
*
2018-12-01 07:44:46 +00:00
* If page is valid, returns NULL
2017-05-15 12:52:00 +00:00
*/
2019-02-27 17:06:22 +00:00
static char *get_output(char *buf, const size_t bytes, const char *file,
const char *arg1, const char *arg2, const bool page)
{
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
2018-12-01 07:44:46 +00:00
if (!page) {
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;
}
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]);
2019-03-11 02:18:23 +00:00
spawn(pager, NULL, NULL, NULL, F_CLI);
2017-05-15 12:52:00 +00:00
_exit(1);
}
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;
}
2019-02-27 17:06:22 +00:00
static bool getutil(const char *util)
2019-02-22 19:32:05 +00:00
{
2018-12-08 04:14:08 +00:00
if (!get_output(g_buf, CMD_LEN_MAX, "which", util, NULL, FALSE))
return FALSE;
return TRUE;
}
/*
* Follows the stat(1) output closely
*/
2019-02-27 17:06:22 +00:00
static bool show_stats(const char *fpath, const char *fname, const struct stat *sb)
{
2019-03-01 09:51:58 +00:00
int fd;
char *p, *begin = g_buf;
2019-04-01 14:44:49 +00:00
size_t r;
2019-03-01 09:51:58 +00:00
FILE *fp;
2018-10-05 02:14:17 +00:00
2019-04-27 14:35:57 +00:00
fd = create_tmp_file();
2017-04-22 10:20:36 +00:00
if (fd == -1)
2018-12-08 09:58:55 +00:00
return FALSE;
2019-04-01 14:44:49 +00:00
r = xstrlcpy(g_buf, "stat \'", PATH_MAX);
r += xstrlcpy(g_buf + r - 1, fpath, PATH_MAX);
g_buf[r - 2] = '\'';
g_buf[r - 1] = '\0';
DPRINTF_S(g_buf);
2018-08-17 00:25:00 +00:00
2019-03-01 09:51:58 +00:00
fp = popen(g_buf, "r");
2019-04-11 13:57:38 +00:00
if (fp) {
while (fgets(g_buf, CMD_LEN_MAX - 1, fp))
2019-03-01 09:51:58 +00:00
dprintf(fd, "%s", g_buf);
pclose(fp);
2018-01-04 12:40:59 +00:00
}
if (S_ISREG(sb->st_mode)) {
/* Show file(1) output */
2018-12-04 12:51:01 +00:00
p = get_output(g_buf, CMD_LEN_MAX, "file", "-b", fpath, FALSE);
if (p) {
2017-04-22 10:20:36 +00:00
dprintf(fd, "\n\n ");
while (*p) {
if (*p == ',') {
*p = '\0';
2017-04-22 10:20:36 +00:00
dprintf(fd, " %s\n", begin);
begin = p + 1;
}
2017-06-17 06:58:21 +00:00
++p;
}
2017-04-22 10:20:36 +00:00
dprintf(fd, " %s", begin);
}
2019-03-01 09:51:58 +00:00
}
2019-03-01 09:51:58 +00:00
dprintf(fd, "\n\n");
2017-05-15 12:52:00 +00:00
close(fd);
2017-04-21 18:26:48 +00:00
2019-03-11 02:18:23 +00:00
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
unlink(g_tmpfpath);
2018-12-08 09:58:55 +00:00
return TRUE;
}
2018-10-22 14:25:45 +00:00
static size_t get_fs_info(const char *path, bool type)
2017-08-11 20:12:55 +00:00
{
2019-02-27 17:06:22 +00:00
struct statvfs svb;
2017-08-11 20:12:55 +00:00
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)
2019-03-21 15:39:55 +00:00
return svb.f_blocks << ffs((int)(svb.f_bsize >> 1));
2018-11-03 10:20:01 +00:00
2019-03-21 15:39:55 +00:00
return svb.f_bavail << ffs((int)(svb.f_frsize >> 1));
2017-08-11 20:12:55 +00:00
}
2019-02-27 17:06:22 +00:00
static bool show_mediainfo(const char *fpath, const char *arg)
2017-04-21 18:26:48 +00:00
{
2018-12-08 04:14:08 +00:00
if (!getutil(utils[cfg.metaviewer]))
return FALSE;
2017-04-21 18:26:48 +00:00
exitcurses();
2018-12-01 07:44:46 +00:00
get_output(NULL, 0, utils[cfg.metaviewer], fpath, arg, TRUE);
refresh();
2018-12-08 04:14:08 +00:00
return TRUE;
2017-04-21 18:26:48 +00:00
}
2019-05-19 15:59:29 +00:00
/* Extracts or lists archive */
static bool handle_archive(char *fpath, const char *dir, char op)
2017-09-27 14:49:42 +00:00
{
2019-05-19 15:59:29 +00:00
char larg[] = "-tf";
char xarg[] = "-xf";
char *util;
if (getutil(utils[ATOOL])) {
util = utils[ATOOL];
larg[1] = op;
larg[2] = xarg[2] = '\0';
} else if (getutil(utils[BSDTAR]))
util = utils[BSDTAR];
else
2018-12-08 04:14:08 +00:00
return FALSE;
2017-09-27 14:49:42 +00:00
2019-05-19 15:59:29 +00:00
if (op == 'x') { // extract
spawn(util, xarg, fpath, dir, F_NORMAL);
} else { // list
2017-09-27 14:49:42 +00:00
exitcurses();
2019-05-19 15:59:29 +00:00
get_output(NULL, 0, util, larg, fpath, TRUE);
refresh();
2017-09-27 14:49:42 +00:00
}
2018-12-08 04:14:08 +00:00
return TRUE;
2017-09-27 14:49:42 +00:00
}
2019-04-21 13:58:55 +00:00
static char *visit_parent(char *path, char *newpath, int *presel)
{
char *dir;
/* There is no going back */
if (istopdir(path)) {
/* Continue in navigate-as-you-type mode, if enabled */
if (cfg.filtermode)
*presel = FILTER;
return NULL;
}
/* Use a copy as dirname() may change the string passed */
xstrlcpy(newpath, path, PATH_MAX);
dir = dirname(newpath);
if (access(dir, R_OK) == -1) {
2019-04-26 19:25:28 +00:00
printwarn(presel);
2019-04-21 13:58:55 +00:00
return NULL;
}
return dir;
}
static bool execute_file(int cur, char *path, char *newpath, int *presel)
{
if (!ndents)
return FALSE;
/* Check if this is a directory */
if (!S_ISREG(dents[cur].mode)) {
printwait("not regular file", presel);
return FALSE;
}
/* Check if file is executable */
if (!(dents[cur].mode & 0100)) {
printwait("permission denied", presel);
return FALSE;
}
mkpath(path, dents[cur].name, newpath);
spawn(newpath, NULL, NULL, path, F_NORMAL);
return TRUE;
}
2019-04-21 20:44:43 +00:00
static bool create_dir(const char *path)
{
if (!xdiraccess(path)) {
if (errno != ENOENT)
return FALSE;
2019-05-27 13:25:43 +00:00
if (mkdir(path, 0755) == -1)
2019-04-21 20:44:43 +00:00
return FALSE;
}
return TRUE;
}
2019-04-21 06:25:00 +00:00
static bool sshfs_mount(char *path, char *newpath, int *presel)
{
int r;
char *tmp;
2019-04-21 20:44:43 +00:00
tmp = xreadline(NULL, "host: ");
2019-04-21 06:25:00 +00:00
if (!tmp[0])
return FALSE;
/* Create the mount point */
2019-04-21 20:44:43 +00:00
mkpath(cfgdir, tmp, newpath);
if (!create_dir(newpath)) {
2019-04-21 06:25:00 +00:00
printwait(strerror(errno), presel);
return FALSE;
}
if (!getutil("sshfs")) {
printwait("sshfs missing", presel);
return FALSE;
}
/* Convert "Host" to "Host:" */
r = strlen(tmp);
tmp[r] = ':';
tmp[r + 1] = '\0';
/* Connect to remote */
2019-04-21 19:51:16 +00:00
if (spawn("sshfs", tmp, newpath, NULL, F_NORMAL)) {
printwait("mount failed", presel);
return FALSE;
}
2019-04-21 06:25:00 +00:00
return TRUE;
}
2019-04-21 20:44:43 +00:00
static bool sshfs_unmount(char *path, char *newpath, int *presel)
2019-04-21 06:25:00 +00:00
{
static char cmd[] = "fusermount3"; /* Arch Linux utility */
static bool found = FALSE;
2019-04-21 20:44:43 +00:00
char *tmp;
2019-04-21 06:25:00 +00:00
/* On Ubuntu it's fusermount */
2019-05-15 16:59:38 +00:00
if (!found && !getutil(cmd)) {
2019-04-21 06:25:00 +00:00
cmd[10] = '\0';
2019-05-15 16:59:38 +00:00
found = TRUE;
}
2019-04-21 06:25:00 +00:00
2019-04-21 20:44:43 +00:00
tmp = xreadline(NULL, "host: ");
if (!tmp[0])
2019-04-21 06:25:00 +00:00
return FALSE;
2019-04-21 20:44:43 +00:00
/* Create the mount point */
mkpath(cfgdir, tmp, newpath);
2019-04-21 06:25:00 +00:00
if (!xdiraccess(newpath)) {
*presel = MSGWAIT;
return FALSE;
}
2019-04-21 19:51:16 +00:00
if (spawn(cmd, "-u", newpath, NULL, F_NORMAL)) {
printwait("unmount failed", presel);
return FALSE;
}
2019-04-21 06:25:00 +00:00
return TRUE;
}
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.
*/
2019-02-27 17:06:22 +00:00
static bool show_help(const char *path)
2017-04-03 17:03:46 +00:00
{
2019-01-27 09:08:19 +00:00
int i = 0, fd;
2019-02-27 17:06:22 +00:00
const char *start, *end;
const char helpstr[] = {
2019-02-22 19:32:05 +00:00
"0\n"
"1NAVIGATION\n"
"a↑ k Up PgUp ^U Scroll up\n"
"a↓ j Down PgDn ^D Scroll down\n"
2019-04-13 03:00:32 +00:00
"a← h Parent dir ~ ` @ - HOME, /, start, last\n"
"8↵ → l Open file/dir . Toggle show hidden\n"
"4Home g ^A First entry G ^E Last entry\n"
2019-02-22 19:32:05 +00:00
"c/ Filter Ins ^T Toggle nav-as-you-type\n"
"cb Pin current dir ^B Go to pinned dir\n"
"7Tab ^I Next context d Toggle detail view\n"
2019-04-12 10:27:27 +00:00
"9, ^/ Leader key N LeadN Context N\n"
2019-02-22 19:32:05 +00:00
"aEsc Exit prompt ^L Redraw/clear prompt\n"
"b^G Quit and cd q Quit context\n"
"9Q ^Q Quit ? Help, config\n"
"1FILES\n"
"b^O Open with... n Create new/link\n"
"cD File details ^R Rename entry\n"
2019-03-02 11:23:16 +00:00
"5⎵ ^K / Y Select entry/all r Batch rename\n"
2019-02-23 14:43:04 +00:00
"9K ^Y Toggle selection y List selection\n"
2019-02-22 19:32:05 +00:00
"cP Copy selection X Delete selection\n"
"cV Move selection ^X Delete entry\n"
2019-02-24 03:20:30 +00:00
"cf Create archive m M Brief/full mediainfo\n"
2019-02-22 19:32:05 +00:00
"b^F Extract archive F List archive\n"
"ce Edit in EDITOR p Open in PAGER\n"
"1ORDER TOGGLES\n"
"b^J Disk usage S Apparent du\n"
2019-02-27 15:33:14 +00:00
"b^W Random s Size t Time modified\n"
2019-02-22 19:32:05 +00:00
"1MISC\n"
"9! ^] Spawn SHELL C Execute entry\n"
2019-04-18 14:57:35 +00:00
"9R ^V Pick plugin L Lock terminal\n"
2019-04-20 18:54:19 +00:00
"cc SSHFS mount u Unmount\n"
"b^P Prompt ^N Note = Launcher\n"};
2017-06-15 14:04:56 +00:00
2019-04-27 14:35:57 +00:00
fd = create_tmp_file();
2017-06-15 14:04:56 +00:00
if (fd == -1)
2018-12-08 06:21:22 +00:00
return FALSE;
2017-06-15 14:04:56 +00:00
2017-08-20 16:10:52 +00:00
start = end = helpstr;
while (*end) {
2019-01-24 15:46:37 +00:00
if (*end == '\n') {
dprintf(fd, "%*c%.*s",
xchartohex(*start), ' ', (int)(end - start), start + 1);
start = end + 1;
2017-08-20 16:10:52 +00:00
}
2019-01-24 15:46:37 +00:00
++end;
2017-08-20 16:10:52 +00:00
}
2018-11-11 10:52:58 +00:00
dprintf(fd, "\nVOLUME: %s of ", coolsize(get_fs_info(path, FREE)));
2018-04-25 19:26:45 +00:00
dprintf(fd, "%s free\n\n", coolsize(get_fs_info(path, CAPACITY)));
2017-06-11 13:54:02 +00:00
2019-01-24 16:23:53 +00:00
if (bookmark[0].loc) {
2017-06-11 13:54:02 +00:00
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)
2018-11-12 17:59:29 +00:00
dprintf(fd, " %c: %s\n", (char)bookmark[i].key, bookmark[i].loc);
2017-06-11 13:54:02 +00:00
else
break;
dprintf(fd, "\n");
}
2019-03-02 11:23:16 +00:00
for (i = NNN_OPENER; i <= NNN_TRASH; ++i) {
2019-01-20 18:21:45 +00:00
start = getenv(env_cfg[i]);
2019-04-24 15:01:52 +00:00
if (start)
2019-01-24 23:42:35 +00:00
dprintf(fd, "%s: %s\n", env_cfg[i], start);
2019-01-20 18:21:45 +00:00
}
2019-04-21 18:29:51 +00:00
if (g_cppath)
dprintf(fd, "SELECTION FILE: %s\n", g_cppath);
2019-01-20 18:21:45 +00:00
dprintf(fd, "\nv%s\n%s\n", VERSION, GENERAL_INFO);
2017-06-11 13:54:02 +00:00
close(fd);
2019-03-11 02:18:23 +00:00
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
unlink(g_tmpfpath);
2018-12-08 06:21:22 +00:00
return TRUE;
2017-04-03 17:03:46 +00:00
}
2018-10-22 14:25:45 +00:00
static int sum_bsizes(const char *fpath, const struct stat *sb,
2019-02-27 17:06:22 +00:00
int typeflag, struct FTW *ftwbuf)
{
if (sb->st_blocks && (typeflag == FTW_F || typeflag == FTW_D))
ent_blocks += sb->st_blocks;
2017-06-22 04:09:17 +00:00
++num_files;
return 0;
}
2018-10-22 14:25:45 +00:00
static int sum_sizes(const char *fpath, const struct stat *sb,
2019-02-27 17:06:22 +00:00
int typeflag, struct FTW *ftwbuf)
2018-10-04 18:56:31 +00:00
{
if (sb->st_size && (typeflag == FTW_F || typeflag == FTW_D))
ent_blocks += sb->st_size;
++num_files;
return 0;
}
2019-03-13 17:49:35 +00:00
static void dentfree(void)
2018-10-27 18:50:39 +00:00
{
free(pnamebuf);
free(dents);
}
2018-12-04 23:31:29 +00:00
static int dentfill(char *path, struct entry **dents)
2014-10-22 15:21:50 +00:00
{
2019-05-15 16:59:38 +00:00
static uint open_max;
2019-04-27 10:42:11 +00:00
int n = 0, count, flags = 0;
2019-02-27 17:06:22 +00:00
ulong num_saved;
struct dirent *dp;
2019-05-15 16:59:38 +00:00
char *namep, *pnb, *buf = NULL;
2019-02-27 17:06:22 +00:00
struct entry *dentp;
size_t off = 0, namebuflen = NAMEBUF_INCR;
struct stat sb_path, sb;
DIR *dirp = opendir(path);
2019-04-11 13:57:38 +00:00
if (!dirp)
2017-07-05 16:38:13 +00:00
return 0;
2019-03-10 00:19:55 +00:00
int fd = dirfd(dirp);
2017-06-22 04:09:17 +00:00
if (cfg.blkorder) {
num_files = 0;
dir_blocks = 0;
2019-05-15 16:59:38 +00:00
buf = (char *)alloca(strlen(path) + NAME_MAX + 2);
2017-08-22 16:01:06 +00:00
2019-05-14 18:12:22 +00:00
if (fstatat(fd, path, &sb_path, 0) == -1) {
2019-03-10 00:19:55 +00:00
closedir(dirp);
2019-04-26 19:25:28 +00:00
printwarn(NULL);
2017-08-22 16:01:06 +00:00
return 0;
}
2019-03-11 15:14:45 +00:00
/* Increase current open file descriptor limit */
if (!open_max)
open_max = max_openfds();
2017-06-22 04:09:17 +00:00
}
2019-04-27 10:42:11 +00:00
dp = readdir(dirp);
// if (!dp) /* We have opened the dir, at least . would be returned */
// goto exit;
if (cfg.blkorder || dp->d_type == DT_UNKNOWN) {
/*
* Optimization added for filesystems which support dirent.d_type
* see readdir(3)
* Known drawbacks:
* - the symlink size is set to 0
* - the modification time of the symlink is set to that of the target file
*/
flags = AT_SYMLINK_NOFOLLOW;
}
do {
2017-07-05 16:38:13 +00:00
namep = dp->d_name;
2017-04-11 13:46:06 +00:00
2018-12-04 23:31:29 +00:00
/* Skip self and parent */
2019-03-09 16:34:07 +00:00
if ((namep[0] == '.' && (namep[1] == '\0' || (namep[1] == '.' && namep[2] == '\0'))))
2018-12-04 23:31:29 +00:00
continue;
2018-12-04 23:31:29 +00:00
if (!cfg.showhidden && namep[0] == '.') {
if (!cfg.blkorder)
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;
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;
2019-05-15 16:59:38 +00:00
mkpath(path, namep, buf);
2017-08-22 16:01:06 +00:00
2019-03-10 23:38:39 +00:00
mvprintw(xlines - 1, 0, "scanning %s [^C aborts]\n",
2019-05-15 16:59:38 +00:00
xbasename(buf));
2019-02-07 20:32:09 +00:00
refresh();
2019-05-15 16:59:38 +00:00
if (nftw(buf, nftw_fn, open_max,
2019-01-20 12:02:44 +00:00
FTW_MOUNT | FTW_PHYS) == -1) {
2019-03-11 02:18:23 +00:00
DPRINTF_S("nftw failed");
2019-01-20 12:02:44 +00:00
dir_blocks += (cfg.apparentsz
? sb.st_size
: sb.st_blocks);
2017-08-22 16:01:06 +00:00
} else
dir_blocks += ent_blocks;
2019-02-08 15:01:37 +00:00
2019-03-10 00:19:55 +00:00
if (interrupted) {
closedir(dirp);
2019-02-08 15:01:37 +00:00
return n;
2019-03-10 00:19:55 +00:00
}
2017-08-22 16:01:06 +00:00
}
2017-06-22 04:09:17 +00:00
} else {
2018-10-04 18:56:31 +00:00
dir_blocks += (cfg.apparentsz ? sb.st_size : sb.st_blocks);
2017-06-22 04:09:17 +00:00
++num_files;
}
continue;
}
2017-04-11 13:46:06 +00:00
2019-04-27 10:42:11 +00:00
if (fstatat(fd, namep, &sb, flags) == -1) {
DPRINTF_S(namep);
continue;
2017-06-22 04:09:17 +00:00
}
if (n == total_dents) {
total_dents += ENTRY_INCR;
2018-01-04 12:16:06 +00:00
*dents = xrealloc(*dents, total_dents * sizeof(**dents));
2019-04-11 13:57:38 +00:00
if (!*dents) {
2018-10-27 13:43:12 +00:00
free(pnamebuf);
2019-03-10 00:19:55 +00:00
closedir(dirp);
2017-08-24 16:56:46 +00:00
errexit();
}
DPRINTF_P(*dents);
}
2019-01-20 12:02:44 +00:00
/* If not enough bytes left to copy a file name of length NAME_MAX, re-allocate */
if (namebuflen - off < NAME_MAX + 1) {
namebuflen += NAMEBUF_INCR;
pnb = pnamebuf;
2018-01-04 12:16:06 +00:00
pnamebuf = (char *)xrealloc(pnamebuf, namebuflen);
2019-04-11 13:57:38 +00:00
if (!pnamebuf) {
free(*dents);
2019-03-10 00:19:55 +00:00
closedir(dirp);
errexit();
}
DPRINTF_P(pnamebuf);
/* 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 */
2019-01-20 12:02:44 +00:00
(dentp + 1)->name = (char *)((size_t)dentp->name
+ dentp->nlen);
2017-12-20 16:50:28 +00:00
}
2017-04-11 13:46:06 +00:00
}
dentp = *dents + n;
2019-04-21 18:29:51 +00:00
/* Selection 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;
/* Copy other fields */
2017-07-05 16:38:13 +00:00
dentp->t = sb.st_mtime;
2019-04-27 10:42:11 +00:00
if (dp->d_type == DT_LNK && !flags) { /* Do not add sizes for links */
dentp->mode = (sb.st_mode & ~S_IFMT) | S_IFLNK;
dentp->size = 0;
} else {
dentp->mode = sb.st_mode;
dentp->size = sb.st_size;
}
2019-03-01 01:16:13 +00:00
dentp->flags = 0;
if (cfg.blkorder) {
if (S_ISDIR(sb.st_mode)) {
ent_blocks = 0;
2017-08-22 16:01:06 +00:00
num_saved = num_files + 1;
2019-05-15 16:59:38 +00:00
mkpath(path, namep, buf);
2017-06-22 12:50:48 +00:00
2019-05-15 16:59:38 +00:00
mvprintw(xlines - 1, 0, "scanning %s [^C aborts]\n", xbasename(buf));
2019-02-07 20:32:09 +00:00
refresh();
2019-05-15 16:59:38 +00:00
if (nftw(buf, nftw_fn, open_max, FTW_MOUNT | FTW_PHYS) == -1) {
2019-03-11 02:18:23 +00:00
DPRINTF_S("nftw failed");
2018-10-04 18:56:31 +00:00
dentp->blocks = (cfg.apparentsz ? sb.st_size : sb.st_blocks);
} else
2017-07-05 16:38:13 +00:00
dentp->blocks = ent_blocks;
2017-08-22 16:01:06 +00:00
2019-02-28 15:37:42 +00:00
if (sb_path.st_dev == sb.st_dev) // NOLINT
2017-08-22 16:01:06 +00:00
dir_blocks += dentp->blocks;
else
num_files = num_saved;
2019-02-08 15:01:37 +00:00
2019-03-10 00:19:55 +00:00
if (interrupted) {
closedir(dirp);
2019-02-08 15:01:37 +00:00
return n;
2019-03-10 00:19:55 +00:00
}
2017-06-22 04:09:17 +00:00
} else {
2018-10-04 18:56:31 +00:00
dentp->blocks = (cfg.apparentsz ? sb.st_size : 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;
}
}
2019-04-27 10:42:11 +00:00
if (flags) {
/* Flag if this is a dir or symlink to a dir */
if (S_ISLNK(sb.st_mode)) {
sb.st_mode = 0;
fstatat(fd, namep, &sb, 0);
}
2019-02-27 13:57:35 +00:00
2019-04-27 10:42:11 +00:00
if (S_ISDIR(sb.st_mode))
dentp->flags |= DIR_OR_LINK_TO_DIR;
} else if (dp->d_type == DT_DIR || (dp->d_type == DT_LNK && S_ISDIR(sb.st_mode)))
2019-01-29 15:52:28 +00:00
dentp->flags |= DIR_OR_LINK_TO_DIR;
2017-06-17 06:58:21 +00:00
++n;
2019-04-27 10:42:11 +00:00
} while ((dp = readdir(dirp)));
2014-10-22 15:21:50 +00:00
2019-04-27 10:42:11 +00:00
//exit:
/* Should never be null */
if (closedir(dirp) == -1) {
2019-03-13 17:49:35 +00:00
dentfree();
2017-08-24 16:56:46 +00:00
errexit();
}
2014-10-22 15:21:50 +00:00
return n;
}
/*
* Return the position of the matching entry or 0 otherwise
* Note there's no NULL check for fname
*/
2019-01-13 17:19:14 +00:00
static int dentfind(const char *fname, int n)
{
2019-02-28 15:37:42 +00:00
int i = 0;
2017-04-02 08:48:54 +00:00
2019-02-28 15:37:42 +00:00
for (; i < n; ++i)
2019-01-20 19:40:02 +00:00
if (xstrcmp(fname, dents[i].name) == 0)
return i;
2017-04-02 08:48:54 +00:00
return 0;
}
static void populate(char *path, char *lastname)
2014-10-07 06:05:30 +00:00
{
2019-02-21 23:49:04 +00:00
#ifdef DBGMODE
struct timespec ts1, ts2;
2017-12-27 20:17:44 +00:00
clock_gettime(CLOCK_REALTIME, &ts1); /* Use CLOCK_MONOTONIC on FreeBSD */
#endif
2018-12-04 23:31:29 +00:00
ndents = dentfill(path, &dents);
if (!ndents)
return;
2014-10-07 06:05:30 +00:00
2019-02-27 15:33:14 +00:00
if (!cfg.wild)
qsort(dents, ndents, sizeof(*dents), entrycmp);
2014-10-07 06:05:30 +00:00
2019-02-21 23:49:04 +00:00
#ifdef DBGMODE
clock_gettime(CLOCK_REALTIME, &ts2);
DPRINTF_U(ts2.tv_nsec - ts1.tv_nsec);
#endif
/* Find cur from history */
/* No NULL check for lastname, always points to an array */
if (!*lastname)
2019-05-10 02:14:24 +00:00
move_cursor(0, 0);
else
2019-05-10 02:14:24 +00:00
move_cursor(dentfind(lastname, ndents), 0);
}
static void move_cursor(int target, int ignore_scrolloff)
{
int delta, scrolloff, onscreen = xlines - 4;
target = MAX(0, MIN(ndents - 1, target));
delta = target - cur;
cur = target;
if (!ignore_scrolloff) {
scrolloff = MIN(SCROLLOFF, onscreen >> 1);
2019-05-19 15:59:29 +00:00
/*
2019-05-10 02:14:24 +00:00
* When ignore_scrolloff is 1, the cursor can jump into the scrolloff
* margin area, but when ignore_scrolloff is 0, act like a boa
* constrictor and squeeze the cursor towards the middle region of the
* screen by allowing it to move inward and disallowing it to move
* outward (deeper into the scrolloff margin area).
*/
if (cur < curscroll + scrolloff && delta < 0)
curscroll += delta;
else if (cur > curscroll + onscreen - scrolloff - 1 && delta > 0)
curscroll += delta;
}
curscroll = MIN(curscroll, MIN(cur, ndents - onscreen));
curscroll = MAX(curscroll, MAX(cur - (onscreen - 1), 0));
}
2014-10-07 11:23:44 +00:00
2018-10-22 14:25:45 +00:00
static void redraw(char *path)
{
2019-03-10 23:38:39 +00:00
xlines = LINES;
xcols = COLS;
int ncols = (xcols <= PATH_MAX) ? xcols : PATH_MAX;
2019-05-09 02:38:32 +00:00
int lastln = xlines, onscreen = xlines - 4;
int i, attrs;
2019-03-09 11:33:47 +00:00
char buf[12];
char c;
--lastln;
2018-11-09 14:37:47 +00:00
/* Clear screen */
erase();
2019-05-10 02:14:24 +00:00
/* Enforce scroll/cursor invariants */
move_cursor(cur, 1);
2019-05-09 02:38:32 +00:00
#ifdef DIR_LIMITED_COPY
if (cfg.copymode)
if (g_crc != crc8fast((uchar *)dents, ndents * sizeof(struct entry))) {
cfg.copymode = 0;
2018-11-30 18:51:18 +00:00
DPRINTF_S("selection off");
}
#endif
2014-10-07 06:05:30 +00:00
2018-11-08 12:42:55 +00:00
/* Fail redraw if < than 11 columns, context info prints 10 chars */
2019-03-07 21:43:28 +00:00
if (ncols < 11) {
2018-01-14 04:48:53 +00:00
printmsg("too few columns!");
return;
}
DPRINTF_D(cur);
DPRINTF_S(path);
2018-11-08 12:42:55 +00:00
printw("[");
2018-12-04 12:51:01 +00:00
for (i = 0; i < CTX_MAX; ++i) {
2019-01-27 09:08:19 +00:00
if (!g_ctx[i].c_cfg.ctxactive)
printw("%d ", i + 1);
else if (cfg.curctx != i) {
2019-02-28 14:43:37 +00:00
attrs = COLOR_PAIR(i + 1) | A_BOLD | A_UNDERLINE;
attron(attrs);
2018-11-08 12:42:55 +00:00
printw("%d", i + 1);
attroff(attrs);
2018-11-08 12:42:55 +00:00
printw(" ");
2019-01-27 09:08:19 +00:00
} else {
/* Print current context in reverse */
2019-02-28 14:43:37 +00:00
attrs = COLOR_PAIR(i + 1) | A_BOLD | A_REVERSE;
attron(attrs);
2018-11-08 12:42:55 +00:00
printw("%d", i + 1);
attroff(attrs);
2018-11-08 12:42:55 +00:00
printw(" ");
2019-01-27 09:08:19 +00:00
}
2018-11-08 12:42:55 +00:00
}
2019-02-27 17:06:22 +00:00
2018-11-08 12:42:55 +00:00
printw("\b] "); /* 10 chars printed in total for contexts - "[1 2 3 4] " */
2018-08-26 13:09:05 +00:00
attron(A_UNDERLINE);
2019-03-09 11:33:47 +00:00
/* No text wrapping in cwd line, store the truncating char in c */
2019-03-07 21:18:20 +00:00
c = path[ncols - 11];
path[ncols - 11] = '\0';
printw("%s\n\n", path);
2018-08-26 13:09:05 +00:00
attroff(A_UNDERLINE);
2019-03-09 11:33:47 +00:00
path[ncols - 11] = c; /* Restore c */
/* Calculate the number of cols available to print entry name */
2019-03-07 21:43:28 +00:00
if (cfg.showdetail) {
/* Fallback to light mode if less than 35 columns */
if (ncols < 36) {
cfg.showdetail ^= 1;
printptr = &printent;
ncols -= 5;
} else
ncols -= 35;
} else
ncols -= 5;
2019-02-28 14:43:37 +00:00
if (!cfg.wild) {
2018-12-03 16:14:33 +00:00
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
cfg.dircolor = 1;
}
/* Print listing */
2019-05-09 02:38:32 +00:00
for (i = curscroll; i < ndents && i < curscroll + onscreen; ++i) {
printptr(&dents[i], i == cur, ncols);
}
2017-06-30 12:20:38 +00:00
/* Must reset e.g. no files in dir */
if (cfg.dircolor) {
2018-12-03 16:14:33 +00:00
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
2017-06-30 12:20:38 +00:00
cfg.dircolor = 0;
}
2017-06-20 14:58:53 +00:00
if (cfg.showdetail) {
2017-03-30 13:24:18 +00:00
if (ndents) {
2019-03-09 11:33:47 +00:00
char sort[] = "\0y time ";
2017-04-01 12:31:54 +00:00
2017-06-20 14:58:53 +00:00
if (cfg.mtimeorder)
2019-03-09 11:33:47 +00:00
sort[0] = 'b';
else if (cfg.sizeorder) {
sort[0] = 'b';
sort[3] = 's';
sort[5] = 'z';
}
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 */
if (!cfg.blkorder)
2019-03-09 11:33:47 +00:00
mvprintw(lastln, 0, "%d/%d %s[%s]\n", cur + 1, ndents, sort,
unescape(dents[cur].name, NAME_MAX));
else {
2019-03-09 11:33:47 +00:00
xstrlcpy(buf, coolsize(dir_blocks << BLK_SHIFT), 12);
2019-02-11 16:12:30 +00:00
2018-10-08 01:06:55 +00:00
if (cfg.apparentsz)
2019-03-09 11:33:47 +00:00
c = 'a';
2018-10-08 01:06:55 +00:00
else
2019-03-09 11:33:47 +00:00
c = 'd';
2018-10-08 01:06:55 +00:00
2019-03-09 11:33:47 +00:00
mvprintw(lastln, 0,
"%d/%d %cu: %s (%lu files) free: %s [%s]\n",
cur + 1, ndents, c, buf, num_files,
2019-01-20 12:02:44 +00:00
coolsize(get_fs_info(path, FREE)),
2019-02-01 19:18:43 +00:00
unescape(dents[cur].name, NAME_MAX));
}
2017-03-30 13:24:18 +00:00
} else
2019-01-29 21:28:42 +00:00
printmsg("0/0");
}
}
2018-11-09 09:58:54 +00:00
static void browse(char *ipath)
{
2018-12-16 15:33:28 +00:00
char newpath[PATH_MAX] __attribute__ ((aligned));
char mark[PATH_MAX] __attribute__ ((aligned));
char rundir[PATH_MAX] __attribute__ ((aligned));
char runfile[NAME_MAX + 1] __attribute__ ((aligned));
2019-05-09 02:38:32 +00:00
int r = -1, fd, presel, ncp = 0, copystartid = 0, copyendid = 0, onscreen;
2018-12-01 01:53:29 +00:00
enum action sel;
bool dir_changed = FALSE;
2019-02-27 17:06:22 +00:00
struct stat sb;
2019-04-21 18:29:51 +00:00
char *path, *lastdir, *lastname, *dir, *tmp;
2019-05-08 00:38:07 +00:00
MEVENT event;
2019-03-13 17:49:35 +00:00
atexit(dentfree);
2018-11-08 12:42:55 +00:00
/* setup first context */
2018-11-09 09:26:11 +00:00
xstrlcpy(g_ctx[0].c_path, ipath, PATH_MAX); /* current directory */
path = g_ctx[0].c_path;
2018-11-09 09:58:54 +00:00
g_ctx[0].c_last[0] = g_ctx[0].c_name[0] = newpath[0] = mark[0] = '\0';
2018-12-15 18:54:45 +00:00
rundir[0] = runfile[0] = '\0';
2018-11-09 09:26:11 +00:00
lastdir = g_ctx[0].c_last; /* last visited directory */
lastname = g_ctx[0].c_name; /* last visited filename */
g_ctx[0].c_fltr[0] = g_ctx[0].c_fltr[1] = '\0';
2018-11-09 09:26:11 +00:00
g_ctx[0].c_cfg = cfg; /* current configuration */
2019-02-10 05:45:38 +00:00
cfg.filtermode ? (presel = FILTER) : (presel = 0);
2018-01-04 12:16:06 +00:00
dents = xrealloc(dents, total_dents * sizeof(struct entry));
2019-03-13 17:49:35 +00:00
if (!dents)
errexit();
/* Allocate buffer to hold names */
2018-01-04 12:16:06 +00:00
pnamebuf = (char *)xrealloc(pnamebuf, NAMEBUF_INCR);
2019-03-13 17:49:35 +00:00
if (!pnamebuf)
errexit();
begin:
2017-08-20 20:48:14 +00:00
#ifdef LINUX_INOTIFY
2018-11-09 19:26:21 +00:00
if ((presel == FILTER || dir_changed) && inotify_wd >= 0) {
2017-08-20 20:48:14 +00:00
inotify_rm_watch(inotify_fd, inotify_wd);
inotify_wd = -1;
dir_changed = FALSE;
}
2017-08-21 16:33:26 +00:00
#elif defined(BSD_KQUEUE)
2018-11-09 19:26:21 +00:00
if ((presel == FILTER || dir_changed) && event_fd >= 0) {
2017-08-21 16:33:26 +00:00
close(event_fd);
event_fd = -1;
dir_changed = FALSE;
}
2017-08-20 20:48:14 +00:00
#endif
/* Can fail when permissions change while browsing.
* It's assumed that path IS a directory when we are here.
*/
2019-04-20 18:54:19 +00:00
if (access(path, R_OK) == -1)
2019-04-26 19:25:28 +00:00
printwarn(&presel);
populate(path, lastname);
2019-02-08 15:01:37 +00:00
if (interrupted) {
interrupted = FALSE;
cfg.apparentsz = 0;
cfg.blkorder = 0;
BLK_SHIFT = 9;
2019-02-08 17:46:06 +00:00
presel = CONTROL('L');
2019-02-08 15:01:37 +00:00
}
2017-08-20 20:48:14 +00:00
#ifdef LINUX_INOTIFY
2019-02-22 19:32:05 +00:00
if (presel != FILTER && 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)
if (presel != FILTER && event_fd == -1) {
#if defined(O_EVTONLY)
event_fd = open(path, O_EVTONLY);
#else
event_fd = open(path, O_RDONLY);
#endif
if (event_fd >= 0)
2019-01-20 12:02:44 +00:00
EV_SET(&events_to_monitor[0], event_fd, EVFILT_VNODE,
EV_ADD | EV_CLEAR, KQUEUE_FFLAGS, 0, path);
}
2017-08-20 20:48:14 +00:00
#endif
2018-12-16 15:33:28 +00:00
while (1) {
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
2019-03-10 23:55:17 +00:00
sel = nextsel(presel);
if (presel)
presel = 0;
2017-04-28 23:02:47 +00:00
switch (sel) {
2019-05-18 05:25:17 +00:00
case SEL_CLICK:
if (getmouse(&event) != OK)
goto nochange; // fallthrough
case SEL_BACK:
2019-05-18 05:25:17 +00:00
// Handle right click to go to parent
if ((sel == SEL_BACK)
|| (sel == SEL_CLICK && event.bstate == BUTTON2_CLICKED)) {
dir = visit_parent(path, newpath, &presel);
if (!dir)
goto nochange;
2017-04-20 16:27:24 +00:00
2019-05-18 05:25:17 +00:00
/* Save last working directory */
xstrlcpy(lastdir, path, PATH_MAX);
2019-05-18 05:25:17 +00:00
/* Save history */
xstrlcpy(lastname, xbasename(path), NAME_MAX + 1);
2019-04-11 14:19:42 +00:00
2019-05-18 05:25:17 +00:00
xstrlcpy(path, dir, PATH_MAX);
2018-11-09 19:26:21 +00:00
2019-05-18 05:25:17 +00:00
setdirwatch();
goto begin;
}
2019-05-08 15:26:44 +00:00
2019-05-08 00:38:07 +00:00
// Handle clicking on a context at the top:
if (event.y == 0) {
// Get context from: "[1 2 3 4]..."
2019-05-09 02:38:32 +00:00
r = event.x >> 1;
2019-05-08 22:41:29 +00:00
if (event.x != 1 + (r << 1))
goto nochange; // The character after the context number
2019-05-08 00:38:07 +00:00
if (0 <= r && r < CTX_MAX && r != cfg.curctx) {
savecurctx(&cfg, path, dents[cur].name, r);
/* Reset the pointers */
path = g_ctx[r].c_path;
lastdir = g_ctx[r].c_last;
lastname = g_ctx[r].c_name;
setdirwatch();
goto begin;
}
2019-05-08 22:41:29 +00:00
goto nochange;
2019-05-08 00:38:07 +00:00
}
2019-05-08 15:26:44 +00:00
2019-05-08 00:38:07 +00:00
// Handle clicking on a file:
2019-05-08 22:41:29 +00:00
if (2 <= event.y && event.y < xlines - 2) {
2019-05-09 02:38:32 +00:00
r = curscroll + (event.y - 2);
2019-05-08 22:41:29 +00:00
2019-05-08 00:38:07 +00:00
if (r >= ndents)
2019-05-08 22:41:29 +00:00
goto nochange;
2019-05-10 02:14:24 +00:00
move_cursor(r, 1);
2019-05-08 22:41:29 +00:00
2019-05-08 00:38:07 +00:00
// Single click just selects, double click also opens
if (event.bstate != BUTTON1_DOUBLE_CLICKED)
2019-05-08 22:41:29 +00:00
break;
2019-05-08 15:26:44 +00:00
} else
2019-05-08 22:41:29 +00:00
goto nochange; // fallthrough
case SEL_NAV_IN: // fallthrough
case SEL_GOIN:
2014-10-07 14:07:56 +00:00
/* Cannot descend in empty directories */
if (!ndents)
2017-04-28 23:02:47 +00:00
goto begin;
2014-10-07 14:07:56 +00:00
2019-01-20 21:19:05 +00:00
mkpath(path, dents[cur].name, newpath);
DPRINTF_S(newpath);
2018-12-08 14:12:51 +00:00
/* Cannot use stale data in entry, file may be missing by now */
if (stat(newpath, &sb) == -1) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
goto nochange;
}
DPRINTF_U(sb.st_mode);
2014-10-22 15:55:26 +00:00
2014-10-22 15:50:30 +00:00
switch (sb.st_mode & S_IFMT) {
case S_IFDIR:
if (access(newpath, R_OK) == -1) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
goto nochange;
}
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
2017-04-29 05:32:12 +00:00
xstrlcpy(path, newpath, PATH_MAX);
2018-11-09 09:26:11 +00:00
lastname[0] = '\0';
2018-11-09 19:26:21 +00:00
setdirwatch();
goto begin;
2014-10-22 15:50:30 +00:00
case S_IFREG:
2017-04-01 07:26:25 +00:00
{
/* If opened as vim plugin and Enter/^M pressed, pick */
if (cfg.picker && sel == SEL_GOIN) {
2019-01-20 21:19:05 +00:00
r = mkpath(path, dents[cur].name, newpath);
appendfpath(newpath, r);
writecp(pcopybuf, copybufpos - 1);
return;
}
/* If open file is disabled on right arrow or `l`, return */
if (cfg.nonavopen && sel == SEL_NAV_IN)
continue;
2019-04-18 14:57:35 +00:00
/* Handle plugin selection mode */
if (cfg.runplugin) {
2019-04-21 18:29:51 +00:00
if (!plugindir || (cfg.runctx != cfg.curctx)
2019-04-18 14:57:35 +00:00
/* Must be in plugin directory to select plugin */
2019-04-21 18:29:51 +00:00
|| (strcmp(path, plugindir) != 0))
2018-12-15 18:54:45 +00:00
continue;
2019-01-20 21:19:05 +00:00
mkpath(path, dents[cur].name, newpath);
/* Copy to path so we can return back to earlier dir */
2018-12-15 18:54:45 +00:00
xstrlcpy(path, rundir, PATH_MAX);
if (runfile[0]) {
xstrlcpy(lastname, runfile, NAME_MAX);
2019-03-11 02:18:23 +00:00
spawn(newpath, lastname, NULL, path, F_NORMAL);
2018-12-15 18:54:45 +00:00
runfile[0] = '\0';
} else
2019-03-11 02:18:23 +00:00
spawn(newpath, NULL, NULL, path, F_NORMAL);
2018-12-15 18:54:45 +00:00
rundir[0] = '\0';
2019-04-18 14:57:35 +00:00
cfg.runplugin = 0;
2018-12-15 18:54:45 +00:00
setdirwatch();
goto begin;
}
/* If NNN_USE_EDITOR is set, open text in EDITOR */
2018-12-04 23:10:01 +00:00
if (cfg.useeditor &&
2019-01-20 12:02:44 +00:00
get_output(g_buf, CMD_LEN_MAX, "file", FILE_OPTS, newpath, FALSE)
&& g_buf[0] == 't' && g_buf[1] == 'e' && g_buf[2] == 'x'
&& g_buf[3] == g_buf[0] && g_buf[4] == '/') {
2019-03-11 02:18:23 +00:00
spawn(editor, newpath, NULL, path, F_CLI);
2018-12-04 23:10:01 +00:00
continue;
}
if (!sb.st_size) {
2019-03-10 23:55:17 +00:00
printwait("empty: use edit or open with", &presel);
goto nochange;
}
/* Invoke desktop opener as last resort */
spawn(opener, newpath, NULL, NULL, F_NOTRACE | F_NOWAIT);
continue;
2017-04-01 07:26:25 +00:00
}
2014-10-22 15:50:30 +00:00
default:
2019-03-10 23:55:17 +00:00
printwait("unsupported file", &presel);
2014-10-22 15:50:30 +00:00
goto nochange;
2014-10-07 06:05:30 +00:00
}
2019-02-08 15:26:02 +00:00
case SEL_NEXT:
2019-05-10 02:14:24 +00:00
if (ndents)
move_cursor((cur + 1) % ndents, 0);
2019-02-08 15:26:02 +00:00
break;
case SEL_PREV:
2019-05-10 02:14:24 +00:00
if (ndents)
move_cursor((cur + ndents - 1) % ndents, 0);
2019-02-08 15:26:02 +00:00
break;
2019-05-09 02:38:32 +00:00
case SEL_PGDN: // fallthrough
2019-05-10 02:14:24 +00:00
onscreen = xlines - 4;
move_cursor(curscroll + (onscreen - 1), 1);
curscroll += onscreen - 1;
break;
case SEL_CTRL_D:
2019-05-09 02:38:32 +00:00
onscreen = xlines - 4;
2019-05-10 02:14:24 +00:00
move_cursor(curscroll + (onscreen - 1), 1);
curscroll += onscreen >> 1;
break;
2019-05-09 02:38:32 +00:00
case SEL_PGUP: // fallthrough
2019-05-10 02:14:24 +00:00
onscreen = xlines - 4;
move_cursor(curscroll, 1);
curscroll -= onscreen - 1;
break;
case SEL_CTRL_U:
2019-05-09 02:38:32 +00:00
onscreen = xlines - 4;
2019-05-10 02:14:24 +00:00
move_cursor(curscroll, 1);
curscroll -= onscreen >> 1;
2019-02-08 15:26:02 +00:00
break;
case SEL_HOME:
2019-05-10 02:14:24 +00:00
move_cursor(0, 1);
2019-02-08 15:26:02 +00:00
break;
case SEL_END:
2019-05-10 02:14:24 +00:00
move_cursor(ndents - 1, 1);
break;
2019-01-19 16:20:30 +00:00
case SEL_CDHOME: // fallthrough
case SEL_CDBEGIN: // fallthrough
case SEL_CDLAST: // fallthrough
2019-04-12 14:51:48 +00:00
case SEL_CDROOT: // fallthrough
case SEL_VISIT:
2019-01-19 16:20:30 +00:00
switch (sel) {
case SEL_CDHOME:
2019-04-22 19:43:02 +00:00
dir = home;
2019-01-19 16:20:30 +00:00
break;
case SEL_CDBEGIN:
dir = ipath;
break;
case SEL_CDLAST:
dir = lastdir;
break;
2019-04-12 14:51:48 +00:00
case SEL_CDROOT:
dir = "/";
break;
2019-01-19 16:20:30 +00:00
default: /* case SEL_VISIT */
dir = mark;
2019-01-19 16:20:30 +00:00
break;
}
if (dir[0] == '\0') {
2019-03-10 23:55:17 +00:00
printwait("not set", &presel);
goto nochange;
}
2019-04-21 13:58:55 +00:00
if (!xdiraccess(dir)) {
presel = MSGWAIT;
goto nochange;
2019-04-21 13:58:55 +00:00
}
2018-07-08 16:02:26 +00:00
if (strcmp(path, dir) == 0)
2019-04-13 00:10:34 +00:00
goto nochange;
/* SEL_CDLAST: dir pointing to lastdir */
xstrlcpy(newpath, dir, PATH_MAX);
/* Save last working directory */
2017-04-29 05:32:12 +00:00
xstrlcpy(lastdir, path, PATH_MAX);
2017-04-29 05:32:12 +00:00
xstrlcpy(path, newpath, PATH_MAX);
2018-11-09 09:26:11 +00:00
lastname[0] = '\0';
DPRINTF_S(path);
2018-11-09 19:26:21 +00:00
setdirwatch();
2017-06-11 04:15:50 +00:00
goto begin;
case SEL_LEADER: // fallthrough
2019-01-19 07:39:46 +00:00
case SEL_CYCLE: // fallthrough
case SEL_CTX1: // fallthrough
case SEL_CTX2: // fallthrough
case SEL_CTX3: // fallthrough
case SEL_CTX4:
2018-11-26 21:49:37 +00:00
if (sel == SEL_CYCLE)
fd = '>';
2019-01-19 07:39:46 +00:00
else if (sel >= SEL_CTX1 && sel <= SEL_CTX4)
fd = sel - SEL_CTX1 + '1';
else
fd = get_input(NULL);
2018-11-26 21:49:37 +00:00
switch (fd) {
case 'q': // fallthrough
case '~': // fallthrough
2019-04-12 14:51:48 +00:00
case '`': // fallthrough
case '-': // fallthrough
2019-03-12 11:13:17 +00:00
case '@':
2018-11-12 17:59:29 +00:00
presel = fd;
goto nochange;
2019-01-19 07:39:46 +00:00
case '>': // fallthrough
case '.': // fallthrough
case '<': // fallthrough
case ',':
r = cfg.curctx;
if (fd == '>' || fd == '.')
do
2019-03-17 14:10:57 +00:00
r = (r + 1) & ~CTX_MAX;
while (!g_ctx[r].c_cfg.ctxactive);
else
do
2019-03-17 14:10:57 +00:00
r = (r + (CTX_MAX - 1)) & (CTX_MAX - 1);
while (!g_ctx[r].c_cfg.ctxactive); // fallthrough
fd = '1' + r; // fallthrough
case '1': // fallthrough
case '2': // fallthrough
case '3': // fallthrough
case '4':
r = fd - '1'; /* Save the next context id */
2018-12-02 17:23:07 +00:00
if (cfg.curctx == r) {
2019-02-22 19:32:05 +00:00
if (sel != SEL_CYCLE)
2018-12-02 17:23:07 +00:00
continue;
2018-11-08 12:42:55 +00:00
2019-02-22 19:32:05 +00:00
(r == CTX_MAX - 1) ? (r = 0) : ++r;
snprintf(newpath, PATH_MAX,
"Create context %d? [Enter]", r + 1);
fd = get_input(newpath);
if (fd != '\r')
continue;
}
2019-03-13 15:24:23 +00:00
savecurctx(&cfg, path, dents[cur].name, r);
/* Reset the pointers */
path = g_ctx[r].c_path;
lastdir = g_ctx[r].c_last;
lastname = g_ctx[r].c_name;
setdirwatch();
goto begin;
}
2019-04-11 13:57:38 +00:00
if (!get_bm_loc(newpath, fd)) {
2019-03-10 23:55:17 +00:00
printwait(messages[STR_INVBM_KEY], &presel);
goto nochange;
}
2017-06-11 04:15:50 +00:00
if (!xdiraccess(newpath))
goto nochange;
2017-07-02 10:42:30 +00:00
if (strcmp(path, newpath) == 0)
2017-07-02 10:42:30 +00:00
break;
2017-06-11 04:15:50 +00:00
2018-11-09 09:26:11 +00:00
lastname[0] = '\0';
2017-06-11 04:15:50 +00:00
/* Save last working directory */
xstrlcpy(lastdir, path, PATH_MAX);
/* Save the newly opted dir in path */
xstrlcpy(path, newpath, PATH_MAX);
DPRINTF_S(path);
2018-11-09 19:26:21 +00:00
setdirwatch();
goto begin;
2017-09-01 14:27:36 +00:00
case SEL_PIN:
xstrlcpy(mark, path, PATH_MAX);
2019-03-10 23:55:17 +00:00
printwait(mark, &presel);
goto nochange;
2017-12-12 20:16:50 +00:00
case SEL_FLTR:
/* 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-12-12 20:16:50 +00:00
presel = filterentries(path);
2019-02-27 15:33:14 +00:00
2017-12-12 20:16:50 +00:00
/* Save current */
if (ndents)
copycurname();
2019-03-13 03:03:17 +00:00
if (presel == 27) {
presel = 0;
break;
}
2017-12-12 20:16:50 +00:00
goto nochange;
2018-12-16 14:15:16 +00:00
case SEL_MFLTR: // fallthrough
case SEL_TOGGLEDOT: // fallthrough
case SEL_DETAIL: // fallthrough
case SEL_FSIZE: // fallthrough
2019-01-25 17:12:27 +00:00
case SEL_ASIZE: // fallthrough
2018-12-16 14:15:16 +00:00
case SEL_BSIZE: // fallthrough
2019-02-27 15:33:14 +00:00
case SEL_MTIME: // fallthrough
case SEL_WILD:
2018-12-16 14:15:16 +00:00
switch (sel) {
case SEL_MFLTR:
cfg.filtermode ^= 1;
if (cfg.filtermode) {
presel = FILTER;
goto nochange;
}
2018-11-09 19:26:21 +00:00
2018-12-16 14:15:16 +00:00
/* Start watching the directory */
dir_changed = TRUE;
break;
case SEL_TOGGLEDOT:
cfg.showhidden ^= 1;
2019-03-14 13:44:54 +00:00
setdirwatch();
2018-12-16 14:15:16 +00:00
break;
case SEL_DETAIL:
cfg.showdetail ^= 1;
cfg.showdetail ? (printptr = &printent_long) : (printptr = &printent);
2019-03-12 21:22:50 +00:00
continue;
2018-12-16 14:15:16 +00:00
case SEL_FSIZE:
cfg.sizeorder ^= 1;
cfg.mtimeorder = 0;
cfg.apparentsz = 0;
cfg.blkorder = 0;
cfg.copymode = 0;
2019-02-27 15:33:14 +00:00
cfg.wild = 0;
2018-12-16 14:15:16 +00:00
break;
2019-01-25 17:12:27 +00:00
case SEL_ASIZE:
cfg.apparentsz ^= 1;
if (cfg.apparentsz) {
nftw_fn = &sum_sizes;
cfg.blkorder = 1;
BLK_SHIFT = 0;
} else
2019-02-27 15:33:14 +00:00
cfg.blkorder = 0; // fallthrough
2018-12-16 14:15:16 +00:00
case SEL_BSIZE:
if (sel == SEL_BSIZE) {
if (!cfg.apparentsz)
cfg.blkorder ^= 1;
nftw_fn = &sum_bsizes;
cfg.apparentsz = 0;
BLK_SHIFT = ffs(S_BLKSIZE) - 1;
}
if (cfg.blkorder) {
cfg.showdetail = 1;
printptr = &printent_long;
}
cfg.mtimeorder = 0;
cfg.sizeorder = 0;
cfg.copymode = 0;
2019-02-27 15:33:14 +00:00
cfg.wild = 0;
2018-12-16 14:15:16 +00:00
break;
2019-02-27 15:33:14 +00:00
case SEL_MTIME:
2018-12-16 14:15:16 +00:00
cfg.mtimeorder ^= 1;
cfg.sizeorder = 0;
cfg.apparentsz = 0;
cfg.blkorder = 0;
cfg.copymode = 0;
2019-02-27 15:33:14 +00:00
cfg.wild = 0;
2018-12-16 14:15:16 +00:00
break;
2019-02-27 15:33:14 +00:00
default: /* SEL_WILD */
cfg.wild ^= 1;
cfg.mtimeorder = 0;
cfg.sizeorder = 0;
cfg.apparentsz = 0;
cfg.blkorder = 0;
cfg.copymode = 0;
setdirwatch();
goto nochange;
2018-12-16 14:15:16 +00:00
}
2018-11-09 19:26:21 +00:00
/* Save current */
if (ndents)
copycurname();
goto begin;
case SEL_STATS:
if (!ndents)
break;
2019-01-20 21:19:05 +00:00
mkpath(path, dents[cur].name, newpath);
2018-12-08 11:15:31 +00:00
if (lstat(newpath, &sb) == -1 || !show_stats(newpath, dents[cur].name, &sb)) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
goto nochange;
2017-04-22 10:20:36 +00:00
}
2017-04-22 07:20:02 +00:00
break;
2017-07-02 18:58:09 +00:00
case SEL_MEDIA: // fallthrough
2018-12-07 21:10:04 +00:00
case SEL_FMEDIA: // fallthrough
2018-12-08 06:21:22 +00:00
case SEL_ARCHIVELS: // fallthrough
case SEL_EXTRACT: // fallthrough
2018-12-07 21:10:04 +00:00
case SEL_RUNEDIT: // fallthrough
2018-12-08 06:21:22 +00:00
case SEL_RUNPAGE:
if (!ndents)
break; // fallthrough
case SEL_REDRAW: // fallthrough
2019-05-22 15:02:29 +00:00
case SEL_RENAMEALL: // fallthrough
2018-12-08 06:21:22 +00:00
case SEL_HELP: // fallthrough
2019-01-19 09:08:47 +00:00
case SEL_NOTE: // fallthrough
2018-12-07 21:10:04 +00:00
case SEL_LOCK:
2018-12-06 16:15:29 +00:00
{
2019-01-11 02:36:16 +00:00
if (ndents)
2019-01-20 21:19:05 +00:00
mkpath(path, dents[cur].name, newpath);
2019-03-01 01:52:32 +00:00
r = TRUE;
2018-12-08 17:33:58 +00:00
switch (sel) {
2019-03-18 00:44:48 +00:00
case SEL_MEDIA: // fallthrough
2018-12-06 16:15:29 +00:00
case SEL_FMEDIA:
2019-03-18 00:44:48 +00:00
tmp = (sel == SEL_FMEDIA) ? "-f" : NULL;
show_mediainfo(newpath, tmp);
setdirwatch();
goto nochange;
2018-12-08 06:21:22 +00:00
case SEL_ARCHIVELS:
2019-05-19 15:59:29 +00:00
r = handle_archive(newpath, path, 'l');
2018-12-06 16:15:29 +00:00
break;
case SEL_EXTRACT:
2019-05-19 15:59:29 +00:00
r = handle_archive(newpath, path, 'x');
2018-12-06 16:15:29 +00:00
break;
2018-12-08 06:21:22 +00:00
case SEL_REDRAW:
if (ndents)
copycurname();
2018-12-08 06:21:22 +00:00
goto begin;
case SEL_RENAMEALL:
2019-05-22 15:02:29 +00:00
if (!batch_rename(path)) {
printwait("batch rename failed", &presel);
goto nochange;
}
2018-12-08 06:21:22 +00:00
break;
case SEL_HELP:
r = show_help(path);
break;
2018-12-07 21:10:04 +00:00
case SEL_RUNEDIT:
2019-03-11 02:18:23 +00:00
spawn(editor, dents[cur].name, NULL, path, F_CLI);
2018-12-07 21:10:04 +00:00
break;
case SEL_RUNPAGE:
2019-03-11 02:18:23 +00:00
spawn(pager, dents[cur].name, NULL, path, F_CLI);
2018-12-07 21:10:04 +00:00
break;
2019-01-19 09:08:47 +00:00
case SEL_NOTE:
2019-02-24 02:06:29 +00:00
{
static char *notepath;
2019-02-24 03:58:17 +00:00
2019-02-24 02:06:29 +00:00
notepath = notepath ? notepath : getenv(env_cfg[NNN_NOTE]);
if (!notepath) {
2019-03-10 23:55:17 +00:00
printwait("set NNN_NOTE", &presel);
2019-01-19 09:08:47 +00:00
goto nochange;
}
2019-03-11 02:18:23 +00:00
spawn(editor, notepath, NULL, path, F_CLI);
2019-01-19 09:08:47 +00:00
break;
2019-02-24 02:06:29 +00:00
}
default: /* SEL_LOCK */
2019-03-11 02:18:23 +00:00
spawn(utils[LOCKER], NULL, NULL, NULL, F_NORMAL);
2018-12-07 21:10:04 +00:00
break;
2018-12-06 16:15:29 +00:00
}
2017-04-21 18:26:48 +00:00
2018-12-08 06:21:22 +00:00
if (!r) {
2019-05-19 15:59:29 +00:00
printwait(messages[UTIL_MISSING], &presel);
goto nochange;
}
2018-12-08 06:21:22 +00:00
/* In case of successful operation, reload contents */
2018-12-08 06:21:22 +00:00
/* Continue in navigate-as-you-type mode, if enabled */
if (cfg.filtermode)
presel = FILTER;
2018-12-08 06:21:22 +00:00
/* Save current */
if (ndents)
copycurname();
2018-12-08 06:21:22 +00:00
/* Repopulate as directory content may have changed */
goto begin;
2018-12-06 16:15:29 +00:00
}
case SEL_COPY:
2018-07-12 14:28:53 +00:00
if (!ndents)
goto nochange;
if (cfg.copymode) {
/*
2019-04-21 18:29:51 +00:00
* Clear the selection file on first copy.
*
* This ensures that when the first file path is
* copied into memory (but not written to tmp file
* yet to save on writes), the tmp file is cleared.
2018-11-11 00:21:05 +00:00
* The user may be in the middle of selection mode op
* and issue a cp, mv of multi-rm assuming the files
* in the copy list would be affected. However, these
* ops read the source file paths from the tmp file.
*/
if (!ncp)
writecp(NULL, 0);
2019-01-20 21:19:05 +00:00
r = mkpath(path, dents[cur].name, newpath);
2019-03-10 23:55:17 +00:00
appendfpath(newpath, r);
2018-07-12 14:28:53 +00:00
++ncp;
} else {
2019-01-20 21:19:05 +00:00
r = mkpath(path, dents[cur].name, newpath);
2019-03-01 01:16:13 +00:00
if (copybufpos) {
resetcpind();
/* Keep the copy buf in sync */
copybufpos = 0;
}
appendfpath(newpath, r);
2018-11-11 01:05:44 +00:00
writecp(newpath, r - 1); /* Truncate NULL from end */
2019-03-14 14:45:59 +00:00
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
2018-04-16 20:52:23 +00:00
}
2019-02-05 21:51:30 +00:00
2019-03-01 01:16:13 +00:00
dents[cur].flags |= FILE_COPIED;
2019-03-10 17:20:50 +00:00
break;
case SEL_COPYMUL:
2018-07-12 14:28:53 +00:00
cfg.copymode ^= 1;
if (cfg.copymode) {
2019-03-01 01:16:13 +00:00
if (copybufpos) {
resetcpind();
writecp(NULL, 0);
copybufpos = 0;
}
2018-07-12 14:28:53 +00:00
g_crc = crc8fast((uchar *)dents, ndents * sizeof(struct entry));
copystartid = cur;
ncp = 0;
2019-03-18 00:45:35 +00:00
mvprintw(xlines - 1, 0, "selection on\n");
2019-03-13 13:31:22 +00:00
xdelay();
2019-03-12 21:22:50 +00:00
continue;
}
if (!ncp) { /* Handle range selection */
#ifndef DIR_LIMITED_COPY
if (g_crc != crc8fast((uchar *)dents,
ndents * sizeof(struct entry))) {
cfg.copymode = 0;
2019-03-10 23:55:17 +00:00
printwait("dir/content changed", &presel);
goto nochange;
}
#endif
if (cur < copystartid) {
copyendid = copystartid;
copystartid = cur;
} else
copyendid = cur;
2019-01-29 21:28:42 +00:00
} // fallthrough
case SEL_COPYALL:
if (sel == SEL_COPYALL) {
2019-03-01 01:52:32 +00:00
if (!ndents)
2019-01-29 21:28:42 +00:00
goto nochange;
2018-07-12 14:28:53 +00:00
2019-01-29 21:28:42 +00:00
cfg.copymode = 0;
copybufpos = 0;
ncp = 0; /* Override single/multi path selection */
2019-01-29 21:28:42 +00:00
copystartid = 0;
copyendid = ndents - 1;
}
if ((!ncp && copystartid < copyendid) || sel == SEL_COPYALL) {
2019-03-01 01:16:13 +00:00
for (r = copystartid; r <= copyendid; ++r) {
2019-03-10 23:55:17 +00:00
appendfpath(newpath, mkpath(path, dents[r].name, newpath));
2019-03-01 01:16:13 +00:00
dents[r].flags |= FILE_COPIED;
}
2019-03-12 21:22:50 +00:00
ncp = copyendid - copystartid + 1;
2019-03-13 13:31:22 +00:00
mvprintw(xlines - 1, 0, "%d selected\n", ncp);
xdelay();
}
2018-07-12 14:28:53 +00:00
if (copybufpos) { /* File path(s) written to the buffer */
2018-11-11 01:05:44 +00:00
writecp(pcopybuf, copybufpos - 1); /* Truncate NULL from end */
2019-03-14 14:45:59 +00:00
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
2018-07-12 14:28:53 +00:00
2019-03-10 23:55:17 +00:00
if (ncp) { /* Some files cherry picked */
2019-03-13 13:31:22 +00:00
mvprintw(xlines - 1, 0, "%d selected\n", ncp);
xdelay();
2019-03-10 23:55:17 +00:00
}
2019-03-12 21:22:50 +00:00
} else {
2019-03-10 23:55:17 +00:00
printwait("selection off", &presel);
2019-03-12 21:22:50 +00:00
goto nochange;
}
continue;
case SEL_COPYLIST:
2019-03-10 16:14:16 +00:00
if (copybufpos) {
showcplist();
if (cfg.filtermode)
presel = FILTER;
break;
}
2019-04-27 12:28:55 +00:00
printwait(messages[NONE_SELECTED], &presel);
goto nochange;
case SEL_CP:
case SEL_MV:
case SEL_RMMUL:
{
2019-03-10 23:55:17 +00:00
if (!cpsafe()) {
presel = MSGWAIT;
goto nochange;
2019-03-10 23:55:17 +00:00
}
2019-03-01 01:52:32 +00:00
switch (sel) {
case SEL_CP:
2019-03-02 09:39:00 +00:00
cpstr(g_buf);
2019-03-01 01:52:32 +00:00
break;
case SEL_MV:
2019-03-09 03:13:56 +00:00
mvstr(g_buf);
2019-03-01 01:52:32 +00:00
break;
default: /* SEL_RMMUL */
2019-03-09 03:13:56 +00:00
rmmulstr(g_buf);
2019-03-01 01:52:32 +00:00
break;
2018-11-29 15:10:49 +00:00
}
2019-03-11 02:18:23 +00:00
spawn("sh", "-c", g_buf, path, F_NORMAL);
if (ndents)
copycurname();
if (cfg.filtermode)
presel = FILTER;
goto begin;
}
2019-03-09 03:13:56 +00:00
case SEL_RM:
2018-12-01 08:57:05 +00:00
{
2019-03-09 03:13:56 +00:00
if (!ndents)
break;
2019-03-02 16:29:12 +00:00
2019-03-09 03:13:56 +00:00
mkpath(path, dents[cur].name, newpath);
xrm(newpath);
2019-03-02 16:29:12 +00:00
2019-03-09 03:13:56 +00:00
/* Don't optimize cur if filtering is on */
if (!cfg.filtermode && cur && access(newpath, F_OK) == -1)
2019-05-10 02:14:24 +00:00
move_cursor(cur - 1, 0);
2018-12-09 18:39:05 +00:00
2019-04-09 11:32:20 +00:00
/* We reduce cur only if it is > 0, so it's at least 0 */
2018-12-01 08:57:05 +00:00
copycurname();
2018-12-09 18:39:05 +00:00
if (cfg.filtermode)
presel = FILTER;
goto begin;
2018-12-01 08:57:05 +00:00
}
2018-12-16 15:00:44 +00:00
case SEL_OPENWITH: // fallthrough
2018-12-08 17:33:58 +00:00
case SEL_RENAME:
if (!ndents)
2018-07-18 23:14:24 +00:00
break; // fallthrough
2019-02-06 16:36:36 +00:00
case SEL_ARCHIVE: // fallthrough
2017-09-10 07:35:25 +00:00
case SEL_NEW:
2018-12-06 17:27:59 +00:00
{
2018-12-08 17:33:58 +00:00
switch (sel) {
case SEL_ARCHIVE:
2019-02-24 03:25:34 +00:00
r = get_input("archive selection (else current)? [y/Y]");
if (r == 'y' || r == 'Y') {
2019-03-10 23:55:17 +00:00
if (!cpsafe()) {
presel = MSGWAIT;
goto nochange;
2019-03-10 23:55:17 +00:00
}
tmp = NULL;
} else if (!ndents) {
2019-03-10 23:55:17 +00:00
printwait("no files", &presel);
2019-02-06 16:36:36 +00:00
goto nochange;
} else
tmp = dents[cur].name;
tmp = xreadline(tmp, "archive name: ");
2018-12-08 17:33:58 +00:00
break;
2018-12-16 15:00:44 +00:00
case SEL_OPENWITH:
2019-04-26 20:23:41 +00:00
#ifdef NORL
tmp = xreadline(NULL, "open with: ");
2019-04-26 20:23:41 +00:00
#else
presel = 0;
tmp = getreadline("open with: ", path, ipath, &presel);
if (presel == MSGWAIT)
goto nochange;
#endif
break;
case SEL_NEW:
2019-01-21 16:20:29 +00:00
tmp = xreadline(NULL, "name/link suffix [@ for none]: ");
2018-12-08 17:33:58 +00:00
break;
default: /* SEL_RENAME */
tmp = xreadline(dents[cur].name, "");
break;
2018-12-08 17:33:58 +00:00
}
2017-12-25 10:25:53 +00:00
2019-04-11 13:57:38 +00:00
if (!tmp || !*tmp)
2017-09-10 07:35:25 +00:00
break;
/* Allow only relative, same dir paths */
2019-01-20 19:40:02 +00:00
if (tmp[0] == '/' || xstrcmp(xbasename(tmp), tmp) != 0) {
2019-03-10 23:55:17 +00:00
printwait(messages[STR_INPUT_ID], &presel);
2017-09-10 07:35:25 +00:00
goto nochange;
}
2018-12-09 01:49:01 +00:00
/* Confirm if app is CLI or GUI */
2018-12-16 15:00:44 +00:00
if (sel == SEL_OPENWITH) {
2019-01-25 16:43:20 +00:00
r = get_input("cli mode? [y/Y]");
2019-03-11 16:19:35 +00:00
(r == 'y' || r == 'Y') ? (r = F_CLI)
: (r = F_NOWAIT | F_NOTRACE | F_MULTI);
2018-12-07 19:41:55 +00:00
}
2017-12-25 10:25:53 +00:00
2018-12-08 17:33:58 +00:00
switch (sel) {
case SEL_ARCHIVE:
2019-05-19 15:59:29 +00:00
{
char cmd[] = "bsdtar -cf";
if (getutil(utils[ATOOL]))
2019-05-19 16:14:58 +00:00
xstrlcpy(cmd, "atool -a", 10);
2019-05-19 15:59:29 +00:00
else if (!getutil(utils[BSDTAR])) {
printwait(messages[UTIL_MISSING], &presel);
2019-01-31 01:29:57 +00:00
goto nochange;
2018-04-24 23:34:37 +00:00
}
2017-12-25 10:25:53 +00:00
2019-05-19 15:59:29 +00:00
(r == 'y' || r == 'Y') ? archive_selection(cmd, tmp, path)
: spawn(cmd, tmp, dents[cur].name,
path, F_NORMAL | F_MULTI);
2018-12-08 17:33:58 +00:00
break;
2019-05-19 15:59:29 +00:00
}
2018-12-16 15:00:44 +00:00
case SEL_OPENWITH:
2019-01-20 21:19:05 +00:00
mkpath(path, dents[cur].name, newpath);
2019-03-11 16:19:35 +00:00
spawn(tmp, newpath, NULL, path, r);
break;
case SEL_RENAME:
/* Skip renaming to same name */
if (strcmp(tmp, dents[cur].name) == 0)
goto nochange;
break;
2018-12-08 17:33:58 +00:00
default:
break;
2018-12-07 20:12:30 +00:00
}
2018-12-09 01:49:01 +00:00
/* Complete OPEN, LAUNCH, ARCHIVE operations */
2018-12-08 17:33:58 +00:00
if (sel != SEL_NEW && sel != SEL_RENAME) {
/* 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) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
2017-09-10 07:35:25 +00:00
goto nochange;
}
/* Check if another file with same name exists */
if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) {
2018-12-08 17:33:58 +00:00
if (sel == SEL_RENAME) {
2018-12-09 01:49:01 +00:00
/* Overwrite file with same name? */
2019-01-25 16:43:20 +00:00
r = get_input("overwrite? [y/Y]");
if (r != 'y' && r != 'Y') {
2018-12-08 17:33:58 +00:00
close(fd);
break;
}
} else {
2018-12-09 01:49:01 +00:00
/* Do nothing in case of NEW */
2018-12-08 17:33:58 +00:00
close(fd);
2019-03-10 23:55:17 +00:00
printwait("entry exists", &presel);
2018-12-08 17:33:58 +00:00
goto nochange;
}
2017-08-22 19:16:58 +00:00
}
2018-12-08 17:33:58 +00:00
if (sel == SEL_RENAME) {
/* Rename the file */
if (renameat(fd, dents[cur].name, fd, tmp) != 0) {
close(fd);
2019-04-26 19:25:28 +00:00
printwarn(&presel);
2018-12-08 17:33:58 +00:00
goto nochange;
}
} else {
/* Check if it's a dir or file */
2019-01-20 11:29:55 +00:00
r = get_input("create 'f'(ile) / 'd'(ir) / 's'(ym) / 'h'(ard)?");
2018-12-08 17:33:58 +00:00
if (r == 'f') {
r = openat(fd, tmp, O_CREAT, 0666);
close(r);
} else if (r == 'd') {
r = mkdirat(fd, tmp, 0777);
2019-01-20 11:29:55 +00:00
} else if (r == 's' || r == 'h') {
2019-01-20 14:28:20 +00:00
if (tmp[0] == '@' && tmp[1] == '\0')
tmp[0] = '\0';
2019-04-27 12:28:55 +00:00
r = xlink(tmp, path, newpath, &presel, r);
2019-01-20 11:29:55 +00:00
close(fd);
2019-04-27 12:28:55 +00:00
if (r <= 0)
2019-01-20 11:29:55 +00:00
goto nochange;
if (cfg.filtermode)
presel = FILTER;
if (ndents)
copycurname();
2019-01-20 11:29:55 +00:00
goto begin;
2018-12-08 17:33:58 +00:00
} else {
2017-08-22 19:16:58 +00:00
close(fd);
break;
}
2018-12-08 17:33:58 +00:00
/* Check if file creation failed */
if (r == -1) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
2019-04-21 18:29:51 +00:00
close(fd);
2018-12-08 17:33:58 +00:00
goto nochange;
}
2017-08-22 19:16:58 +00:00
}
close(fd);
2018-11-09 09:26:11 +00:00
xstrlcpy(lastname, tmp, NAME_MAX + 1);
2017-08-22 19:16:58 +00:00
goto begin;
2018-12-08 17:33:58 +00:00
}
2018-12-16 03:03:40 +00:00
case SEL_EXEC: // fallthrough
2018-12-08 10:48:46 +00:00
case SEL_SHELL: // fallthrough
2019-04-18 14:57:35 +00:00
case SEL_PLUGIN: // fallthrough
case SEL_LAUNCH: // fallthrough
2018-12-09 13:48:00 +00:00
case SEL_RUNCMD:
2018-12-16 03:03:40 +00:00
switch (sel) {
case SEL_EXEC:
2019-04-21 13:58:55 +00:00
if (!execute_file(cur, path, newpath, &presel))
2018-12-08 12:52:06 +00:00
goto nochange;
2018-12-16 03:03:40 +00:00
break;
case SEL_SHELL:
2019-03-11 02:18:23 +00:00
spawn(shell, NULL, NULL, path, F_CLI);
2018-12-16 03:03:40 +00:00
break;
2019-04-18 14:57:35 +00:00
case SEL_PLUGIN:
2019-04-21 18:29:51 +00:00
if (!plugindir) {
printwait("plugins dir missing", &presel);
2018-12-09 13:48:00 +00:00
goto nochange;
}
2019-04-21 18:29:51 +00:00
if (stat(plugindir, &sb) == -1) {
2019-04-26 19:25:28 +00:00
printwarn(&presel);
2018-12-09 13:48:00 +00:00
goto nochange;
}
2019-04-06 01:24:06 +00:00
/* Must be a directory */
if (!S_ISDIR(sb.st_mode))
break;
2019-04-18 14:57:35 +00:00
cfg.runplugin ^= 1;
if (!cfg.runplugin && rundir[0]) {
/*
2019-04-18 14:57:35 +00:00
* If toggled, and still in the plugin dir,
* switch to original directory
*/
2019-04-21 18:29:51 +00:00
if (strcmp(path, plugindir) == 0) {
xstrlcpy(path, rundir, PATH_MAX);
xstrlcpy(lastname, runfile, NAME_MAX);
rundir[0] = runfile[0] = '\0';
setdirwatch();
goto begin;
}
break;
}
/* Check if directory is accessible */
2019-04-21 18:29:51 +00:00
if (!xdiraccess(plugindir))
goto nochange;
xstrlcpy(rundir, path, PATH_MAX);
2019-04-21 18:29:51 +00:00
xstrlcpy(path, plugindir, PATH_MAX);
if (ndents)
xstrlcpy(runfile, dents[cur].name, NAME_MAX);
cfg.runctx = cfg.curctx;
lastname[0] = '\0';
setdirwatch();
goto begin;
case SEL_LAUNCH:
if (getutil(utils[NLAUNCH])) {
2019-04-28 15:18:14 +00:00
spawn(utils[NLAUNCH], "0", NULL, path, F_NORMAL);
break;
} // fallthrough
2018-12-16 03:03:40 +00:00
default: /* SEL_RUNCMD */
2019-02-22 00:05:26 +00:00
#ifndef NORL
2019-02-10 05:45:38 +00:00
if (cfg.picker) {
2019-02-22 00:05:26 +00:00
#endif
tmp = xreadline(NULL, "> ");
2019-02-22 00:05:26 +00:00
#ifndef NORL
2019-02-10 05:45:38 +00:00
} else {
2019-04-26 20:11:35 +00:00
presel = 0;
tmp = getreadline("> ", path, ipath, &presel);
if (presel == MSGWAIT)
goto nochange;
2019-01-24 06:35:13 +00:00
}
2019-02-22 00:05:26 +00:00
#endif
2019-06-01 02:03:11 +00:00
if (tmp && tmp[0]) // NOLINT
2019-04-26 20:11:35 +00:00
spawn(shell, "-c", tmp, path, F_CLI);
2018-12-16 03:03:40 +00:00
}
2018-03-19 00:02:16 +00:00
2018-12-08 10:48:46 +00:00
/* Continue in navigate-as-you-type mode, if enabled */
if (cfg.filtermode)
presel = FILTER;
2018-02-15 13:51:58 +00:00
/* Save current */
if (ndents)
copycurname();
/* Repopulate as directory content may have changed */
goto begin;
2019-04-20 18:54:19 +00:00
case SEL_SSHFS:
2019-04-21 06:25:00 +00:00
if (!sshfs_mount(path, newpath, &presel))
goto nochange;
2019-04-20 18:54:19 +00:00
lastname[0] = '\0';
/* Save last working directory */
xstrlcpy(lastdir, path, PATH_MAX);
/* Switch to mount point */
xstrlcpy(path, newpath, PATH_MAX);
setdirwatch();
goto begin;
2019-04-21 20:44:43 +00:00
case SEL_UMOUNT:
sshfs_unmount(path, newpath, &presel);
goto nochange;
2018-11-25 15:36:47 +00:00
case SEL_QUITCD: // fallthrough
case SEL_QUIT:
2018-12-04 12:51:01 +00:00
for (r = 0; r < CTX_MAX; ++r)
if (r != cfg.curctx && g_ctx[r].c_cfg.ctxactive) {
r = get_input("Quit all contexts? [Enter]");
break;
}
if (!(r == CTX_MAX || r == '\r'))
break;
2017-12-12 20:16:50 +00:00
2018-11-25 15:36:47 +00:00
if (sel == SEL_QUITCD) {
/* In vim picker mode, clear selection and exit */
if (cfg.picker) {
2019-02-23 06:41:53 +00:00
/* Picker mode: reset buffer or clear file */
if (copybufpos)
cfg.pickraw ? copybufpos = 0 : writecp(NULL, 0);
2019-03-10 23:55:17 +00:00
} else if (!write_lastdir(path)) {
presel = MSGWAIT;
goto nochange;
2019-03-10 23:55:17 +00:00
}
2019-03-13 17:14:11 +00:00
}
return;
case SEL_QUITCTX:
2019-04-21 14:23:13 +00:00
fd = cfg.curctx; /* fd used as tmp var */
2019-03-13 17:14:11 +00:00
for (r = (fd + 1) & ~CTX_MAX;
(r != fd) && !g_ctx[r].c_cfg.ctxactive;
2019-03-17 14:10:57 +00:00
r = ((r + 1) & ~CTX_MAX)) {
};
2019-03-13 17:14:11 +00:00
if (r != fd) {
2019-04-21 14:23:13 +00:00
bool copymode = cfg.copymode ? TRUE : FALSE;
2019-03-13 17:14:11 +00:00
g_ctx[fd].c_cfg.ctxactive = 0;
2019-03-13 17:14:11 +00:00
/* Switch to next active context */
path = g_ctx[r].c_path;
lastdir = g_ctx[r].c_last;
lastname = g_ctx[r].c_name;
2019-04-09 14:55:17 +00:00
/* Switch light/detail mode */
if (cfg.showdetail != g_ctx[r].c_cfg.showdetail)
/* Set the reverse */
printptr = cfg.showdetail ? &printent : &printent_long;
2019-03-13 17:14:11 +00:00
cfg = g_ctx[r].c_cfg;
2019-04-21 14:23:13 +00:00
/* Continue copy mode */
cfg.copymode = copymode;
2019-03-13 17:14:11 +00:00
cfg.curctx = r;
setdirwatch();
goto begin;
}
2017-12-12 20:16:50 +00:00
return;
2019-03-10 23:38:39 +00:00
default:
2019-03-10 23:55:17 +00:00
if (xlines != LINES || xcols != COLS) {
idle = 0;
setdirwatch();
if (ndents)
copycurname();
2019-03-10 23:38:39 +00:00
goto begin;
2019-03-10 23:55:17 +00:00
}
2018-03-05 12:45:42 +00:00
2019-03-10 23:38:39 +00:00
/* Locker */
2019-03-13 13:31:22 +00:00
if (idletimeout && idle == idletimeout) {
2019-03-10 23:38:39 +00:00
idle = 0;
2019-03-11 02:18:23 +00:00
spawn(utils[LOCKER], NULL, NULL, NULL, F_NORMAL);
if (ndents)
copycurname();
2019-03-10 23:38:39 +00:00
goto begin;
}
goto nochange;
} /* switch (sel) */
2014-10-07 06:05:30 +00:00
}
}
2018-10-22 14:25:45 +00:00
static void usage(void)
2015-11-26 16:00:26 +00:00
{
2018-10-18 17:30:15 +00:00
fprintf(stdout,
2019-03-19 16:00:13 +00:00
"%s: nnn [-b key] [-d] [-e] [-i] [-l] [-n]\n"
2019-02-27 15:33:14 +00:00
" [-p file] [-s] [-S] [-v] [-w] [-h] [PATH]\n\n"
2018-08-06 23:22:39 +00:00
"The missing terminal file manager for X.\n\n"
2018-08-16 15:05:57 +00:00
"positional args:\n"
" PATH start dir [default: current dir]\n\n"
2018-08-16 15:05:57 +00:00
"optional args:\n"
2019-01-17 15:29:30 +00:00
" -b key open bookmark key\n"
" -d show hidden files\n"
2019-01-17 15:29:30 +00:00
" -e use exiftool for media info\n"
" -i nav-as-you-type mode\n"
" -l light mode\n"
" -n use version compare to sort\n"
2019-01-17 15:29:30 +00:00
" -p file selection file (stdout if '-')\n"
2019-02-05 19:08:55 +00:00
" -s string filters [default: regex]\n"
2019-02-22 19:32:05 +00:00
" -S du mode\n"
2019-01-17 15:29:30 +00:00
" -v show version\n"
2019-03-20 03:44:39 +00:00
" -w wild load\n"
2019-01-17 15:29:30 +00:00
" -h show help\n\n"
2019-02-22 19:32:05 +00:00
"v%s\n%s\n", __func__, VERSION, GENERAL_INFO);
2015-11-26 16:00:26 +00:00
}
2019-04-21 18:29:51 +00:00
static bool setup_config(void)
{
size_t r, len;
/* Set up configuration file paths */
len = strlen(home) + 1 + 20; /* add length of "/.config/nnn/plugins" */
cfgdir = (char *)malloc(len);
plugindir = (char *)malloc(len);
if (!cfgdir || !plugindir) {
xerror();
return FALSE;
}
r = xstrlcpy(cfgdir, home, len);
2019-05-27 13:25:05 +00:00
/* Create ~/.config */
xstrlcpy(cfgdir + r - 1, "/.config", len - r);
2019-04-21 18:29:51 +00:00
DPRINTF_S(cfgdir);
2019-05-27 13:25:05 +00:00
if (!create_dir(cfgdir)) {
xerror();
return FALSE;
}
2019-04-21 18:29:51 +00:00
/* Create ~/.config/nnn */
2019-05-27 13:25:05 +00:00
xstrlcpy(cfgdir + r - 1, "/.config/nnn", len - r);
DPRINTF_S(cfgdir);
2019-04-21 18:29:51 +00:00
if (!create_dir(cfgdir)) {
xerror();
return FALSE;
}
xstrlcpy(cfgdir + r + 12 - 1, "/plugins", 9);
DPRINTF_S(cfgdir);
xstrlcpy(plugindir, cfgdir, len);
DPRINTF_S(plugindir);
/* Create ~/.config/nnn/plugins */
if (!create_dir(cfgdir)) {
xerror();
return FALSE;
}
/* Reset to config path */
cfgdir[r + 11] = '\0';
DPRINTF_S(cfgdir);
/* Set selection file path */
if (!cfg.picker) {
/* Length of "/.config/nnn/.selection" */
g_cppath = (char *)malloc(len + 3);
r = xstrlcpy(g_cppath, cfgdir, len + 3);
xstrlcpy(g_cppath + r - 1, "/.selection", 12);
DPRINTF_S(g_cppath);
}
return TRUE;
}
static bool set_tmp_path()
{
char *path;
if (xdiraccess("/tmp"))
g_tmpfplen = xstrlcpy(g_tmpfpath, "/tmp", TMP_LEN_MAX);
else {
path = getenv("TMPDIR");
if (path)
g_tmpfplen = xstrlcpy(g_tmpfpath, path, TMP_LEN_MAX);
else {
fprintf(stderr, "set TMPDIR\n");
return FALSE;
}
}
return TRUE;
}
static void cleanup(void)
{
free(g_cppath);
free(plugindir);
free(cfgdir);
2019-04-23 03:20:25 +00:00
free(initpath);
2019-04-21 18:29:51 +00:00
#ifdef DBGMODE
disabledbg();
#endif
}
2018-10-22 14:25:45 +00:00
int main(int argc, char *argv[])
2014-10-07 06:05:30 +00:00
{
2019-04-23 03:20:25 +00:00
char *arg = NULL;
2017-06-21 04:19:02 +00:00
int opt;
2015-11-26 16:00:26 +00:00
while ((opt = getopt(argc, argv, "Slib:denp:svwh")) != -1) {
2017-04-01 05:18:18 +00:00
switch (opt) {
case 'S':
cfg.blkorder = 1;
2018-10-19 03:49:53 +00:00
nftw_fn = sum_bsizes;
2018-11-15 12:53:25 +00:00
BLK_SHIFT = ffs(S_BLKSIZE) - 1;
break;
case 'l':
2017-06-20 14:58:53 +00:00
cfg.showdetail = 0;
printptr = &printent;
2017-04-01 05:18:18 +00:00
break;
case 'i':
2017-06-20 14:58:53 +00:00
cfg.filtermode = 1;
break;
case 'b':
2019-04-23 03:20:25 +00:00
arg = optarg;
break;
case 'd':
cfg.showhidden = 1;
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;
case 'n':
cmpfn = &xstrverscmp;
break;
2018-11-23 17:11:47 +00:00
case 'p':
cfg.picker = 1;
if (optarg[0] == '-' && optarg[1] == '\0')
cfg.pickraw = 1;
else {
2019-04-22 20:22:53 +00:00
int fd = open(optarg, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR);
if (fd == -1) {
2019-03-09 03:43:36 +00:00
xerror();
2018-12-08 09:58:55 +00:00
return 1;
2018-11-23 17:11:47 +00:00
}
2019-04-22 20:22:53 +00:00
close(fd);
g_cppath = realpath(optarg, NULL);
unlink(g_cppath);
2018-11-23 17:11:47 +00:00
}
break;
2019-02-05 19:08:55 +00:00
case 's':
cfg.filter_re = 0;
filterfn = &visible_str;
break;
2017-04-13 13:43:33 +00:00
case 'v':
2018-10-18 17:30:15 +00:00
fprintf(stdout, "%s\n", VERSION);
2017-04-13 13:43:33 +00:00
return 0;
2019-02-27 15:33:14 +00:00
case 'w':
cfg.wild = 1;
break;
2018-11-28 02:48:01 +00:00
case 'h':
usage();
return 0;
2017-04-01 05:18:18 +00:00
default:
usage();
2018-12-08 09:58:55 +00:00
return 1;
}
2017-04-01 05:18:18 +00:00
}
2018-12-17 12:35:36 +00:00
/* Confirm we are in a terminal */
2019-04-15 13:39:28 +00:00
if (!cfg.picker && !(isatty(0) && isatty(1)))
exit(1);
2018-12-17 12:35:36 +00:00
2018-12-03 16:14:33 +00:00
/* Get the context colors; copier used as tmp var */
2019-02-28 14:43:37 +00:00
copier = xgetenv(env_cfg[NNN_CONTEXT_COLORS], "4444");
opt = 0;
while (opt < CTX_MAX) {
if (*copier) {
if (*copier < '0' || *copier > '7') {
2019-03-09 03:43:36 +00:00
fprintf(stderr, "0 <= code <= 7\n");
2019-02-28 14:43:37 +00:00
return 1;
}
2018-12-03 16:14:33 +00:00
2019-02-28 14:43:37 +00:00
g_ctx[opt].color = *copier - '0';
++copier;
} else
g_ctx[opt].color = 4;
2019-01-19 03:58:43 +00:00
2019-02-28 14:43:37 +00:00
++opt;
2018-12-03 16:14:33 +00:00
}
#ifdef DBGMODE
enabledbg();
#endif
2019-04-21 18:29:51 +00:00
atexit(cleanup);
2019-03-20 18:22:08 +00:00
home = getenv("HOME");
2019-04-21 18:29:51 +00:00
if (!home) {
fprintf(stderr, "set HOME\n");
return 1;
}
2019-03-20 18:22:08 +00:00
DPRINTF_S(home);
2019-04-21 18:29:51 +00:00
if (!setup_config())
return 1;
2019-05-15 03:44:28 +00:00
/* Get custom opener, if set */
opener = xgetenv(env_cfg[NNN_OPENER], utils[OPENER]);
DPRINTF_S(opener);
2018-10-17 15:16:29 +00:00
/* Parse bookmarks string */
2019-02-22 19:32:05 +00:00
if (!parsebmstr()) {
2019-03-09 03:43:36 +00:00
fprintf(stderr, "%s\n", env_cfg[NNN_BMS]);
2018-12-08 09:58:55 +00:00
return 1;
2019-02-22 19:32:05 +00:00
}
2019-04-23 03:20:25 +00:00
if (arg) { /* Open a bookmark directly */
if (arg[1] || (initpath = get_bm_loc(NULL, *arg)) == NULL) {
fprintf(stderr, "%s\n", messages[STR_INVBM_KEY]);
2018-12-08 09:58:55 +00:00
return 1;
}
} else if (argc == optind) {
2017-04-01 05:18:18 +00:00
/* Start in the current directory */
2019-04-23 03:20:25 +00:00
initpath = getcwd(NULL, PATH_MAX);
if (!initpath)
initpath = "/";
2017-04-01 05:18:18 +00:00
} else {
2019-04-23 03:20:25 +00:00
arg = argv[optind];
if (strlen(arg) > 7 && arg[0] == 'f' && arg[1] == 'i' && arg[2] == 'l'
&& arg[3] == 'e' && arg[4] == ':' && arg[5] == '/' && arg[6] == '/')
arg = arg + 7;
initpath = realpath(arg, NULL);
DPRINTF_S(initpath);
if (!initpath) {
2019-03-09 03:43:36 +00:00
xerror();
2018-12-08 09:58:55 +00:00
return 1;
2017-04-01 05:18:18 +00:00
}
2019-05-15 03:44:28 +00:00
/*
* If nnn is set as the file manager, applications may try to open
* files by invoking nnn. In that case pass the file path to the
* desktop opener and exit.
*/
struct stat sb;
if (stat(initpath, &sb) == -1) {
xerror();
return 1;
}
if (S_ISREG(sb.st_mode)) {
execlp(opener, opener, arg, NULL);
return 0;
}
}
/* Edit text in EDITOR, if opted */
2019-04-24 15:01:52 +00:00
if (xgetenv_set(env_cfg[NNN_USE_EDITOR]))
cfg.useeditor = 1;
2018-12-01 01:49:56 +00:00
/* Get VISUAL/EDITOR */
2019-01-20 18:21:45 +00:00
editor = xgetenv(envs[VISUAL], xgetenv(envs[EDITOR], "vi"));
2019-01-24 17:04:28 +00:00
DPRINTF_S(getenv(envs[VISUAL]));
DPRINTF_S(getenv(envs[EDITOR]));
2019-01-24 16:39:41 +00:00
DPRINTF_S(editor);
2018-12-01 01:49:56 +00:00
/* Get PAGER */
2019-01-20 18:21:45 +00:00
pager = xgetenv(envs[PAGER], "less");
2019-01-24 16:39:41 +00:00
DPRINTF_S(pager);
2018-12-01 00:28:15 +00:00
/* Get SHELL */
2019-01-20 18:21:45 +00:00
shell = xgetenv(envs[SHELL], "sh");
2019-01-24 16:39:41 +00:00
DPRINTF_S(shell);
2019-03-09 09:26:18 +00:00
2019-01-24 16:39:41 +00:00
DPRINTF_S(getenv("PWD"));
2017-08-20 20:48:14 +00:00
#ifdef LINUX_INOTIFY
/* Initialize inotify */
inotify_fd = inotify_init1(IN_NONBLOCK);
if (inotify_fd < 0) {
2019-03-09 03:43:36 +00:00
xerror();
2018-12-08 09:58:55 +00:00
return 1;
2017-08-20 20:48:14 +00:00
}
2017-08-21 16:33:26 +00:00
#elif defined(BSD_KQUEUE)
kq = kqueue();
if (kq < 0) {
2019-03-09 03:43:36 +00:00
xerror();
2018-12-08 09:58:55 +00:00
return 1;
2017-08-21 16:33:26 +00:00
}
2017-08-20 20:48:14 +00:00
#endif
/* Get custom opener, if set */
opener = xgetenv(env_cfg[NNN_OPENER], utils[OPENER]);
DPRINTF_S(opener);
2019-02-24 02:06:29 +00:00
/* Set nnn nesting level, idletimeout used as tmp var */
idletimeout = xatoi(getenv(env_cfg[NNNLVL]));
setenv(env_cfg[NNNLVL], xitoa(++idletimeout), 1);
2019-01-24 17:04:28 +00:00
/* Get locker wait time, if set */
idletimeout = xatoi(getenv(env_cfg[NNN_IDLE_TIMEOUT]));
DPRINTF_U(idletimeout);
2019-04-24 15:01:52 +00:00
if (xgetenv_set(env_cfg[NNN_TRASH]))
2019-03-02 11:23:16 +00:00
cfg.trash = 1;
2019-03-02 09:07:57 +00:00
2019-04-21 18:29:51 +00:00
/* Prefix for temporary files */
if (!set_tmp_path())
return 1;
2019-03-07 15:44:43 +00:00
/* Get the clipboard copier, if set */
copier = getenv(env_cfg[NNN_COPIER]);
2018-10-21 18:00:46 +00:00
/* Disable auto-select if opted */
2019-04-24 15:01:52 +00:00
if (xgetenv_set(env_cfg[NNN_NO_AUTOSELECT]))
2018-10-21 18:00:46 +00:00
cfg.autoselect = 0;
/* Disable opening files on right arrow and `l` */
2019-04-24 15:01:52 +00:00
if (xgetenv_set(env_cfg[NNN_RESTRICT_NAV_OPEN]))
cfg.nonavopen = 1;
#ifdef __linux__
2019-04-24 15:01:52 +00:00
if (!xgetenv_set(env_cfg[NNN_OPS_PROG])) {
cp[5] = cp[4];
cp[2] = cp[4] = ' ';
mv[5] = mv[4];
mv[2] = mv[4] = ' ';
}
#endif
2019-02-08 18:38:46 +00:00
/* Ignore/handle certain signals */
2019-03-09 03:43:36 +00:00
struct sigaction act = {.sa_handler = sigint_handler};
2019-03-09 08:06:14 +00:00
2019-02-08 18:38:46 +00:00
if (sigaction(SIGINT, &act, NULL) < 0) {
2019-03-09 03:43:36 +00:00
xerror();
2019-02-08 18:38:46 +00:00
return 1;
}
2018-11-11 21:44:43 +00:00
signal(SIGQUIT, SIG_IGN);
2014-10-07 06:05:30 +00:00
/* Test initial path */
2019-04-23 03:20:25 +00:00
if (!xdiraccess(initpath)) {
2019-03-09 03:43:36 +00:00
xerror();
2018-12-08 09:58:55 +00:00
return 1;
}
2014-10-07 06:05:30 +00:00
2017-06-25 04:33:30 +00:00
/* Set locale */
setlocale(LC_ALL, "");
2019-02-22 00:05:26 +00:00
#ifndef NORL
2019-01-24 06:35:13 +00:00
/* Bind TAB to cycling */
rl_variable_bind("completion-ignore-case", "on");
#ifdef __linux__
2019-01-24 06:35:13 +00:00
rl_bind_key('\t', rl_menu_complete);
#else
rl_bind_key('\t', rl_complete);
#endif
2019-01-24 06:35:13 +00:00
read_history(NULL);
2019-02-22 00:05:26 +00:00
#endif
2019-01-24 06:35:13 +00:00
2018-12-08 09:58:55 +00:00
if (!initcurses())
return 1;
2019-04-23 03:20:25 +00:00
browse(initpath);
exitcurses();
2017-08-20 20:48:14 +00:00
2019-02-22 00:05:26 +00:00
#ifndef NORL
2019-01-24 06:35:13 +00:00
write_history(NULL);
2019-02-22 00:05:26 +00:00
#endif
2019-01-24 06:35:13 +00:00
2018-11-23 17:42:13 +00:00
if (cfg.pickraw) {
if (copybufpos) {
2019-05-22 15:02:29 +00:00
opt = selectiontofd(1, NULL);
if (opt != (int)(copybufpos))
2019-03-09 03:43:36 +00:00
xerror();
}
2019-04-21 18:29:51 +00:00
} else if (!cfg.picker && g_cppath)
unlink(g_cppath);
/* Free the copy buffer */
free(pcopybuf);
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
2018-12-08 09:58:55 +00:00
return 0;
2014-10-07 06:05:30 +00:00
}