2017-08-24 15:18:01 +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>
|
2019-12-31 17:11:25 +00:00
|
|
|
* Copyright (C) 2016-2020, 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__
|
2019-01-15 06:58:38 +00:00
|
|
|
#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
|
2017-10-05 07:34:18 +00:00
|
|
|
#if !defined(__GLIBC__)
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
#include <sys/resource.h>
|
2014-10-08 07:52:44 +00:00
|
|
|
#include <sys/stat.h>
|
2017-08-20 20:48:14 +00:00
|
|
|
#include <sys/statvfs.h>
|
2017-08-22 17:04:17 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
2017-11-30 12:54:06 +00:00
|
|
|
#include <sys/types.h>
|
2017-08-21 16:33:26 +00:00
|
|
|
#include <sys/event.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#define BSD_KQUEUE
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(__HAIKU__)
|
|
|
|
#include "../misc/haiku/haiku_interop.h"
|
|
|
|
#define HAIKU_NM
|
2017-05-21 01:21:48 +00:00
|
|
|
#else
|
2017-11-30 12:54:06 +00:00
|
|
|
#include <sys/sysmacros.h>
|
2017-05-21 01:21:48 +00:00
|
|
|
#endif
|
2014-10-22 15:27:08 +00:00
|
|
|
#include <sys/wait.h>
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-08-24 12:24:59 +00:00
|
|
|
#ifdef __linux__ /* Fix failure due to mvaddnwstr() */
|
|
|
|
#ifndef NCURSES_WIDECHAR
|
|
|
|
#define NCURSES_WIDECHAR 1
|
|
|
|
#endif
|
2019-10-16 01:37:45 +00:00
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__sun)
|
2017-08-24 12:24:59 +00:00
|
|
|
#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 */
|
2017-08-26 08:04:43 +00:00
|
|
|
#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>
|
2017-05-19 14:38:22 +00:00
|
|
|
#include <libgen.h>
|
2014-10-21 10:29:41 +00:00
|
|
|
#include <limits.h>
|
2019-10-04 02:13:07 +00:00
|
|
|
#ifndef NOLOCALE
|
2014-10-07 06:05:30 +00:00
|
|
|
#include <locale.h>
|
2019-10-04 02:13:07 +00:00
|
|
|
#endif
|
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
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
#include <pcre.h>
|
|
|
|
#else
|
2014-10-09 09:33:49 +00:00
|
|
|
#include <regex.h>
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2015-06-09 08:12:17 +00:00
|
|
|
#include <signal.h>
|
2014-11-14 13:05:17 +00:00
|
|
|
#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>
|
2017-04-20 14:15:52 +00:00
|
|
|
#include <unistd.h>
|
2017-05-13 17:01:14 +00:00
|
|
|
#ifndef __USE_XOPEN_EXTENDED
|
|
|
|
#define __USE_XOPEN_EXTENDED 1
|
|
|
|
#endif
|
2017-04-09 18:41:29 +00:00
|
|
|
#include <ftw.h>
|
2017-08-26 08:04:43 +00:00
|
|
|
#include <wchar.h>
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2020-06-23 22:47:05 +00:00
|
|
|
#if !defined(alloca) && defined(__GNUC__)
|
|
|
|
/*
|
|
|
|
* GCC doesn't expand alloca() to __builtin_alloca() in standards mode
|
|
|
|
* (-std=...) and not all standard libraries do or supply it, e.g.
|
|
|
|
* NetBSD/arm64 so explicitly use the builtin.
|
|
|
|
*/
|
|
|
|
#define alloca(size) __builtin_alloca(size)
|
|
|
|
#endif
|
|
|
|
|
2020-08-07 17:40:25 +00:00
|
|
|
#include "nnn.h"
|
2020-08-07 17:46:17 +00:00
|
|
|
#include "dbg.h"
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
|
|
|
#include "icons.h"
|
|
|
|
#endif
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Macro definitions */
|
2020-07-14 00:14:41 +00:00
|
|
|
#define VERSION "3.3"
|
2019-01-20 18:21:45 +00:00
|
|
|
#define GENERAL_INFO "BSD 2-Clause\nhttps://github.com/jarun/nnn"
|
2019-12-03 20:58:00 +00:00
|
|
|
#define SESSIONS_VERSION 1
|
2017-12-18 19:46:03 +00:00
|
|
|
|
2020-08-07 17:46:17 +00:00
|
|
|
#ifndef S_BLKSIZE
|
|
|
|
#define S_BLKSIZE 512 /* S_BLKSIZE is missing on Android NDK (Termux) */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NAME_MAX and PATH_MAX may not exist, e.g. with dirent.c_name being a
|
|
|
|
* flexible array on Illumos. Use somewhat accomodating fallback values.
|
|
|
|
*/
|
|
|
|
#ifndef NAME_MAX
|
|
|
|
#define NAME_MAX 255
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define _ABSSUB(N, M) (((N) <= (M)) ? ((M) - (N)) : ((N) - (M)))
|
|
|
|
#define DOUBLECLICK_INTERVAL_NS (400000000)
|
|
|
|
#define XDELAY_INTERVAL_MS (350000) /* 350 ms delay */
|
|
|
|
#define ELEMENTS(x) (sizeof(x) / sizeof(*(x)))
|
|
|
|
#undef MIN
|
|
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
|
|
|
#undef MAX
|
|
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
|
|
|
#define ISODD(x) ((x) & 1)
|
|
|
|
#define ISBLANK(x) ((x) == ' ' || (x) == '\t')
|
|
|
|
#define TOUPPER(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
|
|
|
|
#define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1))
|
|
|
|
#define READLINE_MAX 256
|
|
|
|
#define FILTER '/'
|
|
|
|
#define RFILTER '\\'
|
|
|
|
#define CASE ':'
|
|
|
|
#define MSGWAIT '$'
|
|
|
|
#define SELECT ' '
|
|
|
|
#define REGEX_MAX 48
|
|
|
|
#define ENTRY_INCR 64 /* Number of dir 'entry' structures to allocate per shot */
|
|
|
|
#define NAMEBUF_INCR 0x800 /* 64 dir entries at once, avg. 32 chars per filename = 64*32B = 2KB */
|
|
|
|
#define DESCRIPTOR_LEN 32
|
|
|
|
#define _ALIGNMENT 0x10 /* 16-byte alignment */
|
|
|
|
#define _ALIGNMENT_MASK 0xF
|
|
|
|
#define TMP_LEN_MAX 64
|
|
|
|
#define DOT_FILTER_LEN 7
|
|
|
|
#define ASCII_MAX 128
|
|
|
|
#define EXEC_ARGS_MAX 8
|
|
|
|
#define LIST_FILES_MAX (1 << 16)
|
|
|
|
#define SCROLLOFF 3
|
|
|
|
|
|
|
|
#ifndef CTX8
|
|
|
|
#define CTX_MAX 4
|
|
|
|
#else
|
|
|
|
#define CTX_MAX 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MIN_DISPLAY_COLS ((CTX_MAX * 2) + 2) /* Two chars for [ and ] */
|
|
|
|
#define LONG_SIZE sizeof(ulong)
|
|
|
|
#define ARCHIVE_CMD_LEN 16
|
|
|
|
#define BLK_SHIFT_512 9
|
|
|
|
|
|
|
|
/* Detect hardlinks in du */
|
|
|
|
#define HASH_BITS (0xFFFFFF)
|
|
|
|
#define HASH_OCTETS (HASH_BITS >> 6) /* 2^6 = 64 */
|
|
|
|
|
|
|
|
/* Entry flags */
|
|
|
|
#define DIR_OR_LINK_TO_DIR 0x01
|
|
|
|
#define HARD_LINK 0x02
|
|
|
|
#define SYM_ORPHAN 0x04
|
|
|
|
#define FILE_MISSING 0x08
|
|
|
|
#define FILE_SELECTED 0x10
|
|
|
|
|
|
|
|
/* Macros to define process spawn behaviour as flags */
|
|
|
|
#define F_NONE 0x00 /* no flag set */
|
|
|
|
#define F_MULTI 0x01 /* first arg can be combination of args; to be used with F_NORMAL */
|
|
|
|
#define F_NOWAIT 0x02 /* don't wait for child process (e.g. file manager) */
|
|
|
|
#define F_NOTRACE 0x04 /* suppress stdout and strerr (no traces) */
|
|
|
|
#define F_NORMAL 0x08 /* spawn child process in non-curses regular CLI mode */
|
|
|
|
#define F_CONFIRM 0x10 /* run command - show results before exit (must have F_NORMAL) */
|
|
|
|
#define F_CHKRTN 0x20 /* wait for user prompt if cmd returns failure status */
|
|
|
|
#define F_CLI (F_NORMAL | F_MULTI)
|
|
|
|
#define F_SILENT (F_CLI | F_NOTRACE)
|
|
|
|
|
|
|
|
/* Version compare macros */
|
|
|
|
/*
|
|
|
|
* states: S_N: normal, S_I: comparing integral part, S_F: comparing
|
|
|
|
* fractional parts, S_Z: idem but with leading Zeroes only
|
|
|
|
*/
|
|
|
|
#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
|
|
|
|
|
|
|
|
/* Volume info */
|
|
|
|
#define FREE 0
|
|
|
|
#define CAPACITY 1
|
|
|
|
|
|
|
|
/* TYPE DEFINITIONS */
|
|
|
|
typedef unsigned long ulong;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef unsigned char uchar;
|
|
|
|
typedef unsigned short ushort;
|
|
|
|
typedef long long ll;
|
|
|
|
typedef unsigned long long ull;
|
|
|
|
|
|
|
|
/* STRUCTURES */
|
|
|
|
|
|
|
|
/* Directory entry */
|
|
|
|
typedef struct entry {
|
|
|
|
char *name;
|
|
|
|
time_t t;
|
|
|
|
off_t size;
|
|
|
|
blkcnt_t blocks; /* number of 512B blocks allocated */
|
|
|
|
mode_t mode;
|
|
|
|
ushort nlen; /* Length of file name */
|
|
|
|
uchar flags; /* Flags specific to the file */
|
|
|
|
} *pEntry;
|
|
|
|
|
|
|
|
/* Key-value pairs from env */
|
|
|
|
typedef struct {
|
|
|
|
int key;
|
|
|
|
int off;
|
|
|
|
} kv;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
#ifdef PCRE
|
|
|
|
const pcre *pcrex;
|
|
|
|
#else
|
|
|
|
const regex_t *regex;
|
|
|
|
#endif
|
|
|
|
const char *str;
|
|
|
|
} fltrexp_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Settings
|
|
|
|
* NOTE: update default values if changing order
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
uint filtermode : 1; /* Set to enter filter mode */
|
|
|
|
uint timeorder : 1; /* Set to sort by time */
|
|
|
|
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 extnorder : 1; /* Order by extension */
|
|
|
|
uint showhidden : 1; /* Set to show hidden files */
|
|
|
|
uint reserved0 : 1;
|
|
|
|
uint showdetail : 1; /* Clear to show lesser file info */
|
|
|
|
uint ctxactive : 1; /* Context active or not */
|
|
|
|
uint reverse : 1; /* Reverse sort */
|
|
|
|
uint version : 1; /* Version sort */
|
|
|
|
uint reserved1 : 1;
|
|
|
|
/* The following settings are global */
|
|
|
|
uint curctx : 3; /* Current context number */
|
|
|
|
uint prefersel : 1; /* Prefer selection over current, if exists */
|
|
|
|
uint reserved2 : 1;
|
|
|
|
uint nonavopen : 1; /* Open file on right arrow or `l` */
|
|
|
|
uint autoselect : 1; /* Auto-select dir in type-to-nav mode */
|
|
|
|
uint cursormode : 1; /* Move hardware cursor with selection */
|
|
|
|
uint useeditor : 1; /* Use VISUAL to open text files */
|
|
|
|
uint reserved3 : 3;
|
|
|
|
uint regex : 1; /* Use regex filters */
|
|
|
|
uint x11 : 1; /* Copy to system clipboard and show notis */
|
|
|
|
uint timetype : 2; /* Time sort type (0: access, 1: change, 2: modification) */
|
|
|
|
uint cliopener : 1; /* All-CLI app opener */
|
|
|
|
uint waitedit : 1; /* For ops that can't be detached, used EDITOR */
|
|
|
|
uint rollover : 1; /* Roll over at edges */
|
|
|
|
} settings;
|
|
|
|
|
|
|
|
/* Non-persistent program-internal states */
|
|
|
|
typedef struct {
|
|
|
|
uint pluginit : 1; /* Plugin framework initialized */
|
|
|
|
uint interrupt : 1; /* Program received an interrupt */
|
|
|
|
uint rangesel : 1; /* Range selection on */
|
|
|
|
uint move : 1; /* Move operation */
|
|
|
|
uint autonext : 1; /* Auto-proceed on open */
|
|
|
|
uint fortune : 1; /* Show fortune messages in help */
|
|
|
|
uint trash : 1; /* Use trash to delete files */
|
|
|
|
uint forcequit : 1; /* Do not prompt on quit */
|
|
|
|
uint autofifo : 1; /* Auto-create NNN_FIFO */
|
|
|
|
uint initfile : 1; /* Positional arg is a file */
|
|
|
|
uint dircolor : 1; /* Current status of dir color */
|
|
|
|
uint picker : 1; /* Write selection to user-specified file */
|
|
|
|
uint pickraw : 1; /* Write selection to sdtout before exit */
|
|
|
|
uint runplugin : 1; /* Choose plugin mode */
|
|
|
|
uint runctx : 2; /* The context in which plugin is to be run */
|
|
|
|
uint selmode : 1; /* Set when selecting files */
|
|
|
|
uint oldcolor : 1; /* Show dirs in context colors */
|
|
|
|
uint reserved : 14;
|
|
|
|
} runstate;
|
|
|
|
|
|
|
|
/* Contexts or workspaces */
|
|
|
|
typedef struct {
|
|
|
|
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 */
|
|
|
|
settings c_cfg; /* Current configuration */
|
|
|
|
uint color; /* Color code for directories */
|
|
|
|
} context;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
size_t ver;
|
|
|
|
size_t pathln[CTX_MAX];
|
|
|
|
size_t lastln[CTX_MAX];
|
|
|
|
size_t nameln[CTX_MAX];
|
|
|
|
size_t fltrln[CTX_MAX];
|
|
|
|
} session_header_t;
|
|
|
|
|
|
|
|
/* GLOBALS */
|
|
|
|
|
|
|
|
/* Configuration, contexts */
|
|
|
|
static settings cfg = {
|
|
|
|
0, /* filtermode */
|
|
|
|
0, /* timeorder */
|
|
|
|
0, /* sizeorder */
|
|
|
|
0, /* apparentsz */
|
|
|
|
0, /* blkorder */
|
|
|
|
0, /* extnorder */
|
|
|
|
0, /* showhidden */
|
|
|
|
0, /* reserved0 */
|
|
|
|
0, /* showdetail */
|
|
|
|
1, /* ctxactive */
|
|
|
|
0, /* reverse */
|
|
|
|
0, /* version */
|
|
|
|
0, /* reserved1 */
|
|
|
|
0, /* curctx */
|
|
|
|
0, /* prefersel */
|
|
|
|
0, /* reserved2 */
|
|
|
|
0, /* nonavopen */
|
|
|
|
1, /* autoselect */
|
|
|
|
0, /* cursormode */
|
|
|
|
0, /* useeditor */
|
|
|
|
0, /* reserved3 */
|
|
|
|
0, /* regex */
|
|
|
|
0, /* x11 */
|
|
|
|
2, /* timetype (T_MOD) */
|
|
|
|
0, /* cliopener */
|
|
|
|
0, /* waitedit */
|
|
|
|
1, /* rollover */
|
|
|
|
};
|
|
|
|
|
|
|
|
static context g_ctx[CTX_MAX] __attribute__ ((aligned));
|
|
|
|
|
|
|
|
static int ndents, cur, last, curscroll, last_curscroll, total_dents = ENTRY_INCR, scroll_lines = 1;
|
|
|
|
static int nselected;
|
|
|
|
#ifndef NOFIFO
|
|
|
|
static int fifofd = -1;
|
|
|
|
#endif
|
|
|
|
static uint idletimeout, selbufpos, lastappendpos, selbuflen;
|
|
|
|
static ushort xlines, xcols;
|
|
|
|
static ushort idle;
|
|
|
|
static uchar maxbm, maxplug;
|
|
|
|
static char *bmstr;
|
|
|
|
static char *pluginstr;
|
|
|
|
static char *opener;
|
|
|
|
static char *editor;
|
|
|
|
static char *enveditor;
|
|
|
|
static char *pager;
|
|
|
|
static char *shell;
|
|
|
|
static char *home;
|
|
|
|
static char *initpath;
|
|
|
|
static char *cfgpath;
|
|
|
|
static char *selpath;
|
|
|
|
static char *listpath;
|
|
|
|
static char *listroot;
|
|
|
|
static char *plgpath;
|
|
|
|
static char *pnamebuf, *pselbuf;
|
|
|
|
static char *mark;
|
|
|
|
#ifndef NOFIFO
|
|
|
|
static char *fifopath;
|
|
|
|
#endif
|
|
|
|
static ull *ihashbmp;
|
|
|
|
static struct entry *pdents;
|
|
|
|
static blkcnt_t ent_blocks;
|
|
|
|
static blkcnt_t dir_blocks;
|
|
|
|
static ulong num_files;
|
|
|
|
static kv *bookmark;
|
|
|
|
static kv *plug;
|
|
|
|
static uchar tmpfplen;
|
|
|
|
static uchar blk_shift = BLK_SHIFT_512;
|
|
|
|
#ifndef NOMOUSE
|
|
|
|
static int middle_click_key;
|
|
|
|
#endif
|
|
|
|
#ifdef PCRE
|
|
|
|
static pcre *archive_pcre;
|
|
|
|
#else
|
|
|
|
static regex_t archive_re;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Retain old signal handlers */
|
|
|
|
static struct sigaction oldsighup;
|
|
|
|
static struct sigaction oldsigtstp;
|
|
|
|
|
|
|
|
/* For use in functions which are isolated and don't return the buffer */
|
|
|
|
static char g_buf[CMD_LEN_MAX] __attribute__ ((aligned));
|
|
|
|
|
|
|
|
/* Buffer to store tmp file path to show selection, file stats and help */
|
|
|
|
static char g_tmpfpath[TMP_LEN_MAX] __attribute__ ((aligned));
|
|
|
|
|
|
|
|
/* Buffer to store plugins control pipe location */
|
|
|
|
static char g_pipepath[TMP_LEN_MAX] __attribute__ ((aligned));
|
|
|
|
|
|
|
|
/* Non-persistent runtime states */
|
|
|
|
static runstate g_state;
|
|
|
|
|
|
|
|
/* Options to identify file mime */
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define FILE_MIME_OPTS "-bIL"
|
|
|
|
#elif !defined(__sun) /* no mime option for 'file' */
|
|
|
|
#define FILE_MIME_OPTS "-biL"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Macros for utilities */
|
|
|
|
#define UTIL_OPENER 0
|
|
|
|
#define UTIL_ATOOL 1
|
|
|
|
#define UTIL_BSDTAR 2
|
|
|
|
#define UTIL_UNZIP 3
|
|
|
|
#define UTIL_TAR 4
|
|
|
|
#define UTIL_LOCKER 5
|
|
|
|
#define UTIL_LAUNCH 6
|
|
|
|
#define UTIL_SH_EXEC 7
|
|
|
|
#define UTIL_BASH 8
|
|
|
|
#define UTIL_ARCHIVEMOUNT 9
|
|
|
|
#define UTIL_SSHFS 10
|
|
|
|
#define UTIL_RCLONE 11
|
|
|
|
#define UTIL_VI 12
|
|
|
|
#define UTIL_LESS 13
|
|
|
|
#define UTIL_SH 14
|
|
|
|
#define UTIL_FZF 15
|
|
|
|
#define UTIL_NTFY 16
|
|
|
|
#define UTIL_CBCP 17
|
|
|
|
#define UTIL_NMV 18
|
|
|
|
|
|
|
|
/* Utilities to open files, run actions */
|
|
|
|
static char * const utils[] = {
|
|
|
|
#ifdef __APPLE__
|
|
|
|
"/usr/bin/open",
|
|
|
|
#elif defined __CYGWIN__
|
|
|
|
"cygstart",
|
|
|
|
#elif defined __HAIKU__
|
|
|
|
"open",
|
|
|
|
#else
|
|
|
|
"xdg-open",
|
|
|
|
#endif
|
|
|
|
"atool",
|
|
|
|
"bsdtar",
|
|
|
|
"unzip",
|
|
|
|
"tar",
|
|
|
|
#ifdef __APPLE__
|
|
|
|
"bashlock",
|
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
|
|
"lock",
|
|
|
|
#elif defined __HAIKU__
|
|
|
|
"peaclock",
|
|
|
|
#else
|
|
|
|
"vlock",
|
|
|
|
#endif
|
|
|
|
"launch",
|
|
|
|
"sh -c",
|
|
|
|
"bash",
|
|
|
|
"archivemount",
|
|
|
|
"sshfs",
|
|
|
|
"rclone",
|
|
|
|
"vi",
|
|
|
|
"less",
|
|
|
|
"sh",
|
|
|
|
"fzf",
|
|
|
|
".ntfy",
|
|
|
|
".cbcp",
|
|
|
|
".nmv",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Common strings */
|
2020-08-08 04:46:11 +00:00
|
|
|
#define MSG_0_ENTRIES 0
|
2020-08-07 17:46:17 +00:00
|
|
|
#define MSG_INVALID_KEY 1
|
|
|
|
#define STR_TMPFILE 2
|
|
|
|
#define MSG_0_SELECTED 3
|
|
|
|
#define MSG_UTIL_MISSING 4
|
|
|
|
#define MSG_FAILED 5
|
|
|
|
#define MSG_SSN_NAME 6
|
|
|
|
#define MSG_CP_MV_AS 7
|
|
|
|
#define MSG_CUR_SEL_OPTS 8
|
|
|
|
#define MSG_FORCE_RM 9
|
|
|
|
#define MSG_LIMIT 10
|
|
|
|
#define MSG_NEW_OPTS 11
|
|
|
|
#define MSG_CLI_MODE 12
|
|
|
|
#define MSG_OVERWRITE 13
|
|
|
|
#define MSG_SSN_OPTS 14
|
|
|
|
#define MSG_QUIT_ALL 15
|
|
|
|
#define MSG_HOSTNAME 16
|
|
|
|
#define MSG_ARCHIVE_NAME 17
|
|
|
|
#define MSG_OPEN_WITH 18
|
2020-08-08 04:46:11 +00:00
|
|
|
#define MSG_NEW_PATH 19
|
2020-08-07 17:46:17 +00:00
|
|
|
#define MSG_LINK_PREFIX 20
|
|
|
|
#define MSG_COPY_NAME 21
|
|
|
|
#define MSG_CONTINUE 22
|
|
|
|
#define MSG_SEL_MISSING 23
|
|
|
|
#define MSG_ACCESS 24
|
|
|
|
#define MSG_EMPTY_FILE 25
|
|
|
|
#define MSG_UNSUPPORTED 26
|
|
|
|
#define MSG_NOT_SET 27
|
|
|
|
#define MSG_EXISTS 28
|
|
|
|
#define MSG_FEW_COLUMNS 29
|
|
|
|
#define MSG_REMOTE_OPTS 30
|
|
|
|
#define MSG_RCLONE_DELAY 31
|
|
|
|
#define MSG_APP_NAME 32
|
|
|
|
#define MSG_ARCHIVE_OPTS 33
|
|
|
|
#define MSG_PLUGIN_KEYS 34
|
|
|
|
#define MSG_BOOKMARK_KEYS 35
|
|
|
|
#define MSG_INVALID_REG 36
|
|
|
|
#define MSG_ORDER 37
|
|
|
|
#define MSG_LAZY 38
|
|
|
|
#define MSG_FIRST 39
|
|
|
|
#define MSG_RM_TMP 40
|
|
|
|
#define MSG_NOCHNAGE 41
|
|
|
|
#define MSG_CANCEL 42
|
|
|
|
#ifndef DIR_LIMITED_SELECTION
|
2020-08-08 04:46:11 +00:00
|
|
|
#define MSG_DIR_CHANGED 43 /* Must be the last entry */
|
2020-08-07 17:46:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char * const messages[] = {
|
2020-08-08 04:46:11 +00:00
|
|
|
"0 entries",
|
2020-08-07 17:46:17 +00:00
|
|
|
"invalid key",
|
|
|
|
"/.nnnXXXXXX",
|
|
|
|
"0 selected",
|
|
|
|
"missing util",
|
|
|
|
"failed!",
|
|
|
|
"session name: ",
|
|
|
|
"'c'p / 'm'v as?",
|
|
|
|
"'c'urrent / 's'el?",
|
|
|
|
"rm -rf %s file%s? [Esc cancels]",
|
|
|
|
"limit exceeded",
|
|
|
|
"'f'ile / 'd'ir / 's'ym / 'h'ard?",
|
|
|
|
"'c'li / 'g'ui?",
|
|
|
|
"overwrite?",
|
|
|
|
"'s'ave / 'l'oad / 'r'estore?",
|
|
|
|
"Quit all contexts?",
|
|
|
|
"remote name ('-' for hovered): ",
|
2020-08-08 04:46:11 +00:00
|
|
|
"archive [path/]name: ",
|
2020-08-07 17:46:17 +00:00
|
|
|
"open with: ",
|
2020-08-08 04:46:11 +00:00
|
|
|
"[path/]name: ",
|
2020-08-07 17:46:17 +00:00
|
|
|
"link prefix [@ for none]: ",
|
2020-08-08 04:46:11 +00:00
|
|
|
"copy [path/]name: ",
|
2020-08-07 17:46:17 +00:00
|
|
|
"\n'Enter' to continue",
|
|
|
|
"open failed",
|
|
|
|
"dir inaccessible",
|
|
|
|
"empty: edit/open with",
|
|
|
|
"unknown",
|
|
|
|
"not set",
|
|
|
|
"entry exists",
|
|
|
|
"too few columns!",
|
|
|
|
"'s'shfs / 'r'clone?",
|
|
|
|
"refresh if slow",
|
|
|
|
"app name: ",
|
|
|
|
"'d'efault / e'x'tract / 'l'ist / 'm'ount?",
|
|
|
|
"plugin keys:",
|
|
|
|
"bookmark keys:",
|
|
|
|
"invalid regex",
|
|
|
|
"'a'u / 'd'u / 'e'xtn / 'r'ev / 's'ize / 't'ime / 'v'er / 'c'lear?",
|
|
|
|
"unmount failed! try lazy?",
|
|
|
|
"first file (\')/char?",
|
|
|
|
"remove tmp file?",
|
|
|
|
"unchanged",
|
|
|
|
"cancelled",
|
|
|
|
#ifndef DIR_LIMITED_SELECTION
|
|
|
|
"dir changed, range sel off", /* Must be the last entry */
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Supported configuration environment variables */
|
|
|
|
#define NNN_OPTS 0
|
|
|
|
#define NNN_BMS 1
|
|
|
|
#define NNN_PLUG 2
|
|
|
|
#define NNN_OPENER 3
|
|
|
|
#define NNN_COLORS 4
|
|
|
|
#define NNNLVL 5
|
|
|
|
#define NNN_PIPE 6
|
|
|
|
#define NNN_MCLICK 7
|
|
|
|
#define NNN_SEL 8
|
|
|
|
#define NNN_ARCHIVE 9 /* strings end here */
|
|
|
|
#define NNN_TRASH 10 /* flags begin here */
|
|
|
|
|
|
|
|
static const char * const env_cfg[] = {
|
|
|
|
"NNN_OPTS",
|
|
|
|
"NNN_BMS",
|
|
|
|
"NNN_PLUG",
|
|
|
|
"NNN_OPENER",
|
|
|
|
"NNN_COLORS",
|
|
|
|
"NNNLVL",
|
|
|
|
"NNN_PIPE",
|
|
|
|
"NNN_MCLICK",
|
|
|
|
"NNN_SEL",
|
|
|
|
"NNN_ARCHIVE",
|
|
|
|
"NNN_TRASH",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Required environment variables */
|
|
|
|
#define ENV_SHELL 0
|
|
|
|
#define ENV_VISUAL 1
|
|
|
|
#define ENV_EDITOR 2
|
|
|
|
#define ENV_PAGER 3
|
|
|
|
#define ENV_NCUR 4
|
|
|
|
|
|
|
|
static const char * const envs[] = {
|
|
|
|
"SHELL",
|
|
|
|
"VISUAL",
|
|
|
|
"EDITOR",
|
|
|
|
"PAGER",
|
|
|
|
"nnn",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Time type used */
|
|
|
|
#define T_ACCESS 0
|
|
|
|
#define T_CHANGE 1
|
|
|
|
#define T_MOD 2
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
static char cp[] = "cp -iRp";
|
|
|
|
static char mv[] = "mv -i";
|
|
|
|
#else
|
|
|
|
static char cp[] = "cp -iRp";
|
|
|
|
static char mv[] = "mv -i";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Tokens used for path creation */
|
|
|
|
#define TOK_SSN 0
|
|
|
|
#define TOK_MNT 1
|
|
|
|
#define TOK_PLG 2
|
|
|
|
|
|
|
|
static const char * const toks[] = {
|
|
|
|
"sessions",
|
|
|
|
"mounts",
|
|
|
|
"plugins", /* must be the last entry */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Patterns */
|
|
|
|
#define P_CPMVFMT 0
|
|
|
|
#define P_CPMVRNM 1
|
|
|
|
#define P_ARCHIVE 2
|
|
|
|
#define P_REPLACE 3
|
|
|
|
|
|
|
|
static const char * const patterns[] = {
|
|
|
|
"sed -i 's|^\\(\\(.*/\\)\\(.*\\)$\\)|#\\1\\n\\3|' %s",
|
|
|
|
"sed 's|^\\([^#/][^/]\\?.*\\)$|%s/\\1|;s|^#\\(/.*\\)$|\\1|' "
|
|
|
|
"%s | tr '\\n' '\\0' | xargs -0 -n2 sh -c '%s \"$0\" \"$@\" < /dev/tty'",
|
2020-08-15 12:02:06 +00:00
|
|
|
"\\.(bz|bz2|gz|tar|taz|tbz|tbz2|tgz|z|zip)$",
|
2020-08-07 17:46:17 +00:00
|
|
|
"sed -i 's|^%s\\(.*\\)$|%s\\1|' %s",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Colors */
|
|
|
|
#define C_BLK (CTX_MAX + 1) /* Block device: DarkSeaGreen1 */
|
|
|
|
#define C_CHR (C_BLK + 1) /* Character device: Yellow1 */
|
|
|
|
#define C_DIR (C_CHR + 1) /* Directory: DeepSkyBlue1 */
|
|
|
|
#define C_EXE (C_DIR + 1) /* Executable file: Green1 */
|
|
|
|
#define C_FIL (C_EXE + 1) /* Regular file: Normal */
|
|
|
|
#define C_HRD (C_FIL + 1) /* Hard link: Plum4 */
|
|
|
|
#define C_LNK (C_HRD + 1) /* Symbolic link: Cyan1 */
|
|
|
|
#define C_MIS (C_LNK + 1) /* Missing file OR file details: Grey62 */
|
|
|
|
#define C_ORP (C_MIS + 1) /* Orphaned symlink: DeepPink1 */
|
|
|
|
#define C_PIP (C_ORP + 1) /* Named pipe (FIFO): Orange1 */
|
|
|
|
#define C_SOC (C_PIP + 1) /* Socket: MediumOrchid1 */
|
|
|
|
#define C_UND (C_SOC + 1) /* Unknown OR 0B regular/exe file: Red1 */
|
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
2020-08-17 15:27:15 +00:00
|
|
|
/* 0-9, A-Z, OTHER = 36. */
|
2020-08-16 11:21:55 +00:00
|
|
|
static ushort icon_positions[37];
|
2020-08-16 01:00:58 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-07 17:46:17 +00:00
|
|
|
static char gcolors[] = "c1e2272e006033f7c6d6abc4";
|
|
|
|
static uint fcolors[C_UND + 1] = {0};
|
|
|
|
|
|
|
|
/* Event handling */
|
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
#define NUM_EVENT_SLOTS 32 /* Make room for 32 events */
|
|
|
|
#define EVENT_SIZE (sizeof(struct inotify_event))
|
|
|
|
#define EVENT_BUF_LEN (EVENT_SIZE * NUM_EVENT_SLOTS)
|
|
|
|
static int inotify_fd, inotify_wd = -1;
|
|
|
|
static uint INOTIFY_MASK = /* IN_ATTRIB | */ IN_CREATE | IN_DELETE | IN_DELETE_SELF
|
|
|
|
| IN_MODIFY | IN_MOVE_SELF | IN_MOVED_FROM | IN_MOVED_TO;
|
|
|
|
#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;
|
|
|
|
#elif defined(HAIKU_NM)
|
|
|
|
static bool haiku_nm_active = FALSE;
|
|
|
|
static haiku_nm_h haiku_hnd;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Function macros */
|
|
|
|
#define tolastln() move(xlines - 1, 0)
|
|
|
|
#define tocursor() move(cur + 2, 0)
|
|
|
|
#define exitcurses() endwin()
|
|
|
|
#define printwarn(presel) printwait(strerror(errno), presel)
|
|
|
|
#define istopdir(path) ((path)[1] == '\0' && (path)[0] == '/')
|
|
|
|
#define copycurname() xstrsncpy(lastname, pdents[cur].name, NAME_MAX + 1)
|
|
|
|
#define settimeout() timeout(1000)
|
|
|
|
#define cleartimeout() timeout(-1)
|
|
|
|
#define errexit() printerr(__LINE__)
|
|
|
|
#define setdirwatch() (cfg.filtermode ? (presel = FILTER) : (watch = TRUE))
|
|
|
|
#define filterset() (g_ctx[cfg.curctx].c_fltr[1])
|
|
|
|
/* 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__))
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define UNUSED(x) UNUSED_##x __attribute__((__unused__))
|
|
|
|
#else
|
|
|
|
#define UNUSED(x) UNUSED_##x
|
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Forward declarations */
|
2017-04-28 23:02:47 +00:00
|
|
|
static void redraw(char *path);
|
2020-08-07 17:46:17 +00:00
|
|
|
static int spawn(char *file, char *arg1, char *arg2, uchar flag);
|
|
|
|
static int (*nftw_fn)(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf);
|
2019-05-10 02:14:24 +00:00
|
|
|
static void move_cursor(int target, int ignore_scrolloff);
|
2020-05-04 02:18:51 +00:00
|
|
|
static char *load_input(int fd, const char *path);
|
2020-06-09 16:56:35 +00:00
|
|
|
static int set_sort_flags(int r);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2020-08-07 17:46:17 +00:00
|
|
|
/* Functions */
|
|
|
|
|
|
|
|
static void sigint_handler(int UNUSED(sig))
|
|
|
|
{
|
|
|
|
g_state.interrupt = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clean_exit_sighandler(int UNUSED(sig))
|
|
|
|
{
|
|
|
|
exitcurses();
|
|
|
|
/* This triggers cleanup() thanks to atexit() */
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *xitoa(uint val)
|
|
|
|
{
|
|
|
|
static char ascbuf[32] = {0};
|
|
|
|
int i = 30;
|
|
|
|
uint rem;
|
|
|
|
|
|
|
|
if (!val)
|
|
|
|
return "0";
|
|
|
|
|
|
|
|
while (val && i) {
|
|
|
|
rem = val / 10;
|
|
|
|
ascbuf[i] = '0' + (val - (rem * 10));
|
|
|
|
val = rem;
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &ascbuf[++i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the integer value of a char representing HEX */
|
|
|
|
static uchar xchartohex(uchar c)
|
|
|
|
{
|
|
|
|
if (xisdigit(c))
|
|
|
|
return c - '0';
|
|
|
|
|
|
|
|
if (c >= 'a' && c <= 'f')
|
|
|
|
return c - 'a' + 10;
|
|
|
|
|
|
|
|
if (c >= 'A' && c <= 'F')
|
|
|
|
return c - 'A' + 10;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Source: https://elixir.bootlin.com/linux/latest/source/arch/alpha/include/asm/bitops.h
|
|
|
|
*/
|
|
|
|
static bool test_set_bit(uint nr)
|
|
|
|
{
|
|
|
|
nr &= HASH_BITS;
|
|
|
|
|
|
|
|
ull *m = ((ull *)ihashbmp) + (nr >> 6);
|
|
|
|
|
|
|
|
if (*m & (1 << (nr & 63)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*m |= 1 << (nr & 63);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static bool test_clear_bit(uint nr)
|
|
|
|
{
|
|
|
|
nr &= HASH_BITS;
|
|
|
|
|
|
|
|
ull *m = ((ull *) ihashbmp) + (nr >> 6);
|
|
|
|
|
|
|
|
if (!(*m & (1 << (nr & 63))))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*m &= ~(1 << (nr & 63));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Increase the limit on open file descriptors, if possible */
|
|
|
|
static rlim_t max_openfds(void)
|
|
|
|
{
|
|
|
|
struct rlimit rl;
|
|
|
|
rlim_t limit = getrlimit(RLIMIT_NOFILE, &rl);
|
|
|
|
|
|
|
|
if (!limit) {
|
|
|
|
limit = rl.rlim_cur;
|
|
|
|
rl.rlim_cur = rl.rlim_max;
|
|
|
|
|
|
|
|
/* Return ~75% of max possible */
|
|
|
|
if (setrlimit(RLIMIT_NOFILE, &rl) == 0) {
|
|
|
|
limit = rl.rlim_max - (rl.rlim_max >> 2);
|
|
|
|
/*
|
|
|
|
* 20K is arbitrary. If the limit is set to max possible
|
|
|
|
* value, the memory usage increases to more than double.
|
|
|
|
*/
|
|
|
|
if (limit > 20480)
|
|
|
|
limit = 20480;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
limit = 32;
|
|
|
|
|
|
|
|
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
|
|
|
|
* macOS: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
|
|
|
|
*/
|
|
|
|
static void *xrealloc(void *pcur, size_t len)
|
|
|
|
{
|
|
|
|
void *pmem = realloc(pcur, len);
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
static size_t xstrsncpy(char *restrict dst, const char *restrict src, size_t n)
|
|
|
|
{
|
|
|
|
char *end = memccpy(dst, src, '\0', n);
|
|
|
|
|
|
|
|
if (!end) {
|
|
|
|
dst[n - 1] = '\0'; // NOLINT
|
|
|
|
end = dst + n; /* If we return n here, binary size increases due to auto-inlining */
|
|
|
|
}
|
|
|
|
|
|
|
|
return end - dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t xstrlen(const char *restrict s)
|
|
|
|
{
|
|
|
|
#if !defined(__GLIBC__)
|
|
|
|
return strlen(s); // NOLINT
|
|
|
|
#else
|
|
|
|
return (char *)rawmemchr(s, '\0') - s; // NOLINT
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *xstrdup(const char *restrict s)
|
|
|
|
{
|
|
|
|
size_t len = xstrlen(s) + 1;
|
|
|
|
char *ptr = malloc(len);
|
|
|
|
|
|
|
|
if (ptr)
|
|
|
|
xstrsncpy(ptr, s, len);
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_suffix(const char *restrict str, const char *restrict suffix)
|
|
|
|
{
|
|
|
|
if (!str || !suffix)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
size_t lenstr = xstrlen(str);
|
|
|
|
size_t lensuffix = xstrlen(suffix);
|
|
|
|
|
|
|
|
if (lensuffix > lenstr)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return (xstrcmp(str + (lenstr - lensuffix), suffix) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_prefix(const char *restrict str, const char *restrict prefix, size_t len)
|
|
|
|
{
|
|
|
|
return !strncmp(str, prefix, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The poor man's implementation of memrchr(3).
|
|
|
|
* We are only looking for '/' in this program.
|
|
|
|
* And we are NOT expecting a '/' at the end.
|
|
|
|
* Ideally 0 < n <= xstrlen(s).
|
|
|
|
*/
|
|
|
|
static void *xmemrchr(uchar *restrict s, uchar ch, size_t n)
|
|
|
|
{
|
|
|
|
#if defined(__GLIBC__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
|
|
return memrchr(s, ch, n);
|
|
|
|
#else
|
|
|
|
|
|
|
|
if (!s || !n)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
uchar *ptr = s + n;
|
|
|
|
|
|
|
|
do
|
|
|
|
if (*--ptr == ch)
|
|
|
|
return ptr;
|
|
|
|
while (s != ptr);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A very simplified implementation, changes path */
|
|
|
|
static char *xdirname(char *path)
|
|
|
|
{
|
|
|
|
char *base = xmemrchr((uchar *)path, '/', xstrlen(path));
|
|
|
|
|
|
|
|
if (base == path)
|
|
|
|
path[1] = '\0';
|
|
|
|
else
|
|
|
|
*base = '\0';
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *xbasename(char *path)
|
|
|
|
{
|
|
|
|
char *base = xmemrchr((uchar *)path, '/', xstrlen(path)); // NOLINT
|
|
|
|
|
|
|
|
return base ? base + 1 : path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *xextension(const char *fname, size_t len)
|
|
|
|
{
|
|
|
|
return xmemrchr((uchar *)fname, '.', len);
|
|
|
|
}
|
2020-08-05 15:06:50 +00:00
|
|
|
|
|
|
|
static inline bool getutil(char *util)
|
|
|
|
{
|
|
|
|
return spawn("which", util, NULL, F_NORMAL | F_NOTRACE) == 0;
|
|
|
|
}
|
|
|
|
|
2020-08-07 17:46:17 +00:00
|
|
|
/*
|
|
|
|
* Updates out with "dir/name or "/name"
|
|
|
|
* Returns the number of bytes copied including the terminating NULL byte
|
|
|
|
*/
|
|
|
|
static size_t mkpath(const char *dir, const char *name, char *out)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
/* Handle absolute path */
|
|
|
|
if (name[0] == '/') // NOLINT
|
|
|
|
return xstrsncpy(out, name, PATH_MAX);
|
|
|
|
|
|
|
|
/* Handle root case */
|
|
|
|
if (istopdir(dir))
|
|
|
|
len = 1;
|
|
|
|
else
|
|
|
|
len = xstrsncpy(out, dir, PATH_MAX);
|
|
|
|
|
|
|
|
out[len - 1] = '/'; // NOLINT
|
|
|
|
return (xstrsncpy(out + len, name, PATH_MAX - len) + len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Assumes both the paths passed are directories */
|
|
|
|
static char *common_prefix(const char *path, char *prefix)
|
|
|
|
{
|
|
|
|
const char *x = path, *y = prefix;
|
|
|
|
char *sep;
|
|
|
|
|
|
|
|
if (!path || !*path || !prefix)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!*prefix) {
|
|
|
|
xstrsncpy(prefix, path, PATH_MAX);
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*x && *y && (*x == *y))
|
|
|
|
++x, ++y;
|
|
|
|
|
|
|
|
/* Strings are same */
|
|
|
|
if (!*x && !*y)
|
|
|
|
return prefix;
|
|
|
|
|
|
|
|
/* Path is shorter */
|
|
|
|
if (!*x && *y == '/') {
|
|
|
|
xstrsncpy(prefix, path, y - path);
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prefix is shorter */
|
|
|
|
if (!*y && *x == '/')
|
|
|
|
return prefix;
|
|
|
|
|
|
|
|
/* Shorten prefix */
|
|
|
|
prefix[y - prefix] = '\0';
|
|
|
|
|
|
|
|
sep = xmemrchr((uchar *)prefix, '/', y - prefix);
|
|
|
|
if (sep != prefix)
|
|
|
|
*sep = '\0';
|
|
|
|
else /* Just '/' */
|
|
|
|
prefix[1] = '\0';
|
|
|
|
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The library function realpath() resolves symlinks.
|
|
|
|
* If there's a symlink in file list we want to show the symlink not what it's points to.
|
|
|
|
*/
|
|
|
|
static char *abspath(const char *path, const char *cwd)
|
|
|
|
{
|
|
|
|
if (!path || !cwd)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
size_t dst_size = 0, src_size = xstrlen(path), cwd_size = xstrlen(cwd);
|
|
|
|
size_t len = src_size;
|
|
|
|
const char *src;
|
|
|
|
char *dst;
|
|
|
|
/*
|
|
|
|
* We need to add 2 chars at the end as relative paths may start with:
|
|
|
|
* ./ (find .)
|
|
|
|
* no separator (fd .): this needs an additional char for '/'
|
|
|
|
*/
|
|
|
|
char *resolved_path = malloc(src_size + (*path == '/' ? 0 : cwd_size) + 2);
|
|
|
|
if (!resolved_path)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Turn relative paths into absolute */
|
|
|
|
if (path[0] != '/')
|
|
|
|
dst_size = xstrsncpy(resolved_path, cwd, cwd_size + 1) - 1;
|
|
|
|
else
|
|
|
|
resolved_path[0] = '\0';
|
|
|
|
|
|
|
|
src = path;
|
|
|
|
dst = resolved_path + dst_size;
|
|
|
|
for (const char *next = NULL; next != path + src_size;) {
|
|
|
|
next = memchr(src, '/', len);
|
|
|
|
if (!next)
|
|
|
|
next = path + src_size;
|
|
|
|
|
|
|
|
if (next - src == 2 && src[0] == '.' && src[1] == '.') {
|
|
|
|
if (dst - resolved_path) {
|
|
|
|
dst = xmemrchr((uchar *)resolved_path, '/', dst - resolved_path);
|
|
|
|
*dst = '\0';
|
|
|
|
}
|
|
|
|
} else if (next - src == 1 && src[0] == '.') {
|
|
|
|
/* NOP */
|
|
|
|
} else if (next - src) {
|
|
|
|
*(dst++) = '/';
|
|
|
|
xstrsncpy(dst, src, next - src + 1);
|
|
|
|
dst += next - src;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = next + 1;
|
|
|
|
len = src_size - (src - path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*resolved_path == '\0') {
|
|
|
|
resolved_path[0] = '/';
|
|
|
|
resolved_path[1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolved_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int create_tmp_file(void)
|
|
|
|
{
|
|
|
|
xstrsncpy(g_tmpfpath + tmpfplen - 1, messages[STR_TMPFILE], TMP_LEN_MAX - tmpfplen);
|
|
|
|
|
|
|
|
int fd = mkstemp(g_tmpfpath);
|
|
|
|
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clearinfoln(void)
|
|
|
|
{
|
|
|
|
move(xlines - 2, 0);
|
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
/* Clear the old prompt */
|
|
|
|
static void clearoldprompt(void)
|
|
|
|
{
|
|
|
|
clearinfoln();
|
|
|
|
tolastln();
|
|
|
|
addch('\n');
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Messages show up at the bottom */
|
|
|
|
static inline void printmsg_nc(const char *msg)
|
|
|
|
{
|
|
|
|
tolastln();
|
|
|
|
addstr(msg);
|
|
|
|
addch('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
static void printmsg(const char *msg)
|
|
|
|
{
|
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
|
|
|
printmsg_nc(msg);
|
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void printwait(const char *msg, int *presel)
|
|
|
|
{
|
|
|
|
printmsg(msg);
|
|
|
|
if (presel) {
|
|
|
|
*presel = MSGWAIT;
|
|
|
|
if (ndents)
|
|
|
|
xstrsncpy(g_ctx[cfg.curctx].c_name, pdents[cur].name, NAME_MAX + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill curses and display error before exiting */
|
|
|
|
static void printerr(int linenum)
|
|
|
|
{
|
|
|
|
exitcurses();
|
|
|
|
perror(xitoa(linenum));
|
|
|
|
if (!g_state.picker && selpath)
|
|
|
|
unlink(selpath);
|
|
|
|
free(pselbuf);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool xconfirm(int c)
|
|
|
|
{
|
|
|
|
return (c == 'y' || c == 'Y');
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_input(const char *prompt)
|
|
|
|
{
|
|
|
|
if (prompt)
|
|
|
|
printmsg(prompt);
|
|
|
|
cleartimeout();
|
|
|
|
|
|
|
|
int r = getch();
|
|
|
|
|
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
while (r == KEY_RESIZE) {
|
|
|
|
if (prompt) {
|
|
|
|
clearoldprompt();
|
|
|
|
xlines = LINES;
|
|
|
|
printmsg(prompt);
|
|
|
|
}
|
|
|
|
|
|
|
|
r = getch();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
settimeout();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_cur_or_sel(void)
|
|
|
|
{
|
|
|
|
if (selbufpos && ndents) {
|
|
|
|
if (cfg.prefersel)
|
|
|
|
return 's';
|
|
|
|
|
|
|
|
int choice = get_input(messages[MSG_CUR_SEL_OPTS]);
|
|
|
|
|
|
|
|
return ((choice == 'c' || choice == 's') ? choice : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (selbufpos)
|
|
|
|
return 's';
|
|
|
|
|
|
|
|
if (ndents)
|
|
|
|
return 'c';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdelay(useconds_t delay)
|
|
|
|
{
|
|
|
|
refresh();
|
|
|
|
usleep(delay);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char confirm_force(bool selection)
|
|
|
|
{
|
|
|
|
char str[64];
|
|
|
|
|
|
|
|
snprintf(str, 64, messages[MSG_FORCE_RM],
|
|
|
|
(selection ? xitoa(nselected) : "current"), (selection ? "(s)" : ""));
|
|
|
|
|
|
|
|
int r = get_input(str);
|
|
|
|
|
2020-08-17 15:27:15 +00:00
|
|
|
if (r == ESC)
|
2020-08-07 17:46:17 +00:00
|
|
|
return '\0'; /* cancel */
|
|
|
|
if (r == 'y' || r == 'Y')
|
|
|
|
return 'f'; /* forceful */
|
|
|
|
return 'i'; /* interactive */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Writes buflen char(s) from buf to a file */
|
|
|
|
static void writesel(const char *buf, const size_t buflen)
|
|
|
|
{
|
|
|
|
if (g_state.pickraw || !selpath)
|
|
|
|
return;
|
|
|
|
|
|
|
|
FILE *fp = fopen(selpath, "w");
|
|
|
|
|
|
|
|
if (fp) {
|
|
|
|
if (fwrite(buf, 1, buflen, fp) != buflen)
|
|
|
|
printwarn(NULL);
|
|
|
|
fclose(fp);
|
|
|
|
} else
|
|
|
|
printwarn(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void appendfpath(const char *path, const size_t len)
|
|
|
|
{
|
|
|
|
if ((selbufpos >= selbuflen) || ((len + 3) > (selbuflen - selbufpos))) {
|
|
|
|
selbuflen += PATH_MAX;
|
|
|
|
pselbuf = xrealloc(pselbuf, selbuflen);
|
|
|
|
if (!pselbuf)
|
|
|
|
errexit();
|
|
|
|
}
|
|
|
|
|
|
|
|
selbufpos += xstrsncpy(pselbuf + selbufpos, path, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write selected file paths to fd, linefeed separated */
|
|
|
|
static size_t seltofile(int fd, uint *pcount)
|
|
|
|
{
|
|
|
|
uint lastpos, count = 0;
|
|
|
|
char *pbuf = pselbuf;
|
|
|
|
size_t pos = 0;
|
|
|
|
ssize_t len, prefixlen = 0, initlen = 0;
|
|
|
|
|
|
|
|
if (pcount)
|
|
|
|
*pcount = 0;
|
|
|
|
|
|
|
|
if (!selbufpos)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
lastpos = selbufpos - 1;
|
|
|
|
|
|
|
|
if (listpath) {
|
|
|
|
prefixlen = (ssize_t)xstrlen(listroot);
|
|
|
|
initlen = (ssize_t)xstrlen(listpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (pos <= lastpos) {
|
|
|
|
DPRINTF_S(pbuf);
|
|
|
|
len = (ssize_t)xstrlen(pbuf);
|
|
|
|
|
|
|
|
if (!listpath || !is_prefix(pbuf, listpath, initlen)) {
|
|
|
|
if (write(fd, pbuf, len) != len)
|
|
|
|
return pos;
|
|
|
|
} else {
|
|
|
|
if (write(fd, listroot, prefixlen) != prefixlen)
|
|
|
|
return pos;
|
|
|
|
if (write(fd, pbuf + initlen, len - initlen) != (len - initlen))
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos += len;
|
|
|
|
if (pos <= lastpos) {
|
|
|
|
if (write(fd, "\n", 1) != 1)
|
|
|
|
return pos;
|
|
|
|
pbuf += len + 1;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pcount)
|
|
|
|
*pcount = count;
|
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* List selection from selection file (another instance) */
|
|
|
|
static bool listselfile(void)
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (stat(selpath, &sb) == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Nothing selected if file size is 0 */
|
|
|
|
if (!sb.st_size)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
snprintf(g_buf, CMD_LEN_MAX, "tr \'\\0\' \'\\n\' < %s", selpath);
|
|
|
|
spawn(utils[UTIL_SH_EXEC], g_buf, NULL, F_CLI | F_CONFIRM);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset selection indicators */
|
|
|
|
static void resetselind(void)
|
|
|
|
{
|
|
|
|
for (int r = 0; r < ndents; ++r)
|
|
|
|
if (pdents[r].flags & FILE_SELECTED)
|
|
|
|
pdents[r].flags &= ~FILE_SELECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void startselection(void)
|
|
|
|
{
|
|
|
|
if (!g_state.selmode) {
|
|
|
|
g_state.selmode = 1;
|
|
|
|
nselected = 0;
|
|
|
|
|
|
|
|
if (selbufpos) {
|
|
|
|
resetselind();
|
|
|
|
writesel(NULL, 0);
|
|
|
|
selbufpos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastappendpos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void updateselbuf(const char *path, char *newpath)
|
|
|
|
{
|
|
|
|
size_t r;
|
|
|
|
|
|
|
|
for (int i = 0; i < ndents; ++i)
|
|
|
|
if (pdents[i].flags & FILE_SELECTED) {
|
|
|
|
r = mkpath(path, pdents[i].name, newpath);
|
|
|
|
appendfpath(newpath, r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finish selection procedure before an operation */
|
|
|
|
static void endselection(void)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
ssize_t count;
|
|
|
|
char buf[sizeof(patterns[P_REPLACE]) + PATH_MAX + (TMP_LEN_MAX << 1)];
|
|
|
|
|
|
|
|
if (g_state.selmode)
|
|
|
|
g_state.selmode = 0;
|
|
|
|
|
|
|
|
if (!listpath || !selbufpos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fd = create_tmp_file();
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S("couldn't create tmp file");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
seltofile(fd, NULL);
|
|
|
|
if (close(fd)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), patterns[P_REPLACE], listpath, listroot, g_tmpfpath);
|
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI);
|
|
|
|
|
|
|
|
fd = open(g_tmpfpath, O_RDONLY);
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
if (unlink(g_tmpfpath)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
count = read(fd, pselbuf, selbuflen);
|
|
|
|
if (count < 0) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
if (close(fd) || unlink(g_tmpfpath)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (close(fd) || unlink(g_tmpfpath)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
selbufpos = count;
|
|
|
|
pselbuf[--count] = '\0';
|
|
|
|
for (--count; count > 0; --count)
|
|
|
|
if (pselbuf[count] == '\n' && pselbuf[count+1] == '/')
|
|
|
|
pselbuf[count] = '\0';
|
|
|
|
|
|
|
|
writesel(pselbuf, selbufpos - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clearselection(void)
|
|
|
|
{
|
|
|
|
nselected = 0;
|
|
|
|
selbufpos = 0;
|
|
|
|
g_state.selmode = 0;
|
|
|
|
writesel(NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns: 1 - success, 0 - none selected, -1 - other failure */
|
|
|
|
static int editselection(void)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
int fd, lines = 0;
|
|
|
|
ssize_t count;
|
|
|
|
struct stat sb;
|
|
|
|
time_t mtime;
|
|
|
|
|
|
|
|
if (!selbufpos)
|
|
|
|
return listselfile();
|
|
|
|
|
|
|
|
fd = create_tmp_file();
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S("couldn't create tmp file");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
seltofile(fd, NULL);
|
|
|
|
if (close(fd)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save the last modification time */
|
|
|
|
if (stat(g_tmpfpath, &sb)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
mtime = sb.st_mtime;
|
|
|
|
|
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, F_CLI);
|
|
|
|
|
|
|
|
fd = open(g_tmpfpath, O_RDONLY);
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fstat(fd, &sb);
|
|
|
|
|
|
|
|
if (mtime == sb.st_mtime) {
|
|
|
|
DPRINTF_S("selection is not modified");
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sb.st_size > selbufpos) {
|
|
|
|
DPRINTF_S("edited buffer larger than previous");
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
count = read(fd, pselbuf, selbuflen);
|
|
|
|
if (count < 0) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
if (close(fd) || unlink(g_tmpfpath)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
}
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (close(fd) || unlink(g_tmpfpath)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) {
|
|
|
|
ret = 1;
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
resetselind();
|
|
|
|
selbufpos = count;
|
|
|
|
/* The last character should be '\n' */
|
|
|
|
pselbuf[--count] = '\0';
|
|
|
|
for (--count; count > 0; --count) {
|
|
|
|
/* Replace every '\n' that separates two paths */
|
|
|
|
if (pselbuf[count] == '\n' && pselbuf[count + 1] == '/') {
|
|
|
|
++lines;
|
|
|
|
pselbuf[count] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a line for the last file */
|
|
|
|
++lines;
|
|
|
|
|
|
|
|
if (lines > nselected) {
|
|
|
|
DPRINTF_S("files added to selection");
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
nselected = lines;
|
|
|
|
writesel(pselbuf, selbufpos - 1);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
emptyedit:
|
|
|
|
resetselind();
|
|
|
|
clearselection();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool selsafe(void)
|
|
|
|
{
|
|
|
|
/* Fail if selection file path not generated */
|
|
|
|
if (!selpath) {
|
|
|
|
printmsg(messages[MSG_SEL_MISSING]);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fail if selection file path isn't accessible */
|
|
|
|
if (access(selpath, R_OK | W_OK) == -1) {
|
|
|
|
errno == ENOENT ? printmsg(messages[MSG_0_SELECTED]) : printwarn(NULL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-03-20 18:16:58 +00:00
|
|
|
static void export_file_list(void)
|
|
|
|
{
|
|
|
|
if (!ndents)
|
|
|
|
return;
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
struct entry *pdent = pdents;
|
2020-04-13 17:51:15 +00:00
|
|
|
int fd = create_tmp_file();
|
2020-03-21 15:58:48 +00:00
|
|
|
|
2020-03-20 18:16:58 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (int r = 0; r < ndents; ++pdent, ++r) {
|
2020-03-20 18:16:58 +00:00
|
|
|
if (write(fd, pdent->name, pdent->nlen - 1) != (pdent->nlen - 1))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ((r != ndents - 1) && (write(fd, "\n", 1) != 1))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (close(fd)) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(editor, g_tmpfpath, NULL, F_CLI);
|
2020-03-20 18:16:58 +00:00
|
|
|
|
2020-03-21 15:58:48 +00:00
|
|
|
if (xconfirm(get_input(messages[MSG_RM_TMP])))
|
2020-03-20 18:16:58 +00:00
|
|
|
unlink(g_tmpfpath);
|
|
|
|
}
|
|
|
|
|
2020-08-04 13:52:29 +00:00
|
|
|
static bool init_fcolors(void)
|
|
|
|
{
|
|
|
|
char *f_colors = getenv("NNN_FCOLORS");
|
|
|
|
|
2020-08-04 15:06:19 +00:00
|
|
|
if (!f_colors || !*f_colors)
|
|
|
|
f_colors = gcolors;
|
|
|
|
|
|
|
|
for (uchar id = C_BLK; *f_colors && id <= C_UND; ++id) {
|
|
|
|
fcolors[id] = xchartohex(*f_colors) << 4;
|
|
|
|
if (*++f_colors) {
|
|
|
|
fcolors[id] += xchartohex(*f_colors);
|
|
|
|
if (fcolors[id])
|
|
|
|
init_pair(id, fcolors[id], -1);
|
|
|
|
} else
|
|
|
|
return FALSE;
|
|
|
|
++f_colors;
|
2020-08-04 13:52:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Initialize curses mode */
|
2020-02-14 13:18:44 +00:00
|
|
|
static bool initcurses(void *oldmask)
|
2017-06-15 16:04:47 +00:00
|
|
|
{
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifdef NOMOUSE
|
|
|
|
(void) oldmask;
|
|
|
|
#endif
|
|
|
|
|
2020-06-09 17:33:36 +00:00
|
|
|
if (g_state.picker) {
|
2019-01-03 18:13:04 +00:00
|
|
|
if (!newterm(NULL, stderr, stdin)) {
|
|
|
|
fprintf(stderr, "newterm!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else if (!initscr()) {
|
2019-08-25 14:18:08 +00:00
|
|
|
fprintf(stderr, "initscr!\n");
|
|
|
|
DPRINTF_S(getenv("TERM"));
|
2018-12-08 09:58:55 +00:00
|
|
|
return FALSE;
|
2017-06-15 16:04:47 +00:00
|
|
|
}
|
2017-08-22 17:04:17 +00:00
|
|
|
|
2017-06-15 16:04:47 +00:00
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
nonl();
|
2019-03-11 16:19:35 +00:00
|
|
|
//intrflush(stdscr, FALSE);
|
2017-06-15 16:04:47 +00:00
|
|
|
keypad(stdscr, TRUE);
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2019-07-12 14:20:30 +00:00
|
|
|
#if NCURSES_MOUSE_VERSION <= 1
|
2020-03-11 03:39:57 +00:00
|
|
|
mousemask(BUTTON1_PRESSED | BUTTON1_DOUBLE_CLICKED | BUTTON2_PRESSED | BUTTON3_PRESSED,
|
2020-03-01 07:10:35 +00:00
|
|
|
(mmask_t *)oldmask);
|
2019-07-12 14:20:30 +00:00
|
|
|
#else
|
2020-03-11 03:39:57 +00:00
|
|
|
mousemask(BUTTON1_PRESSED | BUTTON2_PRESSED | BUTTON3_PRESSED | BUTTON4_PRESSED | BUTTON5_PRESSED,
|
2020-03-01 07:10:35 +00:00
|
|
|
(mmask_t *)oldmask);
|
2019-07-12 14:20:30 +00:00
|
|
|
#endif
|
2019-10-14 12:25:04 +00:00
|
|
|
mouseinterval(0);
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2017-06-15 16:04:47 +00:00
|
|
|
curs_set(FALSE); /* Hide cursor */
|
2019-11-30 14:21:57 +00:00
|
|
|
|
2020-04-13 16:51:56 +00:00
|
|
|
char *colors = getenv(env_cfg[NNN_COLORS]);
|
|
|
|
|
|
|
|
if (colors || !getenv("NO_COLOR")) {
|
2020-08-02 17:48:13 +00:00
|
|
|
uint *pcode;
|
2020-08-02 10:48:35 +00:00
|
|
|
bool ext = FALSE;
|
|
|
|
|
2020-04-05 00:23:46 +00:00
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
|
|
|
|
2020-08-05 18:57:12 +00:00
|
|
|
/* Initialize file colors */
|
2020-08-05 19:36:21 +00:00
|
|
|
if (COLORS >= 256) {
|
|
|
|
if (!(g_state.oldcolor || init_fcolors())) {
|
|
|
|
exitcurses();
|
|
|
|
fprintf(stderr, "NNN_FCOLORS!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
g_state.oldcolor = 1;
|
2020-08-05 18:57:12 +00:00
|
|
|
|
2020-08-16 08:19:09 +00:00
|
|
|
DPRINTF_D(COLORS);
|
|
|
|
DPRINTF_D(COLOR_PAIRS);
|
|
|
|
|
2020-08-02 17:48:13 +00:00
|
|
|
if (colors && *colors == '#') {
|
|
|
|
char *sep = strchr(colors, ';');
|
|
|
|
|
|
|
|
if (COLORS >= 256) {
|
|
|
|
++colors;
|
|
|
|
ext = TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If fallback colors are specified, set the separator
|
|
|
|
* to NULL so we don't interpret separator and fallback
|
|
|
|
* if fewer than CTX_MAX xterm 256 colors are specified.
|
|
|
|
*/
|
|
|
|
if (sep)
|
|
|
|
*sep = '\0';
|
|
|
|
} else {
|
|
|
|
colors = sep; /* Detect if 8 colors fallback is appended */
|
|
|
|
if (colors)
|
2020-08-02 11:33:35 +00:00
|
|
|
++colors;
|
|
|
|
}
|
2020-08-05 19:36:21 +00:00
|
|
|
}
|
2020-08-02 10:48:35 +00:00
|
|
|
|
2020-08-02 17:48:13 +00:00
|
|
|
/* Get and set the context colors */
|
|
|
|
for (uchar i = 0; i < CTX_MAX; ++i) {
|
|
|
|
pcode = &g_ctx[i].color;
|
|
|
|
|
|
|
|
if (colors && *colors) {
|
|
|
|
if (ext) {
|
2020-08-03 19:12:58 +00:00
|
|
|
*pcode = xchartohex(*colors) << 4;
|
|
|
|
if (*++colors)
|
|
|
|
*pcode += xchartohex(*colors);
|
|
|
|
else { /* Each color code must be 2 hex symbols */
|
|
|
|
exitcurses();
|
|
|
|
fprintf(stderr, "NNN_COLORS!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
2020-08-02 17:48:13 +00:00
|
|
|
*pcode = (*colors < '0' || *colors > '7') ? 4 : *colors - '0';
|
2020-08-03 19:12:58 +00:00
|
|
|
++colors;
|
2020-08-02 17:48:13 +00:00
|
|
|
} else
|
|
|
|
*pcode = 4;
|
2020-04-05 00:23:46 +00:00
|
|
|
|
2020-08-02 17:48:13 +00:00
|
|
|
init_pair(i + 1, *pcode, -1);
|
2020-04-05 00:23:46 +00:00
|
|
|
}
|
2019-11-30 14:21:57 +00:00
|
|
|
}
|
2019-02-28 14:43:37 +00:00
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
|
|
|
if (!g_state.oldcolor) {
|
2020-08-16 08:19:09 +00:00
|
|
|
uchar icolors[256] = {0};
|
|
|
|
char c;
|
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
memset(icon_positions, 0x7f, sizeof(icon_positions));
|
|
|
|
|
|
|
|
for (uint i = 0; i < sizeof(icons_ext)/sizeof(struct icon_pair); ++i) {
|
|
|
|
c = TOUPPER(icons_ext[i].match[0]);
|
|
|
|
if (c >= 'A' && c <= 'Z') {
|
2020-08-16 11:21:55 +00:00
|
|
|
if (icon_positions[c - 'A' + 10] == 0x7f7f)
|
|
|
|
icon_positions[c - 'A' + 10] = i;
|
|
|
|
} else if (c >= '0' && c <= '9') {
|
|
|
|
if (icon_positions[c - '0'] == 0x7f7f)
|
|
|
|
icon_positions[c - '0'] = i;
|
2020-08-17 15:27:15 +00:00
|
|
|
} else if (icon_positions[36] == 0x7f7f)
|
|
|
|
icon_positions[36] = i;
|
2020-08-16 08:19:09 +00:00
|
|
|
|
2020-08-16 11:21:55 +00:00
|
|
|
if (icons_ext[i].color && !icolors[icons_ext[i].color]) {
|
|
|
|
init_pair(C_UND + 1 + icons_ext[i].color, icons_ext[i].color, -1);
|
|
|
|
icolors[icons_ext[i].color] = 1;
|
|
|
|
}
|
2020-08-16 01:00:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout(); /* One second */
|
2020-08-12 09:55:15 +00:00
|
|
|
set_escdelay(25);
|
2018-12-08 09:58:55 +00:00
|
|
|
return TRUE;
|
2017-06-15 16:04:47 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 17:46:17 +00:00
|
|
|
/* No NULL check here as spawn() guards against it */
|
|
|
|
static int parseargs(char *line, char **argv)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
argv[count++] = line;
|
|
|
|
|
|
|
|
while (*line) { // NOLINT
|
|
|
|
if (ISBLANK(*line)) {
|
|
|
|
*line++ = '\0';
|
|
|
|
|
|
|
|
if (!*line) // NOLINT
|
|
|
|
return count;
|
|
|
|
|
|
|
|
argv[count++] = line;
|
|
|
|
if (count == EXEC_ARGS_MAX)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
++line;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pid_t xfork(uchar flag)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
pid_t p = fork();
|
|
|
|
struct sigaction dfl_act = {.sa_handler = SIG_DFL};
|
|
|
|
|
|
|
|
if (p > 0) {
|
|
|
|
/* the parent ignores the interrupt, quit and hangup signals */
|
|
|
|
sigaction(SIGHUP, &(struct sigaction){.sa_handler = SIG_IGN}, &oldsighup);
|
|
|
|
sigaction(SIGTSTP, &dfl_act, &oldsigtstp);
|
|
|
|
} else if (p == 0) {
|
|
|
|
/* We create a grandchild to detach */
|
|
|
|
if (flag & F_NOWAIT) {
|
|
|
|
p = fork();
|
|
|
|
|
|
|
|
if (p > 0)
|
|
|
|
_exit(EXIT_SUCCESS);
|
|
|
|
else if (p == 0) {
|
|
|
|
sigaction(SIGHUP, &dfl_act, NULL);
|
|
|
|
sigaction(SIGINT, &dfl_act, NULL);
|
|
|
|
sigaction(SIGQUIT, &dfl_act, NULL);
|
|
|
|
sigaction(SIGTSTP, &dfl_act, NULL);
|
|
|
|
|
|
|
|
setsid();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
perror("fork");
|
|
|
|
_exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* so they can be used to stop the child */
|
|
|
|
sigaction(SIGHUP, &dfl_act, NULL);
|
|
|
|
sigaction(SIGINT, &dfl_act, NULL);
|
|
|
|
sigaction(SIGQUIT, &dfl_act, NULL);
|
|
|
|
sigaction(SIGTSTP, &dfl_act, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the parent waiting for the child to create grandchild*/
|
|
|
|
if (flag & F_NOWAIT)
|
|
|
|
waitpid(p, &status, 0);
|
|
|
|
|
|
|
|
if (p == -1)
|
|
|
|
perror("fork");
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int join(pid_t p, uchar flag)
|
|
|
|
{
|
|
|
|
int status = 0xFFFF;
|
|
|
|
|
|
|
|
if (!(flag & F_NOWAIT)) {
|
|
|
|
/* wait for the child to exit */
|
|
|
|
do {
|
|
|
|
} while (waitpid(p, &status, 0) == -1);
|
|
|
|
|
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
status = WEXITSTATUS(status);
|
|
|
|
DPRINTF_D(status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* restore parent's signal handling */
|
|
|
|
sigaction(SIGHUP, &oldsighup, NULL);
|
|
|
|
sigaction(SIGTSTP, &oldsigtstp, NULL);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Spawns a child process. Behaviour can be controlled using flag.
|
|
|
|
* Limited to 2 arguments to a program, flag works on bit set.
|
|
|
|
*/
|
|
|
|
static int spawn(char *file, char *arg1, char *arg2, uchar flag)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
int status = 0, retstatus = 0xFFFF;
|
|
|
|
char *argv[EXEC_ARGS_MAX] = {0};
|
|
|
|
char *cmd = NULL;
|
|
|
|
|
|
|
|
if (!file || !*file)
|
|
|
|
return retstatus;
|
|
|
|
|
|
|
|
/* Swap args if the first arg is NULL and second isn't */
|
|
|
|
if (!arg1 && arg2) {
|
|
|
|
arg1 = arg2;
|
|
|
|
arg2 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag & F_MULTI) {
|
|
|
|
size_t len = xstrlen(file) + 1;
|
|
|
|
|
|
|
|
cmd = (char *)malloc(len);
|
|
|
|
if (!cmd) {
|
|
|
|
DPRINTF_S("malloc()!");
|
|
|
|
return retstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
xstrsncpy(cmd, file, len);
|
|
|
|
status = parseargs(cmd, argv);
|
|
|
|
if (status == -1 || status > (EXEC_ARGS_MAX - 3)) { /* arg1, arg2 and last NULL */
|
|
|
|
free(cmd);
|
|
|
|
DPRINTF_S("NULL or too many args");
|
|
|
|
return retstatus;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
argv[status++] = file;
|
|
|
|
|
|
|
|
argv[status] = arg1;
|
|
|
|
argv[++status] = arg2;
|
|
|
|
|
|
|
|
if (flag & F_NORMAL)
|
|
|
|
exitcurses();
|
|
|
|
|
|
|
|
pid = xfork(flag);
|
|
|
|
if (pid == 0) {
|
|
|
|
/* Suppress stdout and stderr */
|
|
|
|
if (flag & F_NOTRACE) {
|
|
|
|
int fd = open("/dev/null", O_WRONLY, 0200);
|
|
|
|
|
|
|
|
dup2(fd, 1);
|
|
|
|
dup2(fd, 2);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
execvp(*argv, argv);
|
|
|
|
_exit(EXIT_SUCCESS);
|
|
|
|
} else {
|
|
|
|
retstatus = join(pid, flag);
|
|
|
|
|
|
|
|
DPRINTF_D(pid);
|
|
|
|
|
|
|
|
if ((flag & F_CONFIRM) || ((flag & F_CHKRTN) && retstatus)) {
|
|
|
|
printf("%s", messages[MSG_CONTINUE]);
|
|
|
|
#ifndef NORL
|
|
|
|
fflush(stdout);
|
|
|
|
#endif
|
|
|
|
while (getchar() != '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag & F_NORMAL)
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
free(cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retstatus;
|
|
|
|
}
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
static void prompt_run(char *cmd, const char *current)
|
2019-09-28 09:48:09 +00:00
|
|
|
{
|
2020-06-22 03:47:59 +00:00
|
|
|
setenv(envs[ENV_NCUR], current, 1);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(shell, "-c", cmd, F_CLI | F_CONFIRM);
|
2019-09-28 09:48:09 +00:00
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Get program name from env var, else return fallback program */
|
2019-12-29 17:51:18 +00:00
|
|
|
static char *xgetenv(const char * const name, char *fallback)
|
2015-11-20 15:42:33 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
char *value = getenv(name);
|
2017-06-21 04:19:02 +00:00
|
|
|
|
2015-11-26 15:10:12 +00:00
|
|
|
return value && value[0] ? value : fallback;
|
2015-11-20 15:42:33 +00:00
|
|
|
}
|
|
|
|
|
2019-04-24 15:01:52 +00:00
|
|
|
/* Checks if an env variable is set to 1 */
|
2020-06-13 18:30:39 +00:00
|
|
|
static inline bool xgetenv_set(const char *name)
|
2019-04-24 15:01:52 +00:00
|
|
|
{
|
|
|
|
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-10-15 00:45:32 +00:00
|
|
|
static void opstr(char *buf, char *op)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2019-12-09 19:26:29 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 sh -c '%s \"$0\" \"$@\" . < /dev/tty' < %s",
|
2020-03-01 14:18:40 +00:00
|
|
|
op, selpath);
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 14:55:39 +00:00
|
|
|
static bool rmmulstr(char *buf)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.trash)
|
2020-03-01 14:18:40 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 trash-put < %s", selpath);
|
2020-07-09 14:55:39 +00:00
|
|
|
else {
|
|
|
|
char r = confirm_force(TRUE);
|
|
|
|
|
|
|
|
if (!r)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-22 15:47:55 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 sh -c 'rm -%cr \"$0\" \"$@\" < /dev/tty' < %s",
|
2020-07-09 14:55:39 +00:00
|
|
|
r, selpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2020-06-06 10:51:43 +00:00
|
|
|
/* Returns TRUE if file is removed, else FALSE */
|
|
|
|
static bool xrm(char *fpath)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.trash)
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn("trash-put", fpath, 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-11-05 16:35:49 +00:00
|
|
|
rm_opts[1] = confirm_force(FALSE);
|
2020-07-09 14:55:39 +00:00
|
|
|
if (!rm_opts[1])
|
|
|
|
return FALSE;
|
|
|
|
|
2020-06-01 15:51:01 +00:00
|
|
|
spawn("rm", rm_opts, fpath, F_NORMAL | F_CHKRTN);
|
2019-03-09 03:35:32 +00:00
|
|
|
}
|
2020-06-06 10:51:43 +00:00
|
|
|
|
|
|
|
return (access(fpath, F_OK) == -1); /* File is removed */
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2019-10-14 17:15:19 +00:00
|
|
|
static uint lines_in_file(int fd, char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
ssize_t len;
|
|
|
|
uint count = 0;
|
|
|
|
|
|
|
|
while ((len = read(fd, buf, buflen)) > 0)
|
|
|
|
while (len)
|
|
|
|
count += (buf[--len] == '\n');
|
|
|
|
|
|
|
|
/* For all use cases 0 linecount is considered as error */
|
|
|
|
return ((len < 0) ? 0 : count);
|
|
|
|
}
|
|
|
|
|
2019-10-17 18:05:49 +00:00
|
|
|
static bool cpmv_rename(int choice, const char *path)
|
2019-10-14 16:36:45 +00:00
|
|
|
{
|
2019-10-14 17:15:19 +00:00
|
|
|
int fd;
|
2019-10-14 16:36:45 +00:00
|
|
|
uint count = 0, lines = 0;
|
|
|
|
bool ret = FALSE;
|
2019-10-17 18:05:49 +00:00
|
|
|
char *cmd = (choice == 'c' ? cp : mv);
|
2020-02-27 19:03:35 +00:00
|
|
|
char buf[sizeof(patterns[P_CPMVRNM]) + sizeof(cmd) + (PATH_MAX << 1)];
|
2019-10-14 16:36:45 +00:00
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd = create_tmp_file();
|
|
|
|
if (fd == -1)
|
2019-10-14 16:36:45 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* selsafe() returned TRUE for this to be called */
|
|
|
|
if (!selbufpos) {
|
2020-03-01 14:18:40 +00:00
|
|
|
snprintf(buf, sizeof(buf), "tr '\\0' '\\n' < %s > %s", selpath, g_tmpfpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI);
|
2019-10-14 16:36:45 +00:00
|
|
|
|
2019-10-14 17:15:19 +00:00
|
|
|
count = lines_in_file(fd, buf, sizeof(buf));
|
2019-10-14 16:36:45 +00:00
|
|
|
if (!count)
|
|
|
|
goto finish;
|
2019-10-14 17:15:19 +00:00
|
|
|
} else
|
2020-04-25 15:06:10 +00:00
|
|
|
seltofile(fd, &count);
|
2019-10-14 16:36:45 +00:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2020-02-27 19:03:35 +00:00
|
|
|
snprintf(buf, sizeof(buf), patterns[P_CPMVFMT], g_tmpfpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI);
|
2019-10-14 16:36:45 +00:00
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, F_CLI);
|
2019-10-14 16:36:45 +00:00
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd = open(g_tmpfpath, O_RDONLY);
|
|
|
|
if (fd == -1)
|
2019-10-14 16:36:45 +00:00
|
|
|
goto finish;
|
|
|
|
|
2019-10-14 17:15:19 +00:00
|
|
|
lines = lines_in_file(fd, buf, sizeof(buf));
|
2019-10-14 16:36:45 +00:00
|
|
|
DPRINTF_U(count);
|
|
|
|
DPRINTF_U(lines);
|
2019-10-14 22:17:57 +00:00
|
|
|
if (!lines || (2 * count != lines)) {
|
|
|
|
DPRINTF_S("num mismatch");
|
2019-10-14 16:36:45 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2020-02-27 19:03:35 +00:00
|
|
|
snprintf(buf, sizeof(buf), patterns[P_CPMVRNM], path, g_tmpfpath, cmd);
|
2020-06-01 15:51:01 +00:00
|
|
|
if (!spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI | F_CHKRTN))
|
|
|
|
ret = TRUE;
|
2019-10-14 16:36:45 +00:00
|
|
|
finish:
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-03-29 14:52:43 +00:00
|
|
|
static bool cpmvrm_selection(enum action sel, char *path)
|
2019-10-19 07:55:50 +00:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
2020-03-29 14:52:43 +00:00
|
|
|
if (!selsafe())
|
2019-10-19 07:55:50 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (sel) {
|
|
|
|
case SEL_CP:
|
|
|
|
opstr(g_buf, cp);
|
|
|
|
break;
|
|
|
|
case SEL_MV:
|
|
|
|
opstr(g_buf, mv);
|
|
|
|
break;
|
|
|
|
case SEL_CPMVAS:
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_CP_MV_AS]);
|
2019-10-19 07:55:50 +00:00
|
|
|
if (r != 'c' && r != 'm') {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_INVALID_KEY]);
|
2019-10-19 07:55:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cpmv_rename(r, path)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_FAILED]);
|
2019-10-19 07:55:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
2020-01-14 15:31:59 +00:00
|
|
|
default: /* SEL_RM */
|
2020-07-09 14:55:39 +00:00
|
|
|
if (!rmmulstr(g_buf)) {
|
|
|
|
printmsg(messages[MSG_CANCEL]);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-10-19 07:55:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-01 15:51:01 +00:00
|
|
|
if (sel != SEL_CPMVAS && spawn(utils[UTIL_SH_EXEC], g_buf, NULL, F_CLI | F_CHKRTN)) {
|
|
|
|
printmsg(messages[MSG_FAILED]);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-10-19 07:55:50 +00:00
|
|
|
|
2020-08-02 13:43:18 +00:00
|
|
|
/* Clear selection */
|
|
|
|
clearselection();
|
2019-10-19 07:55:50 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-03-30 16:39:39 +00:00
|
|
|
#ifndef NOBATCH
|
2020-05-10 10:53:45 +00:00
|
|
|
static bool batch_rename(void)
|
2019-05-22 13:14:03 +00:00
|
|
|
{
|
2020-04-13 17:51:15 +00:00
|
|
|
int fd1, fd2;
|
2019-05-22 15:02:29 +00:00
|
|
|
uint count = 0, lines = 0;
|
|
|
|
bool dir = FALSE, ret = FALSE;
|
2019-05-22 13:14:03 +00:00
|
|
|
char foriginal[TMP_LEN_MAX] = {0};
|
2020-03-30 16:39:39 +00:00
|
|
|
static const char batchrenamecmd[] = "paste -d'\n' %s %s | sed 'N; /^\\(.*\\)\\n\\1$/!p;d' | "
|
|
|
|
"tr '\n' '\\0' | xargs -0 -n2 mv 2>/dev/null";
|
|
|
|
char buf[sizeof(batchrenamecmd) + (PATH_MAX << 1)];
|
2020-04-13 17:51:15 +00:00
|
|
|
int i = get_cur_or_sel();
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2019-12-26 15:03:01 +00:00
|
|
|
if (!i)
|
2019-11-29 15:28:12 +00:00
|
|
|
return ret;
|
|
|
|
|
2019-12-26 15:03:01 +00:00
|
|
|
if (i == 'c') { /* Rename entries in current dir */
|
|
|
|
selbufpos = 0;
|
|
|
|
dir = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd1 = create_tmp_file();
|
|
|
|
if (fd1 == -1)
|
2019-05-22 15:02:29 +00:00
|
|
|
return ret;
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2020-04-15 09:30:40 +00:00
|
|
|
xstrsncpy(foriginal, g_tmpfpath, xstrlen(g_tmpfpath) + 1);
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd2 = create_tmp_file();
|
|
|
|
if (fd2 == -1) {
|
2019-05-22 13:14:03 +00:00
|
|
|
unlink(foriginal);
|
|
|
|
close(fd1);
|
2019-05-22 15:02:29 +00:00
|
|
|
return ret;
|
2019-05-22 13:14:03 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 14:23:20 +00:00
|
|
|
if (dir)
|
2019-05-22 15:02:29 +00:00
|
|
|
for (i = 0; i < ndents; ++i)
|
2020-06-22 03:47:59 +00:00
|
|
|
appendfpath(pdents[i].name, NAME_MAX);
|
2019-05-22 15:02:29 +00:00
|
|
|
|
2020-04-25 15:06:10 +00:00
|
|
|
seltofile(fd1, &count);
|
|
|
|
seltofile(fd2, NULL);
|
2019-05-22 13:14:03 +00:00
|
|
|
close(fd2);
|
|
|
|
|
2019-09-11 14:23:20 +00:00
|
|
|
if (dir) /* Don't retain dir entries in selection */
|
2019-09-08 08:53:00 +00:00
|
|
|
selbufpos = 0;
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, F_CLI);
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2019-07-12 15:43:49 +00:00
|
|
|
/* Reopen file descriptor to get updated contents */
|
2019-10-24 03:14:36 +00:00
|
|
|
fd2 = open(g_tmpfpath, O_RDONLY);
|
|
|
|
if (fd2 == -1)
|
2019-05-22 15:02:29 +00:00
|
|
|
goto finish;
|
|
|
|
|
2019-10-14 17:15:19 +00:00
|
|
|
lines = lines_in_file(fd2, buf, sizeof(buf));
|
2019-05-22 15:02:29 +00:00
|
|
|
DPRINTF_U(count);
|
|
|
|
DPRINTF_U(lines);
|
2019-10-14 22:17:57 +00:00
|
|
|
if (!lines || (count != lines)) {
|
2019-05-22 15:02:29 +00:00
|
|
|
DPRINTF_S("cannot delete files");
|
|
|
|
goto finish;
|
2019-05-22 13:14:03 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 16:39:39 +00:00
|
|
|
snprintf(buf, sizeof(buf), batchrenamecmd, foriginal, g_tmpfpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI);
|
2019-05-22 15:02:29 +00:00
|
|
|
ret = TRUE;
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2019-05-22 15:02:29 +00:00
|
|
|
finish:
|
|
|
|
if (fd1 >= 0)
|
|
|
|
close(fd1);
|
2019-05-22 13:14:03 +00:00
|
|
|
unlink(foriginal);
|
2019-05-22 15:02:29 +00:00
|
|
|
|
|
|
|
if (fd2 >= 0)
|
|
|
|
close(fd2);
|
2019-05-22 13:14:03 +00:00
|
|
|
unlink(g_tmpfpath);
|
2019-05-22 15:02:29 +00:00
|
|
|
|
|
|
|
return ret;
|
2019-05-22 13:14:03 +00:00
|
|
|
}
|
2020-03-30 16:39:39 +00:00
|
|
|
#endif
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
static void get_archive_cmd(char *cmd, const char *archive)
|
2019-07-27 06:44:49 +00:00
|
|
|
{
|
2020-02-29 08:23:16 +00:00
|
|
|
uchar i = 3;
|
|
|
|
const char *arcmd[] = {"atool -a", "bsdtar -acvf", "zip -r", "tar -acvf"};
|
|
|
|
|
2019-11-22 15:16:05 +00:00
|
|
|
if (getutil(utils[UTIL_ATOOL]))
|
2020-02-29 08:23:16 +00:00
|
|
|
i = 0;
|
2019-11-22 15:16:05 +00:00
|
|
|
else if (getutil(utils[UTIL_BSDTAR]))
|
2020-02-29 08:23:16 +00:00
|
|
|
i = 1;
|
2019-07-27 06:44:49 +00:00
|
|
|
else if (is_suffix(archive, ".zip"))
|
2020-02-29 08:23:16 +00:00
|
|
|
i = 2;
|
|
|
|
// else tar
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(cmd, arcmd[i], ARCHIVE_CMD_LEN);
|
2019-07-27 06:44:49 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 17:42:49 +00:00
|
|
|
static void archive_selection(const char *cmd, const char *archive, const char *curpath)
|
2019-03-02 18:58:53 +00:00
|
|
|
{
|
2020-01-14 22:35:26 +00:00
|
|
|
/* The 70 comes from the string below */
|
2020-04-15 09:30:40 +00:00
|
|
|
char *buf = (char *)malloc((70 + xstrlen(cmd) + xstrlen(archive)
|
|
|
|
+ xstrlen(curpath) + xstrlen(selpath)) * sizeof(char));
|
2020-01-14 22:35:26 +00:00
|
|
|
if (!buf) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
printwarn(NULL);
|
|
|
|
return;
|
|
|
|
}
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-07-25 14:25:55 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX,
|
2019-08-14 15:42:17 +00:00
|
|
|
#ifdef __linux__
|
2020-05-03 22:38:12 +00:00
|
|
|
"sed -ze 's|^%s/||' '%s' | xargs -0 %s %s", curpath, selpath, cmd, archive
|
2019-08-14 15:42:17 +00:00
|
|
|
#else
|
2019-11-21 12:49:55 +00:00
|
|
|
"tr '\\0' '\n' < '%s' | sed -e 's|^%s/||' | tr '\n' '\\0' | xargs -0 %s %s",
|
2020-05-03 22:38:12 +00:00
|
|
|
selpath, curpath, cmd, archive
|
2019-08-14 15:42:17 +00:00
|
|
|
#endif
|
2020-05-03 22:38:12 +00:00
|
|
|
);
|
2020-08-03 09:27:00 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, F_CLI | F_CONFIRM);
|
2019-07-25 14:25:55 +00:00
|
|
|
free(buf);
|
2019-03-02 18:58:53 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 19:35:13 +00:00
|
|
|
static bool write_lastdir(const char *curpath)
|
|
|
|
{
|
2019-06-07 16:23:27 +00:00
|
|
|
bool ret = TRUE;
|
2020-06-08 04:14:53 +00:00
|
|
|
size_t len = xstrlen(cfgpath);
|
2019-03-02 19:35:13 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
xstrsncpy(cfgpath + len, "/.lastd", 8);
|
|
|
|
DPRINTF_S(cfgpath);
|
2019-03-02 19:35:13 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
FILE *fp = fopen(cfgpath, "w");
|
2019-03-02 19:35:13 +00:00
|
|
|
|
|
|
|
if (fp) {
|
2019-06-07 16:23:27 +00:00
|
|
|
if (fprintf(fp, "cd \"%s\"", curpath) < 0)
|
|
|
|
ret = FALSE;
|
|
|
|
|
2019-03-02 19:35:13 +00:00
|
|
|
fclose(fp);
|
2019-06-07 16:23:27 +00:00
|
|
|
} else
|
|
|
|
ret = FALSE;
|
2019-03-02 19:35:13 +00:00
|
|
|
|
2019-06-07 16:23:27 +00:00
|
|
|
return ret;
|
2019-03-02 19:35:13 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 17:40:12 +00:00
|
|
|
/*
|
|
|
|
* We assume none of the strings are NULL.
|
|
|
|
*
|
|
|
|
* Let's have the logic to sort numeric names in numeric order.
|
|
|
|
* E.g., the order '1, 10, 2' doesn't make sense to human eyes.
|
|
|
|
*
|
|
|
|
* If the absolute numeric values are same, we fallback to alphasort.
|
|
|
|
*/
|
2018-10-22 14:25:45 +00:00
|
|
|
static int xstricmp(const char * const s1, const char * const s2)
|
2016-08-21 12:47:34 +00:00
|
|
|
{
|
2019-08-31 20:14:19 +00:00
|
|
|
char *p1, *p2;
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
ll v1 = strtoll(s1, &p1, 10);
|
|
|
|
ll v2 = strtoll(s2, &p2, 10);
|
2019-01-23 13:29:40 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
/* Check if at least 1 string is numeric */
|
|
|
|
if (s1 != p1 || s2 != p2) {
|
|
|
|
/* Handle both pure numeric */
|
|
|
|
if (s1 != p1 && s2 != p2) {
|
|
|
|
if (v2 > v1)
|
|
|
|
return -1;
|
2017-12-23 21:45:22 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
if (v1 > v2)
|
|
|
|
return 1;
|
2019-01-23 13:29:40 +00:00
|
|
|
}
|
2017-12-23 21:45:22 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
/* Only first string non-numeric */
|
|
|
|
if (s1 == p1)
|
2019-01-23 13:29:40 +00:00
|
|
|
return 1;
|
2017-05-16 02:02:21 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
/* Only second string non-numeric */
|
|
|
|
if (s2 == p2)
|
2019-01-23 13:29:40 +00:00
|
|
|
return -1;
|
2017-12-21 12:19:31 +00:00
|
|
|
}
|
2017-04-01 17:40:12 +00:00
|
|
|
|
2019-08-31 20:14:19 +00:00
|
|
|
/* Handle 1. all non-numeric and 2. both same numeric value cases */
|
2019-10-04 02:13:07 +00:00
|
|
|
#ifndef NOLOCALE
|
2017-12-23 21:45:22 +00:00
|
|
|
return strcoll(s1, s2);
|
2019-10-04 02:13:07 +00:00
|
|
|
#else
|
|
|
|
return strcasecmp(s1, s2);
|
|
|
|
#endif
|
2016-08-21 12:47:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 18:18:34 +00:00
|
|
|
/*
|
|
|
|
* 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).
|
2019-06-16 13:26:11 +00:00
|
|
|
*
|
|
|
|
* Ignores case.
|
2019-02-05 18:18:34 +00:00
|
|
|
*/
|
2019-06-16 13:26:11 +00:00
|
|
|
static int xstrverscasecmp(const char * const s1, const char * const s2)
|
2019-02-05 18:18:34 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
const uchar *p1 = (const uchar *)s1;
|
|
|
|
const uchar *p2 = (const uchar *)s2;
|
|
|
|
int state, diff;
|
2019-09-15 16:09:39 +00:00
|
|
|
uchar c1, c2;
|
2019-02-05 18:18:34 +00:00
|
|
|
|
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[] = {
|
2019-02-05 18:18:34 +00:00
|
|
|
/* 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)) = {
|
2019-02-05 18:18:34 +00:00
|
|
|
/* 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,
|
2019-02-05 18:18:34 +00:00
|
|
|
/* 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
|
2019-02-05 18:18:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (p1 == p2)
|
|
|
|
return 0;
|
|
|
|
|
2019-04-01 15:41:23 +00:00
|
|
|
c1 = TOUPPER(*p1);
|
|
|
|
++p1;
|
|
|
|
c2 = TOUPPER(*p2);
|
|
|
|
++p2;
|
2019-02-05 18:18:34 +00:00
|
|
|
|
|
|
|
/* 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;
|
2019-02-05 18:18:34 +00:00
|
|
|
state += (c1 == '0') + (xisdigit(c1) != 0);
|
|
|
|
}
|
|
|
|
|
2020-05-03 22:55:26 +00:00
|
|
|
state = result_type[state * 3 + (((c2 == '0') + (xisdigit(c2) != 0)))]; // NOLINT
|
2019-02-05 18:18:34 +00:00
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case VCMP:
|
|
|
|
return diff;
|
|
|
|
case VLEN:
|
2019-02-22 19:32:05 +00:00
|
|
|
while (xisdigit(*p1++))
|
|
|
|
if (!xisdigit(*p2++))
|
2019-02-05 18:18:34 +00:00
|
|
|
return 1;
|
2019-02-22 19:32:05 +00:00
|
|
|
return xisdigit(*p2) ? -1 : diff;
|
2019-02-05 18:18:34 +00:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-09 14:11:22 +00:00
|
|
|
static int (*namecmpfn)(const char * const s1, const char * const s2) = &xstricmp;
|
2019-07-14 17:30:14 +00:00
|
|
|
|
2020-01-11 10:42:34 +00:00
|
|
|
static char * (*fnstrstr)(const char *haystack, const char *needle) = &strcasestr;
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
2020-01-24 16:55:27 +00:00
|
|
|
static const unsigned char *tables;
|
2020-02-12 17:32:02 +00:00
|
|
|
static int pcreflags = PCRE_NO_AUTO_CAPTURE | PCRE_EXTENDED | PCRE_CASELESS | PCRE_UTF8;
|
2020-01-23 18:54:51 +00:00
|
|
|
#else
|
2020-01-11 10:42:34 +00:00
|
|
|
static int regflags = REG_NOSUB | REG_EXTENDED | REG_ICASE;
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PCRE
|
|
|
|
static int setfilter(pcre **pcrex, const char *filter)
|
|
|
|
{
|
2020-01-24 13:30:12 +00:00
|
|
|
const char *errstr = NULL;
|
|
|
|
int erroffset = 0;
|
|
|
|
|
|
|
|
*pcrex = pcre_compile(filter, pcreflags, &errstr, &erroffset, tables);
|
|
|
|
|
|
|
|
return errstr ? -1 : 0;
|
2020-01-23 18:54:51 +00:00
|
|
|
}
|
|
|
|
#else
|
2019-02-27 17:06:22 +00:00
|
|
|
static int setfilter(regex_t *regex, const char *filter)
|
2014-10-09 22:35:47 +00:00
|
|
|
{
|
2020-01-11 10:42:34 +00:00
|
|
|
return regcomp(regex, filter, regflags);
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2019-10-13 13:40:06 +00:00
|
|
|
static int visible_re(const fltrexp_t *fltrexp, const char *fname)
|
2014-10-09 22:35:47 +00:00
|
|
|
{
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
2020-04-15 09:30:40 +00:00
|
|
|
return pcre_exec(fltrexp->pcrex, NULL, fname, xstrlen(fname), 0, 0, NULL, 0) == 0;
|
2020-01-23 18:54:51 +00:00
|
|
|
#else
|
2019-10-13 13:40:06 +00:00
|
|
|
return regexec(fltrexp->regex, fname, 0, NULL, 0) == 0;
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-10-13 13:40:06 +00:00
|
|
|
static int visible_str(const fltrexp_t *fltrexp, const char *fname)
|
2019-01-13 17:19:14 +00:00
|
|
|
{
|
2020-01-11 10:42:34 +00:00
|
|
|
return fnstrstr(fname, fltrexp->str) != NULL;
|
2019-01-13 17:19:14 +00:00
|
|
|
}
|
|
|
|
|
2019-12-14 08:36:00 +00:00
|
|
|
static int (*filterfn)(const fltrexp_t *fltr, const char *fname) = &visible_str;
|
2019-01-13 17:19:14 +00:00
|
|
|
|
2020-01-18 17:17:05 +00:00
|
|
|
static void clearfilter(void)
|
2019-12-26 12:24:58 +00:00
|
|
|
{
|
2020-01-10 23:45:20 +00:00
|
|
|
char *fltr = g_ctx[cfg.curctx].c_fltr;
|
|
|
|
|
|
|
|
if (fltr[1]) {
|
|
|
|
fltr[REGEX_MAX - 1] = fltr[1];
|
|
|
|
fltr[1] = '\0';
|
|
|
|
}
|
2019-12-26 12:24:58 +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;
|
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
|
|
|
|
2019-07-11 17:03:49 +00:00
|
|
|
/* Sort based on specified order */
|
2020-03-28 03:50:14 +00:00
|
|
|
if (cfg.timeorder) {
|
2019-07-11 17:03:49 +00:00
|
|
|
if (pb->t > pa->t)
|
|
|
|
return 1;
|
|
|
|
if (pb->t < pa->t)
|
|
|
|
return -1;
|
|
|
|
} else if (cfg.sizeorder) {
|
2017-04-09 18:41:29 +00:00
|
|
|
if (pb->size > pa->size)
|
|
|
|
return 1;
|
2018-11-03 10:20:01 +00:00
|
|
|
if (pb->size < pa->size)
|
2017-04-09 18:41:29 +00:00
|
|
|
return -1;
|
2019-03-04 15:01:57 +00:00
|
|
|
} else if (cfg.blkorder) {
|
2017-06-22 01:56:05 +00:00
|
|
|
if (pb->blocks > pa->blocks)
|
2017-04-09 18:41:29 +00:00
|
|
|
return 1;
|
2018-11-03 10:20:01 +00:00
|
|
|
if (pb->blocks < pa->blocks)
|
2017-04-09 18:41:29 +00:00
|
|
|
return -1;
|
2019-08-01 16:50:40 +00:00
|
|
|
} else if (cfg.extnorder && !(pb->flags & DIR_OR_LINK_TO_DIR)) {
|
2020-08-05 15:06:50 +00:00
|
|
|
char *extna = xextension(pa->name, pa->nlen - 1);
|
|
|
|
char *extnb = xextension(pb->name, pb->nlen - 1);
|
2019-08-01 16:50:40 +00:00
|
|
|
|
|
|
|
if (extna || extnb) {
|
|
|
|
if (!extna)
|
2020-01-08 16:15:54 +00:00
|
|
|
return -1;
|
2019-08-01 16:50:40 +00:00
|
|
|
|
|
|
|
if (!extnb)
|
2020-01-08 16:15:54 +00:00
|
|
|
return 1;
|
2019-08-01 16:50:40 +00:00
|
|
|
|
|
|
|
int ret = strcasecmp(extna, extnb);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
2017-03-29 20:21:52 +00:00
|
|
|
|
2020-01-09 14:11:22 +00:00
|
|
|
return namecmpfn(pa->name, pb->name);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 14:11:22 +00:00
|
|
|
static int reventrycmp(const void *va, const void *vb)
|
|
|
|
{
|
|
|
|
if ((((pEntry)vb)->flags & DIR_OR_LINK_TO_DIR)
|
|
|
|
!= (((pEntry)va)->flags & DIR_OR_LINK_TO_DIR)) {
|
|
|
|
if (((pEntry)vb)->flags & DIR_OR_LINK_TO_DIR)
|
|
|
|
return 1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -entrycmp(va, vb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int (*entrycmpfn)(const void *va, const void *vb) = &entrycmp;
|
|
|
|
|
2020-05-13 05:06:59 +00:00
|
|
|
/* In case of an error, resets *wch to Esc */
|
|
|
|
static int handle_alt_key(wint_t *wch)
|
|
|
|
{
|
|
|
|
timeout(0);
|
|
|
|
int r = get_wch(wch);
|
|
|
|
if (r == ERR)
|
2020-08-17 15:27:15 +00:00
|
|
|
*wch = ESC;
|
2020-05-13 05:06:59 +00:00
|
|
|
cleartimeout();
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
/*
|
|
|
|
* Returns SEL_* if key is bound and 0 otherwise.
|
2017-06-03 23:19:16 +00:00
|
|
|
* Also modifies the run and env pointers (used on SEL_{RUN,RUNARG}).
|
|
|
|
* The next keyboard input can be simulated by presel.
|
|
|
|
*/
|
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;
|
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();
|
2019-12-09 17:47:40 +00:00
|
|
|
//DPRINTF_D(c);
|
2019-12-28 19:08:03 +00:00
|
|
|
//DPRINTF_S(keyname(c));
|
2019-03-10 23:55:17 +00:00
|
|
|
|
2020-05-13 05:06:59 +00:00
|
|
|
/* Handle Alt+key */
|
2020-08-17 15:27:15 +00:00
|
|
|
if (c == ESC) {
|
2020-05-13 05:06:59 +00:00
|
|
|
timeout(0);
|
|
|
|
c = getch();
|
|
|
|
if (c != ERR) {
|
2020-08-17 15:27:15 +00:00
|
|
|
if (c == ESC)
|
2020-07-12 18:30:34 +00:00
|
|
|
c = CONTROL('L');
|
|
|
|
else {
|
|
|
|
ungetch(c);
|
|
|
|
c = ';';
|
|
|
|
}
|
2020-05-13 05:06:59 +00:00
|
|
|
} else
|
2020-08-17 15:27:15 +00:00
|
|
|
c = ESC;
|
2020-05-13 05:06:59 +00:00
|
|
|
settimeout();
|
|
|
|
}
|
|
|
|
|
2020-03-30 21:02:13 +00:00
|
|
|
if (c == ERR && presel == MSGWAIT)
|
|
|
|
c = (cfg.filtermode || filterset()) ? FILTER : CONTROL('L');
|
2020-02-07 00:23:15 +00:00
|
|
|
else if (c == FILTER || c == CONTROL('L'))
|
|
|
|
/* Clear previous filter when manually starting */
|
2020-02-01 14:37:18 +00:00
|
|
|
clearfilter();
|
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
|
2020-06-09 18:13:49 +00:00
|
|
|
if (!g_state.selmode && !cfg.blkorder && inotify_wd >= 0 && (idle & 1)) {
|
2020-05-19 03:20:04 +00:00
|
|
|
struct inotify_event *event;
|
|
|
|
char inotify_buf[EVENT_BUF_LEN];
|
|
|
|
|
|
|
|
memset((void *)inotify_buf, 0x0, EVENT_BUF_LEN);
|
2019-03-19 14:43:03 +00:00
|
|
|
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
|
|
|
|
if (i > 0) {
|
2020-04-13 17:51:15 +00:00
|
|
|
for (char *ptr = inotify_buf;
|
2019-06-04 17:11:48 +00:00
|
|
|
ptr + ((struct inotify_event *)ptr)->len < inotify_buf + i;
|
2019-03-19 14:09:43 +00:00
|
|
|
ptr += sizeof(struct inotify_event) + event->len) {
|
2020-08-05 20:00:56 +00:00
|
|
|
event = (struct inotify_event *)ptr;
|
2019-03-19 14:09:43 +00:00
|
|
|
DPRINTF_D(event->wd);
|
|
|
|
DPRINTF_D(event->mask);
|
2019-03-20 00:20:20 +00:00
|
|
|
if (!event->wd)
|
|
|
|
break;
|
|
|
|
|
2019-03-19 14:09:43 +00:00
|
|
|
if (event->mask & INOTIFY_MASK) {
|
|
|
|
c = CONTROL('L');
|
2019-03-20 00:20:20 +00:00
|
|
|
DPRINTF_S("issue refresh");
|
2019-03-19 14:09:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-03-20 00:20:20 +00:00
|
|
|
DPRINTF_S("inotify read done");
|
2019-03-19 14:09:43 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2020-06-09 18:13:49 +00:00
|
|
|
if (!g_state.selmode && !cfg.blkorder && event_fd >= 0 && idle & 1) {
|
2020-05-19 03:20:04 +00:00
|
|
|
struct kevent event_data[NUM_EVENT_SLOTS];
|
|
|
|
|
|
|
|
memset((void *)event_data, 0x0, sizeof(struct kevent) * NUM_EVENT_SLOTS);
|
|
|
|
if (kevent(kq, events_to_monitor, NUM_EVENT_SLOTS, event_data, NUM_EVENT_FDS, >imeout) > 0)
|
|
|
|
c = CONTROL('L');
|
|
|
|
}
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
2020-06-09 18:13:49 +00:00
|
|
|
if (!g_state.selmode && !cfg.blkorder && haiku_nm_active && idle & 1 && haiku_is_update_needed(haiku_hnd))
|
2019-12-27 18:02:20 +00:00
|
|
|
c = CONTROL('L');
|
2019-03-19 14:09:43 +00:00
|
|
|
#endif
|
2017-08-20 20:48:14 +00:00
|
|
|
} else
|
2015-11-20 14:14:58 +00:00
|
|
|
idle = 0;
|
2014-11-06 11:46:37 +00:00
|
|
|
|
2020-01-08 14:10:56 +00:00
|
|
|
for (i = 0; i < (int)ELEMENTS(bindings); ++i)
|
2019-01-21 16:20:29 +00:00
|
|
|
if (c == bindings[i].sym)
|
2014-11-06 11:46:37 +00:00
|
|
|
return bindings[i].act;
|
2017-05-19 14:38:22 +00:00
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-01-14 17:21:10 +00:00
|
|
|
static int getorderstr(char *sort)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2020-07-21 17:00:12 +00:00
|
|
|
if (cfg.showhidden)
|
|
|
|
sort[i++] = 'H';
|
|
|
|
|
2020-03-28 03:50:14 +00:00
|
|
|
if (cfg.timeorder)
|
2020-07-21 17:00:12 +00:00
|
|
|
sort[i++] = (cfg.timetype == T_MOD) ? 'M' : ((cfg.timetype == T_ACCESS) ? 'A' : 'C');
|
2020-01-14 17:21:10 +00:00
|
|
|
else if (cfg.sizeorder)
|
2020-07-21 17:00:12 +00:00
|
|
|
sort[i++] = 'S';
|
2020-01-14 17:21:10 +00:00
|
|
|
else if (cfg.extnorder)
|
2020-07-21 17:00:12 +00:00
|
|
|
sort[i++] = 'E';
|
2020-01-14 17:21:10 +00:00
|
|
|
|
2020-07-21 17:00:12 +00:00
|
|
|
if (entrycmpfn == &reventrycmp)
|
|
|
|
sort[i++] = 'R';
|
2020-01-14 17:21:10 +00:00
|
|
|
|
2020-07-21 17:00:12 +00:00
|
|
|
if (namecmpfn == &xstrverscasecmp)
|
|
|
|
sort[i++] = 'V';
|
2020-01-14 17:21:10 +00:00
|
|
|
|
|
|
|
if (i)
|
|
|
|
sort[i] = ' ';
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2020-01-11 10:42:34 +00:00
|
|
|
static void showfilterinfo(void)
|
|
|
|
{
|
2020-01-14 17:21:10 +00:00
|
|
|
int i = 0;
|
2020-07-21 17:00:12 +00:00
|
|
|
char info[REGEX_MAX] = "\0\0\0\0\0";
|
2020-01-11 10:42:34 +00:00
|
|
|
|
2020-01-14 17:21:10 +00:00
|
|
|
i = getorderstr(info);
|
|
|
|
|
2020-01-15 04:35:19 +00:00
|
|
|
snprintf(info + i, REGEX_MAX - i - 1, " %s [/], %s [:]",
|
2020-01-11 10:42:34 +00:00
|
|
|
(cfg.regex ? "regex" : "str"),
|
|
|
|
((fnstrstr == &strcasestr) ? "ic" : "noic"));
|
2020-04-13 03:02:32 +00:00
|
|
|
|
|
|
|
clearinfoln();
|
2020-04-15 09:30:40 +00:00
|
|
|
mvaddstr(xlines - 2, xcols - xstrlen(info), info);
|
2020-01-11 10:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void showfilter(char *str)
|
|
|
|
{
|
2020-04-13 03:02:32 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
2020-01-11 10:42:34 +00:00
|
|
|
showfilterinfo();
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(str);
|
2020-04-13 03:02:32 +00:00
|
|
|
// printmsg calls attroff()
|
2020-01-11 10:42:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 17:45:01 +00:00
|
|
|
static inline void swap_ent(int id1, int id2)
|
|
|
|
{
|
2020-06-22 03:47:59 +00:00
|
|
|
struct entry _dent, *pdent1 = &pdents[id1], *pdent2 = &pdents[id2];
|
2019-02-26 17:45:01 +00:00
|
|
|
|
|
|
|
*(&_dent) = *pdent1;
|
|
|
|
*pdent1 = *pdent2;
|
|
|
|
*pdent2 = *(&_dent);
|
|
|
|
}
|
|
|
|
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
static int fill(const char *fltr, pcre *pcrex)
|
|
|
|
#else
|
2019-02-27 17:06:22 +00:00
|
|
|
static int fill(const char *fltr, regex_t *re)
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2017-04-28 23:02:47 +00:00
|
|
|
{
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
fltrexp_t fltrexp = { .pcrex = pcrex, .str = fltr };
|
|
|
|
#else
|
2019-10-13 13:40:06 +00:00
|
|
|
fltrexp_t fltrexp = { .regex = re, .str = fltr };
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2019-02-28 15:37:42 +00:00
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (int count = 0; count < ndents; ++count) {
|
2020-06-22 03:47:59 +00:00
|
|
|
if (filterfn(&fltrexp, pdents[count].name) == 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
|
|
|
{
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
pcre *pcrex = NULL;
|
|
|
|
|
|
|
|
/* Search filter */
|
|
|
|
if (cfg.regex && setfilter(&pcrex, fltr))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ndents = fill(fltr, pcrex);
|
|
|
|
|
|
|
|
if (cfg.regex)
|
|
|
|
pcre_free(pcrex);
|
|
|
|
#else
|
2019-02-27 17:06:22 +00:00
|
|
|
regex_t re;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
|
|
|
/* Search filter */
|
2020-01-23 18:54:51 +00:00
|
|
|
if (cfg.regex && setfilter(&re, fltr))
|
2017-04-28 23:02:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2019-01-13 17:19:14 +00:00
|
|
|
ndents = fill(fltr, &re);
|
2020-01-23 18:54:51 +00:00
|
|
|
|
2020-01-11 05:53:57 +00:00
|
|
|
if (cfg.regex)
|
2019-01-13 17:19:14 +00:00
|
|
|
regfree(&re);
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2018-03-18 22:12:56 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
qsort(pdents, ndents, sizeof(*pdents), entrycmpfn);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2019-09-11 06:48:58 +00:00
|
|
|
return ndents;
|
2017-04-28 23:02:47 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 15:06:50 +00:00
|
|
|
/*
|
|
|
|
* Return the position of the matching entry or 0 otherwise
|
|
|
|
* Note there's no NULL check for fname
|
|
|
|
*/
|
|
|
|
static int dentfind(const char *fname, int n)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < n; ++i)
|
|
|
|
if (xstrcmp(fname, pdents[i].name) == 0)
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-26 07:04:01 +00:00
|
|
|
static int filterentries(char *path, char *lastname)
|
2014-10-09 22:35:47 +00:00
|
|
|
{
|
2019-05-15 16:59:38 +00:00
|
|
|
wchar_t *wln = (wchar_t *)alloca(sizeof(wchar_t) * REGEX_MAX);
|
2019-03-31 12:23:24 +00:00
|
|
|
char *ln = g_ctx[cfg.curctx].c_fltr;
|
2019-02-27 17:06:22 +00:00
|
|
|
wint_t ch[2] = {0};
|
2019-12-28 19:08:03 +00:00
|
|
|
int r, total = ndents, 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
|
|
|
|
2020-03-29 03:26:08 +00:00
|
|
|
DPRINTF_S(__FUNCTION__);
|
|
|
|
|
2020-01-11 05:53:57 +00:00
|
|
|
if (ndents && (ln[0] == FILTER || ln[0] == RFILTER) && *pln) {
|
2019-12-26 07:04:01 +00:00
|
|
|
if (matches(pln) != -1) {
|
|
|
|
move_cursor(dentfind(lastname, ndents), 0);
|
2019-03-31 12:23:24 +00:00
|
|
|
redraw(path);
|
2019-12-26 07:04:01 +00:00
|
|
|
}
|
2019-03-31 12:23:24 +00:00
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
if (!cfg.filtermode)
|
|
|
|
return 0;
|
|
|
|
|
2019-03-31 12:23:24 +00:00
|
|
|
len = mbstowcs(wln, ln, REGEX_MAX);
|
|
|
|
} else {
|
2020-01-11 05:53:57 +00:00
|
|
|
ln[0] = wln[0] = cfg.regex ? RFILTER : FILTER;
|
2019-03-31 12:23:24 +00:00
|
|
|
ln[1] = wln[1] = '\0';
|
|
|
|
len = 1;
|
|
|
|
}
|
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
cleartimeout();
|
2014-10-09 22:35:47 +00:00
|
|
|
curs_set(TRUE);
|
2020-01-11 10:42:34 +00:00
|
|
|
showfilter(ln);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
while ((r = get_wch(ch)) != ERR) {
|
2019-12-28 19:08:03 +00:00
|
|
|
//DPRINTF_D(*ch);
|
|
|
|
//DPRINTF_S(keyname(*ch));
|
|
|
|
|
2018-10-27 20:22:07 +00:00
|
|
|
switch (*ch) {
|
2019-08-08 00:38:08 +00:00
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
case KEY_RESIZE:
|
|
|
|
clearoldprompt();
|
2019-12-28 19:08:03 +00:00
|
|
|
redraw(path);
|
2020-01-11 10:42:34 +00:00
|
|
|
showfilter(ln);
|
2019-08-08 00:38:08 +00:00
|
|
|
continue;
|
|
|
|
#endif
|
2018-10-27 20:22:07 +00:00
|
|
|
case KEY_DC: // fallthrough
|
2019-11-18 14:51:00 +00:00
|
|
|
case KEY_BACKSPACE: // fallthrough
|
2018-10-27 20:22:07 +00:00
|
|
|
case '\b': // fallthrough
|
2020-08-17 15:27:15 +00:00
|
|
|
case DEL: /* handle DEL */
|
2020-01-20 13:39:10 +00:00
|
|
|
if (len != 1) {
|
|
|
|
wln[--len] = '\0';
|
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
|
|
|
ndents = total;
|
|
|
|
} else
|
2020-02-29 00:38:26 +00:00
|
|
|
continue;
|
2020-01-20 13:39:10 +00:00
|
|
|
// fallthrough
|
|
|
|
case CONTROL('L'):
|
2020-05-31 17:50:08 +00:00
|
|
|
if (*ch == CONTROL('L')) {
|
2020-01-11 22:06:08 +00:00
|
|
|
if (wln[1]) {
|
|
|
|
ln[REGEX_MAX - 1] = ln[1];
|
2020-01-20 13:39:10 +00:00
|
|
|
ln[1] = wln[1] = '\0';
|
2020-01-11 22:06:08 +00:00
|
|
|
len = 1;
|
2020-01-20 13:39:10 +00:00
|
|
|
ndents = total;
|
2020-05-31 17:50:08 +00:00
|
|
|
} else if (ln[REGEX_MAX - 1]) { /* Show the previous filter */
|
2020-01-11 22:06:08 +00:00
|
|
|
ln[1] = ln[REGEX_MAX - 1];
|
|
|
|
ln[REGEX_MAX - 1] = '\0';
|
|
|
|
len = mbstowcs(wln, ln, REGEX_MAX);
|
|
|
|
}
|
2020-01-20 13:39:10 +00:00
|
|
|
}
|
2018-10-27 20:22:07 +00:00
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
/* Go to the top, we don't know if the hovered file will match the filter */
|
2019-12-28 19:08:03 +00:00
|
|
|
cur = 0;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2018-08-28 17:21:26 +00:00
|
|
|
if (matches(pln) != -1)
|
|
|
|
redraw(path);
|
|
|
|
|
2020-01-11 10:42:34 +00:00
|
|
|
showfilter(ln);
|
2017-12-14 13:42:14 +00:00
|
|
|
continue;
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2020-05-19 12:24:36 +00:00
|
|
|
case KEY_MOUSE:
|
|
|
|
goto end;
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2020-08-17 15:27:15 +00:00
|
|
|
case ESC: /* Exit filter mode on Escape and Alt+key */
|
2020-05-13 05:06:59 +00:00
|
|
|
if (handle_alt_key(ch) != ERR) {
|
2020-08-17 15:27:15 +00:00
|
|
|
if (*ch == ESC) { /* Handle Alt + Esc */
|
2020-07-12 18:30:34 +00:00
|
|
|
if (wln[1]) {
|
|
|
|
ln[REGEX_MAX - 1] = ln[1];
|
|
|
|
ln[1] = wln[1] = '\0';
|
|
|
|
ndents = total;
|
|
|
|
*ch = CONTROL('L');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unget_wch(*ch);
|
|
|
|
*ch = ';';
|
|
|
|
}
|
2020-05-13 05:06:59 +00:00
|
|
|
}
|
2018-10-27 03:05:05 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
if (r != OK) /* Handle Fn keys in main loop */
|
|
|
|
break;
|
2020-01-11 05:53:57 +00:00
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
/* Handle all control chars in main loop */
|
|
|
|
if (*ch < ASCII_MAX && keyname(*ch)[0] == '^' && *ch != '^')
|
|
|
|
goto end;
|
2020-01-11 05:53:57 +00:00
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
if (len == 1) {
|
2020-02-27 03:17:00 +00:00
|
|
|
if (*ch == '?') /* Help and config key, '?' is an invalid regex */
|
2020-01-20 13:39:10 +00:00
|
|
|
goto end;
|
2020-02-27 03:17:00 +00:00
|
|
|
|
|
|
|
if (cfg.filtermode) {
|
|
|
|
switch (*ch) {
|
|
|
|
case '\'': // fallthrough /* Go to first non-dir file */
|
2020-04-12 13:31:02 +00:00
|
|
|
case '+': // fallthrough /* Toggle auto-advance */
|
2020-07-07 02:27:43 +00:00
|
|
|
case ',': // fallthrough /* Mark CWD */
|
2020-02-27 03:17:00 +00:00
|
|
|
case '-': // fallthrough /* Visit last visited dir */
|
|
|
|
case '.': // fallthrough /* Show hidden files */
|
|
|
|
case ';': // fallthrough /* Run plugin key */
|
|
|
|
case '=': // fallthrough /* Launch app */
|
2020-03-20 18:16:58 +00:00
|
|
|
case '>': // fallthrough /* Export file list */
|
2020-02-27 03:17:00 +00:00
|
|
|
case '@': // fallthrough /* Visit start dir */
|
|
|
|
case ']': // fallthorugh /* Prompt key */
|
|
|
|
case '`': // fallthrough /* Visit / */
|
|
|
|
case '~': /* Go HOME */
|
|
|
|
goto end;
|
|
|
|
}
|
2020-01-10 23:45:20 +00:00
|
|
|
}
|
2018-08-07 23:27:49 +00:00
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
/* Toggle case-sensitivity */
|
|
|
|
if (*ch == CASE) {
|
|
|
|
fnstrstr = (fnstrstr == &strcasestr) ? &strstr : &strcasestr;
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
pcreflags ^= PCRE_CASELESS;
|
|
|
|
#else
|
2020-01-20 13:39:10 +00:00
|
|
|
regflags ^= REG_ICASE;
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2020-01-11 10:42:34 +00:00
|
|
|
showfilter(ln);
|
2020-01-10 23:45:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-01-20 13:39:10 +00:00
|
|
|
/* toggle string or regex filter */
|
|
|
|
if (*ch == FILTER) {
|
2020-03-31 22:20:17 +00:00
|
|
|
ln[0] = (ln[0] == FILTER) ? RFILTER : FILTER;
|
|
|
|
wln[0] = (uchar)ln[0];
|
2020-01-20 13:39:10 +00:00
|
|
|
cfg.regex ^= 1;
|
2020-05-23 20:21:59 +00:00
|
|
|
filterfn = cfg.regex ? &visible_re : &visible_str;
|
2020-01-20 13:39:10 +00:00
|
|
|
showfilter(ln);
|
|
|
|
continue;
|
2017-04-28 23:02:47 +00:00
|
|
|
}
|
2020-01-10 23:45:20 +00:00
|
|
|
|
2020-04-06 15:36:39 +00:00
|
|
|
/* Reset cur in case it's a repeat search */
|
2020-01-20 13:39:10 +00:00
|
|
|
cur = 0;
|
2020-04-06 16:07:36 +00:00
|
|
|
} else if (len == REGEX_MAX - 1)
|
|
|
|
continue;
|
2020-01-20 13:39:10 +00:00
|
|
|
|
|
|
|
wln[len] = (wchar_t)*ch;
|
|
|
|
wln[++len] = '\0';
|
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
|
|
|
|
|
|
|
/* Forward-filtering optimization:
|
|
|
|
* - new matches can only be a subset of current matches.
|
|
|
|
*/
|
|
|
|
/* ndents = total; */
|
|
|
|
|
|
|
|
if (matches(pln) == -1) {
|
|
|
|
showfilter(ln);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the only match is a dir, auto-select and cd into it */
|
|
|
|
if (ndents == 1 && cfg.filtermode
|
2020-06-22 03:47:59 +00:00
|
|
|
&& cfg.autoselect && (pdents[0].flags & DIR_OR_LINK_TO_DIR)) {
|
2020-01-20 13:39:10 +00:00
|
|
|
*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,
|
|
|
|
* 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().
|
|
|
|
*/
|
|
|
|
redraw(path);
|
|
|
|
showfilter(ln);
|
2017-08-25 08:40:57 +00:00
|
|
|
}
|
2017-04-28 23:02:47 +00:00
|
|
|
end:
|
2020-01-11 10:42:34 +00:00
|
|
|
clearinfoln();
|
|
|
|
|
2020-01-10 23:45:20 +00:00
|
|
|
/* Save last working filter in-filter */
|
|
|
|
if (ln[1])
|
|
|
|
ln[REGEX_MAX - 1] = ln[1];
|
|
|
|
|
2020-01-19 05:19:40 +00:00
|
|
|
/* Save current */
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-05-09 02:38:32 +00:00
|
|
|
|
2015-11-20 11:38:19 +00:00
|
|
|
curs_set(FALSE);
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout();
|
2017-06-03 23:19:16 +00:00
|
|
|
|
|
|
|
/* Return keys for navigation etc. */
|
2017-04-28 23:02:47 +00:00
|
|
|
return *ch;
|
2014-10-09 22:35:47 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
/* Show a prompt with input string and return the changes */
|
2019-10-20 00:05:41 +00:00
|
|
|
static char *xreadline(const char *prefill, const char *prompt)
|
2017-08-24 01:34:56 +00:00
|
|
|
{
|
2017-08-24 04:45:32 +00:00
|
|
|
size_t len, pos;
|
2019-08-08 00:38:08 +00:00
|
|
|
int x, r;
|
2019-06-22 01:49:00 +00:00
|
|
|
const int WCHAR_T_WIDTH = sizeof(wchar_t);
|
2017-08-25 08:27:22 +00:00
|
|
|
wint_t ch[2] = {0};
|
2019-10-05 01:47:01 +00:00
|
|
|
wchar_t * const buf = malloc(sizeof(wchar_t) * READLINE_MAX);
|
2019-06-13 00:37:53 +00:00
|
|
|
|
|
|
|
if (!buf)
|
|
|
|
errexit();
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2018-11-08 20:02:12 +00:00
|
|
|
cleartimeout();
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2018-04-25 17:07:59 +00:00
|
|
|
|
2018-12-09 13:48:00 +00:00
|
|
|
if (prefill) {
|
|
|
|
DPRINTF_S(prefill);
|
2019-10-05 01:47:01 +00:00
|
|
|
len = pos = mbstowcs(buf, prefill, READLINE_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;
|
|
|
|
}
|
|
|
|
|
2019-08-08 00:38:08 +00:00
|
|
|
x = getcurx(stdscr);
|
2018-10-27 03:05:05 +00:00
|
|
|
curs_set(TRUE);
|
2017-08-24 01:34:56 +00:00
|
|
|
|
|
|
|
while (1) {
|
2017-08-25 21:12:33 +00:00
|
|
|
buf[len] = ' ';
|
2020-04-09 11:22:36 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
2019-08-08 00:38:08 +00:00
|
|
|
mvaddnwstr(xlines - 1, x, buf, len + 1);
|
|
|
|
move(xlines - 1, x + wcswidth(buf, pos));
|
2020-04-09 11:22:36 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1));
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2018-07-12 14:28:53 +00:00
|
|
|
r = get_wch(ch);
|
2020-01-19 15:54:33 +00:00
|
|
|
if (r == ERR)
|
|
|
|
continue;
|
2018-03-27 02:35:47 +00:00
|
|
|
|
2020-01-19 15:54:33 +00:00
|
|
|
if (r == OK) {
|
|
|
|
switch (*ch) {
|
|
|
|
case KEY_ENTER: // fallthrough
|
|
|
|
case '\n': // fallthrough
|
|
|
|
case '\r':
|
|
|
|
goto END;
|
2020-01-27 13:27:56 +00:00
|
|
|
case CONTROL('D'):
|
|
|
|
if (pos < len)
|
|
|
|
++pos;
|
2020-01-27 14:16:10 +00:00
|
|
|
else if (!(pos || len)) { /* Exit on ^D at empty prompt */
|
|
|
|
len = 0;
|
|
|
|
goto END;
|
|
|
|
} else
|
|
|
|
continue;
|
|
|
|
// fallthrough
|
2020-08-17 15:27:15 +00:00
|
|
|
case DEL: // fallthrough
|
2020-01-19 15:54:33 +00:00
|
|
|
case '\b': /* rhel25 sends '\b' for backspace */
|
|
|
|
if (pos > 0) {
|
|
|
|
memmove(buf + pos - 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
|
|
|
--len, --pos;
|
|
|
|
} // fallthrough
|
|
|
|
case '\t': /* TAB breaks cursor position, ignore it */
|
|
|
|
continue;
|
2020-01-27 13:27:56 +00:00
|
|
|
case CONTROL('F'):
|
|
|
|
if (pos < len)
|
|
|
|
++pos;
|
|
|
|
continue;
|
|
|
|
case CONTROL('B'):
|
|
|
|
if (pos > 0)
|
|
|
|
--pos;
|
|
|
|
continue;
|
|
|
|
case CONTROL('W'):
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2020-01-27 13:27:56 +00:00
|
|
|
do {
|
|
|
|
if (pos == 0)
|
|
|
|
break;
|
|
|
|
memmove(buf + pos - 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
|
|
|
--pos, --len;
|
2020-02-01 13:16:56 +00:00
|
|
|
} while (buf[pos - 1] != ' ' && buf[pos - 1] != '/'); // NOLINT
|
2020-01-27 13:27:56 +00:00
|
|
|
continue;
|
|
|
|
case CONTROL('K'):
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2020-01-27 13:27:56 +00:00
|
|
|
len = pos;
|
|
|
|
continue;
|
2020-01-19 15:54:33 +00:00
|
|
|
case CONTROL('L'):
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2020-01-19 15:54:33 +00:00
|
|
|
len = pos = 0;
|
|
|
|
continue;
|
|
|
|
case CONTROL('A'):
|
|
|
|
pos = 0;
|
|
|
|
continue;
|
|
|
|
case CONTROL('E'):
|
|
|
|
pos = len;
|
|
|
|
continue;
|
|
|
|
case CONTROL('U'):
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2020-01-19 15:54:33 +00:00
|
|
|
memmove(buf, buf + pos, (len - pos) * WCHAR_T_WIDTH);
|
|
|
|
len -= pos;
|
|
|
|
pos = 0;
|
|
|
|
continue;
|
2020-08-17 15:27:15 +00:00
|
|
|
case ESC: /* Exit prompt on Escape, but just filter out Alt+key */
|
2020-05-13 05:06:59 +00:00
|
|
|
if (handle_alt_key(ch) != ERR)
|
|
|
|
continue;
|
|
|
|
|
2020-01-19 15:54:33 +00:00
|
|
|
len = 0;
|
|
|
|
goto END;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Filter out all other control chars */
|
|
|
|
if (*ch < ASCII_MAX && keyname(*ch)[0] == '^')
|
|
|
|
continue;
|
2018-03-27 02:35:47 +00:00
|
|
|
|
2020-01-19 15:54:33 +00:00
|
|
|
if (pos < READLINE_MAX - 1) {
|
|
|
|
memmove(buf + pos + 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
|
|
|
buf[pos] = *ch;
|
|
|
|
++len, ++pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (*ch) {
|
2020-01-27 18:20:29 +00:00
|
|
|
#ifdef KEY_RESIZE
|
2020-01-19 15:54:33 +00:00
|
|
|
case KEY_RESIZE:
|
|
|
|
clearoldprompt();
|
|
|
|
xlines = LINES;
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(prompt);
|
2020-01-19 15:54:33 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
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,
|
2019-06-22 01:49:00 +00:00
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
2020-01-19 15:54:33 +00:00
|
|
|
--len, --pos;
|
2017-08-25 08:27:22 +00:00
|
|
|
}
|
2020-01-19 15:54:33 +00:00
|
|
|
break;
|
|
|
|
case KEY_DC:
|
|
|
|
if (pos < len) {
|
|
|
|
memmove(buf + pos, buf + pos + 1,
|
|
|
|
(len - pos - 1) * WCHAR_T_WIDTH);
|
|
|
|
--len;
|
2017-08-25 08:27:22 +00:00
|
|
|
}
|
2020-01-19 15:54:33 +00:00
|
|
|
break;
|
|
|
|
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();
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg("");
|
2018-10-27 03:05:05 +00:00
|
|
|
|
2018-11-07 16:43:56 +00:00
|
|
|
buf[len] = '\0';
|
2019-06-22 08:32:39 +00:00
|
|
|
|
2019-10-05 01:47:01 +00:00
|
|
|
pos = wcstombs(g_buf, buf, READLINE_MAX - 1);
|
|
|
|
if (pos >= READLINE_MAX - 1)
|
|
|
|
g_buf[READLINE_MAX - 1] = '\0';
|
2019-06-22 08:32:39 +00:00
|
|
|
|
2019-06-13 00:37:53 +00:00
|
|
|
free(buf);
|
|
|
|
return g_buf;
|
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
|
|
|
|
*/
|
2020-05-10 10:53:45 +00:00
|
|
|
static char *getreadline(const char *prompt)
|
2019-04-26 20:11:35 +00:00
|
|
|
{
|
|
|
|
exitcurses();
|
|
|
|
|
2019-06-01 02:03:11 +00:00
|
|
|
char *input = readline(prompt);
|
2019-04-26 20:11:35 +00:00
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
if (input && input[0]) {
|
2019-04-26 20:11:35 +00:00
|
|
|
add_history(input);
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(g_buf, input, CMD_LEN_MAX);
|
2019-04-26 20:11:35 +00:00
|
|
|
free(input);
|
|
|
|
return g_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(input);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-20 12:20:49 +00:00
|
|
|
/*
|
|
|
|
* Create symbolic/hard link(s) to file(s) in selection list
|
2019-12-27 13:24:30 +00:00
|
|
|
* Returns the number of links created, -1 on error
|
2019-01-20 12:20:49 +00:00
|
|
|
*/
|
2020-01-10 19:01:08 +00:00
|
|
|
static int xlink(char *prefix, char *path, char *curfname, char *buf, int *presel, int type)
|
2019-01-20 11:29:55 +00:00
|
|
|
{
|
2019-12-26 15:03:01 +00:00
|
|
|
int count = 0, choice;
|
2020-01-10 19:01:08 +00:00
|
|
|
char *psel = pselbuf, *fname;
|
2019-06-12 22:51:19 +00:00
|
|
|
size_t pos = 0, len, r;
|
2019-01-20 11:29:55 +00:00
|
|
|
int (*link_fn)(const char *, const char *) = NULL;
|
2020-01-10 19:01:08 +00:00
|
|
|
char lnpath[PATH_MAX];
|
2019-01-20 11:29:55 +00:00
|
|
|
|
2019-12-26 15:03:01 +00:00
|
|
|
choice = get_cur_or_sel();
|
|
|
|
if (!choice)
|
2019-04-27 12:28:55 +00:00
|
|
|
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;
|
|
|
|
|
2019-11-29 15:28:12 +00:00
|
|
|
if (choice == 'c') {
|
2020-04-12 00:35:14 +00:00
|
|
|
r = xstrsncpy(buf, prefix, NAME_MAX + 1); /* Copy prefix */
|
|
|
|
xstrsncpy(buf + r - 1, curfname, NAME_MAX - r); /* Suffix target file name */
|
2020-01-10 19:01:08 +00:00
|
|
|
mkpath(path, buf, lnpath); /* Generate link path */
|
|
|
|
mkpath(path, curfname, buf); /* Generate target file path */
|
2019-11-29 15:28:12 +00:00
|
|
|
|
|
|
|
if (!link_fn(buf, lnpath))
|
2019-12-27 13:24:30 +00:00
|
|
|
return 1; /* One link created */
|
2019-11-29 15:28:12 +00:00
|
|
|
|
|
|
|
printwarn(presel);
|
2019-12-27 13:24:30 +00:00
|
|
|
return -1;
|
2019-11-29 15:28:12 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
while (pos < selbufpos) {
|
2020-04-15 09:30:40 +00:00
|
|
|
len = xstrlen(psel);
|
2020-01-10 19:01:08 +00:00
|
|
|
fname = xbasename(psel);
|
2019-01-20 11:29:55 +00:00
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
r = xstrsncpy(buf, prefix, NAME_MAX + 1); /* Copy prefix */
|
|
|
|
xstrsncpy(buf + r - 1, fname, NAME_MAX - r); /* Suffix target file name */
|
2020-01-10 19:01:08 +00:00
|
|
|
mkpath(path, buf, lnpath); /* Generate link path */
|
|
|
|
|
|
|
|
if (!link_fn(psel, lnpath))
|
2019-01-20 11:29:55 +00:00
|
|
|
++count;
|
|
|
|
|
|
|
|
pos += len + 1;
|
2020-01-10 19:01:08 +00:00
|
|
|
psel += len + 1;
|
2019-01-20 11:29:55 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 13:35:44 +00:00
|
|
|
clearselection();
|
2019-01-20 11:29:55 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2020-03-01 14:18:40 +00:00
|
|
|
static bool parsekvpair(kv **arr, char **envcpy, const uchar id, uchar *items)
|
2017-06-11 04:15:50 +00:00
|
|
|
{
|
2020-06-13 19:01:48 +00:00
|
|
|
bool new = TRUE;
|
2020-04-15 15:13:26 +00:00
|
|
|
const uchar INCR = 8;
|
|
|
|
uint i = 0;
|
|
|
|
kv *kvarr = NULL;
|
2020-02-28 13:50:42 +00:00
|
|
|
char *ptr = getenv(env_cfg[id]);
|
2019-02-22 19:32:05 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (!ptr || !*ptr)
|
2018-12-08 09:58:55 +00:00
|
|
|
return TRUE;
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2020-04-15 09:30:40 +00:00
|
|
|
*envcpy = xstrdup(ptr);
|
2020-02-28 14:00:50 +00:00
|
|
|
if (!*envcpy) {
|
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
2020-02-29 04:23:07 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
ptr = *envcpy;
|
2019-08-07 20:09:41 +00:00
|
|
|
|
2020-04-15 15:13:26 +00:00
|
|
|
while (*ptr && i < 100) {
|
2020-06-13 19:01:48 +00:00
|
|
|
if (new) {
|
2020-04-15 15:13:26 +00:00
|
|
|
if (!(i & (INCR - 1))) {
|
|
|
|
kvarr = xrealloc(kvarr, sizeof(kv) * (i + INCR));
|
|
|
|
*arr = kvarr;
|
|
|
|
if (!kvarr) {
|
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
memset(kvarr + i, 0, sizeof(kv) * INCR);
|
|
|
|
}
|
2020-03-31 22:20:17 +00:00
|
|
|
kvarr[i].key = (uchar)*ptr;
|
2020-04-17 08:13:25 +00:00
|
|
|
if (*++ptr != ':' || *++ptr == '\0' || *ptr == ';')
|
2020-02-29 04:23:07 +00:00
|
|
|
return FALSE;
|
2020-04-17 08:13:25 +00:00
|
|
|
kvarr[i].off = ptr - *envcpy;
|
2019-01-25 16:33:08 +00:00
|
|
|
++i;
|
2020-06-13 19:01:48 +00:00
|
|
|
|
|
|
|
new = FALSE;
|
2017-06-11 04:15:50 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (*ptr == ';') {
|
|
|
|
*ptr = '\0';
|
2020-06-13 19:01:48 +00:00
|
|
|
new = TRUE;
|
|
|
|
}
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
++ptr;
|
2019-01-25 16:33:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-15 15:13:26 +00:00
|
|
|
*items = i;
|
|
|
|
return (i != 0);
|
2017-06-11 04:15:50 +00:00
|
|
|
}
|
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
/*
|
2019-08-14 14:27:44 +00:00
|
|
|
* Get the value corresponding to a key
|
2017-12-24 09:51:38 +00:00
|
|
|
*
|
|
|
|
* NULL is returned in case of no match, path resolution failure etc.
|
|
|
|
* buf would be modified, so check return value before access
|
|
|
|
*/
|
2020-04-17 08:13:25 +00:00
|
|
|
static char *get_kv_val(kv *kvarr, char *buf, int key, uchar max, uchar id)
|
2017-12-24 09:51:38 +00:00
|
|
|
{
|
2020-04-17 08:13:25 +00:00
|
|
|
char *val;
|
|
|
|
|
2020-02-29 04:23:07 +00:00
|
|
|
if (!kvarr)
|
|
|
|
return NULL;
|
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (int r = 0; kvarr[r].key && r < max; ++r) {
|
2019-08-14 14:27:44 +00:00
|
|
|
if (kvarr[r].key == key) {
|
2020-03-01 11:55:49 +00:00
|
|
|
/* Do not allocate new memory for plugin */
|
2020-04-17 08:13:25 +00:00
|
|
|
if (id == NNN_PLUG)
|
|
|
|
return pluginstr + kvarr[r].off;
|
|
|
|
|
|
|
|
val = bmstr + kvarr[r].off;
|
2019-08-14 14:27:44 +00:00
|
|
|
|
2020-04-17 08:13:25 +00:00
|
|
|
if (val[0] == '~') {
|
2020-04-15 09:30:40 +00:00
|
|
|
ssize_t len = xstrlen(home);
|
2020-04-17 08:13:25 +00:00
|
|
|
ssize_t loclen = xstrlen(val);
|
2019-03-04 19:34:01 +00:00
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(g_buf, home, len + 1);
|
2020-04-17 08:13:25 +00:00
|
|
|
xstrsncpy(g_buf + len, val + 1, loclen);
|
2019-04-23 14:29:37 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 08:13:25 +00:00
|
|
|
return realpath(((val[0] == '~') ? g_buf : val), buf);
|
2017-12-24 09:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF_S("Invalid key");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-12-27 15:52:27 +00:00
|
|
|
static void resetdircolor(int flags)
|
2017-09-02 08:32:29 +00:00
|
|
|
{
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.dircolor && !(flags & DIR_OR_LINK_TO_DIR)) {
|
2019-08-03 18:25:02 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.dircolor = 0;
|
2017-09-02 08:32:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
/*
|
|
|
|
* Replace escape characters in a string with '?'
|
2017-09-01 04:52:44 +00:00
|
|
|
* Adjust string length to maxcols if > 0;
|
2019-03-09 09:26:18 +00:00
|
|
|
* Max supported str length: NAME_MAX;
|
2017-07-02 10:42:30 +00:00
|
|
|
*/
|
2020-05-02 21:22:48 +00:00
|
|
|
#ifndef NOLOCALE
|
2020-02-25 19:03:54 +00:00
|
|
|
static wchar_t *unescape(const char *str, uint maxcols)
|
2017-05-03 13:57:55 +00:00
|
|
|
{
|
2020-02-25 21:41:05 +00:00
|
|
|
wchar_t * const wbuf = (wchar_t *)g_buf;
|
2019-03-09 12:48:32 +00:00
|
|
|
wchar_t *buf = wbuf;
|
2019-05-27 01:53:30 +00:00
|
|
|
size_t lencount = 0;
|
2019-11-05 14:33:12 +00:00
|
|
|
|
2017-05-03 13:57:55 +00:00
|
|
|
/* Convert multi-byte to wide char */
|
2019-05-27 01:53:30 +00:00
|
|
|
size_t len = mbstowcs(wbuf, str, NAME_MAX);
|
2017-09-01 04:52:44 +00:00
|
|
|
|
2020-02-25 19:03:54 +00:00
|
|
|
len = 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) {
|
2020-02-25 19:03:54 +00:00
|
|
|
while (*buf && lencount <= maxcols) {
|
|
|
|
if (*buf <= '\x1f' || *buf == '\x7f')
|
|
|
|
*buf = '\?';
|
|
|
|
|
|
|
|
++buf;
|
|
|
|
++lencount;
|
|
|
|
}
|
|
|
|
|
2019-03-09 12:48:32 +00:00
|
|
|
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 */
|
2020-02-25 19:03:54 +00:00
|
|
|
do
|
2019-02-12 03:22:31 +00:00
|
|
|
len = wcswidth(wbuf, --lencount);
|
2020-02-25 19:03:54 +00:00
|
|
|
while (len > maxcols);
|
2019-02-12 03:22:31 +00:00
|
|
|
|
|
|
|
wbuf[lencount] = L'\0';
|
2020-02-25 19:03:54 +00:00
|
|
|
} else {
|
|
|
|
do /* We do not expect a NULL string */
|
|
|
|
if (*buf <= '\x1f' || *buf == '\x7f')
|
|
|
|
*buf = '\?';
|
|
|
|
while (*++buf);
|
2017-09-01 04:52:44 +00:00
|
|
|
}
|
2017-05-03 13:57:55 +00:00
|
|
|
|
2020-02-25 19:03:54 +00:00
|
|
|
return wbuf;
|
2017-05-03 13:57:55 +00:00
|
|
|
}
|
2020-05-02 21:22:48 +00:00
|
|
|
#else
|
|
|
|
static char *unescape(const char *str, uint maxcols)
|
|
|
|
{
|
|
|
|
ssize_t len = (ssize_t)xstrsncpy(g_buf, str, maxcols);
|
|
|
|
|
|
|
|
--len;
|
|
|
|
while (--len >= 0)
|
|
|
|
if (g_buf[len] <= '\x1f' || g_buf[len] == '\x7f')
|
|
|
|
g_buf[len] = '\?';
|
|
|
|
|
|
|
|
return g_buf;
|
|
|
|
}
|
|
|
|
#endif
|
2017-05-03 13:57:55 +00:00
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static char *coolsize(off_t size)
|
2017-03-29 20:21:52 +00:00
|
|
|
{
|
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;
|
2019-07-04 19:43:55 +00:00
|
|
|
size_t ret;
|
2019-05-27 01:53:30 +00:00
|
|
|
int i = 0;
|
2017-03-29 20:21:52 +00:00
|
|
|
|
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 */
|
2017-05-19 14:38:22 +00:00
|
|
|
size >>= 10;
|
2017-06-17 06:58:21 +00:00
|
|
|
++i;
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2018-03-05 12:45:42 +00:00
|
|
|
if (i == 1) {
|
|
|
|
rem = (rem * 1000) >> 10;
|
|
|
|
|
|
|
|
rem /= 10;
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 10) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
} else if (i == 2) {
|
|
|
|
rem = (rem * 1000) >> 10;
|
|
|
|
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 100) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
} else if (i > 0) {
|
|
|
|
rem = (rem * 10000) >> 10;
|
|
|
|
|
|
|
|
if (rem % 10 >= 5) {
|
|
|
|
rem = (rem / 10) + 1;
|
|
|
|
if (rem == 1000) {
|
|
|
|
++size;
|
|
|
|
rem = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
rem /= 10;
|
|
|
|
}
|
|
|
|
|
2019-07-04 20:38:31 +00:00
|
|
|
if (i > 0 && i < 6 && rem) {
|
2020-04-12 00:35:14 +00:00
|
|
|
ret = xstrsncpy(size_buf, xitoa(size), 12);
|
2019-07-06 13:25:48 +00:00
|
|
|
size_buf[ret - 1] = '.';
|
|
|
|
|
2019-07-04 19:43:55 +00:00
|
|
|
char *frac = xitoa(rem);
|
|
|
|
size_t toprint = i > 3 ? 3 : i;
|
2020-04-15 09:30:40 +00:00
|
|
|
size_t len = xstrlen(frac);
|
2019-07-04 19:43:55 +00:00
|
|
|
|
|
|
|
if (len < toprint) {
|
|
|
|
size_buf[ret] = size_buf[ret + 1] = size_buf[ret + 2] = '0';
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(size_buf + ret + (toprint - len), frac, len + 1);
|
2019-07-04 19:43:55 +00:00
|
|
|
} else
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(size_buf + ret, frac, toprint + 1);
|
2019-07-04 19:43:55 +00:00
|
|
|
|
|
|
|
ret += toprint;
|
|
|
|
} else {
|
2020-04-12 00:35:14 +00:00
|
|
|
ret = xstrsncpy(size_buf, size ? xitoa(size) : "0", 12);
|
2019-07-04 19:43:55 +00:00
|
|
|
--ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_buf[ret] = U[i];
|
|
|
|
size_buf[ret + 1] = '\0';
|
2018-03-05 12:45:42 +00:00
|
|
|
|
2017-03-29 20:21:52 +00:00
|
|
|
return size_buf;
|
|
|
|
}
|
|
|
|
|
2020-08-05 07:29:54 +00:00
|
|
|
/* Convert a mode field into "ls -l" type perms field. */
|
|
|
|
static char *get_lsperms(mode_t mode)
|
2019-09-14 22:43:09 +00:00
|
|
|
{
|
2020-08-05 07:29:54 +00:00
|
|
|
static const char * const rwx[] = {"---", "--x", "-w-", "-wx", "r--", "r-x", "rw-", "rwx"};
|
|
|
|
static char bits[11] = {'\0'};
|
|
|
|
|
2019-09-14 22:43:09 +00:00
|
|
|
switch (mode & S_IFMT) {
|
|
|
|
case S_IFREG:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = '-';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFDIR:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 'd';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFLNK:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 'l';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFSOCK:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 's';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFIFO:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 'p';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFBLK:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 'b';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
case S_IFCHR:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = 'c';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
default:
|
2020-08-05 07:29:54 +00:00
|
|
|
bits[0] = '?';
|
|
|
|
break;
|
2019-09-14 22:43:09 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(&bits[1], rwx[(mode >> 6) & 7], 4);
|
|
|
|
xstrsncpy(&bits[4], rwx[(mode >> 3) & 7], 4);
|
|
|
|
xstrsncpy(&bits[7], rwx[(mode & 7)], 4);
|
2019-09-14 22:43:09 +00:00
|
|
|
|
|
|
|
if (mode & S_ISUID)
|
2019-10-24 03:14:36 +00:00
|
|
|
bits[3] = (mode & 0100) ? 's' : 'S'; /* user executable */
|
2019-09-14 22:43:09 +00:00
|
|
|
if (mode & S_ISGID)
|
2019-10-24 03:14:36 +00:00
|
|
|
bits[6] = (mode & 0010) ? 's' : 'l'; /* group executable */
|
2019-09-14 22:43:09 +00:00
|
|
|
if (mode & S_ISVTX)
|
2019-10-24 03:14:36 +00:00
|
|
|
bits[9] = (mode & 0001) ? 't' : 'T'; /* others executable */
|
2019-09-14 22:43:09 +00:00
|
|
|
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
2020-08-16 08:19:09 +00:00
|
|
|
static const struct icon_pair * get_icon(const struct entry *ent){
|
2020-08-17 15:27:15 +00:00
|
|
|
ushort i = 0;
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-08-17 15:27:15 +00:00
|
|
|
for (; i < sizeof(icons_name)/sizeof(struct icon_pair); ++i)
|
2020-08-16 01:00:58 +00:00
|
|
|
if (strcasecmp(ent->name, icons_name[i].match) == 0)
|
2020-08-16 08:19:09 +00:00
|
|
|
return &icons_name[i];
|
2020-08-16 01:00:58 +00:00
|
|
|
|
|
|
|
if (ent->flags & DIR_OR_LINK_TO_DIR)
|
2020-08-16 08:19:09 +00:00
|
|
|
return &dir_icon;
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-08-17 15:27:15 +00:00
|
|
|
char *tmp = xextension(ent->name, ent->nlen);
|
|
|
|
|
2020-08-16 08:19:09 +00:00
|
|
|
if (!tmp) {
|
|
|
|
if (ent->mode & 0100)
|
|
|
|
return &exec_icon;
|
|
|
|
|
|
|
|
return &file_icon;
|
|
|
|
}
|
2020-08-16 01:00:58 +00:00
|
|
|
|
|
|
|
/* Skip the . */
|
|
|
|
++tmp;
|
|
|
|
|
|
|
|
if (*tmp >= '0' && *tmp <= '9')
|
2020-08-17 15:27:15 +00:00
|
|
|
i = *tmp - '0'; /* NUMBER 0-9 */
|
2020-08-16 01:00:58 +00:00
|
|
|
else if (TOUPPER(*tmp) >= 'A' && TOUPPER(*tmp) <= 'Z')
|
2020-08-16 11:21:55 +00:00
|
|
|
i = TOUPPER(*tmp) - 'A' + 10; /* LETTER A-Z */
|
2020-08-16 01:00:58 +00:00
|
|
|
else
|
2020-08-16 11:21:55 +00:00
|
|
|
i = 36; /* OTHER */
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-08-17 15:27:15 +00:00
|
|
|
for (ushort j = icon_positions[i]; j < sizeof(icons_ext)/sizeof(struct icon_pair) &&
|
|
|
|
icons_ext[j].match[0] == icons_ext[icon_positions[i]].match[0]; ++j)
|
2020-08-16 01:00:58 +00:00
|
|
|
if (strcasecmp(tmp, icons_ext[j].match) == 0)
|
2020-08-16 08:19:09 +00:00
|
|
|
return &icons_ext[j];
|
|
|
|
|
|
|
|
/* If there's no match and the file is executable, icon that */
|
|
|
|
if (ent->mode & 0100)
|
|
|
|
return &exec_icon;
|
|
|
|
|
|
|
|
return &file_icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_icon(const struct entry *ent, const int attrs)
|
|
|
|
{
|
|
|
|
const struct icon_pair *picon = get_icon(ent);
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-08-16 08:19:09 +00:00
|
|
|
addstr(ICON_PADDING_LEFT);
|
|
|
|
if (picon->color)
|
|
|
|
attron(COLOR_PAIR(C_UND + 1 + picon->color));
|
|
|
|
else if (attrs)
|
|
|
|
attron(attrs);
|
|
|
|
addstr(picon->icon);
|
|
|
|
if (picon->color)
|
|
|
|
attroff(COLOR_PAIR(C_UND + 1 + picon->color));
|
|
|
|
else if (attrs)
|
|
|
|
attroff(attrs);
|
|
|
|
addstr(ICON_PADDING_RIGHT);
|
2020-08-16 01:00:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-27 17:33:06 +00:00
|
|
|
static void print_time(const time_t *timep)
|
|
|
|
{
|
|
|
|
struct tm *t = localtime(timep);
|
|
|
|
|
|
|
|
printw("%d-%02d-%02d %02d:%02d",
|
|
|
|
t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min);
|
|
|
|
}
|
|
|
|
|
2020-01-01 21:32:53 +00:00
|
|
|
static void printent(const struct entry *ent, uint namecols, bool sel)
|
2018-01-04 00:53:20 +00:00
|
|
|
{
|
2020-08-04 13:52:29 +00:00
|
|
|
uchar pair = 0;
|
2020-08-05 07:29:54 +00:00
|
|
|
char ind = '\0';
|
2020-08-16 08:19:09 +00:00
|
|
|
int attrs = 0;
|
2020-08-04 13:52:29 +00:00
|
|
|
|
2020-08-05 07:29:54 +00:00
|
|
|
switch (ent->mode & S_IFMT) {
|
|
|
|
case S_IFREG:
|
|
|
|
if (ent->mode & 0100) {
|
|
|
|
pair = C_EXE;
|
|
|
|
ind = '*';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ent->size)
|
2020-08-04 15:06:19 +00:00
|
|
|
pair = C_UND;
|
2020-08-09 08:34:27 +00:00
|
|
|
else if (ent->flags & HARD_LINK)
|
|
|
|
pair = C_HRD;
|
2020-08-05 07:29:54 +00:00
|
|
|
else if (!pair)
|
|
|
|
pair = C_FIL;
|
|
|
|
break;
|
|
|
|
case S_IFDIR:
|
|
|
|
pair = C_DIR;
|
2020-08-05 14:35:27 +00:00
|
|
|
if (!g_state.oldcolor)
|
2020-08-05 07:42:11 +00:00
|
|
|
attrs |= A_BOLD;
|
2020-08-05 07:29:54 +00:00
|
|
|
ind = '/';
|
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
|
|
|
if (ent->flags & DIR_OR_LINK_TO_DIR) {
|
2020-08-05 14:35:27 +00:00
|
|
|
if (!g_state.oldcolor)
|
2020-08-05 07:42:11 +00:00
|
|
|
attrs |= A_BOLD;
|
2020-08-05 07:29:54 +00:00
|
|
|
ind = '/';
|
|
|
|
} else
|
|
|
|
ind = '@';
|
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (g_state.oldcolor)
|
2020-08-05 07:29:54 +00:00
|
|
|
attrs |= A_DIM;
|
|
|
|
else
|
|
|
|
pair = (ent->flags & SYM_ORPHAN) ? C_ORP : C_LNK;
|
|
|
|
break;
|
|
|
|
case S_IFSOCK:
|
|
|
|
pair = C_SOC;
|
|
|
|
ind = '=';
|
|
|
|
break;
|
|
|
|
case S_IFIFO:
|
|
|
|
pair = C_PIP;
|
|
|
|
ind = '|';
|
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
|
|
|
pair = C_BLK;
|
|
|
|
break;
|
|
|
|
case S_IFCHR:
|
|
|
|
pair = C_CHR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pair = C_UND;
|
|
|
|
ind = '?';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (!g_state.oldcolor) {
|
2020-08-05 07:29:54 +00:00
|
|
|
if (ent->flags & FILE_MISSING)
|
2020-08-04 15:06:19 +00:00
|
|
|
pair = C_MIS;
|
2020-08-04 13:52:29 +00:00
|
|
|
|
2020-08-04 15:06:19 +00:00
|
|
|
if (pair && fcolors[pair])
|
|
|
|
attrs |= COLOR_PAIR(pair);
|
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
|
2019-09-15 12:44:56 +00:00
|
|
|
if (!ind)
|
|
|
|
++namecols;
|
|
|
|
|
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
|
|
|
|
2020-02-25 19:03:54 +00:00
|
|
|
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
|
|
|
|
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
2020-08-16 08:19:09 +00:00
|
|
|
if (!g_state.oldcolor)
|
|
|
|
print_icon(ent, attrs);
|
2020-08-16 01:00:58 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-16 08:19:09 +00:00
|
|
|
if (sel)
|
|
|
|
attrs |= A_REVERSE;
|
|
|
|
if (attrs)
|
|
|
|
attron(attrs);
|
|
|
|
|
2020-05-02 21:22:48 +00:00
|
|
|
#ifndef NOLOCALE
|
2020-02-25 19:03:54 +00:00
|
|
|
addwstr(unescape(ent->name, namecols));
|
2020-05-02 21:22:48 +00:00
|
|
|
#else
|
|
|
|
addstr(unescape(ent->name, MIN(namecols, ent->nlen) + 1));
|
|
|
|
#endif
|
2020-08-04 13:52:29 +00:00
|
|
|
|
2020-02-26 17:54:26 +00:00
|
|
|
if (attrs)
|
|
|
|
attroff(attrs);
|
|
|
|
|
2019-08-21 15:00:04 +00:00
|
|
|
if (ind)
|
|
|
|
addch(ind);
|
|
|
|
addch('\n');
|
2017-09-02 08:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-01 21:32:53 +00:00
|
|
|
static void printent_long(const struct entry *ent, uint namecols, bool sel)
|
2017-03-29 20:21:52 +00:00
|
|
|
{
|
2020-02-26 17:54:26 +00:00
|
|
|
bool ln = FALSE;
|
2020-02-27 17:33:06 +00:00
|
|
|
char ind1 = '\0', ind2 = '\0';
|
2020-08-04 15:32:19 +00:00
|
|
|
uchar pair = 0;
|
2020-08-05 14:35:27 +00:00
|
|
|
int attrs = sel ? A_REVERSE | (g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS))
|
|
|
|
: (g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS));
|
2020-02-27 02:00:14 +00:00
|
|
|
uint len;
|
2020-02-26 15:19:20 +00:00
|
|
|
char *size;
|
2017-04-21 21:40:02 +00:00
|
|
|
|
2017-09-02 08:32:29 +00:00
|
|
|
/* Directories are always shown on top */
|
2019-02-01 05:33:11 +00:00
|
|
|
resetdircolor(ent->flags);
|
2017-09-02 08:32:29 +00:00
|
|
|
|
2020-02-25 19:03:54 +00:00
|
|
|
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
|
|
|
|
|
2020-02-26 17:54:26 +00:00
|
|
|
if (attrs)
|
|
|
|
attron(attrs);
|
2017-03-30 05:14:26 +00:00
|
|
|
|
2020-02-27 17:33:06 +00:00
|
|
|
/* Timestamp */
|
|
|
|
print_time(&ent->t);
|
|
|
|
|
|
|
|
addstr(" ");
|
|
|
|
|
|
|
|
/* Permissions */
|
|
|
|
addch('0' + ((ent->mode >> 6) & 7));
|
|
|
|
addch('0' + ((ent->mode >> 3) & 7));
|
|
|
|
addch('0' + (ent->mode & 7));
|
2020-02-25 21:41:05 +00:00
|
|
|
|
2019-01-21 14:07:00 +00:00
|
|
|
switch (ent->mode & S_IFMT) {
|
2020-04-05 00:23:46 +00:00
|
|
|
case S_IFDIR:
|
2020-08-04 15:32:19 +00:00
|
|
|
pair = C_DIR;
|
2020-08-05 14:35:27 +00:00
|
|
|
if (!g_state.oldcolor)
|
2020-08-05 07:42:11 +00:00
|
|
|
attrs |= A_BOLD;
|
2020-04-05 00:23:46 +00:00
|
|
|
ind2 = '/'; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFREG:
|
2020-04-05 00:23:46 +00:00
|
|
|
if (!ind2) {
|
2020-08-04 15:32:19 +00:00
|
|
|
if (ent->mode & 0100) {
|
|
|
|
pair = C_EXE;
|
|
|
|
ind2 = '*';
|
|
|
|
}
|
2020-08-05 07:29:54 +00:00
|
|
|
|
2020-08-04 15:32:19 +00:00
|
|
|
if (ent->flags & HARD_LINK) {
|
|
|
|
pair = C_HRD;
|
2020-04-05 00:23:46 +00:00
|
|
|
ln = TRUE;
|
2020-08-04 15:32:19 +00:00
|
|
|
}
|
2020-02-26 17:54:26 +00:00
|
|
|
|
2020-08-04 18:41:56 +00:00
|
|
|
if (!ent->size)
|
|
|
|
pair = C_UND;
|
|
|
|
else if (!pair)
|
2020-08-04 15:32:19 +00:00
|
|
|
pair = C_FIL;
|
2020-04-05 00:23:46 +00:00
|
|
|
|
|
|
|
if (!ind2) /* Add a column if end indicator is not needed */
|
|
|
|
++namecols;
|
|
|
|
}
|
2020-02-22 09:09:22 +00:00
|
|
|
|
2020-02-26 15:19:20 +00:00
|
|
|
size = coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size);
|
2020-04-15 09:30:40 +00:00
|
|
|
len = 10 - (uint)xstrlen(size);
|
2020-02-26 15:19:20 +00:00
|
|
|
while (--len)
|
|
|
|
addch(' ');
|
|
|
|
addstr(size);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
2020-02-26 17:54:26 +00:00
|
|
|
ln = TRUE;
|
2020-08-04 15:32:19 +00:00
|
|
|
pair = (ent->flags & SYM_ORPHAN) ? C_ORP : C_LNK;
|
2020-04-13 15:12:19 +00:00
|
|
|
ind1 = '@';
|
2020-08-04 18:41:56 +00:00
|
|
|
ind2 = (ent->flags & DIR_OR_LINK_TO_DIR) ? '/' : '@';
|
2020-08-05 14:35:27 +00:00
|
|
|
if (ind2 == '/' && !g_state.oldcolor)
|
2020-08-04 18:41:56 +00:00
|
|
|
attrs |= A_BOLD; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFSOCK:
|
2020-08-04 15:32:19 +00:00
|
|
|
if (!ind1) {
|
|
|
|
pair = C_SOC;
|
|
|
|
ind1 = ind2 = '=';
|
|
|
|
} // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFIFO:
|
2020-08-04 15:32:19 +00:00
|
|
|
if (!ind1) {
|
|
|
|
pair = C_PIP;
|
|
|
|
ind1 = ind2 = '|';
|
|
|
|
} // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFBLK:
|
2020-08-04 15:32:19 +00:00
|
|
|
if (!ind1) {
|
|
|
|
pair = C_BLK;
|
|
|
|
ind1 = 'b';
|
|
|
|
} // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFCHR:
|
2020-08-04 15:32:19 +00:00
|
|
|
if (!ind1) {
|
|
|
|
pair = C_CHR;
|
|
|
|
ind1 = 'c';
|
|
|
|
} // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
default:
|
2020-08-04 15:32:19 +00:00
|
|
|
if (!ind1) {
|
|
|
|
pair = C_UND;
|
2020-02-22 09:09:22 +00:00
|
|
|
ind1 = ind2 = '?';
|
2020-08-04 15:32:19 +00:00
|
|
|
}
|
2020-03-04 00:48:08 +00:00
|
|
|
addstr(" ");
|
2020-02-26 17:54:26 +00:00
|
|
|
addch(ind1);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
2017-03-30 05:14:26 +00:00
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (g_state.oldcolor) {
|
2020-08-16 08:19:09 +00:00
|
|
|
addstr(" ");
|
2020-08-05 11:05:45 +00:00
|
|
|
if (!ln) {
|
|
|
|
attroff(A_DIM);
|
|
|
|
attrs ^= A_DIM;
|
|
|
|
}
|
|
|
|
} else {
|
2020-08-16 08:19:09 +00:00
|
|
|
#ifndef ICONS
|
|
|
|
addstr(" ");
|
|
|
|
#endif
|
2020-08-05 11:05:45 +00:00
|
|
|
if (ent->flags & FILE_MISSING)
|
|
|
|
pair = C_MIS;
|
|
|
|
else {
|
|
|
|
attroff(COLOR_PAIR(C_MIS));
|
|
|
|
attrs ^= (COLOR_PAIR(C_MIS));
|
|
|
|
}
|
2020-08-05 07:29:54 +00:00
|
|
|
|
2020-08-16 08:19:09 +00:00
|
|
|
if (pair && fcolors[pair])
|
2020-08-05 11:05:45 +00:00
|
|
|
attrs |= COLOR_PAIR(pair);
|
2020-08-16 01:00:58 +00:00
|
|
|
#ifdef ICONS
|
2020-08-16 08:19:09 +00:00
|
|
|
attroff(attrs);
|
|
|
|
addstr(" ");
|
|
|
|
if (sel)
|
|
|
|
attrs &= ~A_REVERSE;
|
|
|
|
print_icon(ent, attrs);
|
|
|
|
if (sel)
|
|
|
|
attrs |= A_REVERSE;
|
2020-08-16 01:00:58 +00:00
|
|
|
#endif
|
2020-08-16 08:19:09 +00:00
|
|
|
attron(attrs);
|
|
|
|
}
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-05-02 21:22:48 +00:00
|
|
|
#ifndef NOLOCALE
|
2020-02-25 19:03:54 +00:00
|
|
|
addwstr(unescape(ent->name, namecols));
|
2020-05-02 21:22:48 +00:00
|
|
|
#else
|
|
|
|
addstr(unescape(ent->name, MIN(namecols, ent->nlen) + 1));
|
|
|
|
#endif
|
2020-08-16 01:00:58 +00:00
|
|
|
|
2020-02-26 17:54:26 +00:00
|
|
|
if (attrs)
|
|
|
|
attroff(attrs);
|
2020-02-25 19:03:54 +00:00
|
|
|
if (ind2)
|
|
|
|
addch(ind2);
|
|
|
|
addch('\n');
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2020-01-01 21:32:53 +00:00
|
|
|
static void (*printptr)(const struct entry *ent, uint namecols, bool sel) = &printent;
|
2017-06-06 15:31:28 +00:00
|
|
|
|
2019-04-09 14:55:17 +00:00
|
|
|
static void savecurctx(settings *curcfg, char *path, char *curname, int r /* next context num */)
|
|
|
|
{
|
2020-06-22 03:47:59 +00:00
|
|
|
settings tmpcfg = *curcfg;
|
2020-04-14 04:24:42 +00:00
|
|
|
context *ctxr = &g_ctx[r];
|
2019-04-09 14:55:17 +00:00
|
|
|
|
|
|
|
/* Save current context */
|
2020-05-14 07:16:37 +00:00
|
|
|
if (ndents)
|
2020-06-22 03:47:59 +00:00
|
|
|
xstrsncpy(g_ctx[tmpcfg.curctx].c_name, curname, NAME_MAX + 1);
|
2020-05-14 07:16:37 +00:00
|
|
|
else
|
2020-06-22 03:47:59 +00:00
|
|
|
g_ctx[tmpcfg.curctx].c_name[0] = '\0';
|
2020-05-14 07:16:37 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
g_ctx[tmpcfg.curctx].c_cfg = tmpcfg;
|
2019-04-09 14:55:17 +00:00
|
|
|
|
2020-04-14 04:24:42 +00:00
|
|
|
if (ctxr->c_cfg.ctxactive) { /* Switch to saved context */
|
2019-04-09 14:55:17 +00:00
|
|
|
/* Switch light/detail mode */
|
2020-06-22 03:47:59 +00:00
|
|
|
if (tmpcfg.showdetail != ctxr->c_cfg.showdetail)
|
2019-04-09 14:55:17 +00:00
|
|
|
/* set the reverse */
|
2020-06-22 03:47:59 +00:00
|
|
|
printptr = tmpcfg.showdetail ? &printent : &printent_long;
|
2019-04-09 14:55:17 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
tmpcfg = ctxr->c_cfg;
|
2019-04-09 14:55:17 +00:00
|
|
|
} else { /* Setup a new context from current context */
|
2020-04-14 04:24:42 +00:00
|
|
|
ctxr->c_cfg.ctxactive = 1;
|
|
|
|
xstrsncpy(ctxr->c_path, path, PATH_MAX);
|
|
|
|
ctxr->c_last[0] = ctxr->c_name[0] = ctxr->c_fltr[0] = ctxr->c_fltr[1] = '\0';
|
2020-06-22 03:47:59 +00:00
|
|
|
ctxr->c_cfg = tmpcfg;
|
2019-04-09 14:55:17 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
tmpcfg.curctx = r;
|
|
|
|
*curcfg = tmpcfg;
|
2019-04-09 14:55:17 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 10:00:53 +00:00
|
|
|
static void save_session(bool last_session, int *presel)
|
2019-10-18 22:11:39 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
session_header_t header;
|
2019-10-20 13:49:25 +00:00
|
|
|
FILE *fsession;
|
2019-10-20 00:05:41 +00:00
|
|
|
char *sname;
|
|
|
|
bool status = FALSE;
|
2020-06-08 04:14:53 +00:00
|
|
|
char ssnpath[PATH_MAX];
|
|
|
|
char spath[PATH_MAX];
|
2019-10-18 22:11:39 +00:00
|
|
|
|
2020-02-13 14:24:01 +00:00
|
|
|
memset(&header, 0, sizeof(session_header_t));
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
header.ver = SESSIONS_VERSION;
|
|
|
|
|
|
|
|
for (i = 0; i < CTX_MAX; ++i) {
|
2020-02-13 14:24:01 +00:00
|
|
|
if (g_ctx[i].c_cfg.ctxactive) {
|
2019-12-27 05:34:05 +00:00
|
|
|
if (cfg.curctx == i && ndents)
|
|
|
|
/* Update current file name, arrows don't update it */
|
2020-06-22 03:47:59 +00:00
|
|
|
xstrsncpy(g_ctx[i].c_name, pdents[cur].name, NAME_MAX + 1);
|
2019-10-18 22:11:39 +00:00
|
|
|
header.pathln[i] = strnlen(g_ctx[i].c_path, PATH_MAX) + 1;
|
|
|
|
header.lastln[i] = strnlen(g_ctx[i].c_last, PATH_MAX) + 1;
|
2019-12-27 05:34:05 +00:00
|
|
|
header.nameln[i] = strnlen(g_ctx[i].c_name, NAME_MAX) + 1;
|
2019-10-18 22:11:39 +00:00
|
|
|
header.fltrln[i] = strnlen(g_ctx[i].c_fltr, REGEX_MAX) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
sname = !last_session ? xreadline(NULL, messages[MSG_SSN_NAME]) : "@";
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!sname[0])
|
2019-10-18 22:11:39 +00:00
|
|
|
return;
|
2020-06-08 04:14:53 +00:00
|
|
|
|
|
|
|
mkpath(cfgpath, toks[TOK_SSN], ssnpath);
|
|
|
|
mkpath(ssnpath, sname, spath);
|
2019-10-18 22:11:39 +00:00
|
|
|
|
2019-10-20 13:49:25 +00:00
|
|
|
fsession = fopen(spath, "wb");
|
2019-10-18 22:11:39 +00:00
|
|
|
if (!fsession) {
|
2020-03-28 06:55:35 +00:00
|
|
|
printwait(messages[MSG_SEL_MISSING], presel);
|
2019-10-18 22:11:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((fwrite(&header, sizeof(header), 1, fsession) != 1)
|
|
|
|
|| (fwrite(&cfg, sizeof(cfg), 1, fsession) != 1))
|
|
|
|
goto END;
|
|
|
|
|
|
|
|
for (i = 0; i < CTX_MAX; ++i)
|
|
|
|
if ((fwrite(&g_ctx[i].c_cfg, sizeof(settings), 1, fsession) != 1)
|
|
|
|
|| (fwrite(&g_ctx[i].color, sizeof(uint), 1, fsession) != 1)
|
2019-12-09 19:26:29 +00:00
|
|
|
|| (header.nameln[i] > 0
|
|
|
|
&& fwrite(g_ctx[i].c_name, header.nameln[i], 1, fsession) != 1)
|
|
|
|
|| (header.lastln[i] > 0
|
|
|
|
&& fwrite(g_ctx[i].c_last, header.lastln[i], 1, fsession) != 1)
|
|
|
|
|| (header.fltrln[i] > 0
|
|
|
|
&& fwrite(g_ctx[i].c_fltr, header.fltrln[i], 1, fsession) != 1)
|
|
|
|
|| (header.pathln[i] > 0
|
|
|
|
&& fwrite(g_ctx[i].c_path, header.pathln[i], 1, fsession) != 1))
|
2019-10-18 22:11:39 +00:00
|
|
|
goto END;
|
|
|
|
|
2019-10-20 00:05:41 +00:00
|
|
|
status = TRUE;
|
2019-10-18 22:11:39 +00:00
|
|
|
|
|
|
|
END:
|
|
|
|
fclose(fsession);
|
|
|
|
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!status)
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], presel);
|
2019-10-18 22:11:39 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 10:00:53 +00:00
|
|
|
static bool load_session(const char *sname, char **path, char **lastdir, char **lastname, bool restore)
|
2019-10-24 03:14:36 +00:00
|
|
|
{
|
2019-10-18 22:11:39 +00:00
|
|
|
int i = 0;
|
|
|
|
session_header_t header;
|
2019-10-20 13:49:25 +00:00
|
|
|
FILE *fsession;
|
2019-10-20 00:05:41 +00:00
|
|
|
bool has_loaded_dynamically = !(sname || restore);
|
|
|
|
bool status = FALSE;
|
2020-06-08 04:14:53 +00:00
|
|
|
char ssnpath[PATH_MAX];
|
|
|
|
char spath[PATH_MAX];
|
|
|
|
|
|
|
|
mkpath(cfgpath, toks[TOK_SSN], ssnpath);
|
2019-10-18 22:11:39 +00:00
|
|
|
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!restore) {
|
2019-11-22 15:00:13 +00:00
|
|
|
sname = sname ? sname : xreadline(NULL, messages[MSG_SSN_NAME]);
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!sname[0])
|
|
|
|
return FALSE;
|
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(ssnpath, sname, spath);
|
2019-12-20 10:00:53 +00:00
|
|
|
} else
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(ssnpath, "@", spath);
|
2019-12-19 03:07:17 +00:00
|
|
|
|
2019-12-20 10:00:53 +00:00
|
|
|
if (has_loaded_dynamically)
|
|
|
|
save_session(TRUE, NULL);
|
2019-10-18 22:11:39 +00:00
|
|
|
|
2019-10-20 13:49:25 +00:00
|
|
|
fsession = fopen(spath, "rb");
|
2019-10-18 22:11:39 +00:00
|
|
|
if (!fsession) {
|
2020-03-28 06:55:35 +00:00
|
|
|
printmsg(messages[MSG_SEL_MISSING]);
|
2019-11-25 02:20:22 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
2019-10-20 00:05:41 +00:00
|
|
|
return FALSE;
|
2019-10-18 22:11:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((fread(&header, sizeof(header), 1, fsession) != 1)
|
|
|
|
|| (header.ver != SESSIONS_VERSION)
|
|
|
|
|| (fread(&cfg, sizeof(cfg), 1, fsession) != 1))
|
|
|
|
goto END;
|
|
|
|
|
|
|
|
g_ctx[cfg.curctx].c_name[0] = g_ctx[cfg.curctx].c_last[0]
|
|
|
|
= g_ctx[cfg.curctx].c_fltr[0] = g_ctx[cfg.curctx].c_fltr[1] = '\0';
|
|
|
|
|
|
|
|
for (; i < CTX_MAX; ++i)
|
|
|
|
if ((fread(&g_ctx[i].c_cfg, sizeof(settings), 1, fsession) != 1)
|
|
|
|
|| (fread(&g_ctx[i].color, sizeof(uint), 1, fsession) != 1)
|
2019-12-09 19:26:29 +00:00
|
|
|
|| (header.nameln[i] > 0
|
|
|
|
&& fread(g_ctx[i].c_name, header.nameln[i], 1, fsession) != 1)
|
|
|
|
|| (header.lastln[i] > 0
|
|
|
|
&& fread(g_ctx[i].c_last, header.lastln[i], 1, fsession) != 1)
|
|
|
|
|| (header.fltrln[i] > 0
|
|
|
|
&& fread(g_ctx[i].c_fltr, header.fltrln[i], 1, fsession) != 1)
|
|
|
|
|| (header.pathln[i] > 0
|
|
|
|
&& fread(g_ctx[i].c_path, header.pathln[i], 1, fsession) != 1))
|
2019-10-18 22:11:39 +00:00
|
|
|
goto END;
|
|
|
|
|
|
|
|
*path = g_ctx[cfg.curctx].c_path;
|
|
|
|
*lastdir = g_ctx[cfg.curctx].c_last;
|
|
|
|
*lastname = g_ctx[cfg.curctx].c_name;
|
2019-12-09 18:22:05 +00:00
|
|
|
printptr = cfg.showdetail ? &printent_long : &printent;
|
2020-06-09 16:56:35 +00:00
|
|
|
set_sort_flags('\0'); /* Set correct sort options */
|
2019-10-20 00:05:41 +00:00
|
|
|
status = TRUE;
|
2019-10-18 22:11:39 +00:00
|
|
|
|
|
|
|
END:
|
|
|
|
fclose(fsession);
|
|
|
|
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!status) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_FAILED]);
|
2019-11-25 02:20:22 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
2019-12-20 10:19:13 +00:00
|
|
|
} else if (restore)
|
|
|
|
unlink(spath);
|
2019-10-18 22:11:39 +00:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:24:39 +00:00
|
|
|
static uchar get_free_ctx(void)
|
|
|
|
{
|
|
|
|
uchar r = cfg.curctx;
|
|
|
|
|
|
|
|
do
|
|
|
|
r = (r + 1) & ~CTX_MAX;
|
|
|
|
while (g_ctx[r].c_cfg.ctxactive && (r != cfg.curctx));
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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-04-03 14:58:55 +00:00
|
|
|
{
|
2017-05-15 12:52:00 +00:00
|
|
|
pid_t pid;
|
2017-05-15 04:24:30 +00:00
|
|
|
int pipefd[2];
|
2017-06-15 14:04:56 +00:00
|
|
|
FILE *pf;
|
2017-07-02 15:02:38 +00:00
|
|
|
int tmp, flags;
|
2017-05-15 04:24:30 +00:00
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
if (pipe(pipefd) == -1)
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-05-15 04:24:30 +00:00
|
|
|
|
2017-07-02 15:02:38 +00:00
|
|
|
for (tmp = 0; tmp < 2; ++tmp) {
|
|
|
|
/* Get previous flags */
|
|
|
|
flags = fcntl(pipefd[tmp], F_GETFL, 0);
|
|
|
|
|
|
|
|
/* Set bit for non-blocking flag */
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
|
|
|
|
/* Change flags on fd */
|
|
|
|
fcntl(pipefd[tmp], F_SETFL, flags);
|
|
|
|
}
|
|
|
|
|
2017-05-15 04:24:30 +00:00
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
|
|
|
/* In child */
|
|
|
|
close(pipefd[0]);
|
|
|
|
dup2(pipefd[1], STDOUT_FILENO);
|
|
|
|
dup2(pipefd[1], STDERR_FILENO);
|
2017-07-02 15:02:38 +00:00
|
|
|
close(pipefd[1]);
|
2017-05-15 04:24:30 +00:00
|
|
|
execlp(file, file, arg1, arg2, NULL);
|
2020-05-10 04:27:20 +00:00
|
|
|
_exit(EXIT_SUCCESS);
|
2017-05-15 04:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2018-01-06 21:57:09 +00:00
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) {
|
|
|
|
/* Show in pager in child */
|
|
|
|
dup2(pipefd[0], STDIN_FILENO);
|
2017-05-15 04:24:30 +00:00
|
|
|
close(pipefd[0]);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(pager, NULL, NULL, F_CLI);
|
2020-05-10 04:27:20 +00:00
|
|
|
_exit(EXIT_SUCCESS);
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
/* In parent */
|
2017-07-02 15:02:38 +00:00
|
|
|
waitpid(pid, &tmp, 0);
|
|
|
|
close(pipefd[0]);
|
2017-05-15 04:24:30 +00:00
|
|
|
|
2017-05-15 12:52:00 +00:00
|
|
|
return NULL;
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
static void pipetof(char *cmd, FILE *fout)
|
2019-10-12 17:32:44 +00:00
|
|
|
{
|
2019-10-16 01:37:45 +00:00
|
|
|
FILE *fin = popen(cmd, "r");
|
2019-10-12 17:32:44 +00:00
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
if (fin) {
|
|
|
|
while (fgets(g_buf, CMD_LEN_MAX - 1, fin))
|
|
|
|
fprintf(fout, "%s", g_buf);
|
|
|
|
pclose(fin);
|
2019-10-12 17:32:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-02 23:35:14 +00:00
|
|
|
/*
|
|
|
|
* Follows the stat(1) output closely
|
|
|
|
*/
|
2019-10-13 13:40:06 +00:00
|
|
|
static bool show_stats(const char *fpath, const struct stat *sb)
|
2017-04-02 23:35:14 +00:00
|
|
|
{
|
2019-03-01 09:51:58 +00:00
|
|
|
int fd;
|
2019-10-16 01:37:45 +00:00
|
|
|
FILE *fp;
|
2017-05-14 21:37:22 +00:00
|
|
|
char *p, *begin = g_buf;
|
2019-04-01 14:44:49 +00:00
|
|
|
size_t r;
|
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;
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
r = xstrsncpy(g_buf, "stat \"", PATH_MAX);
|
|
|
|
r += xstrsncpy(g_buf + r - 1, fpath, PATH_MAX);
|
2019-07-04 19:57:46 +00:00
|
|
|
g_buf[r - 2] = '\"';
|
2019-04-01 14:44:49 +00:00
|
|
|
g_buf[r - 1] = '\0';
|
|
|
|
DPRINTF_S(g_buf);
|
2018-08-17 00:25:00 +00:00
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fp = fdopen(fd, "w");
|
|
|
|
if (!fp) {
|
2019-10-16 01:37:45 +00:00
|
|
|
close(fd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
pipetof(g_buf, fp);
|
2017-04-02 23:35:14 +00:00
|
|
|
|
2017-04-03 14:58:55 +00:00
|
|
|
if (S_ISREG(sb->st_mode)) {
|
|
|
|
/* Show file(1) output */
|
2018-12-04 12:51:01 +00:00
|
|
|
p = get_output(g_buf, CMD_LEN_MAX, "file", "-b", fpath, FALSE);
|
2017-04-03 14:58:55 +00:00
|
|
|
if (p) {
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\n\n ");
|
2017-04-03 14:58:55 +00:00
|
|
|
while (*p) {
|
|
|
|
if (*p == ',') {
|
|
|
|
*p = '\0';
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, " %s\n", begin);
|
2017-04-03 14:58:55 +00:00
|
|
|
begin = p + 1;
|
|
|
|
}
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
++p;
|
2017-04-03 14:58:55 +00:00
|
|
|
}
|
2020-01-08 22:30:28 +00:00
|
|
|
fprintf(fp, " %s\n ", begin);
|
|
|
|
|
2020-06-01 01:17:03 +00:00
|
|
|
#ifdef FILE_MIME_OPTS
|
2020-01-08 22:30:28 +00:00
|
|
|
/* Show the file mime type */
|
2020-01-08 23:08:08 +00:00
|
|
|
get_output(g_buf, CMD_LEN_MAX, "file", FILE_MIME_OPTS, fpath, FALSE);
|
2020-01-08 22:30:28 +00:00
|
|
|
fprintf(fp, "%s", g_buf);
|
2020-06-01 01:17:03 +00:00
|
|
|
#endif
|
2017-04-03 18:03:31 +00:00
|
|
|
}
|
2019-03-01 09:51:58 +00:00
|
|
|
}
|
2017-04-03 14:58:55 +00:00
|
|
|
|
2020-01-08 22:30:28 +00:00
|
|
|
fprintf(fp, "\n");
|
2019-10-16 01:37:45 +00:00
|
|
|
fclose(fp);
|
2017-05-15 12:52:00 +00:00
|
|
|
close(fd);
|
2017-04-21 18:26:48 +00:00
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(pager, g_tmpfpath, NULL, F_CLI);
|
2018-10-21 09:21:50 +00:00
|
|
|
unlink(g_tmpfpath);
|
2018-12-08 09:58:55 +00:00
|
|
|
return TRUE;
|
2017-04-02 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
2020-01-02 17:43:56 +00:00
|
|
|
static bool xchmod(const char *fpath, mode_t mode)
|
|
|
|
{
|
2020-01-18 17:17:05 +00:00
|
|
|
/* (Un)set (S_IXUSR | S_IXGRP | S_IXOTH) */
|
|
|
|
(0100 & mode) ? (mode &= ~0111) : (mode |= 0111);
|
2020-01-02 17:43:56 +00:00
|
|
|
|
|
|
|
return (chmod(fpath, mode) == 0);
|
|
|
|
}
|
|
|
|
|
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)
|
2020-01-17 14:38:45 +00:00
|
|
|
return svb.f_blocks << ffs((int)(svb.f_frsize >> 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-07-27 11:10:30 +00:00
|
|
|
/* List or extract archive */
|
2020-05-10 10:53:45 +00:00
|
|
|
static void handle_archive(char *fpath, char op)
|
2017-09-27 14:49:42 +00:00
|
|
|
{
|
2019-07-27 11:10:30 +00:00
|
|
|
char arg[] = "-tvf"; /* options for tar/bsdtar to list files */
|
2019-05-19 15:59:29 +00:00
|
|
|
char *util;
|
|
|
|
|
2019-11-22 15:16:05 +00:00
|
|
|
if (getutil(utils[UTIL_ATOOL])) {
|
|
|
|
util = utils[UTIL_ATOOL];
|
2019-07-27 11:10:30 +00:00
|
|
|
arg[1] = op;
|
|
|
|
arg[2] = '\0';
|
2019-11-22 15:16:05 +00:00
|
|
|
} else if (getutil(utils[UTIL_BSDTAR])) {
|
|
|
|
util = utils[UTIL_BSDTAR];
|
2019-07-27 11:10:30 +00:00
|
|
|
if (op == 'x')
|
|
|
|
arg[1] = op;
|
|
|
|
} else if (is_suffix(fpath, ".zip")) {
|
2019-11-22 15:16:05 +00:00
|
|
|
util = utils[UTIL_UNZIP];
|
2019-07-27 11:10:30 +00:00
|
|
|
arg[1] = (op == 'l') ? 'v' /* verbose listing */ : '\0';
|
|
|
|
arg[2] = '\0';
|
|
|
|
} else {
|
2019-11-22 15:16:05 +00:00
|
|
|
util = utils[UTIL_TAR];
|
2019-07-27 11:10:30 +00:00
|
|
|
if (op == 'x')
|
|
|
|
arg[1] = op;
|
|
|
|
}
|
2017-09-27 14:49:42 +00:00
|
|
|
|
2020-04-05 16:15:30 +00:00
|
|
|
if (op == 'x') /* extract */
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(util, arg, fpath, F_NORMAL);
|
2020-04-05 16:15:30 +00:00
|
|
|
else /* list */
|
2019-07-27 11:10:30 +00:00
|
|
|
get_output(NULL, 0, util, arg, fpath, 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)) {
|
2020-04-12 13:31:02 +00:00
|
|
|
/* Continue in type-to-nav mode, if enabled */
|
2020-04-12 11:42:14 +00:00
|
|
|
if (cfg.filtermode && presel)
|
2019-04-21 13:58:55 +00:00
|
|
|
*presel = FILTER;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-04-12 12:14:29 +00:00
|
|
|
/* Use a copy as xdirname() may change the string passed */
|
2020-04-12 11:42:14 +00:00
|
|
|
if (newpath)
|
|
|
|
xstrsncpy(newpath, path, PATH_MAX);
|
|
|
|
else
|
|
|
|
newpath = path;
|
2019-04-21 13:58:55 +00:00
|
|
|
|
2020-04-12 12:14:29 +00:00
|
|
|
dir = xdirname(newpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
if (chdir(dir) == -1) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(presel);
|
2019-04-21 13:58:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2020-04-12 11:42:14 +00:00
|
|
|
static void valid_parent(char *path, char *lastname)
|
2019-10-19 03:13:32 +00:00
|
|
|
{
|
|
|
|
/* Save history */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, xbasename(path), NAME_MAX + 1);
|
2019-10-19 03:13:32 +00:00
|
|
|
|
2020-04-12 11:42:14 +00:00
|
|
|
while (!istopdir(path))
|
|
|
|
if (visit_parent(path, NULL, NULL))
|
2019-10-19 03:13:32 +00:00
|
|
|
break;
|
|
|
|
|
2020-03-29 15:50:09 +00:00
|
|
|
printwarn(NULL);
|
2019-11-25 02:20:22 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
2019-10-19 03:13:32 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
/* Create non-existent parents and a file or dir */
|
2020-01-18 17:17:05 +00:00
|
|
|
static bool xmktree(char *path, bool dir)
|
2019-04-21 20:44:43 +00:00
|
|
|
{
|
2020-01-18 17:17:05 +00:00
|
|
|
char *p = path;
|
2019-11-20 17:53:44 +00:00
|
|
|
char *slash = path;
|
|
|
|
|
|
|
|
if (!p || !*p)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Skip the first '/' */
|
|
|
|
++p;
|
|
|
|
|
|
|
|
while (*p != '\0') {
|
|
|
|
if (*p == '/') {
|
|
|
|
slash = p;
|
|
|
|
*p = '\0';
|
|
|
|
} else {
|
|
|
|
++p;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create folder from path to '\0' inserted at p */
|
|
|
|
if (mkdir(path, 0777) == -1 && errno != EEXIST) {
|
2019-12-27 18:02:20 +00:00
|
|
|
#ifdef __HAIKU__
|
|
|
|
// XDG_CONFIG_HOME contains a directory
|
|
|
|
// that is read-only, but the full path
|
|
|
|
// is writeable.
|
|
|
|
// Try to continue and see what happens.
|
|
|
|
// TODO: Find a more robust solution.
|
2020-01-18 17:17:05 +00:00
|
|
|
if (errno == B_READ_ONLY_DEVICE)
|
2019-12-27 18:02:20 +00:00
|
|
|
goto next;
|
|
|
|
#endif
|
2019-11-20 17:53:44 +00:00
|
|
|
DPRINTF_S("mkdir1!");
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
*slash = '/';
|
2019-04-21 20:44:43 +00:00
|
|
|
return FALSE;
|
2019-11-20 17:53:44 +00:00
|
|
|
}
|
2019-04-21 20:44:43 +00:00
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
#ifdef __HAIKU__
|
|
|
|
next:
|
|
|
|
#endif
|
2019-11-20 17:53:44 +00:00
|
|
|
/* Restore path */
|
|
|
|
*slash = '/';
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir) {
|
2020-01-18 17:17:05 +00:00
|
|
|
if (mkdir(path, 0777) == -1 && errno != EEXIST) {
|
2019-11-20 17:53:44 +00:00
|
|
|
DPRINTF_S("mkdir2!");
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int fd = open(path, O_CREAT, 0666);
|
2020-01-18 17:17:05 +00:00
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
if (fd == -1 && errno != EEXIST) {
|
|
|
|
DPRINTF_S("open!");
|
|
|
|
DPRINTF_S(strerror(errno));
|
2019-04-21 20:44:43 +00:00
|
|
|
return FALSE;
|
2019-11-20 17:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2019-04-21 20:44:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
static bool archive_mount(char *newpath)
|
2019-10-11 20:43:08 +00:00
|
|
|
{
|
2019-11-22 15:16:05 +00:00
|
|
|
char *dir, *cmd = utils[UTIL_ARCHIVEMOUNT];
|
2020-06-22 03:47:59 +00:00
|
|
|
char *name = pdents[cur].name;
|
|
|
|
size_t len = pdents[cur].nlen;
|
2020-06-08 04:14:53 +00:00
|
|
|
char mntpath[PATH_MAX];
|
2019-10-11 20:43:08 +00:00
|
|
|
|
|
|
|
if (!getutil(cmd)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_UTIL_MISSING]);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-04-15 09:30:40 +00:00
|
|
|
dir = xstrdup(name);
|
2020-03-28 06:55:35 +00:00
|
|
|
if (!dir) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_FAILED]);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
2020-03-28 06:55:35 +00:00
|
|
|
}
|
2019-10-11 20:43:08 +00:00
|
|
|
|
|
|
|
while (len > 1)
|
|
|
|
if (dir[--len] == '.') {
|
|
|
|
dir[len] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF_S(dir);
|
|
|
|
|
|
|
|
/* Create the mount point */
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(cfgpath, toks[TOK_MNT], mntpath);
|
|
|
|
mkpath(mntpath, dir, newpath);
|
2019-10-11 20:43:08 +00:00
|
|
|
free(dir);
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
if (!xmktree(newpath, TRUE)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printwarn(NULL);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mount archive */
|
|
|
|
DPRINTF_S(name);
|
|
|
|
DPRINTF_S(newpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(cmd, name, newpath, F_NORMAL)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_FAILED]);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-06-06 10:51:43 +00:00
|
|
|
static bool remote_mount(char *newpath)
|
2019-04-21 06:25:00 +00:00
|
|
|
{
|
2019-11-24 15:52:44 +00:00
|
|
|
uchar flag = F_CLI;
|
2020-02-01 03:27:16 +00:00
|
|
|
int opt;
|
2020-03-29 15:02:11 +00:00
|
|
|
char *tmp, *env;
|
2020-05-03 22:38:12 +00:00
|
|
|
bool r = getutil(utils[UTIL_RCLONE]), s = getutil(utils[UTIL_SSHFS]);
|
2020-06-08 04:14:53 +00:00
|
|
|
char mntpath[PATH_MAX];
|
2020-02-01 03:27:16 +00:00
|
|
|
|
2020-03-29 14:52:43 +00:00
|
|
|
if (!(r || s)) {
|
|
|
|
printmsg(messages[MSG_UTIL_MISSING]);
|
2020-02-01 03:27:16 +00:00
|
|
|
return FALSE;
|
2020-03-29 14:52:43 +00:00
|
|
|
}
|
2020-02-01 03:27:16 +00:00
|
|
|
|
|
|
|
if (r && s)
|
|
|
|
opt = get_input(messages[MSG_REMOTE_OPTS]);
|
|
|
|
else
|
|
|
|
opt = (!s) ? 'r' : 's';
|
2019-11-24 15:52:44 +00:00
|
|
|
|
2020-03-29 15:02:11 +00:00
|
|
|
if (opt == 's')
|
|
|
|
env = xgetenv("NNN_SSHFS", utils[UTIL_SSHFS]);
|
|
|
|
else if (opt == 'r') {
|
2020-02-01 03:27:16 +00:00
|
|
|
flag |= F_NOWAIT | F_NOTRACE;
|
2020-01-18 15:31:27 +00:00
|
|
|
env = xgetenv("NNN_RCLONE", "rclone mount");
|
2019-11-24 15:52:44 +00:00
|
|
|
} else {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_INVALID_KEY]);
|
2019-06-24 16:15:02 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2020-07-22 11:35:03 +00:00
|
|
|
tmp = xreadline(NULL, "host[:dir] > ");
|
2020-03-29 14:52:43 +00:00
|
|
|
if (!tmp[0]) {
|
|
|
|
printmsg(messages[MSG_CANCEL]);
|
2019-04-21 06:25:00 +00:00
|
|
|
return FALSE;
|
2020-03-29 14:52:43 +00:00
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2020-07-22 14:49:38 +00:00
|
|
|
char *div = strchr(tmp, ':');
|
|
|
|
|
|
|
|
if (div)
|
|
|
|
*div = '\0';
|
2020-07-22 11:30:45 +00:00
|
|
|
|
2020-07-22 11:35:03 +00:00
|
|
|
/* Create the mount point */
|
|
|
|
mkpath(cfgpath, toks[TOK_MNT], mntpath);
|
|
|
|
mkpath(mntpath, tmp, newpath);
|
|
|
|
if (!xmktree(newpath, TRUE)) {
|
|
|
|
printwarn(NULL);
|
|
|
|
return FALSE;
|
2019-11-24 15:52:44 +00:00
|
|
|
}
|
2019-06-24 16:15:02 +00:00
|
|
|
|
2020-07-22 14:49:38 +00:00
|
|
|
if (!div) { /* Convert "host" to "host:" */
|
|
|
|
size_t len = xstrlen(tmp);
|
|
|
|
tmp[len] = ':';
|
2020-07-22 11:35:03 +00:00
|
|
|
tmp[len + 1] = '\0';
|
2020-07-22 14:49:38 +00:00
|
|
|
} else
|
|
|
|
*div = ':';
|
2020-07-22 11:35:03 +00:00
|
|
|
|
2019-04-21 06:25:00 +00:00
|
|
|
/* Connect to remote */
|
2019-11-24 15:52:44 +00:00
|
|
|
if (opt == 's') {
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(env, tmp, newpath, flag)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
printmsg(messages[MSG_FAILED]);
|
2019-11-24 15:52:44 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(env, tmp, newpath, flag);
|
2019-11-24 15:52:44 +00:00
|
|
|
printmsg(messages[MSG_RCLONE_DELAY]);
|
2019-11-25 02:51:14 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS << 2); /* Set 4 times the usual delay */
|
2019-04-21 19:51:16 +00:00
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-11 20:43:08 +00:00
|
|
|
/*
|
|
|
|
* Unmounts if the directory represented by name is a mount point.
|
|
|
|
* Otherwise, asks for hostname
|
2020-06-06 10:51:43 +00:00
|
|
|
* Returns TRUE if directory needs to be refreshed *.
|
2019-10-11 20:43:08 +00:00
|
|
|
*/
|
2019-10-13 15:23:32 +00:00
|
|
|
static bool unmount(char *name, char *newpath, int *presel, char *currentpath)
|
2019-04-21 06:25:00 +00:00
|
|
|
{
|
2020-01-22 20:19:04 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
static char cmd[] = "umount";
|
|
|
|
#else
|
2019-11-24 15:52:44 +00:00
|
|
|
static char cmd[] = "fusermount3"; /* Arch Linux utility */
|
2019-04-21 06:25:00 +00:00
|
|
|
static bool found = FALSE;
|
2020-01-22 20:19:04 +00:00
|
|
|
#endif
|
2019-10-11 20:43:08 +00:00
|
|
|
char *tmp = name;
|
|
|
|
struct stat sb, psb;
|
2019-11-24 15:52:44 +00:00
|
|
|
bool child = FALSE;
|
|
|
|
bool parent = FALSE;
|
2020-06-06 10:51:43 +00:00
|
|
|
bool hovered = TRUE;
|
2020-06-08 04:14:53 +00:00
|
|
|
char mntpath[PATH_MAX];
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2020-01-22 20:19:04 +00:00
|
|
|
#ifndef __APPLE__
|
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;
|
|
|
|
}
|
2020-01-22 20:19:04 +00:00
|
|
|
#endif
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(cfgpath, toks[TOK_MNT], mntpath);
|
|
|
|
|
|
|
|
if (tmp && strcmp(mntpath, currentpath) == 0) {
|
|
|
|
mkpath(mntpath, tmp, newpath);
|
2019-10-13 15:23:32 +00:00
|
|
|
child = lstat(newpath, &sb) != -1;
|
2020-04-12 12:14:29 +00:00
|
|
|
parent = lstat(xdirname(newpath), &psb) != -1;
|
2019-10-13 15:23:32 +00:00
|
|
|
if (!child && !parent) {
|
2019-10-11 20:43:08 +00:00
|
|
|
*presel = MSGWAIT;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-13 15:23:32 +00:00
|
|
|
if (!tmp || !child || !S_ISDIR(sb.st_mode) || (child && parent && sb.st_dev == psb.st_dev)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_HOSTNAME]);
|
2019-10-11 20:43:08 +00:00
|
|
|
if (!tmp[0])
|
|
|
|
return FALSE;
|
2020-06-06 10:51:43 +00:00
|
|
|
hovered = FALSE;
|
2019-10-11 20:43:08 +00:00
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2019-04-21 20:44:43 +00:00
|
|
|
/* Create the mount point */
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(mntpath, tmp, newpath);
|
2019-04-21 06:25:00 +00:00
|
|
|
if (!xdiraccess(newpath)) {
|
|
|
|
*presel = MSGWAIT;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-01-22 20:19:04 +00:00
|
|
|
#ifdef __APPLE__
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(cmd, newpath, NULL, F_NORMAL)) {
|
2020-01-22 20:19:04 +00:00
|
|
|
#else
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(cmd, "-u", newpath, F_NORMAL)) {
|
2020-01-22 20:19:04 +00:00
|
|
|
#endif
|
2020-03-21 15:58:48 +00:00
|
|
|
if (!xconfirm(get_input(messages[MSG_LAZY])))
|
2020-01-22 20:19:04 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(cmd, "-l", newpath, F_NORMAL)) {
|
2020-01-22 20:19:04 +00:00
|
|
|
#else
|
2020-05-10 10:53:45 +00:00
|
|
|
if (spawn(cmd, "-uz", newpath, F_NORMAL)) {
|
2020-01-22 20:19:04 +00:00
|
|
|
#endif
|
|
|
|
printwait(messages[MSG_FAILED], presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-04-21 19:51:16 +00:00
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2020-06-06 10:51:43 +00:00
|
|
|
if (rmdir(newpath) == -1) {
|
|
|
|
printwarn(presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hovered;
|
2019-04-21 06:25:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 12:32:27 +00:00
|
|
|
static void lock_terminal(void)
|
|
|
|
{
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(xgetenv("NNN_LOCKER", utils[UTIL_LOCKER]), NULL, NULL, F_CLI);
|
2019-06-05 12:32:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 08:13:25 +00:00
|
|
|
static void printkv(kv *kvarr, FILE *fp, uchar max, uchar id)
|
2019-08-14 14:27:44 +00:00
|
|
|
{
|
2020-04-17 08:13:25 +00:00
|
|
|
char *val = (id == NNN_BMS) ? bmstr : pluginstr;
|
|
|
|
|
|
|
|
for (uchar i = 0; i < max && kvarr[i].key; ++i) {
|
|
|
|
fprintf(fp, " %c: %s\n", (char)kvarr[i].key, val + kvarr[i].off);
|
|
|
|
}
|
2019-08-14 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2019-12-17 01:43:50 +00:00
|
|
|
static void printkeys(kv *kvarr, char *buf, uchar max)
|
2019-12-16 23:07:48 +00:00
|
|
|
{
|
|
|
|
uchar i = 0;
|
|
|
|
|
2019-12-29 12:28:48 +00:00
|
|
|
for (; i < max && kvarr[i].key; ++i) {
|
|
|
|
buf[i << 1] = ' ';
|
|
|
|
buf[(i << 1) + 1] = kvarr[i].key;
|
2019-12-17 01:36:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-29 12:28:48 +00:00
|
|
|
buf[i << 1] = '\0';
|
2019-12-16 23:07:48 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
static size_t handle_bookmark(const char *bmark, char *newpath)
|
2020-03-21 13:40:01 +00:00
|
|
|
{
|
|
|
|
int fd;
|
2020-04-12 00:35:14 +00:00
|
|
|
size_t r = xstrsncpy(g_buf, messages[MSG_BOOKMARK_KEYS], CMD_LEN_MAX);
|
2020-03-21 13:40:01 +00:00
|
|
|
|
2020-07-07 02:27:43 +00:00
|
|
|
if (bmark) { /* There is a marked directory */
|
2020-03-21 13:40:01 +00:00
|
|
|
g_buf[--r] = ' ';
|
|
|
|
g_buf[++r] = ',';
|
|
|
|
g_buf[++r] = '\0';
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
printkeys(bookmark, g_buf + r - 1, maxbm);
|
2020-04-04 18:09:21 +00:00
|
|
|
printmsg(g_buf);
|
2020-03-21 13:40:01 +00:00
|
|
|
|
|
|
|
r = FALSE;
|
|
|
|
fd = get_input(NULL);
|
2020-07-07 02:27:43 +00:00
|
|
|
if (fd == ',') /* Visit marked directory */
|
2020-06-22 03:47:59 +00:00
|
|
|
bmark ? xstrsncpy(newpath, bmark, PATH_MAX) : (r = MSG_NOT_SET);
|
2020-04-17 08:13:25 +00:00
|
|
|
else if (!get_kv_val(bookmark, newpath, fd, maxbm, NNN_BMS))
|
2020-03-21 13:40:01 +00:00
|
|
|
r = MSG_INVALID_KEY;
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
if (!r && chdir(newpath) == -1)
|
2020-03-21 13:40:01 +00:00
|
|
|
r = MSG_ACCESS;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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-10-02 17:04:11 +00:00
|
|
|
static void show_help(const char *path)
|
2017-04-03 17:03:46 +00:00
|
|
|
{
|
2020-04-13 17:51:15 +00:00
|
|
|
int fd;
|
2019-10-16 01:37:45 +00:00
|
|
|
FILE *fp;
|
2019-02-27 17:06:22 +00:00
|
|
|
const char *start, *end;
|
|
|
|
const char helpstr[] = {
|
2019-12-17 01:06:10 +00:00
|
|
|
"0\n"
|
|
|
|
"1NAVIGATION\n"
|
2019-12-18 16:23:18 +00:00
|
|
|
"9Up k Up%-16cPgUp ^U Scroll up\n"
|
2019-12-28 04:26:54 +00:00
|
|
|
"9Dn j Down%-14cPgDn ^D Scroll down\n"
|
2019-12-28 19:08:03 +00:00
|
|
|
"9Lt h Parent%-12c~ ` @ - HOME, /, start, last\n"
|
2020-04-15 22:12:36 +00:00
|
|
|
"5Ret Rt l Open%-20c' First file/match\n"
|
2020-05-29 03:55:33 +00:00
|
|
|
"9g ^A Top%-21c. Toggle hidden\n"
|
2020-05-29 03:16:45 +00:00
|
|
|
"9G ^E End%-21c+ Toggle auto-advance\n"
|
2020-07-07 02:27:43 +00:00
|
|
|
"9b ^/ Bookmark key%-12c, Mark CWD\n"
|
2020-02-25 16:07:52 +00:00
|
|
|
"a1-4 Context 1-4%-7c(Sh)Tab Cycle context\n"
|
2020-06-03 10:26:10 +00:00
|
|
|
"aEsc Send to FIFO%-11c^L Redraw\n"
|
2020-05-29 03:16:45 +00:00
|
|
|
"c? Help, conf%-13c^G QuitCD\n"
|
|
|
|
"cq Quit context%-7c^Q (Q) Quit (with err)\n"
|
2020-06-03 10:26:10 +00:00
|
|
|
"1FILTER & PROMPT\n"
|
2020-07-12 18:50:12 +00:00
|
|
|
"c/ Filter%-12cAlt+Esc Clear filter & redraw\n"
|
2020-06-03 10:26:10 +00:00
|
|
|
"aEsc Exit prompt%-12c^L Clear prompt/last filter\n"
|
2020-07-12 18:50:12 +00:00
|
|
|
"b^N Toggle type-to-nav%-0c\n"
|
2019-12-17 01:06:10 +00:00
|
|
|
"1FILES\n"
|
2020-01-14 15:31:59 +00:00
|
|
|
"9o ^O Open with...%-12cn Create new/link\n"
|
2020-04-12 13:31:02 +00:00
|
|
|
"9f ^F File details%-12cd Detail mode toggle\n"
|
2020-01-16 13:55:48 +00:00
|
|
|
"b^R Rename/dup%-14cr Batch rename\n"
|
2020-02-01 17:00:32 +00:00
|
|
|
"cz Archive%-17ce Edit in EDITOR\n"
|
2020-06-03 10:26:10 +00:00
|
|
|
"c* Toggle exe%-14c> Export list\n"
|
2020-01-13 16:54:55 +00:00
|
|
|
"5Space ^J (Un)select%-11cm ^K Mark range/clear\n"
|
2020-01-16 13:55:48 +00:00
|
|
|
"9p ^P Copy sel here%-11ca Select all\n"
|
2020-03-21 13:40:01 +00:00
|
|
|
"9v ^V Move sel here%-8cw ^W Cp/mv sel as\n"
|
2020-02-01 17:00:32 +00:00
|
|
|
"9x ^X Delete%-18cE Edit sel\n"
|
2019-12-17 01:06:10 +00:00
|
|
|
"1MISC\n"
|
2020-05-30 16:32:36 +00:00
|
|
|
"8Alt ; Select plugin%-11c= Launch app\n"
|
2020-01-13 15:39:40 +00:00
|
|
|
"9! ^] Shell%-19c] Cmd prompt\n"
|
2020-01-14 15:31:59 +00:00
|
|
|
"cc Connect remote%-10cu Unmount\n"
|
|
|
|
"9t ^T Sort toggles%-12cs Manage session\n"
|
2020-06-02 11:18:28 +00:00
|
|
|
"cT Set time type%-11c0 Lock\n"
|
2020-01-06 14:30:18 +00:00
|
|
|
};
|
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)
|
2019-10-02 17:04:11 +00:00
|
|
|
return;
|
2019-10-24 03:14:36 +00:00
|
|
|
|
|
|
|
fp = fdopen(fd, "w");
|
|
|
|
if (!fp) {
|
2019-10-16 01:37:45 +00:00
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-15 14:04:56 +00:00
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.fortune && getutil("fortune"))
|
2020-08-09 21:44:11 +00:00
|
|
|
#ifndef __HAIKU__
|
2020-03-30 03:39:11 +00:00
|
|
|
pipetof("fortune -s", fp);
|
2020-08-09 21:44:11 +00:00
|
|
|
#else
|
|
|
|
pipetof("fortune", fp);
|
|
|
|
#endif
|
2020-03-30 03:39:11 +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') {
|
2019-12-17 01:06:10 +00:00
|
|
|
snprintf(g_buf, CMD_LEN_MAX, "%*c%.*s",
|
|
|
|
xchartohex(*start), ' ', (int)(end - start), start + 1);
|
2019-12-17 10:42:16 +00:00
|
|
|
fprintf(fp, g_buf, ' ');
|
2019-01-24 15:46:37 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\nVOLUME: %s of ", coolsize(get_fs_info(path, FREE)));
|
|
|
|
fprintf(fp, "%s free\n\n", coolsize(get_fs_info(path, CAPACITY)));
|
2017-06-11 13:54:02 +00:00
|
|
|
|
2020-02-29 04:23:07 +00:00
|
|
|
if (bookmark) {
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "BOOKMARKS\n");
|
2020-04-17 08:13:25 +00:00
|
|
|
printkv(bookmark, fp, maxbm, NNN_BMS);
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\n");
|
2019-08-13 19:28:33 +00:00
|
|
|
}
|
|
|
|
|
2020-02-29 04:23:07 +00:00
|
|
|
if (plug) {
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "PLUGIN KEYS\n");
|
2020-04-17 08:13:25 +00:00
|
|
|
printkv(plug, fp, maxplug, NNN_PLUG);
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\n");
|
2017-06-11 13:54:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (uchar 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-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "%s: %s\n", env_cfg[i], start);
|
2019-01-20 18:21:45 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 14:18:40 +00:00
|
|
|
if (selpath)
|
|
|
|
fprintf(fp, "SELECTION FILE: %s\n", selpath);
|
2019-01-20 18:21:45 +00:00
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\nv%s\n%s\n", VERSION, GENERAL_INFO);
|
|
|
|
fclose(fp);
|
2017-06-11 13:54:02 +00:00
|
|
|
close(fd);
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(pager, g_tmpfpath, NULL, F_CLI);
|
2018-10-21 09:21:50 +00:00
|
|
|
unlink(g_tmpfpath);
|
2017-04-03 17:03:46 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
static bool run_cmd_as_plugin(const char *file, char *runfile, uchar flags)
|
2019-12-17 15:25:17 +00:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(g_buf, file, PATH_MAX);
|
2019-12-18 16:57:23 +00:00
|
|
|
|
2020-04-15 09:30:40 +00:00
|
|
|
len = xstrlen(g_buf);
|
2020-03-31 22:06:06 +00:00
|
|
|
if (len > 1 && g_buf[len - 1] == '*') {
|
2020-01-30 18:08:36 +00:00
|
|
|
flags &= ~F_CONFIRM; /* Skip user confirmation */
|
2020-03-31 22:06:06 +00:00
|
|
|
g_buf[len - 1] = '\0'; /* Get rid of trailing no confirmation symbol */
|
2019-12-17 15:25:17 +00:00
|
|
|
--len;
|
|
|
|
}
|
|
|
|
|
2020-03-31 22:06:06 +00:00
|
|
|
if (is_suffix(g_buf, " $nnn"))
|
|
|
|
g_buf[len - 5] = '\0'; /* Set `\0` to clear ' $nnn' suffix */
|
2020-03-21 15:58:48 +00:00
|
|
|
else
|
2019-12-17 15:25:17 +00:00
|
|
|
runfile = NULL;
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(g_buf, runfile, NULL, flags);
|
2019-12-17 15:25:17 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
static bool plctrl_init(void)
|
2019-10-19 01:30:04 +00:00
|
|
|
{
|
2019-10-23 10:04:12 +00:00
|
|
|
snprintf(g_buf, CMD_LEN_MAX, "nnn-pipe.%d", getpid());
|
2019-11-15 17:06:37 +00:00
|
|
|
/* g_tmpfpath is used to generate tmp file names */
|
2020-03-01 14:18:40 +00:00
|
|
|
g_tmpfpath[tmpfplen - 1] = '\0';
|
2019-10-23 10:04:12 +00:00
|
|
|
mkpath(g_tmpfpath, g_buf, g_pipepath);
|
|
|
|
setenv(env_cfg[NNN_PIPE], g_pipepath, TRUE);
|
|
|
|
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_SUCCESS;
|
2019-10-23 10:04:12 +00:00
|
|
|
}
|
|
|
|
|
2020-05-03 09:25:33 +00:00
|
|
|
static void rmlistpath()
|
|
|
|
{
|
|
|
|
if (listpath) {
|
|
|
|
DPRINTF_S(__FUNCTION__);
|
2020-05-03 09:55:19 +00:00
|
|
|
DPRINTF_S(listpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn("rm -rf", listpath, NULL, F_NOTRACE | F_MULTI);
|
2020-05-05 18:05:14 +00:00
|
|
|
/* Do not free if program was started in list mode */
|
|
|
|
if (listpath != initpath)
|
|
|
|
free(listpath);
|
2020-05-03 09:25:33 +00:00
|
|
|
listpath = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 01:40:37 +00:00
|
|
|
static ssize_t read_nointr(int fd, void *buf, size_t count)
|
|
|
|
{
|
|
|
|
ssize_t len;
|
|
|
|
do{
|
|
|
|
len = read(fd, buf, count);
|
|
|
|
} while (len == -1 && errno == EINTR);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2020-05-03 09:25:33 +00:00
|
|
|
static void readpipe(int fd, char **path, char **lastname, char **lastdir)
|
|
|
|
{
|
2020-05-03 10:46:14 +00:00
|
|
|
int r;
|
|
|
|
char ctx, *nextpath = NULL;
|
2020-06-19 01:40:37 +00:00
|
|
|
ssize_t len = read_nointr(fd, g_buf, 1);
|
2020-05-03 09:25:33 +00:00
|
|
|
|
2020-06-28 15:03:54 +00:00
|
|
|
if (len != 1)
|
2020-05-03 09:25:33 +00:00
|
|
|
return;
|
|
|
|
|
2020-05-17 17:24:39 +00:00
|
|
|
if (g_buf[0] == '+')
|
|
|
|
ctx = (char)(get_free_ctx() + 1);
|
2020-06-28 15:03:54 +00:00
|
|
|
else if (g_buf[0] < '0')
|
|
|
|
return;
|
2020-05-17 17:24:39 +00:00
|
|
|
else {
|
2020-05-03 10:46:14 +00:00
|
|
|
ctx = g_buf[0] - '0';
|
2020-06-23 23:05:42 +00:00
|
|
|
if (ctx > CTX_MAX)
|
2020-05-03 10:46:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-05-03 09:25:33 +00:00
|
|
|
|
2020-06-19 01:40:37 +00:00
|
|
|
len = read_nointr(fd, g_buf, 1);
|
2020-05-03 09:25:33 +00:00
|
|
|
if (len != 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
char op = g_buf[0];
|
|
|
|
|
|
|
|
if (op == 'c') {
|
2020-06-19 01:40:37 +00:00
|
|
|
len = read_nointr(fd, g_buf, PATH_MAX);
|
2020-05-03 09:25:33 +00:00
|
|
|
if (len <= 0)
|
|
|
|
return;
|
|
|
|
|
2020-05-06 13:33:29 +00:00
|
|
|
/* Terminate the path read */
|
|
|
|
g_buf[len] = '\0';
|
2020-05-03 09:25:33 +00:00
|
|
|
nextpath = g_buf;
|
|
|
|
} else if (op == 'l') {
|
|
|
|
/* Remove last list mode path, if any */
|
|
|
|
rmlistpath();
|
|
|
|
|
|
|
|
nextpath = load_input(fd, *path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nextpath) {
|
|
|
|
if (ctx == 0 || ctx == cfg.curctx + 1) {
|
|
|
|
xstrsncpy(*lastdir, *path, PATH_MAX);
|
|
|
|
xstrsncpy(*path, nextpath, PATH_MAX);
|
2020-05-06 13:11:01 +00:00
|
|
|
DPRINTF_S(*path);
|
2020-05-03 09:25:33 +00:00
|
|
|
} else {
|
2020-05-03 10:46:14 +00:00
|
|
|
r = ctx - 1;
|
2020-05-03 09:25:33 +00:00
|
|
|
|
|
|
|
g_ctx[r].c_cfg.ctxactive = 0;
|
2020-06-22 03:47:59 +00:00
|
|
|
savecurctx(&cfg, nextpath, pdents[cur].name, r);
|
2020-05-03 09:25:33 +00:00
|
|
|
*path = g_ctx[r].c_path;
|
|
|
|
*lastdir = g_ctx[r].c_last;
|
|
|
|
*lastname = g_ctx[r].c_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 22:06:06 +00:00
|
|
|
static bool run_selected_plugin(char **path, const char *file, char *runfile, char **lastname, char **lastdir)
|
2019-10-23 10:04:12 +00:00
|
|
|
{
|
2020-05-09 19:17:02 +00:00
|
|
|
bool cmd_as_plugin = FALSE;
|
|
|
|
uchar flags = 0;
|
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (!g_state.pluginit) {
|
2019-10-23 10:04:12 +00:00
|
|
|
plctrl_init();
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.pluginit = 1;
|
2019-10-23 10:04:12 +00:00
|
|
|
}
|
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
if (*file == '_') {
|
|
|
|
flags = F_MULTI | F_CONFIRM;
|
2020-05-03 22:38:12 +00:00
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
/* Get rid of preceding _ */
|
|
|
|
++file;
|
|
|
|
if (!*file)
|
|
|
|
return FALSE;
|
2019-10-23 10:04:12 +00:00
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
/* Check if GUI flags are to be used */
|
|
|
|
if (*file == '|') {
|
|
|
|
flags = F_NOTRACE | F_NOWAIT;
|
|
|
|
++file;
|
|
|
|
|
|
|
|
if (!*file)
|
|
|
|
return FALSE;
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
run_cmd_as_plugin(file, runfile, flags);
|
2020-05-09 19:17:02 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd_as_plugin = TRUE;
|
2020-05-09 09:10:52 +00:00
|
|
|
}
|
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
if (mkfifo(g_pipepath, 0600) != 0)
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-11-15 16:25:18 +00:00
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
exitcurses();
|
|
|
|
|
|
|
|
if (fork() == 0) { // In child
|
2020-05-10 17:20:29 +00:00
|
|
|
int wfd = open(g_pipepath, O_WRONLY | O_CLOEXEC);
|
2020-05-09 19:17:02 +00:00
|
|
|
|
|
|
|
if (wfd == -1)
|
2020-05-10 04:27:20 +00:00
|
|
|
_exit(EXIT_FAILURE);
|
2020-04-17 12:21:57 +00:00
|
|
|
|
2020-05-09 19:17:02 +00:00
|
|
|
if (!cmd_as_plugin) {
|
|
|
|
/* Generate absolute path to plugin */
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(plgpath, file, g_buf);
|
2020-05-09 19:17:02 +00:00
|
|
|
|
|
|
|
if (runfile && runfile[0]) {
|
|
|
|
xstrsncpy(*lastname, runfile, NAME_MAX);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(g_buf, *lastname, *path, 0);
|
2020-05-09 19:17:02 +00:00
|
|
|
} else
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(g_buf, NULL, *path, 0);
|
2020-04-17 12:21:57 +00:00
|
|
|
} else
|
2020-05-10 10:53:45 +00:00
|
|
|
run_cmd_as_plugin(file, runfile, flags);
|
2020-05-09 19:17:02 +00:00
|
|
|
|
|
|
|
close(wfd);
|
2020-05-10 04:27:20 +00:00
|
|
|
_exit(EXIT_SUCCESS);
|
2020-04-17 12:21:57 +00:00
|
|
|
}
|
2019-10-23 10:04:12 +00:00
|
|
|
|
2020-06-19 01:40:37 +00:00
|
|
|
int rfd;
|
|
|
|
do {
|
|
|
|
rfd = open(g_pipepath, O_RDONLY);
|
|
|
|
} while (rfd == -1 && errno == EINTR);
|
2020-05-09 19:17:02 +00:00
|
|
|
|
|
|
|
readpipe(rfd, path, lastname, lastdir);
|
|
|
|
close(rfd);
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
unlink(g_pipepath);
|
2019-10-23 10:04:12 +00:00
|
|
|
|
2019-10-19 01:30:04 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
static bool plugscript(const char *plugin, uchar flags)
|
2019-12-12 14:21:08 +00:00
|
|
|
{
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(plgpath, plugin, g_buf);
|
2020-03-31 22:06:06 +00:00
|
|
|
if (!access(g_buf, X_OK)) {
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(g_buf, NULL, NULL, flags);
|
2020-03-11 12:22:38 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2019-12-12 14:21:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
static void launch_app(char *newpath)
|
2019-12-10 03:22:00 +00:00
|
|
|
{
|
|
|
|
int r = F_NORMAL;
|
|
|
|
char *tmp = newpath;
|
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(plgpath, utils[UTIL_LAUNCH], newpath);
|
2019-12-10 03:22:00 +00:00
|
|
|
|
2020-05-06 13:11:01 +00:00
|
|
|
if (!getutil(utils[UTIL_FZF]) || access(newpath, X_OK) < 0) {
|
2019-12-10 03:22:00 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_APP_NAME]);
|
|
|
|
r = F_NOWAIT | F_NOTRACE | F_MULTI;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp && *tmp) // NOLINT
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(tmp, (r == F_NORMAL) ? "0" : NULL, NULL, r);
|
2019-12-10 03:22:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 01:12:30 +00:00
|
|
|
static int sum_bsize(const char *UNUSED(fpath), const struct stat *sb, int typeflag, struct FTW *UNUSED(ftwbuf))
|
2017-04-09 18:41:29 +00:00
|
|
|
{
|
2020-04-14 15:29:37 +00:00
|
|
|
if (sb->st_blocks
|
|
|
|
&& ((typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino)))
|
|
|
|
|| typeflag == FTW_D))
|
2017-06-22 01:56:05 +00:00
|
|
|
ent_blocks += sb->st_blocks;
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
2017-04-09 18:41:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-02-14 01:12:30 +00:00
|
|
|
static int sum_asize(const char *UNUSED(fpath), const struct stat *sb, int typeflag, struct FTW *UNUSED(ftwbuf))
|
2018-10-04 18:56:31 +00:00
|
|
|
{
|
2020-04-14 15:29:37 +00:00
|
|
|
if (sb->st_size
|
|
|
|
&& ((typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino)))
|
|
|
|
|| typeflag == FTW_D))
|
2018-10-04 18:56:31 +00:00
|
|
|
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);
|
2020-06-22 03:47:59 +00:00
|
|
|
free(pdents);
|
2020-05-24 03:58:29 +00:00
|
|
|
free(mark);
|
2018-10-27 18:50:39 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 20:23:11 +00:00
|
|
|
static blkcnt_t dirwalk(char *path, struct stat *psb)
|
2014-10-22 15:21:50 +00:00
|
|
|
{
|
2019-05-15 16:59:38 +00:00
|
|
|
static uint open_max;
|
2019-12-18 20:23:11 +00:00
|
|
|
|
|
|
|
/* Increase current open file descriptor limit */
|
|
|
|
if (!open_max)
|
|
|
|
open_max = max_openfds();
|
|
|
|
|
|
|
|
ent_blocks = 0;
|
|
|
|
tolastln();
|
|
|
|
addstr(xbasename(path));
|
2020-04-09 11:22:36 +00:00
|
|
|
addstr(" [^C aborts]\n");
|
2019-12-18 20:23:11 +00:00
|
|
|
refresh();
|
|
|
|
|
|
|
|
if (nftw(path, nftw_fn, open_max, FTW_MOUNT | FTW_PHYS) < 0) {
|
|
|
|
DPRINTF_S("nftw failed");
|
2020-01-18 17:17:05 +00:00
|
|
|
return cfg.apparentsz ? psb->st_size : psb->st_blocks;
|
2019-12-18 20:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ent_blocks;
|
|
|
|
}
|
|
|
|
|
2020-02-08 13:42:00 +00:00
|
|
|
/* Skip self and parent */
|
2020-02-08 14:28:30 +00:00
|
|
|
static bool selforparent(const char *path)
|
2020-02-08 13:42:00 +00:00
|
|
|
{
|
|
|
|
return path[0] == '.' && (path[1] == '\0' || (path[1] == '.' && path[2] == '\0'));
|
|
|
|
}
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
static int dentfill(char *path, struct entry **ppdents)
|
2019-12-18 20:23:11 +00:00
|
|
|
{
|
2020-08-03 17:38:28 +00:00
|
|
|
uchar entflags = 0;
|
2020-04-13 17:51:15 +00:00
|
|
|
int n = 0, 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);
|
|
|
|
|
2020-03-29 03:26:08 +00:00
|
|
|
DPRINTF_S(__FUNCTION__);
|
|
|
|
|
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);
|
2014-11-13 16:49:57 +00:00
|
|
|
|
2017-06-22 04:09:17 +00:00
|
|
|
if (cfg.blkorder) {
|
|
|
|
num_files = 0;
|
2017-06-22 01:37:51 +00:00
|
|
|
dir_blocks = 0;
|
2020-04-15 09:30:40 +00:00
|
|
|
buf = (char *)alloca(xstrlen(path) + NAME_MAX + 2);
|
2020-04-13 16:12:23 +00:00
|
|
|
if (!buf)
|
|
|
|
return 0;
|
2017-08-22 16:01:06 +00:00
|
|
|
|
2020-02-22 13:12:55 +00:00
|
|
|
if (fstatat(fd, path, &sb_path, 0) == -1)
|
|
|
|
goto exit;
|
2020-02-22 03:14:28 +00:00
|
|
|
|
|
|
|
if (!ihashbmp) {
|
|
|
|
ihashbmp = calloc(1, HASH_OCTETS << 3);
|
|
|
|
if (!ihashbmp)
|
2020-02-22 13:12:55 +00:00
|
|
|
goto exit;
|
2020-02-22 03:14:28 +00:00
|
|
|
} else
|
2020-04-13 17:51:15 +00:00
|
|
|
memset(ihashbmp, 0, HASH_OCTETS << 3);
|
2020-04-04 18:09:21 +00:00
|
|
|
|
2020-04-09 11:22:36 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
2017-06-21 18:21:53 +00:00
|
|
|
|
2019-11-18 16:34:09 +00:00
|
|
|
#if _POSIX_C_SOURCE >= 200112L
|
2019-11-18 14:24:14 +00:00
|
|
|
posix_fadvise(fd, 0, 0, POSIX_FADV_SEQUENTIAL);
|
2019-11-18 16:34:09 +00:00
|
|
|
#endif
|
2019-11-18 14:24:14 +00:00
|
|
|
|
2019-04-27 10:42:11 +00:00
|
|
|
dp = readdir(dirp);
|
2019-07-14 08:55:46 +00:00
|
|
|
if (!dp)
|
|
|
|
goto exit;
|
2019-04-27 10:42:11 +00:00
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
#if defined(__sun) || defined(__HAIKU__)
|
2019-12-23 14:44:03 +00:00
|
|
|
flags = AT_SYMLINK_NOFOLLOW; /* no d_type */
|
2019-10-16 01:37:45 +00:00
|
|
|
#else
|
2019-04-27 10:42:11 +00:00
|
|
|
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;
|
|
|
|
}
|
2019-12-23 14:44:03 +00:00
|
|
|
#endif
|
2019-04-27 10:42:11 +00:00
|
|
|
|
|
|
|
do {
|
2017-07-05 16:38:13 +00:00
|
|
|
namep = dp->d_name;
|
2017-04-11 13:46:06 +00:00
|
|
|
|
2020-02-08 13:42:00 +00:00
|
|
|
if (selforparent(namep))
|
2018-12-04 23:31:29 +00:00
|
|
|
continue;
|
2017-06-21 18:21:53 +00:00
|
|
|
|
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;
|
|
|
|
|
2017-06-21 18:21:53 +00:00
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
2020-03-28 04:15:22 +00:00
|
|
|
if (sb_path.st_dev == sb.st_dev) { // NOLINT
|
2019-05-15 16:59:38 +00:00
|
|
|
mkpath(path, namep, buf);
|
2017-08-22 16:01:06 +00:00
|
|
|
|
2019-12-18 20:23:11 +00:00
|
|
|
dir_blocks += dirwalk(buf, &sb);
|
2019-02-08 15:01:37 +00:00
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.interrupt)
|
2020-02-22 03:14:28 +00:00
|
|
|
goto exit;
|
2017-08-22 16:01:06 +00:00
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
} else {
|
2020-02-22 03:14:28 +00:00
|
|
|
/* Do not recount hard links */
|
2020-02-27 13:19:44 +00:00
|
|
|
if (sb.st_nlink <= 1 || test_set_bit((uint)sb.st_ino))
|
2020-02-22 03:14:28 +00:00
|
|
|
dir_blocks += (cfg.apparentsz ? sb.st_size : sb.st_blocks);
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
|
|
|
}
|
2017-06-21 18:21:53 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2017-04-11 13:46:06 +00:00
|
|
|
|
2019-04-27 10:42:11 +00:00
|
|
|
if (fstatat(fd, namep, &sb, flags) == -1) {
|
2020-08-03 17:38:28 +00:00
|
|
|
if (flags || (fstatat(fd, namep, &sb, AT_SYMLINK_NOFOLLOW) == -1)) {
|
|
|
|
/* Missing file */
|
2019-12-09 16:50:46 +00:00
|
|
|
DPRINTF_U(flags);
|
|
|
|
if (!flags) {
|
2019-08-12 22:52:34 +00:00
|
|
|
DPRINTF_S(namep);
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
2020-08-03 17:38:28 +00:00
|
|
|
|
|
|
|
entflags = FILE_MISSING;
|
2020-04-15 12:22:21 +00:00
|
|
|
memset(&sb, 0, sizeof(struct stat));
|
2020-08-03 17:38:28 +00:00
|
|
|
} else /* Orphaned symlink */
|
|
|
|
entflags = SYM_ORPHAN;
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:16:00 +00:00
|
|
|
if (n == total_dents) {
|
2017-12-18 19:46:03 +00:00
|
|
|
total_dents += ENTRY_INCR;
|
2020-06-22 03:47:59 +00:00
|
|
|
*ppdents = xrealloc(*ppdents, total_dents * sizeof(**ppdents));
|
|
|
|
if (!*ppdents) {
|
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();
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
2020-06-22 03:47:59 +00:00
|
|
|
DPRINTF_P(*ppdents);
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 12:02:44 +00:00
|
|
|
/* If not enough bytes left to copy a file name of length NAME_MAX, re-allocate */
|
2017-12-18 19:46:03 +00:00
|
|
|
if (namebuflen - off < NAME_MAX + 1) {
|
|
|
|
namebuflen += NAMEBUF_INCR;
|
2017-12-17 17:38:55 +00:00
|
|
|
|
|
|
|
pnb = pnamebuf;
|
2018-01-04 12:16:06 +00:00
|
|
|
pnamebuf = (char *)xrealloc(pnamebuf, namebuflen);
|
2019-04-11 13:57:38 +00:00
|
|
|
if (!pnamebuf) {
|
2020-06-22 03:47:59 +00:00
|
|
|
free(*ppdents);
|
2019-03-10 00:19:55 +00:00
|
|
|
closedir(dirp);
|
2017-12-17 17:38:55 +00:00
|
|
|
errexit();
|
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
DPRINTF_P(pnamebuf);
|
2017-12-17 17:38:55 +00:00
|
|
|
|
|
|
|
/* realloc() may result in memory move, we must re-adjust if that happens */
|
2017-12-20 16:50:28 +00:00
|
|
|
if (pnb != pnamebuf) {
|
2020-06-22 03:47:59 +00:00
|
|
|
dentp = *ppdents;
|
2017-12-20 16:50:28 +00:00
|
|
|
dentp->name = pnamebuf;
|
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (int count = 1; count < n; ++dentp, ++count)
|
2017-12-20 16:50:28 +00:00
|
|
|
/* Current filename starts at last filename start + length */
|
2019-10-24 03:14:36 +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
|
|
|
}
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
dentp = *ppdents + n;
|
2017-12-18 19:46:03 +00:00
|
|
|
|
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);
|
2020-04-12 00:35:14 +00:00
|
|
|
dentp->nlen = xstrsncpy(dentp->name, namep, NAME_MAX + 1);
|
2017-12-20 16:50:28 +00:00
|
|
|
off += dentp->nlen;
|
2017-06-21 18:21:53 +00:00
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
/* Copy other fields */
|
2020-03-28 03:50:14 +00:00
|
|
|
dentp->t = ((cfg.timetype == T_MOD)
|
|
|
|
? sb.st_mtime
|
|
|
|
: ((cfg.timetype == T_ACCESS) ? sb.st_atime : sb.st_ctime));
|
2019-12-27 18:02:20 +00:00
|
|
|
#if !(defined(__sun) || defined(__HAIKU__))
|
2019-10-24 03:14:36 +00:00
|
|
|
if (!flags && dp->d_type == DT_LNK) {
|
2019-10-16 01:37:45 +00:00
|
|
|
/* Do not add sizes for links */
|
2019-04-27 10:42:11 +00:00
|
|
|
dentp->mode = (sb.st_mode & ~S_IFMT) | S_IFLNK;
|
2020-03-01 14:18:40 +00:00
|
|
|
dentp->size = listpath ? sb.st_size : 0;
|
2019-04-27 10:42:11 +00:00
|
|
|
} else {
|
|
|
|
dentp->mode = sb.st_mode;
|
|
|
|
dentp->size = sb.st_size;
|
|
|
|
}
|
2019-10-24 03:14:36 +00:00
|
|
|
#else
|
|
|
|
dentp->mode = sb.st_mode;
|
|
|
|
dentp->size = sb.st_size;
|
|
|
|
#endif
|
2020-02-27 20:27:33 +00:00
|
|
|
dentp->flags = S_ISDIR(sb.st_mode) ? 0 : ((sb.st_nlink > 1) ? HARD_LINK : 0);
|
2020-08-03 17:38:28 +00:00
|
|
|
if (entflags) {
|
|
|
|
dentp->flags |= entflags;
|
|
|
|
entflags = 0;
|
|
|
|
}
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-06-22 01:56:05 +00:00
|
|
|
if (cfg.blkorder) {
|
2017-04-09 18:41:29 +00:00
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
2017-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-12-18 20:23:11 +00:00
|
|
|
/* Need to show the disk usage of this dir */
|
|
|
|
dentp->blocks = dirwalk(buf, &sb);
|
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
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.interrupt)
|
2020-02-22 03:14:28 +00:00
|
|
|
goto exit;
|
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);
|
2020-02-22 03:14:28 +00:00
|
|
|
/* Do not recount hard links */
|
2020-02-27 13:19:44 +00:00
|
|
|
if (sb.st_nlink <= 1 || test_set_bit((uint)sb.st_ino))
|
2020-02-22 03:14:28 +00:00
|
|
|
dir_blocks += dentp->blocks;
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
|
|
|
}
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2019-12-27 18:02:20 +00:00
|
|
|
#if !(defined(__sun) || defined(__HAIKU__)) /* no d_type */
|
2020-08-10 11:02:47 +00:00
|
|
|
} else if (dp->d_type == DT_DIR || ((dp->d_type == DT_LNK || dp->d_type == DT_UNKNOWN) && S_ISDIR(sb.st_mode))) {
|
2019-01-29 15:52:28 +00:00
|
|
|
dentp->flags |= DIR_OR_LINK_TO_DIR;
|
2019-10-16 01:37:45 +00:00
|
|
|
#endif
|
|
|
|
}
|
2018-08-16 14:38:26 +00:00
|
|
|
|
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-07-14 08:55:46 +00:00
|
|
|
exit:
|
2020-04-04 18:09:21 +00:00
|
|
|
if (cfg.blkorder)
|
2020-04-09 11:22:36 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1));
|
2020-04-04 18:09:21 +00:00
|
|
|
|
2014-11-13 16:49:57 +00:00
|
|
|
/* Should never be null */
|
2019-12-27 15:52:27 +00:00
|
|
|
if (closedir(dirp) == -1)
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-05-19 14:38:22 +00:00
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
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
|
2017-12-18 19:46:03 +00:00
|
|
|
struct timespec ts1, ts2;
|
2017-12-27 20:17:44 +00:00
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
clock_gettime(CLOCK_REALTIME, &ts1); /* Use CLOCK_MONOTONIC on FreeBSD */
|
|
|
|
#endif
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
ndents = dentfill(path, &pdents);
|
2018-09-02 15:49:58 +00:00
|
|
|
if (!ndents)
|
2019-01-20 20:46:06 +00:00
|
|
|
return;
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
qsort(pdents, ndents, sizeof(*pdents), entrycmpfn);
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2019-02-21 23:49:04 +00:00
|
|
|
#ifdef DBGMODE
|
2017-12-18 19:46:03 +00:00
|
|
|
clock_gettime(CLOCK_REALTIME, &ts2);
|
|
|
|
DPRINTF_U(ts2.tv_nsec - ts1.tv_nsec);
|
|
|
|
#endif
|
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
/* Find cur from history */
|
2019-01-20 20:46:06 +00:00
|
|
|
/* No NULL check for lastname, always points to an array */
|
2020-03-31 16:56:20 +00:00
|
|
|
move_cursor(*lastname ? dentfind(lastname, ndents) : 0, 0);
|
2020-01-12 17:15:55 +00:00
|
|
|
|
|
|
|
// Force full redraw
|
|
|
|
last_curscroll = -1;
|
2019-05-10 02:14:24 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 04:05:13 +00:00
|
|
|
#ifndef NOFIFO
|
2020-06-02 10:59:26 +00:00
|
|
|
static void notify_fifo(bool force)
|
2020-05-04 04:05:13 +00:00
|
|
|
{
|
2020-08-05 20:00:56 +00:00
|
|
|
if (!fifopath)
|
|
|
|
return;
|
|
|
|
|
2020-05-04 04:05:13 +00:00
|
|
|
if (fifofd == -1) {
|
2020-05-05 23:45:21 +00:00
|
|
|
fifofd = open(fifopath, O_WRONLY|O_NONBLOCK|O_CLOEXEC);
|
2020-05-04 04:05:13 +00:00
|
|
|
if (fifofd == -1) {
|
|
|
|
if (errno != ENXIO)
|
|
|
|
/* Unexpected error, the FIFO file might have been removed */
|
|
|
|
/* We give up FIFO notification */
|
|
|
|
fifopath = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 13:37:00 +00:00
|
|
|
static struct entry lastentry;
|
2020-05-04 04:05:13 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
if (!force && !memcmp(&lastentry, &pdents[cur], sizeof(struct entry)))
|
2020-05-04 04:05:13 +00:00
|
|
|
return;
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
lastentry = pdents[cur];
|
2020-05-04 04:05:13 +00:00
|
|
|
|
|
|
|
char path[PATH_MAX];
|
2020-06-22 03:47:59 +00:00
|
|
|
size_t len = mkpath(g_ctx[cfg.curctx].c_path, ndents ? pdents[cur].name : "", path);
|
2020-05-04 04:05:13 +00:00
|
|
|
|
|
|
|
path[len - 1] = '\n';
|
|
|
|
|
|
|
|
ssize_t ret = write(fifofd, path, len);
|
|
|
|
|
|
|
|
if (ret != (ssize_t)len && !(ret == -1 && (errno == EAGAIN || errno == EPIPE))) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
static void move_cursor(int target, int ignore_scrolloff)
|
|
|
|
{
|
2020-05-04 00:47:38 +00:00
|
|
|
int onscreen = xlines - 4; /* Leave top 2 and bottom 2 lines */
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
target = MAX(0, MIN(ndents - 1, target));
|
2020-05-04 00:47:38 +00:00
|
|
|
last_curscroll = curscroll;
|
2020-01-12 17:15:55 +00:00
|
|
|
last = cur;
|
2019-05-10 02:14:24 +00:00
|
|
|
cur = target;
|
2020-05-04 00:47:38 +00:00
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
if (!ignore_scrolloff) {
|
2020-05-04 00:47:38 +00:00
|
|
|
int delta = target - last;
|
|
|
|
int 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).
|
|
|
|
*/
|
2019-09-26 00:54:11 +00:00
|
|
|
if (((cur < (curscroll + scrolloff)) && delta < 0)
|
|
|
|
|| ((cur > (curscroll + onscreen - scrolloff - 1)) && delta > 0))
|
2019-05-10 02:14:24 +00:00
|
|
|
curscroll += delta;
|
|
|
|
}
|
|
|
|
curscroll = MIN(curscroll, MIN(cur, ndents - onscreen));
|
|
|
|
curscroll = MAX(curscroll, MAX(cur - (onscreen - 1), 0));
|
2020-05-04 04:05:13 +00:00
|
|
|
|
|
|
|
#ifndef NOFIFO
|
2020-08-05 20:00:56 +00:00
|
|
|
notify_fifo(FALSE);
|
2020-05-04 04:05:13 +00:00
|
|
|
#endif
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
2014-10-07 11:23:44 +00:00
|
|
|
|
2019-12-27 15:52:27 +00:00
|
|
|
static void handle_screen_move(enum action sel)
|
2019-10-19 03:31:23 +00:00
|
|
|
{
|
|
|
|
int onscreen;
|
|
|
|
|
|
|
|
switch (sel) {
|
|
|
|
case SEL_NEXT:
|
2019-12-01 17:30:06 +00:00
|
|
|
if (ndents && (cfg.rollover || (cur != ndents - 1)))
|
2019-10-19 03:31:23 +00:00
|
|
|
move_cursor((cur + 1) % ndents, 0);
|
|
|
|
break;
|
|
|
|
case SEL_PREV:
|
2019-12-01 17:30:06 +00:00
|
|
|
if (ndents && (cfg.rollover || cur))
|
2019-10-19 03:31:23 +00:00
|
|
|
move_cursor((cur + ndents - 1) % ndents, 0);
|
|
|
|
break;
|
|
|
|
case SEL_PGDN:
|
|
|
|
onscreen = xlines - 4;
|
|
|
|
move_cursor(curscroll + (onscreen - 1), 1);
|
|
|
|
curscroll += onscreen - 1;
|
|
|
|
break;
|
|
|
|
case SEL_CTRL_D:
|
|
|
|
onscreen = xlines - 4;
|
|
|
|
move_cursor(curscroll + (onscreen - 1), 1);
|
|
|
|
curscroll += onscreen >> 1;
|
|
|
|
break;
|
|
|
|
case SEL_PGUP: // fallthrough
|
|
|
|
onscreen = xlines - 4;
|
|
|
|
move_cursor(curscroll, 1);
|
|
|
|
curscroll -= onscreen - 1;
|
|
|
|
break;
|
|
|
|
case SEL_CTRL_U:
|
|
|
|
onscreen = xlines - 4;
|
|
|
|
move_cursor(curscroll, 1);
|
|
|
|
curscroll -= onscreen >> 1;
|
|
|
|
break;
|
|
|
|
case SEL_HOME:
|
|
|
|
move_cursor(0, 1);
|
|
|
|
break;
|
2019-12-11 14:36:12 +00:00
|
|
|
case SEL_END:
|
2019-10-19 03:31:23 +00:00
|
|
|
move_cursor(ndents - 1, 1);
|
|
|
|
break;
|
2019-12-11 14:36:12 +00:00
|
|
|
default: /* case SEL_FIRST */
|
|
|
|
{
|
2020-04-15 22:12:36 +00:00
|
|
|
int c = get_input(messages[MSG_FIRST]);
|
|
|
|
if (!c)
|
|
|
|
break;
|
|
|
|
|
|
|
|
c = TOUPPER(c);
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
int r = (c == TOUPPER(*pdents[cur].name)) ? (cur + 1) : 0;
|
2020-04-15 22:12:36 +00:00
|
|
|
|
|
|
|
for (; r < ndents; ++r) {
|
2020-06-22 03:47:59 +00:00
|
|
|
if (((c == '\'') && !(pdents[r].flags & DIR_OR_LINK_TO_DIR))
|
|
|
|
|| (c == TOUPPER(*pdents[r].name))) {
|
2019-12-11 14:36:12 +00:00
|
|
|
move_cursor((r) % ndents, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-10-19 03:31:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 10:51:43 +00:00
|
|
|
static void copynextname(char *lastname)
|
|
|
|
{
|
|
|
|
if (cur) {
|
|
|
|
cur += (cur != (ndents - 1)) ? 1 : -1;
|
|
|
|
copycurname();
|
|
|
|
} else
|
|
|
|
lastname[0] = '\0';
|
|
|
|
}
|
|
|
|
|
2020-04-02 15:17:15 +00:00
|
|
|
static int handle_context_switch(enum action sel)
|
2019-12-26 14:07:48 +00:00
|
|
|
{
|
2020-03-21 15:58:48 +00:00
|
|
|
int r = -1;
|
2019-12-26 14:07:48 +00:00
|
|
|
|
|
|
|
switch (sel) {
|
|
|
|
case SEL_CYCLE: // fallthrough
|
|
|
|
case SEL_CYCLER:
|
|
|
|
/* visit next and previous contexts */
|
|
|
|
r = cfg.curctx;
|
|
|
|
if (sel == SEL_CYCLE)
|
|
|
|
do
|
|
|
|
r = (r + 1) & ~CTX_MAX;
|
|
|
|
while (!g_ctx[r].c_cfg.ctxactive);
|
|
|
|
else
|
|
|
|
do
|
|
|
|
r = (r + (CTX_MAX - 1)) & (CTX_MAX - 1);
|
|
|
|
while (!g_ctx[r].c_cfg.ctxactive);
|
|
|
|
// fallthrough
|
|
|
|
default: /* SEL_CTXN */
|
|
|
|
if (sel >= SEL_CTX1) /* CYCLE keys are lesser in value */
|
|
|
|
r = sel - SEL_CTX1; /* Save the next context id */
|
|
|
|
|
|
|
|
if (cfg.curctx == r) {
|
2020-04-02 15:17:15 +00:00
|
|
|
if (sel == SEL_CYCLE)
|
|
|
|
(r == CTX_MAX - 1) ? (r = 0) : ++r;
|
|
|
|
else if (sel == SEL_CYCLER)
|
|
|
|
(r == 0) ? (r = CTX_MAX - 1) : --r;
|
|
|
|
else
|
2019-12-26 14:07:48 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:13:49 +00:00
|
|
|
if (g_state.selmode)
|
2019-12-26 14:07:48 +00:00
|
|
|
lastappendpos = selbufpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
static int set_sort_flags(int r)
|
2020-01-18 18:01:39 +00:00
|
|
|
{
|
2020-06-09 16:56:35 +00:00
|
|
|
bool session = !r;
|
|
|
|
|
|
|
|
/* Set the correct input in case of a session load */
|
|
|
|
if (session) {
|
|
|
|
if (cfg.apparentsz) {
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
r = 'a';
|
|
|
|
} else if (cfg.blkorder) {
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
r = 'd';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cfg.version)
|
|
|
|
namecmpfn = &xstrverscasecmp;
|
|
|
|
|
|
|
|
if (cfg.reverse)
|
|
|
|
entrycmpfn = &reventrycmp;
|
|
|
|
}
|
|
|
|
|
2020-01-18 18:01:39 +00:00
|
|
|
switch (r) {
|
|
|
|
case 'a': /* Apparent du */
|
|
|
|
cfg.apparentsz ^= 1;
|
|
|
|
if (cfg.apparentsz) {
|
|
|
|
nftw_fn = &sum_asize;
|
|
|
|
cfg.blkorder = 1;
|
|
|
|
blk_shift = 0;
|
|
|
|
} else
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
// fallthrough
|
|
|
|
case 'd': /* Disk usage */
|
|
|
|
if (r == 'd') {
|
|
|
|
if (!cfg.apparentsz)
|
|
|
|
cfg.blkorder ^= 1;
|
|
|
|
nftw_fn = &sum_bsize;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
blk_shift = ffs(S_BLKSIZE) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cfg.blkorder) {
|
|
|
|
cfg.showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
}
|
2020-03-28 03:50:14 +00:00
|
|
|
cfg.timeorder = 0;
|
2020-01-18 18:01:39 +00:00
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.extnorder = 0;
|
2020-06-09 16:56:35 +00:00
|
|
|
if (!session) {
|
|
|
|
cfg.reverse = 0;
|
|
|
|
entrycmpfn = &entrycmp;
|
|
|
|
}
|
2020-01-18 18:01:39 +00:00
|
|
|
endselection(); /* We are going to reload dir */
|
|
|
|
break;
|
2020-03-05 15:28:08 +00:00
|
|
|
case 'c':
|
2020-03-28 03:50:14 +00:00
|
|
|
cfg.timeorder = 0;
|
2020-03-05 15:28:08 +00:00
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
cfg.extnorder = 0;
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.reverse = 0;
|
|
|
|
cfg.version = 0;
|
2020-03-05 15:28:08 +00:00
|
|
|
entrycmpfn = &entrycmp;
|
|
|
|
namecmpfn = &xstricmp;
|
|
|
|
break;
|
2020-01-18 18:01:39 +00:00
|
|
|
case 'e': /* File extension */
|
|
|
|
cfg.extnorder ^= 1;
|
|
|
|
cfg.sizeorder = 0;
|
2020-03-28 03:50:14 +00:00
|
|
|
cfg.timeorder = 0;
|
2020-01-18 18:01:39 +00:00
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.reverse = 0;
|
2020-03-15 14:21:54 +00:00
|
|
|
entrycmpfn = &entrycmp;
|
2020-01-18 18:01:39 +00:00
|
|
|
break;
|
|
|
|
case 'r': /* Reverse sort */
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.reverse ^= 1;
|
|
|
|
entrycmpfn = cfg.reverse ? &reventrycmp : &entrycmp;
|
2020-01-18 18:01:39 +00:00
|
|
|
break;
|
|
|
|
case 's': /* File size */
|
|
|
|
cfg.sizeorder ^= 1;
|
2020-03-28 03:50:14 +00:00
|
|
|
cfg.timeorder = 0;
|
2020-01-18 18:01:39 +00:00
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
cfg.extnorder = 0;
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.reverse = 0;
|
2020-03-15 14:21:54 +00:00
|
|
|
entrycmpfn = &entrycmp;
|
2020-01-18 18:01:39 +00:00
|
|
|
break;
|
2020-03-28 03:50:14 +00:00
|
|
|
case 't': /* Time */
|
|
|
|
cfg.timeorder ^= 1;
|
2020-01-18 18:01:39 +00:00
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
cfg.extnorder = 0;
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.reverse = 0;
|
2020-03-15 14:21:54 +00:00
|
|
|
entrycmpfn = &entrycmp;
|
2020-01-18 18:01:39 +00:00
|
|
|
break;
|
|
|
|
case 'v': /* Version */
|
2020-06-09 16:56:35 +00:00
|
|
|
cfg.version ^= 1;
|
|
|
|
namecmpfn = cfg.version ? &xstrverscasecmp : &xstricmp;
|
2020-03-28 21:01:48 +00:00
|
|
|
cfg.timeorder = 0;
|
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
|
|
|
cfg.extnorder = 0;
|
2020-01-18 18:01:39 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-03-28 19:12:20 +00:00
|
|
|
return 0;
|
2020-01-18 18:01:39 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
return r;
|
2020-01-18 18:01:39 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 03:50:14 +00:00
|
|
|
static bool set_time_type(int *presel)
|
|
|
|
{
|
2020-04-14 17:08:33 +00:00
|
|
|
bool ret = FALSE;
|
|
|
|
char buf[] = "'a'ccess / 'c'hange / 'm'od [ ]";
|
|
|
|
|
|
|
|
buf[sizeof(buf) - 3] = cfg.timetype == T_MOD ? 'm' : (cfg.timetype == T_ACCESS ? 'a' : 'c');
|
|
|
|
|
|
|
|
int r = get_input(buf);
|
2020-03-28 03:50:14 +00:00
|
|
|
|
|
|
|
if (r == 'a' || r == 'c' || r == 'm') {
|
|
|
|
r = (r == 'm') ? T_MOD : ((r == 'a') ? T_ACCESS : T_CHANGE);
|
2020-04-14 17:08:33 +00:00
|
|
|
if (cfg.timetype != r) {
|
|
|
|
cfg.timetype = r;
|
2020-03-28 03:50:14 +00:00
|
|
|
|
2020-04-14 17:08:33 +00:00
|
|
|
if (cfg.filtermode || g_ctx[cfg.curctx].c_fltr[1])
|
|
|
|
*presel = FILTER;
|
2020-03-28 03:50:14 +00:00
|
|
|
|
2020-04-14 17:08:33 +00:00
|
|
|
ret = TRUE;
|
|
|
|
} else
|
|
|
|
r = MSG_NOCHNAGE;
|
|
|
|
} else
|
|
|
|
r = MSG_INVALID_KEY;
|
2020-03-28 03:50:14 +00:00
|
|
|
|
2020-04-14 17:08:33 +00:00
|
|
|
if (!ret)
|
|
|
|
printwait(messages[r], presel);
|
2020-03-28 03:50:14 +00:00
|
|
|
|
2020-04-14 17:08:33 +00:00
|
|
|
return ret;
|
2020-03-28 03:50:14 +00:00
|
|
|
}
|
|
|
|
|
2020-01-11 17:48:24 +00:00
|
|
|
static void statusbar(char *path)
|
|
|
|
{
|
|
|
|
int i = 0, extnlen = 0;
|
|
|
|
char *ptr;
|
2020-06-22 03:47:59 +00:00
|
|
|
pEntry pent = &pdents[cur];
|
2020-01-11 17:48:24 +00:00
|
|
|
|
|
|
|
if (!ndents) {
|
|
|
|
printmsg("0/0");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the file extension for regular files */
|
|
|
|
if (S_ISREG(pent->mode)) {
|
|
|
|
i = (int)(pent->nlen - 1);
|
2020-08-05 15:06:50 +00:00
|
|
|
ptr = xextension(pent->name, i);
|
2020-04-11 14:53:24 +00:00
|
|
|
if (ptr)
|
|
|
|
extnlen = i - (ptr - pent->name);
|
2020-01-11 17:48:24 +00:00
|
|
|
if (!ptr || extnlen > 5 || extnlen < 2)
|
|
|
|
ptr = "\b";
|
|
|
|
} else
|
|
|
|
ptr = "\b";
|
|
|
|
|
2020-02-27 17:33:06 +00:00
|
|
|
tolastln();
|
2020-04-09 11:22:36 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
2020-02-27 17:33:06 +00:00
|
|
|
|
2020-08-01 19:10:51 +00:00
|
|
|
printw("%d/%d ", cur + 1, ndents);
|
|
|
|
|
|
|
|
if (g_state.selmode) {
|
|
|
|
attron(A_REVERSE);
|
|
|
|
addch(' ');
|
|
|
|
if (g_state.rangesel)
|
|
|
|
addch('*');
|
|
|
|
else if (nselected)
|
|
|
|
addstr(xitoa(nselected));
|
|
|
|
else
|
|
|
|
addch('+');
|
|
|
|
addch(' ');
|
|
|
|
attroff(A_REVERSE);
|
|
|
|
addch(' ');
|
|
|
|
}
|
|
|
|
|
2020-01-11 17:48:24 +00:00
|
|
|
if (cfg.blkorder) { /* du mode */
|
2020-02-27 17:33:06 +00:00
|
|
|
char buf[24];
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
2020-01-11 17:48:24 +00:00
|
|
|
|
2020-08-01 19:10:51 +00:00
|
|
|
printw("%cu:%s free:%s files:%lu %lldB %s\n",
|
2020-02-27 17:33:06 +00:00
|
|
|
(cfg.apparentsz ? 'a' : 'd'), buf, coolsize(get_fs_info(path, FREE)),
|
|
|
|
num_files, (ll)pent->blocks << blk_shift, ptr);
|
2020-01-11 17:48:24 +00:00
|
|
|
} else { /* light or detail mode */
|
2020-07-21 17:00:12 +00:00
|
|
|
char sort[] = "\0\0\0\0\0";
|
2020-01-14 17:21:10 +00:00
|
|
|
|
2020-08-01 19:24:07 +00:00
|
|
|
if (getorderstr(sort))
|
|
|
|
printw("%s", sort);
|
2020-02-27 17:33:06 +00:00
|
|
|
|
|
|
|
/* Timestamp */
|
|
|
|
print_time(&pent->t);
|
|
|
|
|
|
|
|
addch(' ');
|
|
|
|
addstr(get_lsperms(pent->mode));
|
|
|
|
addch(' ');
|
|
|
|
addstr(coolsize(pent->size));
|
|
|
|
addch(' ');
|
|
|
|
addstr(ptr);
|
2020-04-11 14:53:24 +00:00
|
|
|
addch('\n');
|
2020-01-11 17:48:24 +00:00
|
|
|
}
|
2020-01-12 17:15:55 +00:00
|
|
|
|
2020-04-09 11:22:36 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1));
|
2020-06-11 05:46:40 +00:00
|
|
|
|
|
|
|
if (cfg.cursormode)
|
|
|
|
tocursor();
|
2020-01-12 18:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int adjust_cols(int ncols)
|
|
|
|
{
|
|
|
|
/* Calculate the number of cols available to print entry name */
|
|
|
|
if (cfg.showdetail) {
|
|
|
|
/* Fallback to light mode if less than 35 columns */
|
|
|
|
if (ncols < 36) {
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
printptr = &printent;
|
2020-08-16 01:00:58 +00:00
|
|
|
} else {
|
|
|
|
/* 3 more accounted for below */
|
|
|
|
ncols -= 32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 3 = Preceding space, indicator, newline */
|
|
|
|
#ifdef ICONS
|
|
|
|
ncols -= 3 + xstrlen(ICON_PADDING_LEFT) + xstrlen(ICON_PADDING_RIGHT) + 1;
|
|
|
|
#else
|
|
|
|
ncols -= 3;
|
|
|
|
#endif
|
2020-01-12 18:03:42 +00:00
|
|
|
|
|
|
|
return ncols;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_line(char *path, int ncols)
|
|
|
|
{
|
2020-08-04 13:52:29 +00:00
|
|
|
bool dir = FALSE;
|
|
|
|
|
2020-08-04 15:06:19 +00:00
|
|
|
ncols = adjust_cols(ncols);
|
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (g_state.oldcolor && (pdents[last].flags & DIR_OR_LINK_TO_DIR)) {
|
2020-01-14 19:27:02 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
dir = TRUE;
|
|
|
|
}
|
2020-08-04 13:52:29 +00:00
|
|
|
|
2020-01-12 18:03:42 +00:00
|
|
|
move(2 + last - curscroll, 0);
|
2020-06-22 03:47:59 +00:00
|
|
|
printptr(&pdents[last], ncols, false);
|
2020-01-14 19:27:02 +00:00
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (g_state.oldcolor && (pdents[cur].flags & DIR_OR_LINK_TO_DIR)) {
|
2020-01-14 19:27:02 +00:00
|
|
|
if (!dir) {/* First file is not a directory */
|
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
dir = TRUE;
|
|
|
|
}
|
|
|
|
} else if (dir) { /* Second file is not a directory */
|
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
dir = FALSE;
|
|
|
|
}
|
|
|
|
|
2020-01-12 18:03:42 +00:00
|
|
|
move(2 + cur - curscroll, 0);
|
2020-06-22 03:47:59 +00:00
|
|
|
printptr(&pdents[cur], ncols, true);
|
2020-01-12 18:03:42 +00:00
|
|
|
|
|
|
|
/* Must reset e.g. no files in dir */
|
2020-01-14 19:27:02 +00:00
|
|
|
if (dir)
|
2020-01-12 18:03:42 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
|
|
|
|
statusbar(path);
|
2020-01-11 17:48:24 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static void redraw(char *path)
|
2015-07-01 23:56:47 +00:00
|
|
|
{
|
2019-03-10 23:38:39 +00:00
|
|
|
xlines = LINES;
|
|
|
|
xcols = COLS;
|
|
|
|
|
|
|
|
int ncols = (xcols <= PATH_MAX) ? xcols : PATH_MAX;
|
2020-01-11 17:48:24 +00:00
|
|
|
int onscreen = xlines - 4;
|
2020-04-11 17:46:59 +00:00
|
|
|
int i;
|
2020-01-11 17:48:24 +00:00
|
|
|
char *ptr = path;
|
2019-03-09 11:33:47 +00:00
|
|
|
|
2020-01-12 17:15:55 +00:00
|
|
|
// Fast redraw
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.move) {
|
|
|
|
g_state.move = 0;
|
2020-01-12 17:15:55 +00:00
|
|
|
|
2020-01-16 22:06:57 +00:00
|
|
|
if (ndents && (last_curscroll == curscroll))
|
2020-01-12 18:03:42 +00:00
|
|
|
return draw_line(path, ncols);
|
2020-01-12 17:15:55 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 12:15:58 +00:00
|
|
|
DPRINTF_S(__FUNCTION__);
|
|
|
|
|
2020-04-18 21:41:12 +00:00
|
|
|
/* Clear screen */
|
|
|
|
erase();
|
2018-12-01 03:29:19 +00:00
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
/* Enforce scroll/cursor invariants */
|
|
|
|
move_cursor(cur, 1);
|
2019-05-09 02:38:32 +00:00
|
|
|
|
2019-09-10 18:32:38 +00:00
|
|
|
/* Fail redraw if < than 10 columns, context info prints 10 chars */
|
|
|
|
if (ncols < MIN_DISPLAY_COLS) {
|
2019-12-17 01:36:40 +00:00
|
|
|
printmsg(messages[MSG_FEW_COLUMNS]);
|
2017-09-01 13:28:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-09 17:47:40 +00:00
|
|
|
//DPRINTF_D(cur);
|
2015-07-01 23:56:47 +00:00
|
|
|
DPRINTF_S(path);
|
|
|
|
|
2019-09-10 19:53:51 +00:00
|
|
|
addch('[');
|
2018-12-04 12:51:01 +00:00
|
|
|
for (i = 0; i < CTX_MAX; ++i) {
|
2020-04-11 17:46:59 +00:00
|
|
|
if (!g_ctx[i].c_cfg.ctxactive)
|
2019-09-10 19:53:51 +00:00
|
|
|
addch(i + '1');
|
2020-04-11 17:46:59 +00:00
|
|
|
else
|
|
|
|
addch((i + '1') | (COLOR_PAIR(i + 1) | A_BOLD
|
2020-04-09 13:43:42 +00:00
|
|
|
/* active: underline, current: reverse */
|
2020-04-11 17:46:59 +00:00
|
|
|
| ((cfg.curctx != i) ? A_UNDERLINE : A_REVERSE)));
|
2020-05-12 09:45:47 +00:00
|
|
|
|
|
|
|
if (i != CTX_MAX - 1)
|
|
|
|
addch(' ');
|
2018-11-08 12:42:55 +00:00
|
|
|
}
|
2020-05-12 09:45:47 +00:00
|
|
|
addstr("] "); /* 10 chars printed for contexts - "[1 2 3 4] " */
|
2018-11-08 12:42:55 +00:00
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
attron(A_UNDERLINE | COLOR_PAIR(cfg.curctx + 1));
|
2019-09-08 09:43:44 +00:00
|
|
|
|
|
|
|
/* Print path */
|
2020-04-15 09:30:40 +00:00
|
|
|
i = (int)xstrlen(path);
|
2019-09-10 18:32:38 +00:00
|
|
|
if ((i + MIN_DISPLAY_COLS) <= ncols)
|
|
|
|
addnstr(path, ncols - MIN_DISPLAY_COLS);
|
2019-09-08 09:43:44 +00:00
|
|
|
else {
|
2020-04-11 17:46:59 +00:00
|
|
|
char *base = xmemrchr((uchar *)path, '/', i);
|
2020-01-11 17:48:24 +00:00
|
|
|
|
2020-04-11 17:46:59 +00:00
|
|
|
i = 0;
|
|
|
|
|
|
|
|
if (base != ptr) {
|
2019-09-09 18:11:45 +00:00
|
|
|
while (ptr < base) {
|
|
|
|
if (*ptr == '/') {
|
2019-09-10 18:32:38 +00:00
|
|
|
i += 2; /* 2 characters added */
|
|
|
|
if (ncols < i + MIN_DISPLAY_COLS) {
|
|
|
|
base = NULL; /* Can't print more characters */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-09 18:11:45 +00:00
|
|
|
addch(*ptr);
|
|
|
|
addch(*(++ptr));
|
|
|
|
}
|
|
|
|
++ptr;
|
2019-09-08 09:43:44 +00:00
|
|
|
}
|
2019-09-09 18:11:45 +00:00
|
|
|
}
|
2020-04-11 17:46:59 +00:00
|
|
|
|
|
|
|
addnstr(base, ncols - (MIN_DISPLAY_COLS + i));
|
2019-09-08 09:43:44 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
attroff(A_UNDERLINE | COLOR_PAIR(cfg.curctx + 1));
|
2020-03-16 16:09:44 +00:00
|
|
|
|
2020-04-18 21:41:12 +00:00
|
|
|
/* Go to first entry */
|
|
|
|
move(2, 0);
|
2019-09-09 18:11:45 +00:00
|
|
|
|
2020-01-12 18:03:42 +00:00
|
|
|
ncols = adjust_cols(ncols);
|
2017-06-30 01:54:24 +00:00
|
|
|
|
2020-08-05 14:35:27 +00:00
|
|
|
if (g_state.oldcolor) {
|
2020-08-04 15:06:19 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
g_state.dircolor = 1;
|
|
|
|
}
|
2020-01-14 19:27:02 +00:00
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
/* Print listing */
|
2019-10-24 03:14:36 +00:00
|
|
|
for (i = curscroll; i < ndents && i < curscroll + onscreen; ++i)
|
2020-06-22 03:47:59 +00:00
|
|
|
printptr(&pdents[i], ncols, i == cur);
|
2017-03-29 21:15:46 +00:00
|
|
|
|
2017-06-30 12:20:38 +00:00
|
|
|
/* Must reset e.g. no files in dir */
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.dircolor) {
|
2019-08-03 18:25:02 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.dircolor = 0;
|
2017-06-30 12:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-01-11 17:48:24 +00:00
|
|
|
statusbar(path);
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 11:55:11 +00:00
|
|
|
static bool cdprep(char *lastdir, char *lastname, char *path, char *newpath)
|
|
|
|
{
|
|
|
|
if (lastname)
|
|
|
|
lastname[0] = '\0';
|
|
|
|
|
|
|
|
/* Save last working directory */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastdir, path, PATH_MAX);
|
2020-03-29 11:55:11 +00:00
|
|
|
|
|
|
|
/* Save the newly opted dir in path */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(path, newpath, PATH_MAX);
|
2020-03-29 11:55:11 +00:00
|
|
|
DPRINTF_S(path);
|
|
|
|
|
|
|
|
clearfilter();
|
|
|
|
return cfg.filtermode;
|
|
|
|
}
|
|
|
|
|
2020-05-18 03:35:19 +00:00
|
|
|
static bool browse(char *ipath, const char *session, int pkey)
|
2015-07-01 23:56:47 +00:00
|
|
|
{
|
2018-12-16 15:33:28 +00:00
|
|
|
char newpath[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
char rundir[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
char runfile[NAME_MAX + 1] __attribute__ ((aligned));
|
2020-05-24 03:58:29 +00:00
|
|
|
char *path, *lastdir, *lastname, *dir, *tmp;
|
2020-08-14 02:50:01 +00:00
|
|
|
pEntry pent;
|
2018-12-01 01:53:29 +00:00
|
|
|
enum action sel;
|
2019-02-27 17:06:22 +00:00
|
|
|
struct stat sb;
|
2020-03-25 15:22:27 +00:00
|
|
|
int r = -1, presel, selstartid = 0, selendid = 0;
|
2019-12-18 20:23:11 +00:00
|
|
|
const uchar opener_flags = (cfg.cliopener ? F_CLI : (F_NOTRACE | F_NOWAIT));
|
2020-03-29 11:55:11 +00:00
|
|
|
bool watch = FALSE;
|
2020-02-14 02:51:30 +00:00
|
|
|
|
|
|
|
#ifndef NOMOUSE
|
|
|
|
MEVENT event;
|
|
|
|
struct timespec mousetimings[2] = {{.tv_sec = 0, .tv_nsec = 0}, {.tv_sec = 0, .tv_nsec = 0} };
|
2020-05-05 12:32:42 +00:00
|
|
|
int mousedent[2] = {-1, -1};
|
2020-06-03 10:42:27 +00:00
|
|
|
bool currentmouse = 1, rightclicksel = 0;
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
|
|
|
|
2020-01-21 17:39:05 +00:00
|
|
|
#ifndef DIR_LIMITED_SELECTION
|
|
|
|
ino_t inode = 0;
|
|
|
|
#endif
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2019-03-13 17:49:35 +00:00
|
|
|
atexit(dentfree);
|
|
|
|
|
2020-02-19 13:34:51 +00:00
|
|
|
xlines = LINES;
|
|
|
|
xcols = COLS;
|
|
|
|
|
2018-11-08 12:42:55 +00:00
|
|
|
/* setup first context */
|
2019-12-20 10:00:53 +00:00
|
|
|
if (!session || !load_session(session, &path, &lastdir, &lastname, FALSE)) {
|
2020-05-23 22:00:51 +00:00
|
|
|
g_ctx[0].c_last[0] = '\0';
|
2019-10-18 22:11:39 +00:00
|
|
|
lastdir = g_ctx[0].c_last; /* last visited directory */
|
2020-05-23 22:00:51 +00:00
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.initfile) {
|
2020-05-23 22:00:51 +00:00
|
|
|
xstrsncpy(g_ctx[0].c_name, xbasename(ipath), sizeof(g_ctx[0].c_name));
|
|
|
|
xdirname(ipath);
|
|
|
|
} else
|
|
|
|
g_ctx[0].c_name[0] = '\0';
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
lastname = g_ctx[0].c_name; /* last visited filename */
|
2020-05-23 22:00:51 +00:00
|
|
|
|
|
|
|
xstrsncpy(g_ctx[0].c_path, ipath, PATH_MAX);
|
|
|
|
path = g_ctx[0].c_path; /* current directory */
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
g_ctx[0].c_fltr[0] = g_ctx[0].c_fltr[1] = '\0';
|
|
|
|
g_ctx[0].c_cfg = cfg; /* current configuration */
|
|
|
|
}
|
|
|
|
|
2019-12-27 15:52:27 +00:00
|
|
|
newpath[0] = rundir[0] = runfile[0] = '\0';
|
2017-06-03 23:19:16 +00:00
|
|
|
|
2020-05-18 03:35:19 +00:00
|
|
|
presel = pkey ? ';' : (cfg.filtermode ? FILTER : 0);
|
2017-06-03 23:19:16 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
pdents = xrealloc(pdents, total_dents * sizeof(struct entry));
|
|
|
|
if (!pdents)
|
2018-01-04 00:53:20 +00:00
|
|
|
errexit();
|
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
/* Allocate buffer to hold names */
|
2018-01-04 12:16:06 +00:00
|
|
|
pnamebuf = (char *)xrealloc(pnamebuf, NAMEBUF_INCR);
|
2019-03-13 17:49:35 +00:00
|
|
|
if (!pnamebuf)
|
2017-12-18 19:46:03 +00:00
|
|
|
errexit();
|
|
|
|
|
2015-07-01 23:56:47 +00:00
|
|
|
begin:
|
2020-01-16 21:10:02 +00:00
|
|
|
/* Can fail when permissions change while browsing.
|
|
|
|
* It's assumed that path IS a directory when we are here.
|
|
|
|
*/
|
2020-05-10 10:53:45 +00:00
|
|
|
if (chdir(path) == -1) {
|
2020-01-16 21:10:02 +00:00
|
|
|
DPRINTF_S("directory inaccessible");
|
2020-04-12 11:42:14 +00:00
|
|
|
valid_parent(path, lastname);
|
2020-01-16 21:10:02 +00:00
|
|
|
setdirwatch();
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:13:49 +00:00
|
|
|
if (g_state.selmode && lastdir[0])
|
2019-12-12 20:27:58 +00:00
|
|
|
lastappendpos = selbufpos;
|
2019-11-28 17:42:49 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2020-03-29 11:55:11 +00:00
|
|
|
if ((presel == FILTER || watch) && inotify_wd >= 0) {
|
2017-08-20 20:48:14 +00:00
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
2017-10-01 10:43:35 +00:00
|
|
|
inotify_wd = -1;
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = FALSE;
|
2017-10-01 10:43:35 +00:00
|
|
|
}
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2020-03-29 11:55:11 +00:00
|
|
|
if ((presel == FILTER || watch) && event_fd >= 0) {
|
2017-08-21 16:33:26 +00:00
|
|
|
close(event_fd);
|
2017-10-01 10:43:35 +00:00
|
|
|
event_fd = -1;
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = FALSE;
|
2017-10-01 10:43:35 +00:00
|
|
|
}
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
2020-03-29 11:55:11 +00:00
|
|
|
if ((presel == FILTER || watch) && haiku_hnd != NULL) {
|
2019-12-27 18:02:20 +00:00
|
|
|
haiku_stop_watch(haiku_hnd);
|
|
|
|
haiku_nm_active = FALSE;
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = FALSE;
|
2019-12-27 18:02:20 +00:00
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
populate(path, lastname);
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.interrupt) {
|
|
|
|
g_state.interrupt = 0;
|
2019-02-08 15:01:37 +00:00
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
2019-10-30 17:13:22 +00:00
|
|
|
blk_shift = BLK_SHIFT_512;
|
2019-02-08 17:46:06 +00:00
|
|
|
presel = CONTROL('L');
|
2019-02-08 15:01:37 +00:00
|
|
|
}
|
2019-01-20 20:46:06 +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)
|
2017-10-01 10:43:35 +00:00
|
|
|
inotify_wd = inotify_add_watch(inotify_fd, path, INOTIFY_MASK);
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2019-02-01 03:21:22 +00:00
|
|
|
if (presel != FILTER && event_fd == -1) {
|
2017-10-08 01:42:12 +00:00
|
|
|
#if defined(O_EVTONLY)
|
2017-10-01 10:43:35 +00:00
|
|
|
event_fd = open(path, O_EVTONLY);
|
2017-10-08 01:42:12 +00:00
|
|
|
#else
|
|
|
|
event_fd = open(path, O_RDONLY);
|
|
|
|
#endif
|
2017-10-01 10:43:35 +00:00
|
|
|
if (event_fd >= 0)
|
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-10-01 10:43:35 +00:00
|
|
|
}
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
2020-05-10 04:34:03 +00:00
|
|
|
haiku_nm_active = haiku_watch_dir(haiku_hnd, path) == EXIT_SUCCESS;
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-16 15:33:28 +00:00
|
|
|
while (1) {
|
2020-04-16 12:15:58 +00:00
|
|
|
/* Do not do a double redraw in filterentries */
|
|
|
|
if ((presel != FILTER) || !filterset())
|
|
|
|
redraw(path);
|
2020-02-01 16:30:53 +00:00
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
nochange:
|
2017-04-25 19:12:07 +00:00
|
|
|
/* Exit if parent has exited */
|
2020-05-24 03:58:29 +00:00
|
|
|
if (getppid() == 1)
|
2020-05-10 04:27:20 +00:00
|
|
|
_exit(EXIT_FAILURE);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2019-07-12 13:07:12 +00:00
|
|
|
/* If CWD is deleted or moved or perms changed, find an accessible parent */
|
2020-05-10 10:53:45 +00:00
|
|
|
if (chdir(path) == -1)
|
2019-07-11 22:45:55 +00:00
|
|
|
goto begin;
|
2019-06-04 18:02:23 +00:00
|
|
|
|
2019-08-19 15:42:42 +00:00
|
|
|
/* If STDIN is no longer a tty (closed) we should exit */
|
2020-06-09 17:33:36 +00:00
|
|
|
if (!isatty(STDIN_FILENO) && !g_state.picker)
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2019-03-10 23:55:17 +00:00
|
|
|
sel = nextsel(presel);
|
2020-03-30 21:02:13 +00:00
|
|
|
if (presel)
|
2019-03-10 23:55:17 +00:00
|
|
|
presel = 0;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-04-08 05:44:51 +00:00
|
|
|
switch (sel) {
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2019-05-18 05:25:17 +00:00
|
|
|
case SEL_CLICK:
|
|
|
|
if (getmouse(&event) != OK)
|
2020-02-14 01:47:09 +00:00
|
|
|
goto nochange;
|
|
|
|
|
2019-07-12 15:36:37 +00:00
|
|
|
/* Handle clicking on a context at the top */
|
2020-02-14 01:47:09 +00:00
|
|
|
if (event.bstate == BUTTON1_PRESSED && event.y == 0) {
|
2019-07-12 15:36:37 +00:00
|
|
|
/* Get context from: "[1 2 3 4]..." */
|
|
|
|
r = event.x >> 1;
|
|
|
|
|
|
|
|
/* If clicked after contexts, go to parent */
|
|
|
|
if (r >= CTX_MAX)
|
|
|
|
sel = SEL_BACK;
|
2020-02-14 01:47:09 +00:00
|
|
|
else if (r >= 0 && r != cfg.curctx) {
|
2020-06-09 18:13:49 +00:00
|
|
|
if (g_state.selmode)
|
2019-12-12 20:27:58 +00:00
|
|
|
lastappendpos = selbufpos;
|
2019-12-12 15:59:48 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
savecurctx(&cfg, path, pdents[cur].name, r);
|
2019-07-12 15:36:37 +00:00
|
|
|
|
|
|
|
/* Reset the pointers */
|
|
|
|
path = g_ctx[r].c_path;
|
|
|
|
lastdir = g_ctx[r].c_last;
|
|
|
|
lastname = g_ctx[r].c_name;
|
|
|
|
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
2020-02-14 02:51:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
// fallthrough
|
2020-02-14 01:47:09 +00:00
|
|
|
case SEL_BACK:
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2019-07-12 15:36:37 +00:00
|
|
|
if (sel == SEL_BACK) {
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2019-05-18 05:25:17 +00:00
|
|
|
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 history */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, xbasename(path), NAME_MAX + 1);
|
2019-04-11 14:19:42 +00:00
|
|
|
|
2020-03-29 11:55:11 +00:00
|
|
|
cdprep(lastdir, NULL, path, dir) ? (presel = FILTER) : (watch = TRUE);
|
2019-05-18 05:25:17 +00:00
|
|
|
goto begin;
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2019-05-18 05:25:17 +00:00
|
|
|
}
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2019-05-08 15:26:44 +00:00
|
|
|
|
2020-02-14 02:51:30 +00:00
|
|
|
#ifndef NOMOUSE
|
2020-03-11 03:39:57 +00:00
|
|
|
/* Middle click action */
|
|
|
|
if (event.bstate == BUTTON2_PRESSED) {
|
|
|
|
presel = middle_click_key;
|
|
|
|
goto nochange;
|
|
|
|
}
|
2019-07-12 14:20:30 +00:00
|
|
|
#if NCURSES_MOUSE_VERSION > 1
|
2019-07-12 15:36:37 +00:00
|
|
|
/* Scroll up */
|
2019-12-02 12:54:59 +00:00
|
|
|
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
|
2020-05-10 05:51:37 +00:00
|
|
|
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
|
2019-07-12 15:36:37 +00:00
|
|
|
break;
|
2019-07-12 14:20:30 +00:00
|
|
|
}
|
2019-05-08 00:38:07 +00:00
|
|
|
|
2019-07-12 15:36:37 +00:00
|
|
|
/* Scroll down */
|
2019-12-02 12:54:59 +00:00
|
|
|
if (event.bstate == BUTTON5_PRESSED && ndents
|
|
|
|
&& (cfg.rollover || (cur != ndents - 1))) {
|
2020-05-10 05:51:37 +00:00
|
|
|
move_cursor((cur + scroll_lines) % ndents, 0);
|
2019-07-12 15:36:37 +00:00
|
|
|
break;
|
2019-05-08 00:38:07 +00:00
|
|
|
}
|
2019-07-12 15:36:37 +00:00
|
|
|
#endif
|
2019-05-08 15:26:44 +00:00
|
|
|
|
2019-07-28 07:40:56 +00:00
|
|
|
/* Toggle filter mode on left click on last 2 lines */
|
2019-10-14 12:25:04 +00:00
|
|
|
if (event.y >= xlines - 2 && event.bstate == BUTTON1_PRESSED) {
|
2019-12-26 12:24:58 +00:00
|
|
|
clearfilter();
|
2019-07-12 16:58:44 +00:00
|
|
|
cfg.filtermode ^= 1;
|
|
|
|
if (cfg.filtermode) {
|
|
|
|
presel = FILTER;
|
2019-05-08 22:41:29 +00:00
|
|
|
goto nochange;
|
2019-07-12 16:58:44 +00:00
|
|
|
}
|
2019-05-08 22:41:29 +00:00
|
|
|
|
2019-07-12 16:58:44 +00:00
|
|
|
/* Start watching the directory */
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = TRUE;
|
2019-07-12 16:58:44 +00:00
|
|
|
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle clicking on a file */
|
2020-03-01 07:10:35 +00:00
|
|
|
if (event.y >= 2 && event.y <= ndents + 1 &&
|
|
|
|
(event.bstate == BUTTON1_PRESSED ||
|
|
|
|
event.bstate == BUTTON3_PRESSED)) {
|
2019-08-06 20:33:52 +00:00
|
|
|
r = curscroll + (event.y - 2);
|
2020-06-02 10:59:26 +00:00
|
|
|
if (r != cur)
|
|
|
|
move_cursor(r, 1);
|
|
|
|
#ifndef NOFIFO
|
2020-06-03 09:21:52 +00:00
|
|
|
else if (event.bstate == BUTTON1_PRESSED)
|
2020-06-02 10:59:26 +00:00
|
|
|
notify_fifo(TRUE);
|
|
|
|
#endif
|
2020-03-01 07:10:35 +00:00
|
|
|
/* Handle right click selection */
|
|
|
|
if (event.bstate == BUTTON3_PRESSED) {
|
|
|
|
rightclicksel = 1;
|
2020-03-01 07:14:28 +00:00
|
|
|
presel = SELECT;
|
|
|
|
goto nochange;
|
2020-03-01 07:10:35 +00:00
|
|
|
}
|
|
|
|
|
2019-10-14 12:25:04 +00:00
|
|
|
currentmouse ^= 1;
|
2019-10-16 01:37:45 +00:00
|
|
|
clock_gettime(
|
|
|
|
#if defined(CLOCK_MONOTONIC_RAW)
|
|
|
|
CLOCK_MONOTONIC_RAW,
|
|
|
|
#elif defined(CLOCK_MONOTONIC)
|
|
|
|
CLOCK_MONOTONIC,
|
|
|
|
#else
|
|
|
|
CLOCK_REALTIME,
|
|
|
|
#endif
|
|
|
|
&mousetimings[currentmouse]);
|
2020-05-05 12:32:42 +00:00
|
|
|
mousedent[currentmouse] = cur;
|
2019-05-08 22:41:29 +00:00
|
|
|
|
2020-08-15 14:51:22 +00:00
|
|
|
/* Single click just selects, double click falls through to SEL_OPEN */
|
2020-05-05 12:32:42 +00:00
|
|
|
if ((mousedent[0] != mousedent[1]) ||
|
|
|
|
(((_ABSSUB(mousetimings[0].tv_sec, mousetimings[1].tv_sec) << 30)
|
|
|
|
+ (_ABSSUB(mousetimings[0].tv_nsec, mousetimings[1].tv_nsec)))
|
|
|
|
> DOUBLECLICK_INTERVAL_NS))
|
2019-08-06 20:33:52 +00:00
|
|
|
break;
|
2019-10-14 12:25:04 +00:00
|
|
|
mousetimings[currentmouse].tv_sec = 0;
|
2020-05-05 12:32:42 +00:00
|
|
|
mousedent[currentmouse] = -1;
|
2020-03-28 19:12:20 +00:00
|
|
|
} else {
|
|
|
|
if (cfg.filtermode || filterset())
|
|
|
|
presel = FILTER;
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2020-03-28 06:55:35 +00:00
|
|
|
goto nochange;
|
2020-03-28 19:12:20 +00:00
|
|
|
}
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2020-03-28 06:55:35 +00:00
|
|
|
// fallthrough
|
2018-11-26 18:54:12 +00:00
|
|
|
case SEL_NAV_IN: // fallthrough
|
2020-08-15 14:51:22 +00:00
|
|
|
case SEL_OPEN:
|
2014-10-07 14:07:56 +00:00
|
|
|
/* Cannot descend in empty directories */
|
2018-09-02 15:49:58 +00:00
|
|
|
if (!ndents)
|
2017-04-28 23:02:47 +00:00
|
|
|
goto begin;
|
2014-10-07 14:07:56 +00:00
|
|
|
|
2020-08-14 02:50:01 +00:00
|
|
|
pent = &pdents[cur];
|
|
|
|
mkpath(path, pent->name, newpath);
|
2014-10-23 14:37:12 +00:00
|
|
|
DPRINTF_S(newpath);
|
2014-10-08 07:52:44 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* Visit directory */
|
2020-08-14 02:50:01 +00:00
|
|
|
if (pent->flags & DIR_OR_LINK_TO_DIR) {
|
2020-05-10 13:45:40 +00:00
|
|
|
if (chdir(newpath) == -1) {
|
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
cdprep(lastdir, lastname, path, newpath) ? (presel = FILTER) : (watch = TRUE);
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
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);
|
2014-10-22 21:31:45 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2014-10-08 15:37:55 +00:00
|
|
|
DPRINTF_U(sb.st_mode);
|
2014-10-22 15:55:26 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* Do not open non-regular files */
|
|
|
|
if (!S_ISREG(sb.st_mode)) {
|
|
|
|
printwait(messages[MSG_UNSUPPORTED], &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
2018-11-29 14:13:53 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* If opened as vim plugin and Enter/^M pressed, pick */
|
2020-08-15 14:51:22 +00:00
|
|
|
if (g_state.picker && sel == SEL_OPEN) {
|
2020-08-14 02:50:01 +00:00
|
|
|
appendfpath(newpath, mkpath(path, pent->name, newpath));
|
2020-06-27 18:39:48 +00:00
|
|
|
writesel(pselbuf, selbufpos - 1);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2018-11-26 18:54:12 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
if (sel == SEL_NAV_IN) {
|
|
|
|
/* If in listing dir, go to target on `l` or Right on symlink */
|
2020-08-14 02:50:01 +00:00
|
|
|
if (listpath && S_ISLNK(pent->mode)
|
2020-08-03 16:55:42 +00:00
|
|
|
&& is_prefix(path, listpath, xstrlen(listpath))) {
|
2020-08-14 02:50:01 +00:00
|
|
|
if (!realpath(pent->name, newpath)) {
|
2020-06-27 18:39:48 +00:00
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
xdirname(newpath);
|
|
|
|
|
|
|
|
if (chdir(newpath) == -1) {
|
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
2019-11-17 04:35:23 +00:00
|
|
|
}
|
2020-06-27 18:39:48 +00:00
|
|
|
|
2020-07-07 02:27:43 +00:00
|
|
|
/* Mark current directory */
|
2020-07-07 01:59:38 +00:00
|
|
|
free(mark);
|
|
|
|
mark = xstrdup(path);
|
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
cdprep(lastdir, NULL, path, newpath)
|
|
|
|
? (presel = FILTER) : (watch = TRUE);
|
2020-08-14 02:50:01 +00:00
|
|
|
xstrsncpy(lastname, pent->name, NAME_MAX + 1);
|
2020-06-27 18:39:48 +00:00
|
|
|
goto begin;
|
2018-12-15 18:54:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* Open file disabled on right arrow or `l` */
|
|
|
|
if (cfg.nonavopen)
|
2020-05-03 22:38:12 +00:00
|
|
|
goto nochange;
|
2020-06-27 18:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle plugin selection mode */
|
|
|
|
if (g_state.runplugin) {
|
|
|
|
g_state.runplugin = 0;
|
|
|
|
/* Must be in plugin dir and same context to select plugin */
|
|
|
|
if ((g_state.runctx == cfg.curctx) && !strcmp(path, plgpath)) {
|
|
|
|
endselection();
|
|
|
|
/* Copy path so we can return back to earlier dir */
|
|
|
|
xstrsncpy(path, rundir, PATH_MAX);
|
|
|
|
rundir[0] = '\0';
|
|
|
|
|
|
|
|
if (chdir(path) == -1
|
2020-08-14 02:50:01 +00:00
|
|
|
|| !run_selected_plugin(&path, pent->name,
|
2020-06-27 18:39:48 +00:00
|
|
|
runfile, &lastname, &lastdir)) {
|
|
|
|
DPRINTF_S("plugin failed!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runfile[0])
|
|
|
|
runfile[0] = '\0';
|
|
|
|
clearfilter();
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
2020-05-03 22:38:12 +00:00
|
|
|
}
|
2020-06-27 18:39:48 +00:00
|
|
|
}
|
2020-05-03 22:38:12 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
if (!sb.st_size) {
|
|
|
|
printwait(messages[MSG_EMPTY_FILE], &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cfg.useeditor
|
|
|
|
#ifdef FILE_MIME
|
|
|
|
&& get_output(g_buf, CMD_LEN_MAX, "file", FILE_MIME_OPTS, newpath, FALSE)
|
|
|
|
&& is_prefix(g_buf, "text/", 5)
|
2019-10-16 01:37:45 +00:00
|
|
|
#else
|
2020-06-27 18:39:48 +00:00
|
|
|
/* no mime option; guess from description instead */
|
|
|
|
&& get_output(g_buf, CMD_LEN_MAX, "file", "-b", newpath, FALSE)
|
|
|
|
&& strstr(g_buf, "text")
|
2019-10-16 01:37:45 +00:00
|
|
|
#endif
|
2020-06-27 18:39:48 +00:00
|
|
|
) {
|
|
|
|
spawn(editor, newpath, NULL, F_CLI);
|
|
|
|
continue;
|
|
|
|
}
|
2016-08-21 02:55:12 +00:00
|
|
|
|
2020-08-14 02:50:01 +00:00
|
|
|
/* Get the extension for regext match */
|
|
|
|
tmp = xextension(pent->name, pent->nlen - 1);
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
2020-08-14 02:50:01 +00:00
|
|
|
if (tmp && !pcre_exec(archive_pcre, NULL, tmp,
|
|
|
|
pent->nlen - (tmp - pent->name) - 1, 0, 0, NULL, 0)) {
|
2020-01-23 18:54:51 +00:00
|
|
|
#else
|
2020-08-14 02:50:01 +00:00
|
|
|
if (tmp && !regexec(&archive_re, tmp, 0, NULL, 0)) {
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2020-06-27 18:39:48 +00:00
|
|
|
r = get_input(messages[MSG_ARCHIVE_OPTS]);
|
|
|
|
if (r == 'l' || r == 'x') {
|
2020-08-14 02:50:01 +00:00
|
|
|
mkpath(path, pent->name, newpath);
|
2020-06-27 18:39:48 +00:00
|
|
|
handle_archive(newpath, r);
|
|
|
|
if (r == 'l') {
|
|
|
|
statusbar(path);
|
|
|
|
goto nochange;
|
2019-12-29 17:51:18 +00:00
|
|
|
}
|
2020-06-27 18:39:48 +00:00
|
|
|
copycurname();
|
|
|
|
clearfilter();
|
|
|
|
goto begin;
|
|
|
|
}
|
2019-12-29 17:51:18 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
if (r == 'm') {
|
|
|
|
if (!archive_mount(newpath)) {
|
|
|
|
presel = MSGWAIT;
|
|
|
|
goto nochange;
|
|
|
|
}
|
2020-03-28 06:55:35 +00:00
|
|
|
|
2020-07-07 02:27:43 +00:00
|
|
|
/* Mark current directory */
|
2020-06-27 18:39:48 +00:00
|
|
|
free(mark);
|
|
|
|
mark = xstrdup(path);
|
2020-06-27 16:52:20 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
cdprep(lastdir, lastname, path, newpath)
|
|
|
|
? (presel = FILTER) : (watch = TRUE);
|
|
|
|
goto begin;
|
|
|
|
}
|
2019-12-29 17:51:18 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
if (r != 'd') {
|
|
|
|
printwait(messages[MSG_INVALID_KEY], &presel);
|
|
|
|
goto nochange;
|
2019-12-29 17:51:18 +00:00
|
|
|
}
|
2020-06-27 18:39:48 +00:00
|
|
|
}
|
2019-12-29 17:51:18 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* Invoke desktop opener as last resort */
|
|
|
|
spawn(opener, newpath, NULL, opener_flags);
|
2020-01-30 20:15:06 +00:00
|
|
|
|
2020-06-27 18:39:48 +00:00
|
|
|
/* Move cursor to the next entry if not the last entry */
|
|
|
|
if (g_state.autonext && cur != ndents - 1)
|
|
|
|
move_cursor((cur + 1) % ndents, 0);
|
|
|
|
continue;
|
2019-10-19 03:31:23 +00:00
|
|
|
case SEL_NEXT: // fallthrough
|
|
|
|
case SEL_PREV: // fallthrough
|
|
|
|
case SEL_PGDN: // fallthrough
|
|
|
|
case SEL_CTRL_D: // fallthrough
|
|
|
|
case SEL_PGUP: // fallthrough
|
|
|
|
case SEL_CTRL_U: // fallthrough
|
|
|
|
case SEL_HOME: // fallthrough
|
2019-12-11 14:36:12 +00:00
|
|
|
case SEL_END: // fallthrough
|
|
|
|
case SEL_FIRST:
|
2020-06-27 18:18:23 +00:00
|
|
|
if (ndents) {
|
|
|
|
g_state.move = 1;
|
2020-04-15 22:12:36 +00:00
|
|
|
handle_screen_move(sel);
|
2020-06-27 18:18:23 +00:00
|
|
|
}
|
2014-11-06 08:54:20 +00:00
|
|
|
break;
|
2019-01-19 16:20:30 +00:00
|
|
|
case SEL_CDHOME: // fallthrough
|
|
|
|
case SEL_CDBEGIN: // fallthrough
|
|
|
|
case SEL_CDLAST: // fallthrough
|
2019-12-29 12:28:48 +00:00
|
|
|
case SEL_CDROOT:
|
2020-08-01 17:50:55 +00:00
|
|
|
dir = (sel == SEL_CDHOME) ? home
|
|
|
|
: ((sel == SEL_CDBEGIN) ? ipath
|
|
|
|
: ((sel == SEL_CDLAST) ? lastdir
|
|
|
|
: "/" /* SEL_CDROOT */));
|
2019-01-19 15:52:03 +00:00
|
|
|
|
2019-12-27 15:52:27 +00:00
|
|
|
if (!dir || !*dir) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_NOT_SET], &presel);
|
2019-01-19 15:52:03 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-25 04:31:52 +00:00
|
|
|
|
2020-02-29 01:02:02 +00:00
|
|
|
if (strcmp(path, dir) == 0) {
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2019-04-13 00:10:34 +00:00
|
|
|
goto nochange;
|
2020-02-29 01:02:02 +00:00
|
|
|
}
|
2017-04-23 21:06:49 +00:00
|
|
|
|
2020-05-10 10:53:45 +00:00
|
|
|
if (chdir(dir) == -1) {
|
|
|
|
presel = MSGWAIT;
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2019-01-19 15:52:03 +00:00
|
|
|
/* SEL_CDLAST: dir pointing to lastdir */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(newpath, dir, PATH_MAX); // fallthrough
|
2019-12-28 19:08:03 +00:00
|
|
|
case SEL_BOOKMARK:
|
2020-03-29 11:55:11 +00:00
|
|
|
if (sel == SEL_BOOKMARK) {
|
|
|
|
r = (int)handle_bookmark(mark, newpath);
|
|
|
|
if (r) {
|
|
|
|
printwait(messages[r], &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2020-03-29 11:55:11 +00:00
|
|
|
if (strcmp(path, newpath) == 0)
|
|
|
|
break;
|
|
|
|
} // fallthrough
|
|
|
|
case SEL_REMOTE:
|
2020-06-06 10:51:43 +00:00
|
|
|
if (sel == SEL_REMOTE && !remote_mount(newpath)) {
|
2020-03-29 14:52:43 +00:00
|
|
|
presel = MSGWAIT;
|
2020-03-29 11:55:11 +00:00
|
|
|
goto nochange;
|
2020-03-29 14:52:43 +00:00
|
|
|
}
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2020-07-07 02:27:43 +00:00
|
|
|
/* Mark current directory */
|
2020-06-27 16:52:20 +00:00
|
|
|
free(mark);
|
|
|
|
mark = xstrdup(path);
|
|
|
|
|
2020-05-17 17:24:39 +00:00
|
|
|
/* In list mode, retain the last file name to highlight it, if possible */
|
|
|
|
cdprep(lastdir, listpath && sel == SEL_CDLAST ? NULL : lastname, path, newpath)
|
|
|
|
? (presel = FILTER) : (watch = TRUE);
|
2019-12-28 19:08:03 +00:00
|
|
|
goto begin;
|
|
|
|
case SEL_CYCLE: // fallthrough
|
|
|
|
case SEL_CYCLER: // fallthrough
|
|
|
|
case SEL_CTX1: // fallthrough
|
|
|
|
case SEL_CTX2: // fallthrough
|
|
|
|
case SEL_CTX3: // fallthrough
|
|
|
|
case SEL_CTX4:
|
2020-05-30 01:29:45 +00:00
|
|
|
#ifdef CTX8
|
|
|
|
case SEL_CTX5:
|
|
|
|
case SEL_CTX6:
|
|
|
|
case SEL_CTX7:
|
|
|
|
case SEL_CTX8:
|
|
|
|
#endif
|
2020-04-02 15:17:15 +00:00
|
|
|
r = handle_context_switch(sel);
|
2019-12-28 19:08:03 +00:00
|
|
|
if (r < 0)
|
|
|
|
continue;
|
2020-06-22 03:47:59 +00:00
|
|
|
savecurctx(&cfg, path, pdents[cur].name, r);
|
2019-12-28 19:08:03 +00:00
|
|
|
|
|
|
|
/* Reset the pointers */
|
|
|
|
path = g_ctx[r].c_path;
|
|
|
|
lastdir = g_ctx[r].c_last;
|
|
|
|
lastname = g_ctx[r].c_name;
|
2020-02-26 14:02:54 +00:00
|
|
|
tmp = g_ctx[r].c_fltr;
|
|
|
|
|
|
|
|
if (cfg.filtermode || ((tmp[0] == FILTER || tmp[0] == RFILTER) && tmp[1]))
|
|
|
|
presel = FILTER;
|
|
|
|
else
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = TRUE;
|
2019-12-28 19:08:03 +00:00
|
|
|
|
2017-04-08 08:16:03 +00:00
|
|
|
goto begin;
|
2020-07-07 02:27:43 +00:00
|
|
|
case SEL_MARK:
|
2019-12-27 15:52:27 +00:00
|
|
|
free(mark);
|
2020-04-15 09:30:40 +00:00
|
|
|
mark = xstrdup(path);
|
2019-12-25 16:47:50 +00:00
|
|
|
printwait(mark, &presel);
|
2017-08-20 11:17:23 +00:00
|
|
|
goto nochange;
|
2017-12-12 20:16:50 +00:00
|
|
|
case SEL_FLTR:
|
2019-01-30 13:49:14 +00:00
|
|
|
/* Unwatch dir if we are still in a filtered view */
|
|
|
|
#ifdef LINUX_INOTIFY
|
|
|
|
if (inotify_wd >= 0) {
|
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
|
|
|
inotify_wd = -1;
|
|
|
|
}
|
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
if (event_fd >= 0) {
|
|
|
|
close(event_fd);
|
|
|
|
event_fd = -1;
|
|
|
|
}
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
|
|
|
if (haiku_nm_active) {
|
|
|
|
haiku_stop_watch(haiku_hnd);
|
|
|
|
haiku_nm_active = FALSE;
|
|
|
|
}
|
2019-01-30 13:49:14 +00:00
|
|
|
#endif
|
2019-12-26 07:04:01 +00:00
|
|
|
presel = filterentries(path, lastname);
|
2019-02-27 15:33:14 +00:00
|
|
|
|
2020-08-17 15:27:15 +00:00
|
|
|
if (presel == ESC) {
|
2019-03-13 03:03:17 +00:00
|
|
|
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
|
2020-01-18 14:25:09 +00:00
|
|
|
case SEL_HIDDEN: // fallthrough
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_DETAIL: // fallthrough
|
2020-01-15 04:35:19 +00:00
|
|
|
case SEL_SORT:
|
2018-12-16 14:15:16 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_MFLTR:
|
|
|
|
cfg.filtermode ^= 1;
|
|
|
|
if (cfg.filtermode) {
|
|
|
|
presel = FILTER;
|
2019-12-26 12:24:58 +00:00
|
|
|
clearfilter();
|
2018-12-16 14:15:16 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2018-11-09 19:26:21 +00:00
|
|
|
|
2020-03-29 11:55:11 +00:00
|
|
|
watch = TRUE; // fallthrough
|
2020-01-18 14:25:09 +00:00
|
|
|
case SEL_HIDDEN:
|
2020-03-29 11:55:11 +00:00
|
|
|
if (sel == SEL_HIDDEN) {
|
|
|
|
cfg.showhidden ^= 1;
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
clearfilter();
|
|
|
|
}
|
2020-01-11 12:53:46 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
goto begin;
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_DETAIL:
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
cfg.showdetail ? (printptr = &printent_long) : (printptr = &printent);
|
2019-09-14 23:26:54 +00:00
|
|
|
cfg.blkorder = 0;
|
2019-03-12 21:22:50 +00:00
|
|
|
continue;
|
2020-01-15 04:35:19 +00:00
|
|
|
default: /* SEL_SORT */
|
2020-03-28 19:12:20 +00:00
|
|
|
r = set_sort_flags(get_input(messages[MSG_ORDER]));
|
|
|
|
if (!r) {
|
2020-01-13 13:09:54 +00:00
|
|
|
printwait(messages[MSG_INVALID_KEY], &presel);
|
2020-01-12 22:19:28 +00:00
|
|
|
goto nochange;
|
2020-01-09 18:21:41 +00:00
|
|
|
}
|
2018-12-16 14:15:16 +00:00
|
|
|
}
|
2018-11-09 19:26:21 +00:00
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
if (cfg.filtermode || filterset())
|
|
|
|
presel = FILTER;
|
|
|
|
|
2020-03-30 21:02:13 +00:00
|
|
|
if (ndents) {
|
|
|
|
copycurname();
|
2020-01-12 19:52:51 +00:00
|
|
|
|
2020-03-30 21:02:13 +00:00
|
|
|
if (r == 'd' || r == 'a')
|
|
|
|
goto begin;
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
qsort(pdents, ndents, sizeof(*pdents), entrycmpfn);
|
2020-03-30 21:02:13 +00:00
|
|
|
move_cursor(ndents ? dentfind(lastname, ndents) : 0, 0);
|
|
|
|
}
|
2020-03-28 21:01:48 +00:00
|
|
|
continue;
|
2020-01-02 17:43:56 +00:00
|
|
|
case SEL_STATS: // fallthrough
|
|
|
|
case SEL_CHMODX:
|
2019-10-20 00:05:41 +00:00
|
|
|
if (ndents) {
|
2020-06-08 04:14:53 +00:00
|
|
|
tmp = (listpath && xstrcmp(path, listpath) == 0) ? listroot : path;
|
2020-06-22 03:47:59 +00:00
|
|
|
mkpath(tmp, pdents[cur].name, newpath);
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-01-02 17:43:56 +00:00
|
|
|
if (lstat(newpath, &sb) == -1
|
|
|
|
|| (sel == SEL_STATS && !show_stats(newpath, &sb))
|
|
|
|
|| (sel == SEL_CHMODX && !xchmod(newpath, sb.st_mode))) {
|
2019-10-20 00:05:41 +00:00
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
2020-01-02 17:43:56 +00:00
|
|
|
|
|
|
|
if (sel == SEL_CHMODX)
|
2020-06-22 03:47:59 +00:00
|
|
|
pdents[cur].mode ^= 0111;
|
2017-04-22 10:20:36 +00:00
|
|
|
}
|
2017-04-22 07:20:02 +00:00
|
|
|
break;
|
2018-12-08 06:21:22 +00:00
|
|
|
case SEL_REDRAW: // fallthrough
|
2019-09-29 16:14:47 +00:00
|
|
|
case SEL_RENAMEMUL: // fallthrough
|
2018-12-08 06:21:22 +00:00
|
|
|
case SEL_HELP: // fallthrough
|
2020-03-28 19:12:20 +00:00
|
|
|
case SEL_AUTONEXT: // fallthrough
|
2020-02-01 17:00:32 +00:00
|
|
|
case SEL_EDIT: // fallthrough
|
2018-12-07 21:10:04 +00:00
|
|
|
case SEL_LOCK:
|
2018-12-06 16:15:29 +00:00
|
|
|
{
|
2019-11-19 15:31:59 +00:00
|
|
|
bool refresh = FALSE;
|
|
|
|
|
2019-01-11 02:36:16 +00:00
|
|
|
if (ndents)
|
2020-06-22 03:47:59 +00:00
|
|
|
mkpath(path, pdents[cur].name, newpath);
|
2020-02-17 22:21:46 +00:00
|
|
|
else if (sel == SEL_EDIT) /* Avoid trying to edit a non-existing file */
|
|
|
|
goto nochange;
|
2018-09-02 15:49:58 +00:00
|
|
|
|
2018-12-08 17:33:58 +00:00
|
|
|
switch (sel) {
|
2018-12-08 06:21:22 +00:00
|
|
|
case SEL_REDRAW:
|
2019-11-19 15:31:59 +00:00
|
|
|
refresh = TRUE;
|
2019-10-20 00:05:41 +00:00
|
|
|
break;
|
2019-09-29 16:14:47 +00:00
|
|
|
case SEL_RENAMEMUL:
|
2019-12-12 20:27:58 +00:00
|
|
|
endselection();
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2020-03-15 14:56:53 +00:00
|
|
|
if (!(getutil(utils[UTIL_BASH])
|
2020-05-10 10:53:45 +00:00
|
|
|
&& plugscript(utils[UTIL_NMV], F_CLI))
|
2020-03-30 16:39:39 +00:00
|
|
|
#ifndef NOBATCH
|
2020-05-10 10:53:45 +00:00
|
|
|
&& !batch_rename()
|
2020-03-30 16:39:39 +00:00
|
|
|
#endif
|
2020-05-03 22:38:12 +00:00
|
|
|
) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], &presel);
|
2019-05-22 15:02:29 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2020-06-15 13:35:44 +00:00
|
|
|
clearselection();
|
2019-11-19 15:31:59 +00:00
|
|
|
refresh = TRUE;
|
2018-12-08 06:21:22 +00:00
|
|
|
break;
|
|
|
|
case SEL_HELP:
|
2020-03-28 19:12:20 +00:00
|
|
|
show_help(path); // fallthrough
|
|
|
|
case SEL_AUTONEXT:
|
|
|
|
if (sel == SEL_AUTONEXT)
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.autonext ^= 1;
|
2019-12-28 19:08:03 +00:00
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2020-03-28 19:12:20 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
goto nochange;
|
2020-02-01 17:00:32 +00:00
|
|
|
case SEL_EDIT:
|
2020-06-22 03:47:59 +00:00
|
|
|
spawn(editor, pdents[cur].name, NULL, F_CLI);
|
2020-02-01 17:00:32 +00:00
|
|
|
continue;
|
2018-12-16 09:58:01 +00:00
|
|
|
default: /* SEL_LOCK */
|
2019-06-05 12:32:27 +00:00
|
|
|
lock_terminal();
|
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
|
|
|
/* In case of successful operation, reload contents */
|
2018-04-25 16:26:13 +00:00
|
|
|
|
2020-04-12 13:31:02 +00:00
|
|
|
/* Continue in type-to-nav mode, if enabled */
|
2020-04-16 12:15:58 +00:00
|
|
|
if ((cfg.filtermode || filterset()) && !refresh) {
|
|
|
|
presel = FILTER;
|
|
|
|
goto nochange;
|
|
|
|
}
|
2018-04-25 16:26:13 +00:00
|
|
|
|
2018-12-08 06:21:22 +00:00
|
|
|
/* Save current */
|
2019-04-21 10:11:26 +00:00
|
|
|
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
|
|
|
}
|
2019-08-06 20:08:51 +00:00
|
|
|
case SEL_SEL:
|
2018-07-12 14:28:53 +00:00
|
|
|
if (!ndents)
|
|
|
|
goto nochange;
|
|
|
|
|
2019-09-30 16:05:52 +00:00
|
|
|
startselection();
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.rangesel)
|
|
|
|
g_state.rangesel = 0;
|
2018-11-10 23:29:26 +00:00
|
|
|
|
2019-12-12 19:06:30 +00:00
|
|
|
/* Toggle selection status */
|
2020-06-22 03:47:59 +00:00
|
|
|
pdents[cur].flags ^= FILE_SELECTED;
|
2019-12-12 19:06:30 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
if (pdents[cur].flags & FILE_SELECTED) {
|
2019-12-12 19:06:30 +00:00
|
|
|
++nselected;
|
2020-06-22 03:47:59 +00:00
|
|
|
appendfpath(newpath, mkpath(path, pdents[cur].name, newpath));
|
2019-11-29 22:21:29 +00:00
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
2019-12-12 19:06:30 +00:00
|
|
|
} else {
|
2019-12-12 20:27:58 +00:00
|
|
|
selbufpos = lastappendpos;
|
2019-12-12 20:44:37 +00:00
|
|
|
if (--nselected) {
|
2019-12-12 19:06:30 +00:00
|
|
|
updateselbuf(path, newpath);
|
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
|
|
|
} else
|
|
|
|
writesel(NULL, 0);
|
2019-11-29 22:21:29 +00:00
|
|
|
}
|
|
|
|
|
2019-12-12 19:06:30 +00:00
|
|
|
if (cfg.x11)
|
2020-05-10 10:53:45 +00:00
|
|
|
plugscript(utils[UTIL_CBCP], F_NOWAIT | F_NOTRACE);
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2019-12-12 19:06:30 +00:00
|
|
|
if (!nselected)
|
2020-03-01 14:18:40 +00:00
|
|
|
unlink(selpath);
|
2020-03-01 07:10:35 +00:00
|
|
|
#ifndef NOMOUSE
|
2020-03-01 07:14:28 +00:00
|
|
|
if (rightclicksel)
|
2020-03-01 07:10:35 +00:00
|
|
|
rightclicksel = 0;
|
2020-03-01 07:14:28 +00:00
|
|
|
else
|
2020-03-01 07:10:35 +00:00
|
|
|
#endif
|
2020-03-01 07:14:28 +00:00
|
|
|
/* move cursor to the next entry if this is not the last entry */
|
2020-06-09 17:33:36 +00:00
|
|
|
if (!g_state.picker && cur != ndents - 1)
|
2020-03-01 07:14:28 +00:00
|
|
|
move_cursor((cur + 1) % ndents, 0);
|
2019-03-10 17:20:50 +00:00
|
|
|
break;
|
2019-08-06 20:08:51 +00:00
|
|
|
case SEL_SELMUL:
|
2019-09-30 16:05:52 +00:00
|
|
|
if (!ndents)
|
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
startselection();
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.rangesel ^= 1;
|
2019-10-02 18:27:26 +00:00
|
|
|
|
|
|
|
if (stat(path, &sb) == -1) {
|
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.rangesel) { /* Range selection started */
|
2020-01-21 17:39:05 +00:00
|
|
|
#ifndef DIR_LIMITED_SELECTION
|
2019-10-02 18:27:26 +00:00
|
|
|
inode = sb.st_ino;
|
2020-01-21 17:39:05 +00:00
|
|
|
#endif
|
2019-09-08 08:53:00 +00:00
|
|
|
selstartid = cur;
|
2019-03-12 21:22:50 +00:00
|
|
|
continue;
|
2019-02-23 05:58:50 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
#ifndef DIR_LIMITED_SELECTION
|
2019-10-02 18:27:26 +00:00
|
|
|
if (inode != sb.st_ino) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_DIR_CHANGED], &presel);
|
2019-09-30 16:05:52 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2019-02-23 05:58:50 +00:00
|
|
|
#endif
|
2019-09-30 16:05:52 +00:00
|
|
|
if (cur < selstartid) {
|
|
|
|
selendid = selstartid;
|
|
|
|
selstartid = cur;
|
|
|
|
} else
|
|
|
|
selendid = cur;
|
|
|
|
|
|
|
|
/* Clear selection on repeat on same file */
|
|
|
|
if (selstartid == selendid) {
|
|
|
|
resetselind();
|
2019-10-14 17:15:19 +00:00
|
|
|
clearselection();
|
2019-09-30 16:05:52 +00:00
|
|
|
break;
|
2019-01-29 21:28:42 +00:00
|
|
|
} // fallthrough
|
2019-08-06 20:08:51 +00:00
|
|
|
case SEL_SELALL:
|
|
|
|
if (sel == SEL_SELALL) {
|
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-09-30 16:05:52 +00:00
|
|
|
startselection();
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.rangesel)
|
|
|
|
g_state.rangesel = 0;
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
selstartid = 0;
|
|
|
|
selendid = ndents - 1;
|
2019-01-29 21:28:42 +00:00
|
|
|
}
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2019-11-29 22:21:29 +00:00
|
|
|
/* Remember current selection buffer position */
|
2019-11-23 04:37:05 +00:00
|
|
|
for (r = selstartid; r <= selendid; ++r)
|
2020-06-22 03:47:59 +00:00
|
|
|
if (!(pdents[r].flags & FILE_SELECTED)) {
|
2019-11-29 22:21:29 +00:00
|
|
|
/* Write the path to selection file to avoid flush */
|
2020-06-22 03:47:59 +00:00
|
|
|
appendfpath(newpath, mkpath(path, pdents[r].name, newpath));
|
2019-11-29 22:21:29 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
pdents[r].flags |= FILE_SELECTED;
|
2019-09-30 16:05:52 +00:00
|
|
|
++nselected;
|
2019-03-01 01:16:13 +00:00
|
|
|
}
|
2019-11-29 22:21:29 +00:00
|
|
|
|
2019-12-12 20:27:58 +00:00
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
|
|
|
if (cfg.x11)
|
2020-05-10 10:53:45 +00:00
|
|
|
plugscript(utils[UTIL_CBCP], F_NOWAIT | F_NOTRACE);
|
2019-03-12 21:22:50 +00:00
|
|
|
continue;
|
2020-01-13 18:14:19 +00:00
|
|
|
case SEL_SELEDIT:
|
2019-12-10 15:18:27 +00:00
|
|
|
r = editselection();
|
2020-01-13 18:14:19 +00:00
|
|
|
if (r <= 0) {
|
|
|
|
r = !r ? MSG_0_SELECTED : MSG_FAILED;
|
|
|
|
printwait(messages[r], &presel);
|
|
|
|
} else {
|
|
|
|
if (cfg.x11)
|
2020-05-10 10:53:45 +00:00
|
|
|
plugscript(utils[UTIL_CBCP], F_NOWAIT | F_NOTRACE);
|
2020-01-13 18:14:19 +00:00
|
|
|
cfg.filtermode ? presel = FILTER : statusbar(path);
|
2020-01-13 14:43:46 +00:00
|
|
|
}
|
|
|
|
goto nochange;
|
2019-10-17 18:05:49 +00:00
|
|
|
case SEL_CP: // fallthrough
|
|
|
|
case SEL_MV: // fallthrough
|
|
|
|
case SEL_CPMVAS: // fallthrough
|
2020-01-14 15:31:59 +00:00
|
|
|
case SEL_RM:
|
2018-11-10 23:29:26 +00:00
|
|
|
{
|
2020-01-14 15:31:59 +00:00
|
|
|
if (sel == SEL_RM) {
|
|
|
|
r = get_cur_or_sel();
|
|
|
|
if (!r) {
|
|
|
|
statusbar(path);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == 'c') {
|
2020-03-01 14:18:40 +00:00
|
|
|
tmp = (listpath && xstrcmp(path, listpath) == 0)
|
2020-06-08 04:14:53 +00:00
|
|
|
? listroot : path;
|
2020-06-22 03:47:59 +00:00
|
|
|
mkpath(tmp, pdents[cur].name, newpath);
|
2020-06-06 10:51:43 +00:00
|
|
|
if (!xrm(newpath))
|
2020-03-29 08:06:07 +00:00
|
|
|
continue;
|
2020-02-28 02:04:02 +00:00
|
|
|
|
2020-06-06 10:51:43 +00:00
|
|
|
copynextname(lastname);
|
2020-01-14 15:31:59 +00:00
|
|
|
|
2020-03-29 08:06:07 +00:00
|
|
|
if (cfg.filtermode || filterset())
|
|
|
|
presel = FILTER;
|
2020-01-14 15:31:59 +00:00
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-14 14:52:38 +00:00
|
|
|
if (nselected == 1 && (sel == SEL_CP || sel == SEL_MV))
|
|
|
|
mkpath(path, xbasename(pselbuf), newpath);
|
|
|
|
else
|
|
|
|
newpath[0] = '\0';
|
|
|
|
|
2019-12-12 20:27:58 +00:00
|
|
|
endselection();
|
2019-11-28 17:42:49 +00:00
|
|
|
|
2020-03-29 14:52:43 +00:00
|
|
|
if (!cpmvrm_selection(sel, path)) {
|
|
|
|
presel = MSGWAIT;
|
2018-11-20 14:28:07 +00:00
|
|
|
goto nochange;
|
2020-03-29 14:52:43 +00:00
|
|
|
}
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2020-03-29 14:52:43 +00:00
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2020-01-05 21:24:31 +00:00
|
|
|
clearfilter();
|
|
|
|
|
2019-12-11 19:26:39 +00:00
|
|
|
/* Show notification on operation complete */
|
2020-03-31 22:06:06 +00:00
|
|
|
if (cfg.x11)
|
2020-05-10 10:53:45 +00:00
|
|
|
plugscript(utils[UTIL_NTFY], F_NOWAIT | F_NOTRACE);
|
2019-12-11 17:23:03 +00:00
|
|
|
|
2020-03-14 16:14:48 +00:00
|
|
|
if (newpath[0] && !access(newpath, F_OK))
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, xbasename(newpath), NAME_MAX+1);
|
2020-03-14 14:52:38 +00:00
|
|
|
else if (ndents)
|
2019-04-21 10:11:26 +00:00
|
|
|
copycurname();
|
2018-11-10 23:29:26 +00:00
|
|
|
goto begin;
|
|
|
|
}
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_ARCHIVE: // fallthrough
|
2018-12-16 15:00:44 +00:00
|
|
|
case SEL_OPENWITH: // fallthrough
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_NEW: // fallthrough
|
2018-12-08 17:33:58 +00:00
|
|
|
case SEL_RENAME:
|
2018-12-06 17:27:59 +00:00
|
|
|
{
|
2020-03-25 15:22:27 +00:00
|
|
|
int fd, ret = 'n';
|
2019-08-04 02:02:37 +00:00
|
|
|
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!ndents && (sel == SEL_OPENWITH || sel == SEL_RENAME))
|
|
|
|
break;
|
|
|
|
|
2019-11-30 10:45:12 +00:00
|
|
|
if (sel != SEL_OPENWITH)
|
2019-12-12 20:27:58 +00:00
|
|
|
endselection();
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2019-11-30 10:45:12 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_ARCHIVE:
|
2019-12-26 15:03:01 +00:00
|
|
|
r = get_cur_or_sel();
|
|
|
|
if (!r) {
|
2020-01-11 18:39:09 +00:00
|
|
|
statusbar(path);
|
2019-12-26 15:03:01 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2019-11-29 15:28:12 +00:00
|
|
|
if (r == 's') {
|
2019-09-29 05:57:42 +00:00
|
|
|
if (!selsafe()) {
|
2019-03-10 23:55:17 +00:00
|
|
|
presel = MSGWAIT;
|
2019-02-07 13:07:45 +00:00
|
|
|
goto nochange;
|
2019-03-10 23:55:17 +00:00
|
|
|
}
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2019-02-07 13:07:45 +00:00
|
|
|
tmp = NULL;
|
2019-12-09 22:26:38 +00:00
|
|
|
} else
|
2020-06-22 03:47:59 +00:00
|
|
|
tmp = pdents[cur].name;
|
2019-12-26 15:03:01 +00:00
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(tmp, messages[MSG_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
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_OPEN_WITH]);
|
2019-04-26 20:23:41 +00:00
|
|
|
#else
|
2020-05-10 10:53:45 +00:00
|
|
|
tmp = getreadline(messages[MSG_OPEN_WITH]);
|
2019-04-26 20:23:41 +00:00
|
|
|
#endif
|
2018-12-16 09:58:01 +00:00
|
|
|
break;
|
|
|
|
case SEL_NEW:
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_NEW_OPTS]);
|
2019-10-12 17:32:44 +00:00
|
|
|
if (r == 'f' || r == 'd')
|
2020-08-08 04:46:11 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_NEW_PATH]);
|
2019-10-12 17:32:44 +00:00
|
|
|
else if (r == 's' || r == 'h')
|
2020-01-10 19:01:08 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_LINK_PREFIX]);
|
2019-10-12 17:32:44 +00:00
|
|
|
else
|
2019-10-11 13:08:06 +00:00
|
|
|
tmp = NULL;
|
2018-12-08 17:33:58 +00:00
|
|
|
break;
|
2018-12-16 09:58:01 +00:00
|
|
|
default: /* SEL_RENAME */
|
2020-06-22 03:47:59 +00:00
|
|
|
tmp = xreadline(pdents[cur].name, "");
|
2019-08-19 14:28:37 +00:00
|
|
|
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;
|
|
|
|
|
2018-12-08 17:33:58 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_ARCHIVE:
|
2020-06-22 03:47:59 +00:00
|
|
|
if (r == 'c' && strcmp(tmp, pdents[cur].name) == 0)
|
2019-12-31 15:39:40 +00:00
|
|
|
goto nochange;
|
|
|
|
|
2019-12-27 13:24:30 +00:00
|
|
|
mkpath(path, tmp, newpath);
|
|
|
|
if (access(newpath, F_OK) == 0) {
|
2020-03-21 15:58:48 +00:00
|
|
|
if (!xconfirm(get_input(messages[MSG_OVERWRITE]))) {
|
2020-01-11 18:39:09 +00:00
|
|
|
statusbar(path);
|
2019-12-27 13:24:30 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
get_archive_cmd(newpath, tmp);
|
|
|
|
(r == 's') ? archive_selection(newpath, tmp, path)
|
2020-08-03 09:27:00 +00:00
|
|
|
: spawn(newpath, tmp, pdents[cur].name, F_CLI | F_CONFIRM);
|
2020-03-28 19:12:20 +00:00
|
|
|
|
|
|
|
mkpath(path, tmp, newpath);
|
|
|
|
if (access(newpath, F_OK) == 0) { /* File created */
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, tmp, NAME_MAX + 1);
|
2020-03-28 19:12:20 +00:00
|
|
|
clearfilter(); /* Archive name may not match */
|
2020-08-03 09:27:00 +00:00
|
|
|
clearselection(); /* Archive operation complete */
|
2020-03-29 08:06:07 +00:00
|
|
|
goto begin;
|
2020-03-28 19:12:20 +00:00
|
|
|
}
|
2020-03-29 08:06:07 +00:00
|
|
|
continue;
|
2018-12-16 15:00:44 +00:00
|
|
|
case SEL_OPENWITH:
|
2020-03-28 19:12:20 +00:00
|
|
|
/* Confirm if app is CLI or GUI */
|
|
|
|
r = get_input(messages[MSG_CLI_MODE]);
|
|
|
|
r = (r == 'c' ? F_CLI :
|
|
|
|
(r == 'g' ? F_NOWAIT | F_NOTRACE | F_MULTI : 0));
|
|
|
|
if (r) {
|
2020-06-22 03:47:59 +00:00
|
|
|
mkpath(path, pdents[cur].name, newpath);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(tmp, newpath, NULL, r);
|
2019-12-27 13:24:30 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 19:12:20 +00:00
|
|
|
cfg.filtermode ? presel = FILTER : statusbar(path);
|
2019-12-27 13:24:30 +00:00
|
|
|
copycurname();
|
2020-03-28 19:12:20 +00:00
|
|
|
goto nochange;
|
2018-12-16 09:58:01 +00:00
|
|
|
case SEL_RENAME:
|
|
|
|
/* Skip renaming to same name */
|
2020-06-22 03:47:59 +00:00
|
|
|
if (strcmp(tmp, pdents[cur].name) == 0) {
|
|
|
|
tmp = xreadline(pdents[cur].name, messages[MSG_COPY_NAME]);
|
|
|
|
if (!tmp || !tmp[0] || !strcmp(tmp, pdents[cur].name)) {
|
2020-04-05 09:12:32 +00:00
|
|
|
cfg.filtermode ? presel = FILTER : statusbar(path);
|
|
|
|
copycurname();
|
2019-08-19 14:28:37 +00:00
|
|
|
goto nochange;
|
2020-04-05 09:12:32 +00:00
|
|
|
}
|
2020-03-25 15:22:27 +00:00
|
|
|
ret = 'd';
|
2019-08-19 14:28:37 +00:00
|
|
|
}
|
2018-12-16 09:58:01 +00:00
|
|
|
break;
|
2019-12-27 13:24:30 +00:00
|
|
|
default: /* SEL_NEW */
|
2018-12-08 17:33:58 +00:00
|
|
|
break;
|
2018-12-07 20:12:30 +00:00
|
|
|
}
|
2018-04-25 16:26:13 +00:00
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
/* Open the descriptor to currently open directory */
|
2019-10-16 01:37:45 +00:00
|
|
|
#ifdef O_DIRECTORY
|
2017-09-10 07:35:25 +00:00
|
|
|
fd = open(path, O_RDONLY | O_DIRECTORY);
|
2019-10-16 01:37:45 +00:00
|
|
|
#else
|
|
|
|
fd = open(path, O_RDONLY);
|
|
|
|
#endif
|
2017-09-10 07:35:25 +00:00
|
|
|
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? */
|
2020-03-21 15:58:48 +00:00
|
|
|
if (!xconfirm(get_input(messages[MSG_OVERWRITE]))) {
|
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-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_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 */
|
2020-03-25 15:22:27 +00:00
|
|
|
if (ret == 'd')
|
2020-06-22 03:47:59 +00:00
|
|
|
spawn("cp -rp", pdents[cur].name, tmp, F_SILENT);
|
|
|
|
else if (renameat(fd, pdents[cur].name, fd, tmp) != 0) {
|
2018-12-08 17:33:58 +00:00
|
|
|
close(fd);
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(&presel);
|
2018-12-08 17:33:58 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2019-12-27 13:24:30 +00:00
|
|
|
close(fd);
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, tmp, NAME_MAX + 1);
|
2020-01-10 19:01:08 +00:00
|
|
|
} else { /* SEL_NEW */
|
2020-03-25 15:22:27 +00:00
|
|
|
close(fd);
|
2019-12-27 13:24:30 +00:00
|
|
|
presel = 0;
|
|
|
|
|
2018-12-08 17:33:58 +00:00
|
|
|
/* Check if it's a dir or file */
|
2020-06-27 18:18:23 +00:00
|
|
|
if (r == 'f' || r == 'd') {
|
2019-11-19 19:58:11 +00:00
|
|
|
mkpath(path, tmp, newpath);
|
2020-06-27 18:18:23 +00:00
|
|
|
ret = xmktree(newpath, r == 'f' ? FALSE : TRUE);
|
2019-11-19 19:58:11 +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';
|
2020-06-22 03:47:59 +00:00
|
|
|
ret = xlink(tmp, path, (ndents ? pdents[cur].name : NULL),
|
2019-11-29 15:28:12 +00:00
|
|
|
newpath, &presel, r);
|
2019-12-27 13:24:30 +00:00
|
|
|
}
|
2019-01-20 11:29:55 +00:00
|
|
|
|
2020-03-25 15:22:27 +00:00
|
|
|
if (!ret)
|
2019-12-27 13:24:30 +00:00
|
|
|
printwait(messages[MSG_FAILED], &presel);
|
|
|
|
|
2020-03-25 15:22:27 +00:00
|
|
|
if (ret <= 0)
|
2019-12-27 13:24:30 +00:00
|
|
|
goto nochange;
|
2019-01-20 11:29:55 +00:00
|
|
|
|
2019-12-27 13:24:30 +00:00
|
|
|
if (r == 'f' || r == 'd')
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(lastname, tmp, NAME_MAX + 1);
|
2019-12-27 13:24:30 +00:00
|
|
|
else if (ndents) {
|
2019-01-20 11:29:55 +00:00
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2019-12-27 13:24:30 +00:00
|
|
|
copycurname();
|
2018-12-08 17:33:58 +00:00
|
|
|
}
|
2020-03-28 19:12:20 +00:00
|
|
|
clearfilter();
|
2017-08-22 19:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
goto begin;
|
2018-12-08 17:33:58 +00:00
|
|
|
}
|
2019-12-27 07:49:23 +00:00
|
|
|
case SEL_PLUGIN:
|
|
|
|
/* Check if directory is accessible */
|
2020-06-08 04:14:53 +00:00
|
|
|
if (!xdiraccess(plgpath)) {
|
2019-12-27 07:49:23 +00:00
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2020-05-18 03:35:19 +00:00
|
|
|
if (!pkey) {
|
|
|
|
r = xstrsncpy(g_buf, messages[MSG_PLUGIN_KEYS], CMD_LEN_MAX);
|
|
|
|
printkeys(plug, g_buf + r - 1, maxplug);
|
|
|
|
printmsg(g_buf);
|
|
|
|
r = get_input(NULL);
|
|
|
|
} else {
|
|
|
|
r = pkey;
|
|
|
|
pkey = '\0';
|
|
|
|
}
|
|
|
|
|
2020-01-13 15:39:40 +00:00
|
|
|
if (r != '\r') {
|
2020-01-11 12:53:46 +00:00
|
|
|
endselection();
|
2020-04-17 08:13:25 +00:00
|
|
|
tmp = get_kv_val(plug, NULL, r, maxplug, NNN_PLUG);
|
2019-12-27 07:49:23 +00:00
|
|
|
if (!tmp) {
|
|
|
|
printwait(messages[MSG_INVALID_KEY], &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp[0] == '-' && tmp[1]) {
|
|
|
|
++tmp;
|
|
|
|
r = FALSE; /* Do not refresh dir after completion */
|
|
|
|
} else
|
|
|
|
r = TRUE;
|
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
if (!run_selected_plugin(&path, tmp, (ndents ? pdents[cur].name : NULL),
|
2019-12-27 07:49:23 +00:00
|
|
|
&lastname, &lastdir)) {
|
|
|
|
printwait(messages[MSG_FAILED], &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2020-02-14 17:14:49 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
|
2019-12-27 07:49:23 +00:00
|
|
|
if (!r) {
|
2020-01-11 18:39:09 +00:00
|
|
|
cfg.filtermode ? presel = FILTER : statusbar(path);
|
2019-12-27 07:49:23 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2020-01-13 15:39:40 +00:00
|
|
|
} else { /* 'Return/Enter' enters the plugin directory */
|
2020-06-09 18:03:32 +00:00
|
|
|
g_state.runplugin ^= 1;
|
|
|
|
if (!g_state.runplugin && rundir[0]) {
|
2019-12-27 07:49:23 +00:00
|
|
|
/*
|
|
|
|
* If toggled, and still in the plugin dir,
|
|
|
|
* switch to original directory
|
|
|
|
*/
|
2020-06-08 04:14:53 +00:00
|
|
|
if (strcmp(path, plgpath) == 0) {
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(path, rundir, PATH_MAX);
|
2020-06-27 19:22:24 +00:00
|
|
|
xstrsncpy(lastname, runfile, NAME_MAX + 1);
|
2019-12-27 07:49:23 +00:00
|
|
|
rundir[0] = runfile[0] = '\0';
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, initiate choosing plugin again */
|
2020-06-09 18:03:32 +00:00
|
|
|
g_state.runplugin = 1;
|
2019-12-27 07:49:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(rundir, path, PATH_MAX);
|
2020-06-08 04:14:53 +00:00
|
|
|
xstrsncpy(path, plgpath, PATH_MAX);
|
2019-12-27 07:49:23 +00:00
|
|
|
if (ndents)
|
2020-06-22 03:47:59 +00:00
|
|
|
xstrsncpy(runfile, pdents[cur].name, NAME_MAX);
|
2020-06-09 18:03:32 +00:00
|
|
|
g_state.runctx = cfg.curctx;
|
2019-12-27 07:49:23 +00:00
|
|
|
lastname[0] = '\0';
|
|
|
|
}
|
|
|
|
setdirwatch();
|
|
|
|
clearfilter();
|
|
|
|
goto begin;
|
2018-12-08 10:48:46 +00:00
|
|
|
case SEL_SHELL: // fallthrough
|
2019-03-12 10:49:34 +00:00
|
|
|
case SEL_LAUNCH: // fallthrough
|
2018-12-09 13:48:00 +00:00
|
|
|
case SEL_RUNCMD:
|
2019-12-12 20:27:58 +00:00
|
|
|
endselection();
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2018-12-16 03:03:40 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_SHELL:
|
2020-02-17 15:04:03 +00:00
|
|
|
/* Set nnn nesting level */
|
|
|
|
tmp = getenv(env_cfg[NNNLVL]);
|
2020-06-06 19:04:46 +00:00
|
|
|
r = tmp ? atoi(tmp) : 0;
|
|
|
|
setenv(env_cfg[NNNLVL], xitoa(r + 1), 1);
|
2020-02-17 15:04:03 +00:00
|
|
|
|
2020-06-22 03:47:59 +00:00
|
|
|
setenv(envs[ENV_NCUR], (ndents ? pdents[cur].name : ""), 1);
|
2020-05-10 10:53:45 +00:00
|
|
|
spawn(shell, NULL, NULL, F_CLI);
|
2020-06-06 19:04:46 +00:00
|
|
|
setenv(env_cfg[NNNLVL], xitoa(r), 1);
|
2020-03-30 20:29:30 +00:00
|
|
|
r = TRUE;
|
2018-12-16 03:03:40 +00:00
|
|
|
break;
|
2019-03-12 10:49:34 +00:00
|
|
|
case SEL_LAUNCH:
|
2020-05-10 10:53:45 +00:00
|
|
|
launch_app(newpath);
|
2020-03-29 08:06:07 +00:00
|
|
|
r = FALSE;
|
|
|
|
break;
|
2018-12-16 03:03:40 +00:00
|
|
|
default: /* SEL_RUNCMD */
|
2020-03-28 19:12:20 +00:00
|
|
|
r = TRUE;
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2020-06-09 17:33:36 +00:00
|
|
|
if (g_state.picker) {
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2020-01-16 14:05:34 +00:00
|
|
|
tmp = xreadline(NULL, ">>> ");
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2020-05-10 10:53:45 +00:00
|
|
|
} else
|
|
|
|
tmp = getreadline("\n>>> ");
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-12-08 19:04:53 +00:00
|
|
|
if (tmp && *tmp) // NOLINT
|
2020-06-22 03:47:59 +00:00
|
|
|
prompt_run(tmp, (ndents ? pdents[cur].name : ""));
|
2020-03-28 19:12:20 +00:00
|
|
|
else
|
|
|
|
r = FALSE;
|
2018-12-16 03:03:40 +00:00
|
|
|
}
|
2018-03-19 00:02:16 +00:00
|
|
|
|
2020-04-12 13:31:02 +00:00
|
|
|
/* Continue in type-to-nav mode, if enabled */
|
2018-12-08 10:48:46 +00:00
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2018-03-16 17:16:03 +00:00
|
|
|
|
2018-02-15 13:51:58 +00:00
|
|
|
/* Save current */
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2020-03-28 19:12:20 +00:00
|
|
|
|
|
|
|
if (!r)
|
|
|
|
goto nochange;
|
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
/* Repopulate as directory content may have changed */
|
2017-03-29 14:38:34 +00:00
|
|
|
goto begin;
|
2019-04-21 20:44:43 +00:00
|
|
|
case SEL_UMOUNT:
|
2020-06-27 18:18:23 +00:00
|
|
|
if (!unmount((ndents ? pdents[cur].name : NULL), newpath, &presel, path))
|
2020-06-06 10:51:43 +00:00
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
/* Dir removed, go to next entry */
|
|
|
|
copynextname(lastname);
|
|
|
|
goto begin;
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_SESSIONS:
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_SSN_OPTS]);
|
2019-10-20 00:05:41 +00:00
|
|
|
|
2019-12-27 04:43:48 +00:00
|
|
|
if (r == 's')
|
2019-12-20 10:00:53 +00:00
|
|
|
save_session(FALSE, &presel);
|
2019-12-27 04:43:48 +00:00
|
|
|
else if (r == 'l' || r == 'r') {
|
2019-12-20 10:00:53 +00:00
|
|
|
if (load_session(NULL, &path, &lastdir, &lastname, r == 'r')) {
|
2019-10-20 00:05:41 +00:00
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
}
|
2019-12-27 04:43:48 +00:00
|
|
|
|
2020-01-11 18:39:09 +00:00
|
|
|
statusbar(path);
|
2019-12-27 04:43:48 +00:00
|
|
|
goto nochange;
|
2020-03-29 14:52:43 +00:00
|
|
|
case SEL_EXPORT:
|
|
|
|
export_file_list();
|
|
|
|
cfg.filtermode ? presel = FILTER : statusbar(path);
|
|
|
|
goto nochange;
|
|
|
|
case SEL_TIMETYPE:
|
|
|
|
if (!set_time_type(&presel))
|
|
|
|
goto nochange;
|
|
|
|
goto begin;
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_QUITCTX: // fallthrough
|
2018-11-25 15:36:47 +00:00
|
|
|
case SEL_QUITCD: // fallthrough
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_QUIT:
|
2020-01-16 13:55:48 +00:00
|
|
|
case SEL_QUITFAIL:
|
2019-10-11 17:49:25 +00:00
|
|
|
if (sel == SEL_QUITCTX) {
|
2020-03-25 15:22:27 +00:00
|
|
|
int ctx = cfg.curctx;
|
|
|
|
for (r = (ctx + 1) & ~CTX_MAX;
|
|
|
|
(r != ctx) && !g_ctx[r].c_cfg.ctxactive;
|
2019-10-11 17:49:25 +00:00
|
|
|
r = ((r + 1) & ~CTX_MAX)) {
|
|
|
|
};
|
|
|
|
|
2020-03-25 15:22:27 +00:00
|
|
|
if (r != ctx) {
|
|
|
|
g_ctx[ctx].c_cfg.ctxactive = 0;
|
2019-10-11 17:49:25 +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;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
cfg.curctx = r;
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
2020-05-30 01:15:45 +00:00
|
|
|
} else if (!g_state.forcequit) {
|
2019-10-16 02:59:49 +00:00
|
|
|
for (r = 0; r < CTX_MAX; ++r)
|
|
|
|
if (r != cfg.curctx && g_ctx[r].c_cfg.ctxactive) {
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_QUIT_ALL]);
|
2019-10-16 02:59:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-02-21 22:48:15 +00:00
|
|
|
if (!(r == CTX_MAX || xconfirm(r)))
|
2019-10-16 02:59:49 +00:00
|
|
|
break; // fallthrough
|
2019-10-11 17:49:25 +00:00
|
|
|
}
|
2017-12-12 20:16:50 +00:00
|
|
|
|
2020-04-17 23:24:07 +00:00
|
|
|
if (session && *session == '@' && !session[1])
|
|
|
|
save_session(TRUE, NULL);
|
|
|
|
|
2019-12-27 03:56:20 +00:00
|
|
|
/* CD on Quit */
|
2020-08-01 16:35:13 +00:00
|
|
|
if (sel == SEL_QUITCD || getenv("NNN_TMPFILE")) {
|
|
|
|
write_lastdir(path);
|
|
|
|
if (g_state.picker)
|
|
|
|
selbufpos = 0;
|
|
|
|
}
|
2020-05-10 04:34:03 +00:00
|
|
|
return sel == SEL_QUITFAIL ? EXIT_FAILURE : EXIT_SUCCESS;
|
2020-06-02 11:18:28 +00:00
|
|
|
#ifndef NOFIFO
|
|
|
|
case SEL_FIFO:
|
|
|
|
notify_fifo(TRUE);
|
|
|
|
goto nochange;
|
|
|
|
#endif
|
2019-03-10 23:38:39 +00:00
|
|
|
default:
|
2020-05-31 17:35:27 +00:00
|
|
|
if (xlines != LINES || xcols != COLS)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (idletimeout && idle == idletimeout)
|
2019-12-27 03:56:20 +00:00
|
|
|
lock_terminal(); /* Locker */
|
2019-03-10 23:38:39 +00:00
|
|
|
|
2019-12-27 03:56:20 +00:00
|
|
|
idle = 0;
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2020-03-28 19:12:20 +00:00
|
|
|
|
|
|
|
goto nochange;
|
2019-03-10 23:38:39 +00:00
|
|
|
} /* switch (sel) */
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
static char *make_tmp_tree(char **paths, ssize_t entries, const char *prefix)
|
|
|
|
{
|
|
|
|
/* tmpdir holds the full path */
|
|
|
|
/* tmp holds the path without the tmp dir prefix */
|
2020-04-24 18:18:47 +00:00
|
|
|
int err;
|
2020-02-01 14:54:56 +00:00
|
|
|
struct stat sb;
|
|
|
|
char *slash, *tmp;
|
2020-04-15 09:30:40 +00:00
|
|
|
ssize_t len = xstrlen(prefix);
|
2020-05-03 09:25:33 +00:00
|
|
|
char *tmpdir = malloc(PATH_MAX);
|
2020-02-01 14:54:56 +00:00
|
|
|
|
|
|
|
if (!tmpdir) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-03-01 14:18:40 +00:00
|
|
|
tmp = tmpdir + tmpfplen - 1;
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(tmpdir, g_tmpfpath, tmpfplen);
|
|
|
|
xstrsncpy(tmp, "/nnnXXXXXX", 11);
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
/* Points right after the base tmp dir */
|
|
|
|
tmp += 10;
|
|
|
|
|
2020-04-18 09:38:23 +00:00
|
|
|
/* handle the case where files are directly under / */
|
|
|
|
if (!prefix[1] && (prefix[0] == '/'))
|
|
|
|
len = 0;
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
if (!mkdtemp(tmpdir)) {
|
|
|
|
free(tmpdir);
|
|
|
|
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-03-01 14:18:40 +00:00
|
|
|
listpath = tmpdir;
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (ssize_t i = 0; i < entries; ++i) {
|
2020-02-08 13:42:00 +00:00
|
|
|
if (!paths[i])
|
|
|
|
continue;
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
err = stat(paths[i], &sb);
|
2020-04-24 18:18:47 +00:00
|
|
|
if (err && errno == ENOENT)
|
2020-02-01 14:54:56 +00:00
|
|
|
continue;
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
/* Don't copy the common prefix */
|
2020-04-15 09:30:40 +00:00
|
|
|
xstrsncpy(tmp, paths[i] + len, xstrlen(paths[i]) - len + 1);
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
/* Get the dir containing the path */
|
2020-04-15 09:30:40 +00:00
|
|
|
slash = xmemrchr((uchar *)tmp, '/', xstrlen(paths[i]) - len);
|
2020-02-07 18:41:10 +00:00
|
|
|
if (slash)
|
|
|
|
*slash = '\0';
|
2020-02-01 14:54:56 +00:00
|
|
|
|
|
|
|
xmktree(tmpdir, TRUE);
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
if (slash)
|
|
|
|
*slash = '/';
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
if (symlink(paths[i], tmpdir)) {
|
|
|
|
DPRINTF_S(paths[i]);
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
/* Get the dir in which to start */
|
|
|
|
*tmp = '\0';
|
2020-02-01 14:54:56 +00:00
|
|
|
return tmpdir;
|
|
|
|
}
|
|
|
|
|
2020-05-04 02:18:51 +00:00
|
|
|
static char *load_input(int fd, const char *path)
|
2020-02-01 14:54:56 +00:00
|
|
|
{
|
2020-05-30 16:32:36 +00:00
|
|
|
ssize_t i, chunk_count = 1, chunk = 512 * 1024 /* 512 KiB chunk size */, entries = 0;
|
2020-02-02 11:37:53 +00:00
|
|
|
char *input = malloc(sizeof(char) * chunk), *tmpdir = NULL;
|
2020-04-18 08:05:57 +00:00
|
|
|
char cwd[PATH_MAX], *next;
|
2020-02-08 13:42:00 +00:00
|
|
|
size_t offsets[LIST_FILES_MAX];
|
2020-02-02 13:40:35 +00:00
|
|
|
char **paths = NULL;
|
2020-02-01 14:54:56 +00:00
|
|
|
ssize_t input_read, total_read = 0, off = 0;
|
2020-05-03 09:44:26 +00:00
|
|
|
int msgnum = 0;
|
2020-02-01 14:54:56 +00:00
|
|
|
|
|
|
|
if (!input) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-05-03 09:25:33 +00:00
|
|
|
if (!path) {
|
|
|
|
if (!getcwd(cwd, PATH_MAX)) {
|
|
|
|
free(input);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
xstrsncpy(cwd, path, PATH_MAX);
|
2020-02-02 11:37:53 +00:00
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
while (chunk_count < 512) {
|
2020-05-03 09:25:33 +00:00
|
|
|
input_read = read(fd, input + total_read, chunk);
|
2020-02-01 14:54:56 +00:00
|
|
|
if (input_read < 0) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
goto malloc_1;
|
|
|
|
}
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
if (input_read == 0)
|
|
|
|
break;
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
total_read += input_read;
|
|
|
|
++chunk_count;
|
|
|
|
|
|
|
|
while (off < total_read) {
|
|
|
|
next = memchr(input + off, '\0', total_read - off) + 1;
|
|
|
|
if (next == (void *)1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (next - input == off + 1) {
|
|
|
|
off = next - input;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-29 17:05:41 +00:00
|
|
|
if (entries == LIST_FILES_MAX) {
|
2020-05-03 09:44:26 +00:00
|
|
|
msgnum = MSG_LIMIT;
|
2020-02-01 14:54:56 +00:00
|
|
|
goto malloc_1;
|
2020-03-29 17:05:41 +00:00
|
|
|
}
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-02-02 12:06:35 +00:00
|
|
|
offsets[entries++] = off;
|
2020-02-01 14:54:56 +00:00
|
|
|
off = next - input;
|
|
|
|
}
|
|
|
|
|
2020-03-29 17:05:41 +00:00
|
|
|
if (chunk_count == 512) {
|
2020-05-03 09:44:26 +00:00
|
|
|
msgnum = MSG_LIMIT;
|
2020-02-02 11:55:47 +00:00
|
|
|
goto malloc_1;
|
2020-03-29 17:05:41 +00:00
|
|
|
}
|
2020-02-02 12:06:35 +00:00
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
/* We don't need to allocate another chunk */
|
|
|
|
if (chunk_count == (total_read - input_read) / chunk)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chunk_count = total_read / chunk;
|
|
|
|
if (total_read % chunk)
|
|
|
|
++chunk_count;
|
|
|
|
|
|
|
|
|
2020-02-02 12:06:35 +00:00
|
|
|
if (!(input = xrealloc(input, (chunk_count + 1) * chunk)))
|
|
|
|
return NULL;
|
2020-02-01 14:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (off != total_read) {
|
2020-03-29 17:05:41 +00:00
|
|
|
if (entries == LIST_FILES_MAX) {
|
2020-05-03 09:44:26 +00:00
|
|
|
msgnum = MSG_LIMIT;
|
2020-02-02 11:55:47 +00:00
|
|
|
goto malloc_1;
|
2020-03-29 17:05:41 +00:00
|
|
|
}
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-02-02 12:06:35 +00:00
|
|
|
offsets[entries++] = off;
|
2020-02-01 14:54:56 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
DPRINTF_D(entries);
|
|
|
|
DPRINTF_D(total_read);
|
|
|
|
DPRINTF_D(chunk_count);
|
|
|
|
|
2020-04-26 08:35:56 +00:00
|
|
|
if (!entries) {
|
2020-05-03 09:44:26 +00:00
|
|
|
msgnum = MSG_0_ENTRIES;
|
2020-02-01 14:54:56 +00:00
|
|
|
goto malloc_1;
|
2020-04-26 08:35:56 +00:00
|
|
|
}
|
2020-02-01 14:54:56 +00:00
|
|
|
|
|
|
|
input[total_read] = '\0';
|
|
|
|
|
2020-02-02 13:40:35 +00:00
|
|
|
paths = malloc(entries * sizeof(char *));
|
|
|
|
if (!paths)
|
|
|
|
goto malloc_1;
|
|
|
|
|
2020-02-02 12:06:35 +00:00
|
|
|
for (i = 0; i < entries; ++i)
|
|
|
|
paths[i] = input + offsets[i];
|
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
listroot = malloc(sizeof(char) * PATH_MAX);
|
|
|
|
if (!listroot)
|
2020-02-02 11:55:47 +00:00
|
|
|
goto malloc_1;
|
2020-06-08 04:14:53 +00:00
|
|
|
listroot[0] = '\0';
|
2020-02-02 11:37:53 +00:00
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
DPRINTF_S(paths[0]);
|
|
|
|
|
2020-02-08 13:42:00 +00:00
|
|
|
for (i = 0; i < entries; ++i) {
|
2020-02-09 00:08:12 +00:00
|
|
|
if (paths[i][0] == '\n' || selforparent(paths[i])) {
|
2020-02-08 14:05:07 +00:00
|
|
|
paths[i] = NULL;
|
2020-02-08 13:42:00 +00:00
|
|
|
continue;
|
2020-02-08 14:05:07 +00:00
|
|
|
}
|
2020-02-02 11:37:53 +00:00
|
|
|
|
2020-02-08 18:55:58 +00:00
|
|
|
if (!(paths[i] = abspath(paths[i], cwd))) {
|
2020-02-02 11:55:47 +00:00
|
|
|
entries = i; // free from the previous entry
|
|
|
|
goto malloc_2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-07 18:41:10 +00:00
|
|
|
DPRINTF_S(paths[i]);
|
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
xstrsncpy(g_buf, paths[i], PATH_MAX);
|
2020-06-08 04:14:53 +00:00
|
|
|
if (!common_prefix(xdirname(g_buf), listroot)) {
|
2020-02-02 11:55:47 +00:00
|
|
|
entries = i + 1; // free from the current entry
|
|
|
|
goto malloc_2;
|
|
|
|
}
|
2020-02-07 18:41:10 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
DPRINTF_S(listroot);
|
2020-02-02 11:55:47 +00:00
|
|
|
}
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
DPRINTF_S(listroot);
|
2020-02-07 18:41:10 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
if (listroot[0])
|
|
|
|
tmpdir = make_tmp_tree(paths, entries, listroot);
|
2020-02-01 14:54:56 +00:00
|
|
|
|
|
|
|
malloc_2:
|
|
|
|
for (i = entries - 1; i >= 0; --i)
|
|
|
|
free(paths[i]);
|
|
|
|
malloc_1:
|
2020-05-03 09:44:26 +00:00
|
|
|
if (msgnum) {
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.pluginit) {
|
2020-05-03 09:44:26 +00:00
|
|
|
printmsg(messages[msgnum]);
|
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
|
|
|
} else
|
|
|
|
fprintf(stderr, "%s\n", messages[msgnum]);
|
|
|
|
}
|
2020-02-01 14:54:56 +00:00
|
|
|
free(input);
|
2020-02-02 13:40:35 +00:00
|
|
|
free(paths);
|
2020-02-02 11:37:53 +00:00
|
|
|
return tmpdir;
|
2020-02-01 14:54:56 +00:00
|
|
|
}
|
|
|
|
|
2019-10-11 15:29:22 +00:00
|
|
|
static void check_key_collision(void)
|
2019-10-11 14:11:56 +00:00
|
|
|
{
|
2019-10-11 15:29:22 +00:00
|
|
|
int key;
|
2019-10-11 14:11:56 +00:00
|
|
|
bool bitmap[KEY_MAX] = {FALSE};
|
|
|
|
|
2020-04-13 17:51:15 +00:00
|
|
|
for (ulong i = 0; i < sizeof(bindings) / sizeof(struct key); ++i) {
|
2019-10-11 15:29:22 +00:00
|
|
|
key = bindings[i].sym;
|
2019-10-11 14:11:56 +00:00
|
|
|
|
2019-10-11 15:29:22 +00:00
|
|
|
if (bitmap[key])
|
2019-11-22 15:00:13 +00:00
|
|
|
fprintf(stdout, "key collision! [%s]\n", keyname(key));
|
2019-10-11 14:11:56 +00:00
|
|
|
else
|
2019-10-11 15:29:22 +00:00
|
|
|
bitmap[key] = TRUE;
|
2019-10-11 14:11:56 +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-09-28 14:34:24 +00:00
|
|
|
"%s: nnn [OPTIONS] [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"
|
2020-05-23 22:00:51 +00:00
|
|
|
" PATH start dir/file [default: .]\n\n"
|
2018-08-16 15:05:57 +00:00
|
|
|
"optional args:\n"
|
2020-05-23 12:03:37 +00:00
|
|
|
#ifndef NOFIFO
|
|
|
|
" -a auto NNN_FIFO\n"
|
|
|
|
#endif
|
2020-01-08 22:04:10 +00:00
|
|
|
" -A no dir auto-select\n"
|
2020-04-24 04:24:43 +00:00
|
|
|
" -b key open bookmark key (trumps -s/S)\n"
|
|
|
|
" -c cli-only NNN_OPENER (trumps -e)\n"
|
2020-08-06 03:26:33 +00:00
|
|
|
" -C earlier colorscheme\n"
|
2019-08-04 04:25:14 +00:00
|
|
|
" -d detail mode\n"
|
2020-03-25 06:17:30 +00:00
|
|
|
" -e text in $VISUAL/$EDITOR/vi\n"
|
2019-11-28 20:24:47 +00:00
|
|
|
" -E use EDITOR for undetached edits\n"
|
2020-03-20 16:54:15 +00:00
|
|
|
#ifndef NORL
|
|
|
|
" -f use readline history file\n"
|
|
|
|
#endif
|
2020-03-30 03:39:11 +00:00
|
|
|
" -F show fortune\n"
|
2019-12-14 08:36:00 +00:00
|
|
|
" -g regex filters [default: string]\n"
|
2019-08-04 04:25:14 +00:00
|
|
|
" -H show hidden files\n"
|
2019-10-11 15:29:22 +00:00
|
|
|
" -K detect key collision\n"
|
2020-05-10 05:51:37 +00:00
|
|
|
" -l val set scroll lines\n"
|
2020-04-12 13:31:02 +00:00
|
|
|
" -n type-to-nav mode\n"
|
2020-01-11 10:42:34 +00:00
|
|
|
" -o open files only on Enter\n"
|
2019-10-02 17:04:11 +00:00
|
|
|
" -p file selection file [stdout if '-']\n"
|
2020-05-18 03:35:19 +00:00
|
|
|
" -P key run plugin key\n"
|
2019-12-14 17:58:13 +00:00
|
|
|
" -Q no quit confirmation\n"
|
2019-10-02 17:04:11 +00:00
|
|
|
" -r use advcpmv patched cp, mv\n"
|
2019-12-14 17:58:13 +00:00
|
|
|
" -R no rollover at edges\n"
|
2019-12-20 10:19:13 +00:00
|
|
|
" -s name load session by name\n"
|
2020-04-17 23:24:07 +00:00
|
|
|
" -S persistent session\n"
|
2020-01-17 13:36:42 +00:00
|
|
|
" -t secs timeout to lock\n"
|
2020-03-17 21:05:05 +00:00
|
|
|
" -T key sort order [a/d/e/r/s/t/v]\n"
|
2020-06-15 14:24:44 +00:00
|
|
|
" -u use selection (no prompt)\n"
|
2019-12-28 05:45:38 +00:00
|
|
|
" -V show version\n"
|
2020-08-04 15:06:19 +00:00
|
|
|
" -w place HW cursor on hovered\n"
|
2019-12-12 14:21:08 +00:00
|
|
|
" -x notis, sel to system clipboard\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;
|
2019-06-09 05:06:35 +00:00
|
|
|
char *xdgcfg = getenv("XDG_CONFIG_HOME");
|
|
|
|
bool xdg = FALSE;
|
2019-04-21 18:29:51 +00:00
|
|
|
|
|
|
|
/* Set up configuration file paths */
|
2019-06-09 05:06:35 +00:00
|
|
|
if (xdgcfg && xdgcfg[0]) {
|
|
|
|
DPRINTF_S(xdgcfg);
|
|
|
|
if (xdgcfg[0] == '~') {
|
2020-04-12 00:35:14 +00:00
|
|
|
r = xstrsncpy(g_buf, home, PATH_MAX);
|
|
|
|
xstrsncpy(g_buf + r - 1, xdgcfg + 1, PATH_MAX);
|
2019-06-09 05:06:35 +00:00
|
|
|
xdgcfg = g_buf;
|
|
|
|
DPRINTF_S(xdgcfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xdiraccess(xdgcfg)) {
|
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-04-15 09:30:40 +00:00
|
|
|
len = xstrlen(xdgcfg) + 1 + 13; /* add length of "/nnn/sessions" */
|
2019-06-09 05:06:35 +00:00
|
|
|
xdg = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xdg)
|
2020-04-15 09:30:40 +00:00
|
|
|
len = xstrlen(home) + 1 + 21; /* add length of "/.config/nnn/sessions" */
|
2019-06-09 05:06:35 +00:00
|
|
|
|
2020-06-08 04:14:53 +00:00
|
|
|
cfgpath = (char *)malloc(len);
|
|
|
|
plgpath = (char *)malloc(len);
|
|
|
|
if (!cfgpath || !plgpath) {
|
2019-04-21 18:29:51 +00:00
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-05-27 13:25:05 +00:00
|
|
|
|
2019-06-09 05:06:35 +00:00
|
|
|
if (xdg) {
|
2020-06-08 04:14:53 +00:00
|
|
|
xstrsncpy(cfgpath, xdgcfg, len);
|
2019-11-02 16:20:26 +00:00
|
|
|
r = len - 13; /* subtract length of "/nnn/sessions" */
|
2019-06-09 05:06:35 +00:00
|
|
|
} else {
|
2020-06-08 04:14:53 +00:00
|
|
|
r = xstrsncpy(cfgpath, home, len);
|
2019-06-09 05:06:35 +00:00
|
|
|
|
|
|
|
/* Create ~/.config */
|
2020-06-08 04:14:53 +00:00
|
|
|
xstrsncpy(cfgpath + r - 1, "/.config", len - r);
|
|
|
|
DPRINTF_S(cfgpath);
|
2019-06-09 05:06:35 +00:00
|
|
|
r += 8; /* length of "/.config" */
|
2019-05-27 13:25:05 +00:00
|
|
|
}
|
2019-04-21 18:29:51 +00:00
|
|
|
|
|
|
|
/* Create ~/.config/nnn */
|
2020-06-08 04:14:53 +00:00
|
|
|
xstrsncpy(cfgpath + r - 1, "/nnn", len - r);
|
|
|
|
DPRINTF_S(cfgpath);
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2020-06-08 16:26:33 +00:00
|
|
|
/* Create sessions, mounts and plugins directories */
|
|
|
|
for (r = 0; r < ELEMENTS(toks); ++r) {
|
|
|
|
mkpath(cfgpath, toks[r], plgpath);
|
|
|
|
if (!xmktree(plgpath, TRUE)) {
|
|
|
|
DPRINTF_S(toks[r]);
|
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-10-18 22:11:39 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Set selection file path */
|
2020-06-09 17:33:36 +00:00
|
|
|
if (!g_state.picker) {
|
2020-04-24 04:42:24 +00:00
|
|
|
char *env_sel = xgetenv(env_cfg[NNN_SEL], NULL);
|
2020-08-02 18:28:52 +00:00
|
|
|
selpath = env_sel ? xstrdup(env_sel)
|
|
|
|
: (char *)malloc(len + 3); /* Length of "/.config/nnn/.selection" */
|
2020-04-24 04:42:24 +00:00
|
|
|
|
2020-03-01 14:18:40 +00:00
|
|
|
if (!selpath) {
|
2020-01-14 22:35:26 +00:00
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-04-24 04:42:24 +00:00
|
|
|
if (!env_sel) {
|
2020-06-08 04:14:53 +00:00
|
|
|
r = xstrsncpy(selpath, cfgpath, len + 3);
|
2020-04-24 04:42:24 +00:00
|
|
|
xstrsncpy(selpath + r - 1, "/.selection", 12);
|
|
|
|
DPRINTF_S(selpath);
|
|
|
|
}
|
2019-04-21 18:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
static bool set_tmp_path(void)
|
2019-04-21 18:29:51 +00:00
|
|
|
{
|
2020-02-04 17:40:46 +00:00
|
|
|
char *tmp = "/tmp";
|
|
|
|
char *path = xdiraccess(tmp) ? tmp : getenv("TMPDIR");
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2020-02-04 17:40:46 +00:00
|
|
|
if (!path) {
|
|
|
|
fprintf(stderr, "set TMPDIR\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2020-04-12 00:35:14 +00:00
|
|
|
tmpfplen = (uchar)xstrsncpy(g_tmpfpath, path, TMP_LEN_MAX);
|
2020-02-04 17:40:46 +00:00
|
|
|
return TRUE;
|
2019-04-21 18:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void cleanup(void)
|
|
|
|
{
|
2020-03-01 14:18:40 +00:00
|
|
|
free(selpath);
|
2020-06-08 04:14:53 +00:00
|
|
|
free(plgpath);
|
|
|
|
free(cfgpath);
|
2019-04-23 03:20:25 +00:00
|
|
|
free(initpath);
|
2019-08-07 13:16:47 +00:00
|
|
|
free(bmstr);
|
2019-08-13 19:28:33 +00:00
|
|
|
free(pluginstr);
|
2020-06-08 04:14:53 +00:00
|
|
|
free(listroot);
|
2020-02-22 03:14:28 +00:00
|
|
|
free(ihashbmp);
|
2020-02-28 13:50:42 +00:00
|
|
|
free(bookmark);
|
|
|
|
free(plug);
|
2020-05-23 12:03:37 +00:00
|
|
|
#ifndef NOFIFO
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.autofifo)
|
2020-05-23 12:03:37 +00:00
|
|
|
unlink(fifopath);
|
|
|
|
#endif
|
2020-05-30 10:01:37 +00:00
|
|
|
if (g_state.pluginit)
|
|
|
|
unlink(g_pipepath);
|
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;
|
2019-10-18 22:11:39 +00:00
|
|
|
char *session = NULL;
|
2020-05-18 03:35:19 +00:00
|
|
|
int fd, opt, sort = 0, pkey = '\0'; /* Plugin key */
|
2020-02-14 13:18:44 +00:00
|
|
|
#ifndef NOMOUSE
|
|
|
|
mmask_t mask;
|
2020-03-11 03:39:57 +00:00
|
|
|
char *middle_click_env = xgetenv(env_cfg[NNN_MCLICK], "\0");
|
|
|
|
if (middle_click_env[0] == '^' && middle_click_env[1])
|
|
|
|
middle_click_key = CONTROL(middle_click_env[1]);
|
|
|
|
else
|
2020-03-31 22:20:17 +00:00
|
|
|
middle_click_key = (uchar)middle_click_env[0];
|
2020-02-14 13:18:44 +00:00
|
|
|
#endif
|
2020-02-14 15:23:20 +00:00
|
|
|
const char* const env_opts = xgetenv(env_cfg[NNN_OPTS], NULL);
|
2020-04-15 09:30:40 +00:00
|
|
|
int env_opts_id = env_opts ? (int)xstrlen(env_opts) : -1;
|
2020-03-20 16:54:15 +00:00
|
|
|
#ifndef NORL
|
|
|
|
bool rlhist = FALSE;
|
|
|
|
#endif
|
2015-11-26 16:00:26 +00:00
|
|
|
|
2020-02-14 15:23:20 +00:00
|
|
|
while ((opt = (env_opts_id > 0
|
|
|
|
? env_opts[--env_opts_id]
|
2020-08-04 15:06:19 +00:00
|
|
|
: getopt(argc, argv, "aAb:cCdeEfFgHKl:nop:P:QrRs:St:T:uVwxh"))) != -1) {
|
2017-04-01 05:18:18 +00:00
|
|
|
switch (opt) {
|
2020-05-23 12:03:37 +00:00
|
|
|
#ifndef NOFIFO
|
|
|
|
case 'a':
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.autofifo = 1;
|
2020-05-23 12:03:37 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2020-01-08 22:04:10 +00:00
|
|
|
case 'A':
|
|
|
|
cfg.autoselect = 0;
|
|
|
|
break;
|
2017-12-24 09:51:38 +00:00
|
|
|
case 'b':
|
2020-05-18 03:35:19 +00:00
|
|
|
if (env_opts_id < 0)
|
|
|
|
arg = optarg;
|
2017-12-24 09:51:38 +00:00
|
|
|
break;
|
2019-10-02 22:03:15 +00:00
|
|
|
case 'c':
|
|
|
|
cfg.cliopener = 1;
|
|
|
|
break;
|
2020-08-04 15:06:19 +00:00
|
|
|
case 'C':
|
2020-08-05 14:35:27 +00:00
|
|
|
g_state.oldcolor = 1;
|
2020-08-04 15:06:19 +00:00
|
|
|
break;
|
2020-01-22 20:19:04 +00:00
|
|
|
case 'd':
|
|
|
|
cfg.showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
break;
|
2020-01-17 13:36:42 +00:00
|
|
|
case 'e':
|
|
|
|
cfg.useeditor = 1;
|
|
|
|
break;
|
2019-11-23 20:24:06 +00:00
|
|
|
case 'E':
|
|
|
|
cfg.waitedit = 1;
|
|
|
|
break;
|
2020-03-20 16:54:15 +00:00
|
|
|
case 'f':
|
|
|
|
#ifndef NORL
|
|
|
|
rlhist = TRUE;
|
|
|
|
#endif
|
|
|
|
break;
|
2020-03-30 03:39:11 +00:00
|
|
|
case 'F':
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.fortune = 1;
|
2020-03-30 03:39:11 +00:00
|
|
|
break;
|
2019-12-14 08:36:00 +00:00
|
|
|
case 'g':
|
2020-01-11 05:53:57 +00:00
|
|
|
cfg.regex = 1;
|
2019-12-14 08:36:00 +00:00
|
|
|
filterfn = &visible_re;
|
|
|
|
break;
|
2019-08-04 04:25:14 +00:00
|
|
|
case 'H':
|
|
|
|
cfg.showhidden = 1;
|
|
|
|
break;
|
2020-01-22 20:19:04 +00:00
|
|
|
case 'K':
|
|
|
|
check_key_collision();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_SUCCESS;
|
2020-05-10 05:51:37 +00:00
|
|
|
case 'l':
|
|
|
|
if (env_opts_id < 0)
|
|
|
|
scroll_lines = atoi(optarg);
|
|
|
|
break;
|
2019-07-14 17:30:14 +00:00
|
|
|
case 'n':
|
2019-12-25 17:03:38 +00:00
|
|
|
cfg.filtermode = 1;
|
2019-07-14 17:30:14 +00:00
|
|
|
break;
|
2019-08-16 18:10:43 +00:00
|
|
|
case 'o':
|
|
|
|
cfg.nonavopen = 1;
|
|
|
|
break;
|
2018-11-23 17:11:47 +00:00
|
|
|
case 'p':
|
2020-02-14 15:23:20 +00:00
|
|
|
if (env_opts_id >= 0)
|
2020-02-14 15:05:18 +00:00
|
|
|
break;
|
2020-02-14 15:23:20 +00:00
|
|
|
|
2020-06-09 17:33:36 +00:00
|
|
|
g_state.picker = 1;
|
2020-04-25 15:06:10 +00:00
|
|
|
if (optarg[0] == '-' && optarg[1] == '\0')
|
2020-06-09 17:33:36 +00:00
|
|
|
g_state.pickraw = 1;
|
2020-04-25 15:06:10 +00:00
|
|
|
else {
|
|
|
|
fd = open(optarg, O_WRONLY | O_CREAT, 0600);
|
2019-04-22 20:22:53 +00:00
|
|
|
if (fd == -1) {
|
2019-03-09 03:43:36 +00:00
|
|
|
xerror();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2018-11-23 17:11:47 +00:00
|
|
|
}
|
2019-04-22 20:22:53 +00:00
|
|
|
|
|
|
|
close(fd);
|
2020-03-01 14:18:40 +00:00
|
|
|
selpath = realpath(optarg, NULL);
|
|
|
|
unlink(selpath);
|
2018-11-23 17:11:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2020-05-18 03:35:19 +00:00
|
|
|
case 'P':
|
|
|
|
if (env_opts_id < 0 && !optarg[1])
|
2020-05-19 03:20:04 +00:00
|
|
|
pkey = (uchar)optarg[0];
|
2020-05-18 03:35:19 +00:00
|
|
|
break;
|
2019-12-14 17:58:13 +00:00
|
|
|
case 'Q':
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.forcequit = 1;
|
2019-12-14 17:58:13 +00:00
|
|
|
break;
|
2019-08-23 14:48:17 +00:00
|
|
|
case 'r':
|
|
|
|
#ifdef __linux__
|
2020-01-18 08:43:56 +00:00
|
|
|
cp[2] = cp[5] = mv[2] = mv[5] = 'g'; /* cp -iRp -> cpg -giRp */
|
|
|
|
cp[4] = mv[4] = '-';
|
2019-08-23 14:48:17 +00:00
|
|
|
#endif
|
|
|
|
break;
|
2019-12-01 17:30:06 +00:00
|
|
|
case 'R':
|
|
|
|
cfg.rollover = 0;
|
|
|
|
break;
|
2019-12-20 10:19:13 +00:00
|
|
|
case 's':
|
2020-02-14 15:23:20 +00:00
|
|
|
if (env_opts_id < 0)
|
|
|
|
session = optarg;
|
2019-12-20 10:19:13 +00:00
|
|
|
break;
|
2020-04-17 23:24:07 +00:00
|
|
|
case 'S':
|
|
|
|
session = "@";
|
|
|
|
break;
|
2020-01-17 13:36:42 +00:00
|
|
|
case 't':
|
2020-02-14 15:23:20 +00:00
|
|
|
if (env_opts_id < 0)
|
|
|
|
idletimeout = atoi(optarg);
|
2020-01-17 13:36:42 +00:00
|
|
|
break;
|
2020-03-17 21:05:05 +00:00
|
|
|
case 'T':
|
|
|
|
if (env_opts_id < 0)
|
2020-03-31 22:20:17 +00:00
|
|
|
sort = (uchar)optarg[0];
|
2020-03-17 21:05:05 +00:00
|
|
|
break;
|
2020-06-15 14:24:44 +00:00
|
|
|
case 'u':
|
|
|
|
cfg.prefersel = 1;
|
|
|
|
break;
|
2019-12-28 05:45:38 +00:00
|
|
|
case 'V':
|
|
|
|
fprintf(stdout, "%s\n", VERSION);
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_SUCCESS;
|
2020-08-04 15:06:19 +00:00
|
|
|
case 'w':
|
|
|
|
cfg.cursormode = 1;
|
|
|
|
break;
|
2019-12-12 14:21:08 +00:00
|
|
|
case 'x':
|
|
|
|
cfg.x11 = 1;
|
|
|
|
break;
|
2018-11-28 02:48:01 +00:00
|
|
|
case 'h':
|
|
|
|
usage();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_SUCCESS;
|
2017-04-01 05:18:18 +00:00
|
|
|
default:
|
|
|
|
usage();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2017-03-30 20:04:41 +00:00
|
|
|
}
|
2020-05-29 23:21:16 +00:00
|
|
|
if (env_opts_id == 0)
|
|
|
|
env_opts_id = -1;
|
2017-04-01 05:18:18 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 17:25:59 +00:00
|
|
|
#ifdef DBGMODE
|
|
|
|
enabledbg();
|
2019-10-31 21:04:06 +00:00
|
|
|
DPRINTF_S(VERSION);
|
2019-04-16 17:25:59 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-01 14:54:56 +00:00
|
|
|
/* Prefix for temporary files */
|
|
|
|
if (!set_tmp_path())
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
atexit(cleanup);
|
|
|
|
|
2020-04-24 18:05:43 +00:00
|
|
|
/* Check if we are in path list mode */
|
|
|
|
if (!isatty(STDIN_FILENO)) {
|
|
|
|
/* This is the same as listpath */
|
2020-05-03 09:25:33 +00:00
|
|
|
initpath = load_input(STDIN_FILENO, NULL);
|
2020-04-26 08:35:56 +00:00
|
|
|
if (!initpath)
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2020-04-24 18:05:43 +00:00
|
|
|
/* We return to tty */
|
|
|
|
dup2(STDOUT_FILENO, STDIN_FILENO);
|
2020-04-24 15:00:16 +00:00
|
|
|
}
|
2020-04-24 14:56:09 +00:00
|
|
|
|
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");
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-04-21 18:29:51 +00:00
|
|
|
}
|
2019-03-20 18:22:08 +00:00
|
|
|
DPRINTF_S(home);
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
if (!setup_config())
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2019-05-15 03:44:28 +00:00
|
|
|
/* Get custom opener, if set */
|
2019-11-22 15:16:05 +00:00
|
|
|
opener = xgetenv(env_cfg[NNN_OPENER], utils[UTIL_OPENER]);
|
2019-05-15 03:44:28 +00:00
|
|
|
DPRINTF_S(opener);
|
|
|
|
|
2018-10-17 15:16:29 +00:00
|
|
|
/* Parse bookmarks string */
|
2020-02-28 13:50:42 +00:00
|
|
|
if (!parsekvpair(&bookmark, &bmstr, NNN_BMS, &maxbm)) {
|
2019-03-09 03:43:36 +00:00
|
|
|
fprintf(stderr, "%s\n", env_cfg[NNN_BMS]);
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-02-22 19:32:05 +00:00
|
|
|
}
|
2017-12-24 09:51:38 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
/* Parse plugins string */
|
2020-02-28 13:50:42 +00:00
|
|
|
if (!parsekvpair(&plug, &pluginstr, NNN_PLUG, &maxplug)) {
|
2020-01-18 15:27:51 +00:00
|
|
|
fprintf(stderr, "%s\n", env_cfg[NNN_PLUG]);
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-08-14 14:27:44 +00:00
|
|
|
}
|
2019-08-13 19:28:33 +00:00
|
|
|
|
2020-02-17 14:21:24 +00:00
|
|
|
if (!initpath) {
|
|
|
|
if (arg) { /* Open a bookmark directly */
|
|
|
|
if (!arg[1]) /* Bookmarks keys are single char */
|
2020-04-17 08:13:25 +00:00
|
|
|
initpath = get_kv_val(bookmark, NULL, *arg, maxbm, NNN_BMS);
|
2019-10-24 03:14:36 +00:00
|
|
|
|
2020-02-17 14:21:24 +00:00
|
|
|
if (!initpath) {
|
|
|
|
fprintf(stderr, "%s\n", messages[MSG_INVALID_KEY]);
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-17 14:21:24 +00:00
|
|
|
}
|
2020-04-24 04:24:43 +00:00
|
|
|
|
|
|
|
if (session)
|
|
|
|
session = NULL;
|
2020-02-17 14:21:24 +00:00
|
|
|
} else if (argc == optind) {
|
|
|
|
/* Start in the current directory */
|
|
|
|
initpath = getcwd(NULL, PATH_MAX);
|
|
|
|
if (!initpath)
|
|
|
|
initpath = "/";
|
|
|
|
} else {
|
|
|
|
arg = argv[optind];
|
|
|
|
DPRINTF_S(arg);
|
2020-05-03 22:38:12 +00:00
|
|
|
if (xstrlen(arg) > 7 && is_prefix(arg, "file://", 7))
|
2020-02-17 14:21:24 +00:00
|
|
|
arg = arg + 7;
|
|
|
|
initpath = realpath(arg, NULL);
|
|
|
|
DPRINTF_S(initpath);
|
|
|
|
if (!initpath) {
|
|
|
|
xerror();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-17 14:21:24 +00:00
|
|
|
}
|
2019-05-15 03:44:28 +00:00
|
|
|
|
2020-02-17 14:21:24 +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;
|
2019-05-15 03:44:28 +00:00
|
|
|
|
2020-02-17 14:21:24 +00:00
|
|
|
if (stat(initpath, &sb) == -1) {
|
|
|
|
xerror();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-02-17 14:21:24 +00:00
|
|
|
}
|
2019-05-15 03:44:28 +00:00
|
|
|
|
2020-05-23 22:00:51 +00:00
|
|
|
if (!S_ISDIR(sb.st_mode))
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.initfile = 1;
|
2020-05-06 17:56:40 +00:00
|
|
|
|
|
|
|
if (session)
|
|
|
|
session = NULL;
|
2019-05-15 03:44:28 +00:00
|
|
|
}
|
2014-10-21 10:29:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-29 17:51:18 +00:00
|
|
|
/* Set archive handling (enveditor used as tmp var) */
|
|
|
|
enveditor = getenv(env_cfg[NNN_ARCHIVE]);
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
2020-02-27 19:03:35 +00:00
|
|
|
if (setfilter(&archive_pcre, (enveditor ? enveditor : patterns[P_ARCHIVE]))) {
|
2020-01-23 18:54:51 +00:00
|
|
|
#else
|
2020-02-27 19:03:35 +00:00
|
|
|
if (setfilter(&archive_re, (enveditor ? enveditor : patterns[P_ARCHIVE]))) {
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2019-12-29 17:51:18 +00:00
|
|
|
fprintf(stderr, "%s\n", messages[MSG_INVALID_REG]);
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-12-29 17:51:18 +00:00
|
|
|
}
|
|
|
|
|
2020-01-17 13:36:42 +00:00
|
|
|
/* An all-CLI opener overrides option -e) */
|
|
|
|
if (cfg.cliopener)
|
|
|
|
cfg.useeditor = 0;
|
2018-12-01 02:12:37 +00:00
|
|
|
|
2018-12-01 01:49:56 +00:00
|
|
|
/* Get VISUAL/EDITOR */
|
2019-12-03 15:40:42 +00:00
|
|
|
enveditor = xgetenv(envs[ENV_EDITOR], utils[UTIL_VI]);
|
2019-11-23 20:24:06 +00:00
|
|
|
editor = xgetenv(envs[ENV_VISUAL], enveditor);
|
2019-11-22 15:00:13 +00:00
|
|
|
DPRINTF_S(getenv(envs[ENV_VISUAL]));
|
|
|
|
DPRINTF_S(getenv(envs[ENV_EDITOR]));
|
2019-01-24 16:39:41 +00:00
|
|
|
DPRINTF_S(editor);
|
2018-12-01 01:49:56 +00:00
|
|
|
|
|
|
|
/* Get PAGER */
|
2019-12-03 15:40:42 +00:00
|
|
|
pager = xgetenv(envs[ENV_PAGER], utils[UTIL_LESS]);
|
2019-01-24 16:39:41 +00:00
|
|
|
DPRINTF_S(pager);
|
2018-12-01 00:28:15 +00:00
|
|
|
|
2018-12-01 02:36:34 +00:00
|
|
|
/* Get SHELL */
|
2019-12-03 15:40:42 +00:00
|
|
|
shell = xgetenv(envs[ENV_SHELL], utils[UTIL_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"));
|
2018-12-01 02:36:34 +00:00
|
|
|
|
2020-05-04 04:05:13 +00:00
|
|
|
#ifndef NOFIFO
|
|
|
|
/* Create fifo */
|
2020-05-30 01:15:45 +00:00
|
|
|
if (g_state.autofifo) {
|
2020-05-23 12:03:37 +00:00
|
|
|
g_tmpfpath[tmpfplen - 1] = '\0';
|
2020-07-04 17:31:36 +00:00
|
|
|
|
|
|
|
size_t r = mkpath(g_tmpfpath, "nnn-fifo.", g_buf);
|
|
|
|
|
|
|
|
xstrsncpy(g_buf + r - 1, xitoa(getpid()), PATH_MAX - r);
|
2020-05-23 12:03:37 +00:00
|
|
|
setenv("NNN_FIFO", g_buf, TRUE);
|
|
|
|
}
|
|
|
|
|
2020-05-16 10:01:34 +00:00
|
|
|
fifopath = xgetenv("NNN_FIFO", NULL);
|
2020-05-04 04:05:13 +00:00
|
|
|
if (fifopath) {
|
|
|
|
if (mkfifo(fifopath, 0600) != 0 && !(errno == EEXIST && access(fifopath, W_OK) == 0)) {
|
|
|
|
xerror();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2020-05-04 04:05:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 18:16:26 +00:00
|
|
|
sigaction(SIGPIPE, &(struct sigaction){.sa_handler = SIG_IGN}, NULL);
|
2020-05-04 04:05:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
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();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2017-08-21 16:33:26 +00:00
|
|
|
}
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
|
|
|
haiku_hnd = haiku_init_nm();
|
|
|
|
if (!haiku_hnd) {
|
|
|
|
xerror();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-12-27 18:02:20 +00:00
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-17 15:04:03 +00:00
|
|
|
/* Configure trash preference */
|
2019-04-24 15:01:52 +00:00
|
|
|
if (xgetenv_set(env_cfg[NNN_TRASH]))
|
2020-05-30 01:15:45 +00:00
|
|
|
g_state.trash = 1;
|
2019-03-02 09:07:57 +00:00
|
|
|
|
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();
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2019-02-08 18:38:46 +00:00
|
|
|
}
|
2020-05-29 18:16:26 +00:00
|
|
|
|
|
|
|
act.sa_handler = clean_exit_sighandler;
|
|
|
|
|
|
|
|
if (sigaction(SIGTERM, &act, NULL) < 0 || sigaction(SIGHUP, &act, NULL) < 0) {
|
|
|
|
xerror();
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
|
|
|
|
if (sigaction(SIGQUIT, &act, NULL) < 0) {
|
|
|
|
xerror();
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-11-03 17:48:39 +00:00
|
|
|
|
2019-10-04 02:13:07 +00:00
|
|
|
#ifndef NOLOCALE
|
2017-06-25 04:33:30 +00:00
|
|
|
/* Set locale */
|
|
|
|
setlocale(LC_ALL, "");
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
tables = pcre_maketables();
|
|
|
|
#endif
|
2019-10-04 02:13:07 +00:00
|
|
|
#endif
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2019-07-16 03:02:45 +00:00
|
|
|
#if RL_READLINE_VERSION >= 0x0603
|
2019-07-16 03:09:11 +00:00
|
|
|
/* readline would overwrite the WINCH signal hook */
|
2019-07-16 02:25:01 +00:00
|
|
|
rl_change_environment = 0;
|
2019-07-16 03:02:45 +00:00
|
|
|
#endif
|
2019-01-24 06:35:13 +00:00
|
|
|
/* Bind TAB to cycling */
|
|
|
|
rl_variable_bind("completion-ignore-case", "on");
|
2019-01-24 06:53:59 +00:00
|
|
|
#ifdef __linux__
|
2019-01-24 06:35:13 +00:00
|
|
|
rl_bind_key('\t', rl_menu_complete);
|
2019-01-24 06:53:59 +00:00
|
|
|
#else
|
|
|
|
rl_bind_key('\t', rl_complete);
|
|
|
|
#endif
|
2020-03-20 16:54:15 +00:00
|
|
|
if (rlhist) {
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(cfgpath, ".history", g_buf);
|
2020-03-20 16:54:15 +00:00
|
|
|
read_history(g_buf);
|
|
|
|
}
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-01-24 06:35:13 +00:00
|
|
|
|
2020-02-14 13:18:44 +00:00
|
|
|
#ifndef NOMOUSE
|
2019-08-24 14:14:49 +00:00
|
|
|
if (!initcurses(&mask))
|
2020-02-14 13:18:44 +00:00
|
|
|
#else
|
|
|
|
if (!initcurses(NULL))
|
|
|
|
#endif
|
2020-05-10 04:34:03 +00:00
|
|
|
return EXIT_FAILURE;
|
2018-12-08 09:58:55 +00:00
|
|
|
|
2020-03-17 21:05:05 +00:00
|
|
|
if (sort)
|
|
|
|
set_sort_flags(sort);
|
|
|
|
|
2020-05-18 03:35:19 +00:00
|
|
|
opt = browse(initpath, session, pkey);
|
2020-02-14 02:51:30 +00:00
|
|
|
|
|
|
|
#ifndef NOMOUSE
|
2019-08-24 14:14:49 +00:00
|
|
|
mousemask(mask, NULL);
|
2020-02-14 02:51:30 +00:00
|
|
|
#endif
|
2020-02-01 14:54:56 +00:00
|
|
|
|
2017-07-05 04:08:19 +00:00
|
|
|
exitcurses();
|
2017-08-20 20:48:14 +00:00
|
|
|
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2020-03-20 16:54:15 +00:00
|
|
|
if (rlhist) {
|
2020-06-08 04:14:53 +00:00
|
|
|
mkpath(cfgpath, ".history", g_buf);
|
2020-03-20 16:54:15 +00:00
|
|
|
write_history(g_buf);
|
|
|
|
}
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-01-24 06:35:13 +00:00
|
|
|
|
2020-06-09 17:33:36 +00:00
|
|
|
if (g_state.pickraw || g_state.picker) {
|
2020-04-24 18:05:43 +00:00
|
|
|
if (selbufpos) {
|
2020-06-09 17:33:36 +00:00
|
|
|
fd = g_state.pickraw ? 1 : open(selpath, O_WRONLY | O_CREAT, 0600);
|
2020-04-25 15:06:10 +00:00
|
|
|
if ((fd == -1) || (seltofile(fd, NULL) != (size_t)(selbufpos)))
|
2020-04-24 18:05:43 +00:00
|
|
|
xerror();
|
|
|
|
|
|
|
|
if (fd > 1)
|
|
|
|
close(fd);
|
|
|
|
}
|
2020-03-01 14:18:40 +00:00
|
|
|
} else if (selpath)
|
|
|
|
unlink(selpath);
|
2018-09-06 00:13:14 +00:00
|
|
|
|
2020-04-24 18:05:43 +00:00
|
|
|
/* Remove tmp dir in list mode */
|
2020-05-03 09:25:33 +00:00
|
|
|
rmlistpath();
|
2020-04-24 18:05:43 +00:00
|
|
|
|
2019-12-29 17:51:18 +00:00
|
|
|
/* Free the regex */
|
2020-01-23 18:54:51 +00:00
|
|
|
#ifdef PCRE
|
|
|
|
pcre_free(archive_pcre);
|
|
|
|
#else
|
2019-12-29 17:51:18 +00:00
|
|
|
regfree(&archive_re);
|
2020-01-23 18:54:51 +00:00
|
|
|
#endif
|
2019-12-29 17:51:18 +00:00
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
/* Free the selection buffer */
|
|
|
|
free(pselbuf);
|
2018-11-23 19:10:03 +00:00
|
|
|
|
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);
|
2019-12-27 18:02:20 +00:00
|
|
|
#elif defined(HAIKU_NM)
|
|
|
|
haiku_close_nm(haiku_hnd);
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2017-08-21 16:33:26 +00:00
|
|
|
|
2020-05-04 04:05:13 +00:00
|
|
|
#ifndef NOFIFO
|
2020-06-02 10:59:26 +00:00
|
|
|
notify_fifo(FALSE);
|
2020-05-04 04:05:13 +00:00
|
|
|
if (fifofd != -1)
|
|
|
|
close(fifofd);
|
|
|
|
#endif
|
|
|
|
|
2020-01-16 13:55:48 +00:00
|
|
|
return opt;
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|