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>
|
|
|
|
* Copyright (C) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
|
2018-09-07 15:50:10 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
2018-10-04 19:08:57 +00:00
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
2018-09-07 15:50:10 +00:00
|
|
|
*
|
2018-10-04 19:08:57 +00:00
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
2018-09-07 15:50:10 +00:00
|
|
|
*
|
2018-10-04 19:08:57 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2017-08-24 15:18:01 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef __linux__
|
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
|
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>
|
2017-04-24 08:03:33 +00:00
|
|
|
#ifdef __gnu_hurd__
|
|
|
|
#define PATH_MAX 4096
|
|
|
|
#endif
|
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
|
2014-10-09 09:33:49 +00:00
|
|
|
#include <regex.h>
|
2015-06-09 08:12:17 +00:00
|
|
|
#include <signal.h>
|
2014-11-14 13:05:17 +00:00
|
|
|
#include <stdarg.h>
|
2015-06-09 08:12:17 +00:00
|
|
|
#include <stdlib.h>
|
2019-10-16 01:37:45 +00:00
|
|
|
#ifdef __sun
|
|
|
|
#include <alloca.h>
|
|
|
|
#endif
|
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
|
|
|
|
2017-09-02 06:09:44 +00:00
|
|
|
#include "nnn.h"
|
2019-03-17 23:35:47 +00:00
|
|
|
#include "dbg.h"
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Macro definitions */
|
2019-12-04 23:17:32 +00:00
|
|
|
#define VERSION "2.8.1"
|
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
|
|
|
|
2019-03-17 23:35:47 +00:00
|
|
|
#ifndef S_BLKSIZE
|
|
|
|
#define S_BLKSIZE 512 /* S_BLKSIZE is missing on Android NDK (Termux) */
|
|
|
|
#endif
|
|
|
|
|
2019-10-14 12:25:04 +00:00
|
|
|
#define _ABSSUB(N, M) (((N) <= (M)) ? ((M) - (N)) : ((N) - (M)))
|
2019-11-24 15:52:44 +00:00
|
|
|
#define DOUBLECLICK_INTERVAL_NS (400000000)
|
2019-11-25 02:20:22 +00:00
|
|
|
#define XDELAY_INTERVAL_MS (350000) /* 350 ms delay */
|
2014-10-07 06:05:30 +00:00
|
|
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
2014-10-22 16:41:16 +00:00
|
|
|
#undef MIN
|
2014-10-07 06:49:46 +00:00
|
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
2019-05-09 02:37:37 +00:00
|
|
|
#undef MAX
|
|
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
2014-10-07 14:00:25 +00:00
|
|
|
#define ISODD(x) ((x) & 1)
|
2019-03-11 16:19:35 +00:00
|
|
|
#define ISBLANK(x) ((x) == ' ' || (x) == '\t')
|
2019-10-24 13:24:33 +00:00
|
|
|
#define TOUPPER(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
|
2018-12-20 16:34:48 +00:00
|
|
|
#define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1))
|
2019-10-05 01:47:01 +00:00
|
|
|
#define READLINE_MAX 128
|
2017-06-03 23:19:16 +00:00
|
|
|
#define FILTER '/'
|
2019-03-10 23:55:17 +00:00
|
|
|
#define MSGWAIT '$'
|
2019-03-09 09:26:18 +00:00
|
|
|
#define REGEX_MAX 48
|
2017-08-24 04:46:35 +00:00
|
|
|
#define BM_MAX 10
|
2019-10-24 07:09:31 +00:00
|
|
|
#define PLUGIN_MAX 15
|
2017-12-18 19:46:03 +00:00
|
|
|
#define ENTRY_INCR 64 /* Number of dir 'entry' structures to allocate per shot */
|
2019-02-28 15:37:42 +00:00
|
|
|
#define NAMEBUF_INCR 0x800 /* 64 dir entries at once, avg. 32 chars per filename = 64*32B = 2KB */
|
2017-12-24 18:58:12 +00:00
|
|
|
#define DESCRIPTOR_LEN 32
|
2018-11-21 21:43:55 +00:00
|
|
|
#define _ALIGNMENT 0x10 /* 16-byte alignment */
|
2018-01-04 00:53:20 +00:00
|
|
|
#define _ALIGNMENT_MASK 0xF
|
2019-04-21 18:29:51 +00:00
|
|
|
#define TMP_LEN_MAX 64
|
2018-12-04 12:51:01 +00:00
|
|
|
#define CTX_MAX 4
|
2018-12-03 16:14:33 +00:00
|
|
|
#define DOT_FILTER_LEN 7
|
2019-01-04 14:06:03 +00:00
|
|
|
#define ASCII_MAX 128
|
2019-03-10 05:43:12 +00:00
|
|
|
#define EXEC_ARGS_MAX 8
|
2019-07-05 16:10:33 +00:00
|
|
|
#define SCROLLOFF 3
|
2019-09-10 18:32:38 +00:00
|
|
|
#define MIN_DISPLAY_COLS 10
|
2019-05-15 16:59:38 +00:00
|
|
|
#define LONG_SIZE sizeof(ulong)
|
2019-08-06 17:56:18 +00:00
|
|
|
#define ARCHIVE_CMD_LEN 16
|
2019-10-30 17:13:22 +00:00
|
|
|
#define BLK_SHIFT_512 9
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2019-06-28 15:42:43 +00:00
|
|
|
/* Program return codes */
|
|
|
|
#define _SUCCESS 0
|
|
|
|
#define _FAILURE !_SUCCESS
|
|
|
|
|
2019-03-01 01:16:13 +00:00
|
|
|
/* Entry flags */
|
|
|
|
#define DIR_OR_LINK_TO_DIR 0x1
|
2019-09-08 08:53:00 +00:00
|
|
|
#define FILE_SELECTED 0x10
|
2019-03-01 01:16:13 +00:00
|
|
|
|
2017-06-20 15:59:37 +00:00
|
|
|
/* Macros to define process spawn behaviour as flags */
|
2019-07-05 15:28:36 +00:00
|
|
|
#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 */
|
2019-10-15 00:26:34 +00:00
|
|
|
#define F_CONFIRM 0x10 /* run command - show results before exit (must have F_NORMAL) */
|
2019-07-05 15:28:36 +00:00
|
|
|
#define F_CLI (F_NORMAL | F_MULTI)
|
2019-09-11 12:58:41 +00:00
|
|
|
#define F_SILENT (F_CLI | F_NOTRACE)
|
2017-06-20 15:59:37 +00:00
|
|
|
|
2019-02-05 18:18:34 +00:00
|
|
|
/* Version compare macros */
|
2019-02-22 19:32:05 +00:00
|
|
|
/*
|
|
|
|
* states: S_N: normal, S_I: comparing integral part, S_F: comparing
|
2019-03-31 04:26:30 +00:00
|
|
|
* fractional parts, S_Z: idem but with leading Zeroes only
|
2019-02-22 19:32:05 +00:00
|
|
|
*/
|
2019-07-05 15:28:36 +00:00
|
|
|
#define S_N 0x0
|
|
|
|
#define S_I 0x3
|
|
|
|
#define S_F 0x6
|
|
|
|
#define S_Z 0x9
|
2019-02-05 18:18:34 +00:00
|
|
|
|
|
|
|
/* result_type: VCMP: return diff; VLEN: compare using len_diff/diff */
|
2019-07-05 15:28:36 +00:00
|
|
|
#define VCMP 2
|
|
|
|
#define VLEN 3
|
2019-02-05 18:18:34 +00:00
|
|
|
|
2018-04-25 19:26:45 +00:00
|
|
|
/* Volume info */
|
|
|
|
#define FREE 0
|
|
|
|
#define CAPACITY 1
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* TYPE DEFINITIONS */
|
2017-06-20 14:58:53 +00:00
|
|
|
typedef unsigned long ulong;
|
2017-06-21 18:21:53 +00:00
|
|
|
typedef unsigned int uint;
|
2017-06-20 14:58:53 +00:00
|
|
|
typedef unsigned char uchar;
|
2018-08-16 14:38:26 +00:00
|
|
|
typedef unsigned short ushort;
|
2019-10-24 03:14:36 +00:00
|
|
|
typedef long long ll;
|
2017-06-20 14:58:53 +00:00
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* STRUCTURES */
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Directory entry */
|
2017-04-01 07:26:25 +00:00
|
|
|
typedef struct entry {
|
2017-12-17 17:38:55 +00:00
|
|
|
char *name;
|
2015-01-31 22:02:59 +00:00
|
|
|
time_t t;
|
2017-03-29 20:21:52 +00:00
|
|
|
off_t size;
|
2017-06-22 01:56:05 +00:00
|
|
|
blkcnt_t blocks; /* number of 512B blocks allocated */
|
2017-12-04 14:22:35 +00:00
|
|
|
mode_t mode;
|
2018-08-16 14:38:26 +00:00
|
|
|
ushort nlen; /* Length of file name; can be uchar (< NAME_MAX + 1) */
|
|
|
|
uchar flags; /* Flags specific to the file */
|
2019-10-04 02:34:46 +00:00
|
|
|
} *pEntry;
|
2014-10-09 13:23:12 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
/* Key-value pairs from env */
|
2017-06-11 04:15:50 +00:00
|
|
|
typedef struct {
|
2018-11-12 17:59:29 +00:00
|
|
|
int key;
|
2019-08-14 14:27:44 +00:00
|
|
|
char *val;
|
|
|
|
} kv;
|
2019-08-13 19:28:33 +00:00
|
|
|
|
2019-10-13 13:40:06 +00:00
|
|
|
typedef struct {
|
|
|
|
const regex_t *regex;
|
|
|
|
const char *str;
|
|
|
|
} fltrexp_t;
|
|
|
|
|
2019-04-09 17:22:27 +00:00
|
|
|
/*
|
|
|
|
* Settings
|
|
|
|
* NOTE: update default values if changing order
|
|
|
|
*/
|
2017-07-02 10:42:30 +00:00
|
|
|
typedef struct {
|
2018-11-08 12:42:55 +00:00
|
|
|
uint filtermode : 1; /* Set to enter filter mode */
|
|
|
|
uint mtimeorder : 1; /* Set to sort by time modified */
|
|
|
|
uint sizeorder : 1; /* Set to sort by file size */
|
|
|
|
uint apparentsz : 1; /* Set to sort by apparent size (disk usage) */
|
|
|
|
uint blkorder : 1; /* Set to sort by blocks used (disk usage) */
|
2019-08-01 16:50:40 +00:00
|
|
|
uint extnorder : 1; /* Order by extension */
|
2018-11-08 12:42:55 +00:00
|
|
|
uint showhidden : 1; /* Set to show hidden files */
|
2019-09-08 08:53:00 +00:00
|
|
|
uint selmode : 1; /* Set when selecting files */
|
2018-11-08 12:42:55 +00:00
|
|
|
uint showdetail : 1; /* Clear to show fewer file info */
|
|
|
|
uint ctxactive : 1; /* Context active or not */
|
2019-12-01 17:30:06 +00:00
|
|
|
uint reserved : 3;
|
2018-11-08 20:02:12 +00:00
|
|
|
/* The following settings are global */
|
|
|
|
uint curctx : 2; /* Current context number */
|
2019-04-09 17:22:27 +00:00
|
|
|
uint dircolor : 1; /* Current status of dir color */
|
2018-11-23 17:11:47 +00:00
|
|
|
uint picker : 1; /* Write selection to user-specified file */
|
|
|
|
uint pickraw : 1; /* Write selection to sdtout before exit */
|
2018-11-26 18:54:12 +00:00
|
|
|
uint nonavopen : 1; /* Open file on right arrow or `l` */
|
2019-04-09 17:22:27 +00:00
|
|
|
uint autoselect : 1; /* Auto-select dir in nav-as-you-type mode */
|
|
|
|
uint metaviewer : 1; /* Index of metadata viewer in utils[] */
|
2018-12-01 00:28:15 +00:00
|
|
|
uint useeditor : 1; /* Use VISUAL to open text files */
|
2019-04-18 14:57:35 +00:00
|
|
|
uint runplugin : 1; /* Choose plugin mode */
|
|
|
|
uint runctx : 2; /* The context in which plugin is to be run */
|
2019-01-13 17:19:14 +00:00
|
|
|
uint filter_re : 1; /* Use regex filters */
|
2019-09-11 06:48:58 +00:00
|
|
|
uint filtercmd : 1; /* Run filter as command on no match */
|
2019-03-02 11:23:16 +00:00
|
|
|
uint trash : 1; /* Move removed files to trash */
|
2019-08-30 15:25:23 +00:00
|
|
|
uint mtime : 1; /* Use modification time (else access time) */
|
2019-10-02 22:03:15 +00:00
|
|
|
uint cliopener : 1; /* All-CLI app opener */
|
2019-11-23 20:24:06 +00:00
|
|
|
uint waitedit : 1; /* For ops that can't be detached, used EDITOR */
|
2019-12-01 17:30:06 +00:00
|
|
|
uint rollover : 1; /* Roll over at edges */
|
2017-06-20 14:58:53 +00:00
|
|
|
} settings;
|
2017-04-03 20:10:04 +00:00
|
|
|
|
2018-11-08 12:42:55 +00:00
|
|
|
/* Contexts or workspaces */
|
|
|
|
typedef struct {
|
2018-11-09 09:26:11 +00:00
|
|
|
char c_path[PATH_MAX]; /* Current dir */
|
|
|
|
char c_last[PATH_MAX]; /* Last visited dir */
|
|
|
|
char c_name[NAME_MAX + 1]; /* Current file name */
|
2019-03-31 12:23:24 +00:00
|
|
|
char c_fltr[REGEX_MAX]; /* Current filter */
|
2018-11-09 09:26:11 +00:00
|
|
|
settings c_cfg; /* Current configuration */
|
2018-12-04 23:31:29 +00:00
|
|
|
uint color; /* Color code for directories */
|
2019-03-11 14:38:03 +00:00
|
|
|
} context;
|
2018-11-08 12:42:55 +00:00
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
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;
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* GLOBALS */
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2018-11-08 12:42:55 +00:00
|
|
|
/* Configuration, contexts */
|
2019-04-09 17:22:27 +00:00
|
|
|
static settings cfg = {
|
|
|
|
0, /* filtermode */
|
|
|
|
0, /* mtimeorder */
|
|
|
|
0, /* sizeorder */
|
|
|
|
0, /* apparentsz */
|
|
|
|
0, /* blkorder */
|
2019-08-01 16:50:40 +00:00
|
|
|
0, /* extnorder */
|
2019-04-09 17:22:27 +00:00
|
|
|
0, /* showhidden */
|
2019-11-18 16:16:38 +00:00
|
|
|
0, /* selmode */
|
2019-08-04 04:25:14 +00:00
|
|
|
0, /* showdetail */
|
2019-04-09 17:22:27 +00:00
|
|
|
1, /* ctxactive */
|
|
|
|
0, /* reserved */
|
|
|
|
0, /* curctx */
|
|
|
|
0, /* dircolor */
|
|
|
|
0, /* picker */
|
|
|
|
0, /* pickraw */
|
|
|
|
0, /* nonavopen */
|
|
|
|
1, /* autoselect */
|
|
|
|
0, /* metaviewer */
|
|
|
|
0, /* useeditor */
|
2019-04-18 14:57:35 +00:00
|
|
|
0, /* runplugin */
|
2019-04-09 17:22:27 +00:00
|
|
|
0, /* runctx */
|
|
|
|
1, /* filter_re */
|
2019-09-11 06:48:58 +00:00
|
|
|
0, /* filtercmd */
|
2019-04-09 17:22:27 +00:00
|
|
|
0, /* trash */
|
2019-08-30 15:25:23 +00:00
|
|
|
1, /* mtime */
|
2019-10-02 22:03:15 +00:00
|
|
|
0, /* cliopener */
|
2019-11-23 20:24:06 +00:00
|
|
|
0, /* waitedit */
|
2019-12-01 17:30:06 +00:00
|
|
|
1, /* rollover */
|
2019-04-13 16:29:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-04 12:51:01 +00:00
|
|
|
static context g_ctx[CTX_MAX] __attribute__ ((aligned));
|
2017-06-20 14:58:53 +00:00
|
|
|
|
2019-05-09 02:38:32 +00:00
|
|
|
static int ndents, cur, curscroll, total_dents = ENTRY_INCR;
|
2019-03-10 23:38:39 +00:00
|
|
|
static int xlines, xcols;
|
2019-09-08 07:09:39 +00:00
|
|
|
static int nselected;
|
2017-07-02 19:25:47 +00:00
|
|
|
static uint idle;
|
2019-12-06 16:54:35 +00:00
|
|
|
static uint idletimeout, selbufpos, lastappendpos, selbuflen;
|
2019-08-07 13:16:47 +00:00
|
|
|
static char *bmstr;
|
2019-08-13 19:28:33 +00:00
|
|
|
static char *pluginstr;
|
2019-01-16 14:41:33 +00:00
|
|
|
static char *opener;
|
2017-04-01 12:02:58 +00:00
|
|
|
static char *copier;
|
2019-01-04 18:26:02 +00:00
|
|
|
static char *editor;
|
2019-11-23 20:24:06 +00:00
|
|
|
static char *enveditor;
|
2019-03-10 07:27:41 +00:00
|
|
|
static char *pager;
|
|
|
|
static char *shell;
|
2019-01-24 16:15:02 +00:00
|
|
|
static char *home;
|
2019-04-23 03:20:25 +00:00
|
|
|
static char *initpath;
|
2019-04-21 18:29:51 +00:00
|
|
|
static char *cfgdir;
|
2019-09-29 05:57:42 +00:00
|
|
|
static char *g_selpath;
|
2019-04-21 18:29:51 +00:00
|
|
|
static char *plugindir;
|
2019-10-18 22:11:39 +00:00
|
|
|
static char *sessiondir;
|
2019-09-08 08:53:00 +00:00
|
|
|
static char *pnamebuf, *pselbuf;
|
2019-07-26 19:58:17 +00:00
|
|
|
static struct entry *dents;
|
2017-06-22 01:56:05 +00:00
|
|
|
static blkcnt_t ent_blocks;
|
|
|
|
static blkcnt_t dir_blocks;
|
2017-06-22 04:09:17 +00:00
|
|
|
static ulong num_files;
|
2019-08-14 14:27:44 +00:00
|
|
|
static kv bookmark[BM_MAX];
|
|
|
|
static kv plug[PLUGIN_MAX];
|
2019-10-04 15:04:37 +00:00
|
|
|
static uchar g_tmpfplen;
|
2019-10-30 17:13:22 +00:00
|
|
|
static uchar blk_shift = BLK_SHIFT_512;
|
2019-02-08 15:01:37 +00:00
|
|
|
static bool interrupted = FALSE;
|
2017-05-14 21:37:22 +00:00
|
|
|
|
2019-03-10 16:51:27 +00:00
|
|
|
/* Retain old signal handlers */
|
|
|
|
#ifdef __linux__
|
2019-03-10 16:14:16 +00:00
|
|
|
static sighandler_t oldsighup; /* old value of hangup signal */
|
|
|
|
static sighandler_t oldsigtstp; /* old value of SIGTSTP */
|
2019-03-10 16:51:27 +00:00
|
|
|
#else
|
2019-10-16 01:37:45 +00:00
|
|
|
/* note: no sig_t on Solaris-derivs */
|
|
|
|
static void (*oldsighup)(int);
|
|
|
|
static void (*oldsigtstp)(int);
|
2019-03-10 16:51:27 +00:00
|
|
|
#endif
|
2019-03-10 16:14:16 +00:00
|
|
|
|
2018-10-19 08:38:02 +00:00
|
|
|
/* For use in functions which are isolated and don't return the buffer */
|
2018-12-04 12:51:01 +00:00
|
|
|
static char g_buf[CMD_LEN_MAX] __attribute__ ((aligned));
|
2018-10-19 08:38:02 +00:00
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Buffer to store tmp file path to show selection, file stats and help */
|
|
|
|
static char g_tmpfpath[TMP_LEN_MAX] __attribute__ ((aligned));
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2019-10-23 10:04:12 +00:00
|
|
|
/* Buffer to store plugins control pipe location */
|
|
|
|
static char g_pipepath[TMP_LEN_MAX] __attribute__ ((aligned));
|
|
|
|
|
2019-10-24 13:24:33 +00:00
|
|
|
/* Plugin control initialization status */
|
2019-10-23 10:04:12 +00:00
|
|
|
static bool g_plinit = FALSE;
|
|
|
|
|
2018-11-28 03:53:03 +00:00
|
|
|
/* Options to identify file mime */
|
2019-10-16 01:37:45 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define FILE_MIME_OPTS "-bIL"
|
|
|
|
#elif !defined(__sun) /* no mime option for 'file' */
|
|
|
|
#define FILE_MIME_OPTS "-biL"
|
2018-11-28 03:53:03 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-24 15:15:50 +00:00
|
|
|
/* Macros for utilities */
|
2019-11-22 15:16:05 +00:00
|
|
|
#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_CMATRIX 6
|
2019-12-08 19:04:53 +00:00
|
|
|
#define UTIL_LAUNCH 7
|
2019-11-22 15:16:05 +00:00
|
|
|
#define UTIL_SH_EXEC 8
|
|
|
|
#define UTIL_ARCHIVEMOUNT 9
|
|
|
|
#define UTIL_SSHFS 10
|
2019-11-24 15:52:44 +00:00
|
|
|
#define UTIL_RCLONE 11
|
2019-12-03 15:40:42 +00:00
|
|
|
#define UTIL_VI 12
|
|
|
|
#define UTIL_LESS 13
|
|
|
|
#define UTIL_SH 14
|
2019-12-08 19:04:53 +00:00
|
|
|
#define UTIL_FZF 15
|
|
|
|
#define UTIL_FZY 16
|
2018-02-24 15:15:50 +00:00
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Utilities to open files, run actions */
|
2017-07-02 18:27:41 +00:00
|
|
|
static char * const utils[] = {
|
2017-06-05 18:26:38 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
"/usr/bin/open",
|
2018-05-07 12:29:31 +00:00
|
|
|
#elif defined __CYGWIN__
|
|
|
|
"cygstart",
|
2017-06-05 18:26:38 +00:00
|
|
|
#else
|
2017-12-26 18:23:20 +00:00
|
|
|
"xdg-open",
|
2017-06-05 18:26:38 +00:00
|
|
|
#endif
|
2018-02-24 14:16:58 +00:00
|
|
|
"atool",
|
2019-05-19 15:59:29 +00:00
|
|
|
"bsdtar",
|
2019-07-27 11:10:30 +00:00
|
|
|
"unzip",
|
|
|
|
"tar",
|
2018-11-10 06:36:21 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
"bashlock",
|
|
|
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
|
|
"lock",
|
|
|
|
#else
|
|
|
|
"vlock",
|
|
|
|
#endif
|
2019-06-16 13:45:06 +00:00
|
|
|
"cmatrix",
|
2019-12-08 19:04:53 +00:00
|
|
|
"launch",
|
2019-10-15 00:26:34 +00:00
|
|
|
"sh -c",
|
2019-11-22 15:00:13 +00:00
|
|
|
"archivemount",
|
|
|
|
"sshfs",
|
2019-11-24 15:52:44 +00:00
|
|
|
"rclone",
|
2019-12-03 15:40:42 +00:00
|
|
|
"vi",
|
|
|
|
"less",
|
|
|
|
"sh",
|
2019-12-08 19:04:53 +00:00
|
|
|
"fzf",
|
|
|
|
"fzy",
|
2017-06-05 18:26:38 +00:00
|
|
|
};
|
|
|
|
|
2018-01-14 06:41:46 +00:00
|
|
|
/* Common strings */
|
2019-11-22 15:00:13 +00:00
|
|
|
#define MSG_NO_TRAVERSAL 0
|
|
|
|
#define MSG_INVBM_KEY 1
|
2019-04-22 19:43:02 +00:00
|
|
|
#define STR_DATE_ID 2
|
|
|
|
#define STR_TMPFILE 3
|
2019-11-22 15:00:13 +00:00
|
|
|
#define MSG_0_SELECTED 4
|
|
|
|
#define MSG_UTIL_MISSING 5
|
|
|
|
#define MSG_FAILED 6
|
|
|
|
#define MSG_SSN_NAME 7
|
|
|
|
#define MSG_CP_MV_AS 8
|
2019-11-29 15:28:12 +00:00
|
|
|
#define MSG_RENAME_OPTS 9
|
2019-11-22 15:00:13 +00:00
|
|
|
#define MSG_FORCE_RM 10
|
|
|
|
#define MSG_CREATE_CTX 11
|
2019-11-29 15:28:12 +00:00
|
|
|
#define MSG_CUR_SEL_OPTS 12
|
2019-11-22 15:00:13 +00:00
|
|
|
#define MSG_NEW_OPTS 13
|
|
|
|
#define MSG_CLI_MODE 14
|
|
|
|
#define MSG_OVERWRITE 15
|
|
|
|
#define MSG_SSN_OPTS 16
|
|
|
|
#define MSG_QUIT_ALL 17
|
|
|
|
#define MSG_HOSTNAME 18
|
|
|
|
#define MSG_ARCHIVE_NAME 19
|
|
|
|
#define MSG_OPEN_WITH 20
|
|
|
|
#define MSG_REL_PATH 21
|
|
|
|
#define MSG_LINK_SUFFIX 22
|
|
|
|
#define MSG_COPY_NAME 23
|
|
|
|
#define MSG_CONTINUE 24
|
|
|
|
#define MSG_SEL_MISSING 25
|
|
|
|
#define MSG_SSN_MISSING 26
|
|
|
|
#define MSG_DIR_ACCESS 27
|
|
|
|
#define MSG_0_CREATED 28
|
|
|
|
#define MSG_NOT_REG_FILE 29
|
|
|
|
#define MSG_PERM_DENIED 30
|
|
|
|
#define MSG_EMPTY_FILE 31
|
|
|
|
#define MSG_UNSUPPORTED 32
|
|
|
|
#define MSG_NOT_SET 33
|
|
|
|
#define MSG_RANGE_SEL_ON 34
|
|
|
|
#define MSG_DIR_CHANGED 35
|
|
|
|
#define MSG_0_FILES 36
|
|
|
|
#define MSG_EXISTS 37
|
|
|
|
#define MSG_FEW_COLOUMNS 38
|
2019-11-24 15:52:44 +00:00
|
|
|
#define MSG_REMOTE_OPTS 39
|
|
|
|
#define MSG_RCLONE_DELAY 40
|
2019-12-08 19:04:53 +00:00
|
|
|
#define MSG_APP_NAME 41
|
2018-01-14 06:41:46 +00:00
|
|
|
|
2019-01-20 16:42:43 +00:00
|
|
|
static const char * const messages[] = {
|
2018-01-14 06:41:46 +00:00
|
|
|
"no traversal",
|
|
|
|
"invalid key",
|
2018-01-14 07:13:20 +00:00
|
|
|
"%F %T %z",
|
2019-01-17 16:01:30 +00:00
|
|
|
"/.nnnXXXXXX",
|
2019-10-02 17:04:11 +00:00
|
|
|
"0 selected",
|
2019-11-22 15:00:13 +00:00
|
|
|
"missing util",
|
2019-10-14 16:36:45 +00:00
|
|
|
"failed!",
|
2019-10-20 00:05:41 +00:00
|
|
|
"session name: ",
|
2019-11-22 15:00:13 +00:00
|
|
|
"'c'p / 'm'v as?",
|
2019-11-29 15:28:12 +00:00
|
|
|
"'c'urrent dir / 's'election?",
|
2019-11-22 15:00:13 +00:00
|
|
|
"forcibly remove %s file%s (unrecoverable)?",
|
2019-11-29 15:28:12 +00:00
|
|
|
"create context %d?",
|
|
|
|
"'c'urrent / 's'election?",
|
2019-11-24 15:52:44 +00:00
|
|
|
"'f'ile / 'd'ir / 's'ym / 'h'ard?",
|
2019-12-06 14:51:31 +00:00
|
|
|
"'c'li / 'g'ui?",
|
2019-11-22 15:00:13 +00:00
|
|
|
"overwrite?",
|
2019-11-24 15:52:44 +00:00
|
|
|
"'s'ave / 'l'oad / 'r'estore?",
|
2019-11-22 15:00:13 +00:00
|
|
|
"Quit all contexts?",
|
2019-11-24 15:52:44 +00:00
|
|
|
"remote name: ",
|
2019-11-22 15:00:13 +00:00
|
|
|
"archive name: ",
|
|
|
|
"open with: ",
|
|
|
|
"relative path: ",
|
|
|
|
"link suffix [@ for none]: ",
|
|
|
|
"copy name: ",
|
|
|
|
"\nPress Enter to continue",
|
|
|
|
"sel file missing",
|
|
|
|
"session file missing",
|
|
|
|
"dir inaccessible",
|
|
|
|
"0 created",
|
|
|
|
"not regular file",
|
|
|
|
"permission denied",
|
|
|
|
"empty: edit or open with",
|
|
|
|
"unsupported file",
|
|
|
|
"not set",
|
|
|
|
"range sel on",
|
|
|
|
"dir changed, range sel off",
|
|
|
|
"0 files",
|
|
|
|
"entry exists",
|
|
|
|
"too few columns!",
|
2019-11-24 15:52:44 +00:00
|
|
|
"'s'shfs / 'r'clone?",
|
2019-12-08 19:04:53 +00:00
|
|
|
"may take a while, try refresh",
|
|
|
|
"app name: ",
|
2018-01-14 06:41:46 +00:00
|
|
|
};
|
2017-07-03 13:38:38 +00:00
|
|
|
|
2019-03-31 04:26:30 +00:00
|
|
|
/* Supported configuration environment variables */
|
2019-01-20 18:21:45 +00:00
|
|
|
#define NNN_BMS 0
|
|
|
|
#define NNN_OPENER 1
|
|
|
|
#define NNN_CONTEXT_COLORS 2
|
|
|
|
#define NNN_IDLE_TIMEOUT 3
|
|
|
|
#define NNN_COPIER 4
|
2019-10-23 10:04:12 +00:00
|
|
|
#define NNNLVL 5
|
|
|
|
#define NNN_PIPE 6 /* strings end here */
|
|
|
|
#define NNN_USE_EDITOR 7 /* flags begin here */
|
|
|
|
#define NNN_TRASH 8
|
2019-01-20 18:21:45 +00:00
|
|
|
|
|
|
|
static const char * const env_cfg[] = {
|
2019-01-20 17:47:30 +00:00
|
|
|
"NNN_BMS",
|
2019-01-20 18:21:45 +00:00
|
|
|
"NNN_OPENER",
|
2019-01-20 17:47:30 +00:00
|
|
|
"NNN_CONTEXT_COLORS",
|
|
|
|
"NNN_IDLE_TIMEOUT",
|
|
|
|
"NNN_COPIER",
|
2019-02-06 17:29:33 +00:00
|
|
|
"NNNLVL",
|
2019-10-23 10:04:12 +00:00
|
|
|
"NNN_PIPE",
|
2019-01-20 18:21:45 +00:00
|
|
|
"NNN_USE_EDITOR",
|
2019-03-02 11:23:16 +00:00
|
|
|
"NNN_TRASH",
|
2019-01-20 18:21:45 +00:00
|
|
|
};
|
|
|
|
|
2019-03-31 04:26:30 +00:00
|
|
|
/* Required environment variables */
|
2019-11-22 15:00:13 +00:00
|
|
|
#define ENV_SHELL 0
|
|
|
|
#define ENV_VISUAL 1
|
|
|
|
#define ENV_EDITOR 2
|
|
|
|
#define ENV_PAGER 3
|
|
|
|
#define ENV_NCUR 4
|
2019-01-20 18:21:45 +00:00
|
|
|
|
|
|
|
static const char * const envs[] = {
|
|
|
|
"SHELL",
|
|
|
|
"VISUAL",
|
|
|
|
"EDITOR",
|
|
|
|
"PAGER",
|
2019-11-23 20:43:27 +00:00
|
|
|
"nnn",
|
2019-01-20 17:47:30 +00:00
|
|
|
};
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
static char cp[] = "cpg -giRp";
|
|
|
|
static char mv[] = "mvg -gi";
|
|
|
|
#else
|
|
|
|
static char cp[] = "cp -iRp";
|
|
|
|
static char mv[] = "mv -i";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char cpmvformatcmd[] = "sed -i 's|^\\(\\(.*/\\)\\(.*\\)$\\)|#\\1\\n\\3|' %s";
|
2019-11-22 15:47:55 +00:00
|
|
|
static const char cpmvrenamecmd[] = "sed 's|^\\([^#][^/]\\?.*\\)$|%s/\\1|;s|^#\\(/.*\\)$|\\1|' %s | tr '\\n' '\\0' | xargs -0 -n2 sh -c '%s \"$0\" \"$@\" < /dev/tty'";
|
2019-11-22 15:00:13 +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";
|
|
|
|
|
2019-03-17 23:35:47 +00:00
|
|
|
/* Event handling */
|
|
|
|
#ifdef LINUX_INOTIFY
|
2019-10-03 15:45:11 +00:00
|
|
|
#define NUM_EVENT_SLOTS 8 /* Make room for 8 events */
|
2019-03-17 23:35:47 +00:00
|
|
|
#define EVENT_SIZE (sizeof(struct inotify_event))
|
2019-03-19 14:09:43 +00:00
|
|
|
#define EVENT_BUF_LEN (EVENT_SIZE * NUM_EVENT_SLOTS)
|
2019-03-17 23:35:47 +00:00
|
|
|
static int inotify_fd, inotify_wd = -1;
|
2019-03-23 03:12:34 +00:00
|
|
|
static uint INOTIFY_MASK = /* IN_ATTRIB | */ IN_CREATE | IN_DELETE | IN_DELETE_SELF
|
2019-03-17 23:35:47 +00:00
|
|
|
| IN_MODIFY | IN_MOVE_SELF | IN_MOVED_FROM | IN_MOVED_TO;
|
|
|
|
#elif defined(BSD_KQUEUE)
|
|
|
|
#define NUM_EVENT_SLOTS 1
|
|
|
|
#define NUM_EVENT_FDS 1
|
|
|
|
static int kq, event_fd = -1;
|
|
|
|
static struct kevent events_to_monitor[NUM_EVENT_FDS];
|
|
|
|
static uint KQUEUE_FFLAGS = NOTE_DELETE | NOTE_EXTEND | NOTE_LINK
|
|
|
|
| NOTE_RENAME | NOTE_REVOKE | NOTE_WRITE;
|
|
|
|
static struct timespec gtimeout;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Function macros */
|
2019-11-02 02:21:45 +00:00
|
|
|
#define tolastln() move(xlines - 1, 0)
|
2019-03-17 23:35:47 +00:00
|
|
|
#define exitcurses() endwin()
|
|
|
|
#define clearprompt() printmsg("")
|
2019-04-26 19:25:28 +00:00
|
|
|
#define printwarn(presel) printwait(strerror(errno), presel)
|
2019-03-17 23:35:47 +00:00
|
|
|
#define istopdir(path) ((path)[1] == '\0' && (path)[0] == '/')
|
2019-04-21 10:11:26 +00:00
|
|
|
#define copycurname() xstrlcpy(lastname, dents[cur].name, NAME_MAX + 1)
|
2019-03-17 23:35:47 +00:00
|
|
|
#define settimeout() timeout(1000)
|
|
|
|
#define cleartimeout() timeout(-1)
|
|
|
|
#define errexit() printerr(__LINE__)
|
|
|
|
#define setdirwatch() (cfg.filtermode ? (presel = FILTER) : (dir_changed = TRUE))
|
|
|
|
/* We don't care about the return value from strcmp() */
|
|
|
|
#define xstrcmp(a, b) (*(a) != *(b) ? -1 : strcmp((a), (b)))
|
|
|
|
/* A faster version of xisdigit */
|
|
|
|
#define xisdigit(c) ((unsigned int) (c) - '0' <= 9)
|
|
|
|
#define xerror() perror(xitoa(__LINE__))
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Forward declarations */
|
2017-04-28 23:02:47 +00:00
|
|
|
static void redraw(char *path);
|
2019-04-21 19:51:16 +00:00
|
|
|
static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag);
|
2019-02-22 19:32:05 +00:00
|
|
|
static int (*nftw_fn)(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf);
|
2019-03-31 12:23:24 +00:00
|
|
|
static int dentfind(const char *fname, int n);
|
2019-05-10 02:14:24 +00:00
|
|
|
static void move_cursor(int target, int ignore_scrolloff);
|
2019-10-23 10:04:12 +00:00
|
|
|
static inline bool getutil(char *util);
|
2019-11-28 17:42:49 +00:00
|
|
|
static size_t mkpath(const char *dir, const char *name, char *out);
|
2019-11-29 03:08:11 +00:00
|
|
|
static void updateselbuf(const char *path, char *newpath);
|
2019-11-30 14:21:57 +00:00
|
|
|
static char *xgetenv(const char *name, char *fallback);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Functions */
|
|
|
|
|
2019-03-09 03:43:36 +00:00
|
|
|
static void sigint_handler(int sig)
|
2019-02-08 15:01:37 +00:00
|
|
|
{
|
2019-10-13 13:40:06 +00:00
|
|
|
(void) sig;
|
|
|
|
|
2019-02-08 15:01:37 +00:00
|
|
|
interrupted = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-03-09 03:43:36 +00:00
|
|
|
static uint xatoi(const char *str)
|
|
|
|
{
|
|
|
|
int val = 0;
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (xisdigit(*str)) {
|
|
|
|
val = val * 10 + (*str - '0');
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *xitoa(uint val)
|
|
|
|
{
|
|
|
|
static char ascbuf[32] = {0};
|
2019-09-08 08:35:02 +00:00
|
|
|
int i = 30;
|
2019-03-09 03:43:36 +00:00
|
|
|
|
2019-09-08 08:35:02 +00:00
|
|
|
if (!val)
|
|
|
|
return "0";
|
|
|
|
|
|
|
|
for (; val && i; --i, val /= 10)
|
2019-05-16 16:11:20 +00:00
|
|
|
ascbuf[i] = '0' + (val % 10);
|
2019-03-09 03:43:36 +00:00
|
|
|
|
|
|
|
return &ascbuf[++i];
|
|
|
|
}
|
|
|
|
|
2019-08-08 00:38:08 +00:00
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
/* Clear the old prompt */
|
2019-09-09 18:11:45 +00:00
|
|
|
static inline void clearoldprompt(void)
|
2019-08-08 00:38:08 +00:00
|
|
|
{
|
2019-11-02 02:21:45 +00:00
|
|
|
tolastln();
|
2019-08-08 00:38:08 +00:00
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* Messages show up at the bottom */
|
2019-03-11 15:03:19 +00:00
|
|
|
static inline void printmsg(const char *msg)
|
2017-08-24 15:18:01 +00:00
|
|
|
{
|
2019-11-02 02:21:45 +00:00
|
|
|
tolastln();
|
|
|
|
addstr(msg);
|
|
|
|
addch('\n');
|
2017-08-24 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 23:55:17 +00:00
|
|
|
static void printwait(const char *msg, int *presel)
|
|
|
|
{
|
|
|
|
printmsg(msg);
|
2019-04-26 19:25:28 +00:00
|
|
|
if (presel)
|
|
|
|
*presel = MSGWAIT;
|
2019-03-10 23:55:17 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 15:18:01 +00:00
|
|
|
/* Kill curses and display error before exiting */
|
2018-10-22 14:25:45 +00:00
|
|
|
static void printerr(int linenum)
|
2017-08-24 15:18:01 +00:00
|
|
|
{
|
|
|
|
exitcurses();
|
2019-03-09 03:43:36 +00:00
|
|
|
perror(xitoa(linenum));
|
2019-09-29 05:57:42 +00:00
|
|
|
if (!cfg.picker && g_selpath)
|
|
|
|
unlink(g_selpath);
|
2019-09-08 08:53:00 +00:00
|
|
|
free(pselbuf);
|
2017-08-24 16:56:46 +00:00
|
|
|
exit(1);
|
2017-08-24 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print prompt on the last line */
|
2018-11-12 16:43:35 +00:00
|
|
|
static void printprompt(const char *str)
|
2017-08-24 15:18:01 +00:00
|
|
|
{
|
|
|
|
clearprompt();
|
2019-09-10 19:53:51 +00:00
|
|
|
addstr(str);
|
2018-11-12 16:43:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int get_input(const char *prompt)
|
|
|
|
{
|
2019-10-24 03:17:45 +00:00
|
|
|
int r = KEY_RESIZE;
|
2019-02-22 19:32:05 +00:00
|
|
|
|
2018-11-12 17:35:57 +00:00
|
|
|
if (prompt)
|
|
|
|
printprompt(prompt);
|
2018-11-12 16:43:35 +00:00
|
|
|
cleartimeout();
|
2019-08-08 00:38:08 +00:00
|
|
|
#ifdef KEY_RESIZE
|
2019-10-24 03:17:45 +00:00
|
|
|
while (r == KEY_RESIZE) {
|
2019-08-08 00:38:08 +00:00
|
|
|
r = getch();
|
2019-10-24 03:17:45 +00:00
|
|
|
if (r == KEY_RESIZE && prompt) {
|
|
|
|
clearoldprompt();
|
|
|
|
xlines = LINES;
|
|
|
|
printprompt(prompt);
|
2019-08-08 00:38:08 +00:00
|
|
|
}
|
2019-10-24 03:17:45 +00:00
|
|
|
};
|
2019-08-08 00:38:08 +00:00
|
|
|
#else
|
2019-02-22 19:32:05 +00:00
|
|
|
r = getch();
|
2019-08-08 00:38:08 +00:00
|
|
|
#endif
|
2018-11-12 16:43:35 +00:00
|
|
|
settimeout();
|
|
|
|
return r;
|
2017-08-24 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-24 15:52:44 +00:00
|
|
|
static void xdelay(useconds_t delay)
|
2019-03-13 13:31:22 +00:00
|
|
|
{
|
|
|
|
refresh();
|
2019-11-24 15:52:44 +00:00
|
|
|
usleep(delay);
|
2019-03-13 13:31:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 16:35:49 +00:00
|
|
|
static char confirm_force(bool selection)
|
2018-12-01 08:57:05 +00:00
|
|
|
{
|
2019-11-18 13:20:08 +00:00
|
|
|
char str[64];
|
2019-11-05 14:22:07 +00:00
|
|
|
int r;
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
snprintf(str, 64, messages[MSG_FORCE_RM],
|
2019-11-18 13:20:08 +00:00
|
|
|
(selection ? xitoa(nselected) : "current"), (selection ? "(s)" : ""));
|
2019-11-05 14:22:07 +00:00
|
|
|
r = get_input(str);
|
2019-02-22 19:32:05 +00:00
|
|
|
|
2018-12-01 08:57:05 +00:00
|
|
|
if (r == 'y' || r == 'Y')
|
|
|
|
return 'f'; /* forceful */
|
|
|
|
return 'i'; /* interactive */
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Increase the limit on open file descriptors, if possible */
|
2019-02-22 19:32:05 +00:00
|
|
|
static rlim_t max_openfds(void)
|
2017-04-11 04:47:50 +00:00
|
|
|
{
|
|
|
|
struct rlimit rl;
|
2017-06-15 14:04:56 +00:00
|
|
|
rlim_t limit = getrlimit(RLIMIT_NOFILE, &rl);
|
2017-04-11 04:47:50 +00:00
|
|
|
|
|
|
|
if (limit != 0)
|
|
|
|
return 32;
|
|
|
|
|
|
|
|
limit = rl.rlim_cur;
|
|
|
|
rl.rlim_cur = rl.rlim_max;
|
|
|
|
|
2017-07-25 04:43:22 +00:00
|
|
|
/* Return ~75% of max possible */
|
2017-08-20 19:25:45 +00:00
|
|
|
if (setrlimit(RLIMIT_NOFILE, &rl) == 0) {
|
|
|
|
limit = rl.rlim_max - (rl.rlim_max >> 2);
|
|
|
|
/*
|
2017-12-24 15:33:23 +00:00
|
|
|
* 20K is arbitrary. If the limit is set to max possible
|
2017-08-20 19:25:45 +00:00
|
|
|
* value, the memory usage increases to more than double.
|
|
|
|
*/
|
|
|
|
return limit > 20480 ? 20480 : limit;
|
|
|
|
}
|
2017-04-11 04:47:50 +00:00
|
|
|
|
2017-08-20 19:25:45 +00:00
|
|
|
return limit;
|
2017-04-11 04:47:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 20:13:30 +00:00
|
|
|
/*
|
|
|
|
* Wrapper to realloc()
|
|
|
|
* Frees current memory if realloc() fails and returns NULL.
|
|
|
|
*
|
|
|
|
* As per the docs, the *alloc() family is supposed to be memory aligned:
|
|
|
|
* Ubuntu: http://manpages.ubuntu.com/manpages/xenial/man3/malloc.3.html
|
2018-12-15 08:11:33 +00:00
|
|
|
* macOS: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
|
2018-01-13 20:13:30 +00:00
|
|
|
*/
|
2018-10-22 14:25:45 +00:00
|
|
|
static void *xrealloc(void *pcur, size_t len)
|
2018-01-13 20:13:30 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
void *pmem = realloc(pcur, len);
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2018-10-27 18:50:39 +00:00
|
|
|
if (!pmem)
|
2018-01-13 20:13:30 +00:00
|
|
|
free(pcur);
|
|
|
|
|
|
|
|
return pmem;
|
|
|
|
}
|
|
|
|
|
2017-06-30 20:03:34 +00:00
|
|
|
/*
|
|
|
|
* Just a safe strncpy(3)
|
|
|
|
* Always null ('\0') terminates if both src and dest are valid pointers.
|
|
|
|
* Returns the number of bytes copied including terminating null byte.
|
|
|
|
*/
|
2018-10-22 14:25:45 +00:00
|
|
|
static size_t xstrlcpy(char *dest, const char *src, size_t n)
|
2017-04-02 15:45:31 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
if (!src || !dest || !n)
|
|
|
|
return 0;
|
|
|
|
|
2019-05-15 16:59:38 +00:00
|
|
|
ulong *s, *d;
|
2019-02-27 17:06:22 +00:00
|
|
|
size_t len = strlen(src) + 1, blocks;
|
2019-05-15 16:59:38 +00:00
|
|
|
const uint _WSHIFT = (LONG_SIZE == 8) ? 3 : 2;
|
|
|
|
|
2017-06-30 20:03:34 +00:00
|
|
|
if (n > len)
|
|
|
|
n = len;
|
|
|
|
else if (len > n)
|
|
|
|
/* Save total number of bytes to copy in len */
|
|
|
|
len = n;
|
|
|
|
|
2017-12-29 05:38:07 +00:00
|
|
|
/*
|
|
|
|
* To enable -O3 ensure src and dest are 16-byte aligned
|
|
|
|
* More info: http://www.felixcloutier.com/x86/MOVDQA.html
|
|
|
|
*/
|
2019-05-15 16:59:38 +00:00
|
|
|
if ((n >= LONG_SIZE) && (((ulong)src & _ALIGNMENT_MASK) == 0 &&
|
2018-12-15 08:11:33 +00:00
|
|
|
((ulong)dest & _ALIGNMENT_MASK) == 0)) {
|
2017-06-30 20:03:34 +00:00
|
|
|
s = (ulong *)src;
|
|
|
|
d = (ulong *)dest;
|
2017-12-29 05:38:07 +00:00
|
|
|
blocks = n >> _WSHIFT;
|
2019-05-15 16:59:38 +00:00
|
|
|
n &= LONG_SIZE - 1;
|
2017-06-30 20:03:34 +00:00
|
|
|
|
|
|
|
while (blocks) {
|
2019-02-28 15:37:42 +00:00
|
|
|
*d = *s; // NOLINT
|
2017-06-30 20:03:34 +00:00
|
|
|
++d, ++s;
|
|
|
|
--blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!n) {
|
|
|
|
dest = (char *)d;
|
|
|
|
*--dest = '\0';
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = (char *)s;
|
|
|
|
dest = (char *)d;
|
|
|
|
}
|
|
|
|
|
2019-03-07 21:53:23 +00:00
|
|
|
while (--n && (*dest = *src)) // NOLINT
|
2017-06-17 06:58:21 +00:00
|
|
|
++dest, ++src;
|
|
|
|
|
2017-05-16 16:52:49 +00:00
|
|
|
if (!n)
|
|
|
|
*dest = '\0';
|
2017-06-30 20:03:34 +00:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2019-07-27 06:44:49 +00:00
|
|
|
static bool is_suffix(const char *str, const char *suffix)
|
|
|
|
{
|
|
|
|
if (!str || !suffix)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
size_t lenstr = strlen(str);
|
|
|
|
size_t lensuffix = strlen(suffix);
|
|
|
|
|
|
|
|
if (lensuffix > lenstr)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return (xstrcmp(str + (lenstr - lensuffix), suffix) == 0);
|
|
|
|
}
|
|
|
|
|
2017-04-01 12:02:58 +00:00
|
|
|
/*
|
2017-04-02 23:35:14 +00:00
|
|
|
* The poor man's implementation of memrchr(3).
|
2017-04-01 12:02:58 +00:00
|
|
|
* We are only looking for '/' in this program.
|
2017-12-24 17:53:52 +00:00
|
|
|
* And we are NOT expecting a '/' at the end.
|
2017-07-05 04:47:42 +00:00
|
|
|
* Ideally 0 < n <= strlen(s).
|
2017-04-01 12:02:58 +00:00
|
|
|
*/
|
2018-10-22 14:25:45 +00:00
|
|
|
static void *xmemrchr(uchar *s, uchar ch, size_t n)
|
2017-04-01 12:02:58 +00:00
|
|
|
{
|
|
|
|
if (!s || !n)
|
|
|
|
return NULL;
|
|
|
|
|
2019-02-27 17:06:22 +00:00
|
|
|
uchar *ptr = s + n;
|
2017-04-01 12:02:58 +00:00
|
|
|
|
2017-12-24 20:14:48 +00:00
|
|
|
do {
|
|
|
|
--ptr;
|
2017-06-17 06:58:21 +00:00
|
|
|
|
2017-12-24 20:14:48 +00:00
|
|
|
if (*ptr == ch)
|
|
|
|
return ptr;
|
|
|
|
} while (s != ptr);
|
2017-04-01 12:02:58 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static char *xbasename(char *path)
|
2017-12-24 17:53:52 +00:00
|
|
|
{
|
2019-05-15 16:59:38 +00:00
|
|
|
char *base = xmemrchr((uchar *)path, '/', strlen(path)); // NOLINT
|
2019-03-04 19:34:01 +00:00
|
|
|
|
2017-12-24 17:53:52 +00:00
|
|
|
return base ? base + 1 : path;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
static int create_tmp_file(void)
|
2019-04-27 14:35:57 +00:00
|
|
|
{
|
|
|
|
xstrlcpy(g_tmpfpath + g_tmpfplen - 1, messages[STR_TMPFILE], TMP_LEN_MAX - g_tmpfplen);
|
2019-10-02 17:04:11 +00:00
|
|
|
|
|
|
|
int fd = mkstemp(g_tmpfpath);
|
2019-10-24 03:14:36 +00:00
|
|
|
|
2019-10-02 17:04:11 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
2019-10-24 03:14:36 +00:00
|
|
|
|
2019-10-02 17:04:11 +00:00
|
|
|
return fd;
|
2019-04-27 14:35:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-24 02:19:59 +00:00
|
|
|
/* Writes buflen char(s) from buf to a file */
|
2019-09-29 05:57:42 +00:00
|
|
|
static void writesel(const char *buf, const size_t buflen)
|
2018-02-24 02:19:59 +00:00
|
|
|
{
|
2019-09-29 05:57:42 +00:00
|
|
|
if (cfg.pickraw || !g_selpath)
|
2018-09-07 02:49:15 +00:00
|
|
|
return;
|
|
|
|
|
2019-09-29 05:57:42 +00:00
|
|
|
FILE *fp = fopen(g_selpath, "w");
|
2019-10-24 03:14:36 +00:00
|
|
|
|
2018-02-24 02:19:59 +00:00
|
|
|
if (fp) {
|
2019-06-12 23:07:03 +00:00
|
|
|
if (fwrite(buf, 1, buflen, fp) != buflen)
|
|
|
|
printwarn(NULL);
|
2018-02-24 02:19:59 +00:00
|
|
|
fclose(fp);
|
2018-09-06 00:13:14 +00:00
|
|
|
} else
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(NULL);
|
2018-02-24 02:19:59 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 23:55:17 +00:00
|
|
|
static void appendfpath(const char *path, const size_t len)
|
2018-01-13 20:13:30 +00:00
|
|
|
{
|
2019-09-08 08:53:00 +00:00
|
|
|
if ((selbufpos >= selbuflen) || ((len + 3) > (selbuflen - selbufpos))) {
|
|
|
|
selbuflen += PATH_MAX;
|
|
|
|
pselbuf = xrealloc(pselbuf, selbuflen);
|
|
|
|
if (!pselbuf)
|
2019-03-10 23:55:17 +00:00
|
|
|
errexit();
|
2018-01-13 20:13:30 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
selbufpos += xstrlcpy(pselbuf + selbufpos, path, len);
|
2018-01-13 20:13:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 15:36:43 +00:00
|
|
|
/* Write selected file paths to fd, linefeed separated */
|
2019-09-29 05:57:42 +00:00
|
|
|
static size_t seltofile(int fd, uint *pcount)
|
2018-11-27 15:36:43 +00:00
|
|
|
{
|
2019-05-22 15:02:29 +00:00
|
|
|
uint lastpos, count = 0;
|
2019-09-08 08:53:00 +00:00
|
|
|
char *pbuf = pselbuf;
|
2019-06-12 22:51:19 +00:00
|
|
|
size_t pos = 0, len;
|
|
|
|
ssize_t r;
|
2018-11-27 15:36:43 +00:00
|
|
|
|
2019-05-22 15:02:29 +00:00
|
|
|
if (pcount)
|
|
|
|
*pcount = 0;
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
if (!selbufpos)
|
2019-05-22 15:02:29 +00:00
|
|
|
return 0;
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
lastpos = selbufpos - 1;
|
2019-05-22 15:02:29 +00:00
|
|
|
|
2019-01-21 16:20:29 +00:00
|
|
|
while (pos <= lastpos) {
|
2018-11-27 15:36:43 +00:00
|
|
|
len = strlen(pbuf);
|
2019-01-20 12:20:49 +00:00
|
|
|
pos += len;
|
2018-11-27 15:36:43 +00:00
|
|
|
|
|
|
|
r = write(fd, pbuf, len);
|
2019-06-12 22:51:19 +00:00
|
|
|
if (r != (ssize_t)len)
|
2018-11-27 15:36:43 +00:00
|
|
|
return pos;
|
|
|
|
|
2019-01-21 16:20:29 +00:00
|
|
|
if (pos <= lastpos) {
|
2018-11-27 15:36:43 +00:00
|
|
|
if (write(fd, "\n", 1) != 1)
|
|
|
|
return pos;
|
2019-01-29 20:48:12 +00:00
|
|
|
pbuf += len + 1;
|
2018-11-27 15:36:43 +00:00
|
|
|
}
|
|
|
|
++pos;
|
2019-05-22 15:02:29 +00:00
|
|
|
++count;
|
2018-11-27 15:36:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 15:02:29 +00:00
|
|
|
if (pcount)
|
|
|
|
*pcount = count;
|
|
|
|
|
2018-11-27 15:36:43 +00:00
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
2019-07-10 03:51:28 +00:00
|
|
|
/* List selection from selection buffer */
|
2019-11-29 03:08:11 +00:00
|
|
|
static bool listselbuf(const char *path, char *newpath)
|
2018-10-22 14:03:27 +00:00
|
|
|
{
|
2018-11-27 15:36:43 +00:00
|
|
|
int fd;
|
2019-06-12 22:51:19 +00:00
|
|
|
size_t pos;
|
2019-11-29 03:08:11 +00:00
|
|
|
uint oldpos = selbufpos;
|
|
|
|
|
2019-11-29 22:58:09 +00:00
|
|
|
if (cfg.selmode)
|
|
|
|
updateselbuf(path, newpath);
|
2018-10-22 14:03:27 +00:00
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
if (!selbufpos)
|
2019-07-10 03:51:28 +00:00
|
|
|
return FALSE;
|
2018-10-22 14:03:27 +00:00
|
|
|
|
2019-04-27 14:35:57 +00:00
|
|
|
fd = create_tmp_file();
|
2019-11-29 03:08:11 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
selbufpos = oldpos;
|
2019-07-10 03:51:28 +00:00
|
|
|
return FALSE;
|
2019-11-29 03:08:11 +00:00
|
|
|
}
|
2018-10-22 14:03:27 +00:00
|
|
|
|
2019-09-29 05:57:42 +00:00
|
|
|
pos = seltofile(fd, NULL);
|
2018-10-22 14:03:27 +00:00
|
|
|
|
2018-11-27 15:36:43 +00:00
|
|
|
close(fd);
|
2019-09-08 08:53:00 +00:00
|
|
|
if (pos && pos == selbufpos)
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
|
2018-10-22 14:03:27 +00:00
|
|
|
unlink(g_tmpfpath);
|
2019-07-10 03:51:28 +00:00
|
|
|
|
2019-11-29 03:08:11 +00:00
|
|
|
selbufpos = oldpos;
|
2019-07-10 03:51:28 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* List selection from selection file (another instance) */
|
2019-09-29 05:57:42 +00:00
|
|
|
static bool listselfile(void)
|
2019-07-10 03:51:28 +00:00
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
|
2019-09-29 05:57:42 +00:00
|
|
|
if (stat(g_selpath, &sb) == -1)
|
2019-07-10 03:51:28 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Nothing selected if file size is 0 */
|
|
|
|
if (!sb.st_size)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-20 19:01:39 +00:00
|
|
|
snprintf(g_buf, CMD_LEN_MAX, "tr \'\\0\' \'\\n\' < %s", g_selpath);
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], g_buf, NULL, NULL, F_CLI | F_CONFIRM);
|
2019-07-10 03:51:28 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2018-10-22 14:03:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-30 16:05:52 +00:00
|
|
|
/* Reset selection indicators */
|
|
|
|
static void resetselind(void)
|
|
|
|
{
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
for (; r < ndents; ++r)
|
|
|
|
if (dents[r].flags & FILE_SELECTED)
|
|
|
|
dents[r].flags &= ~FILE_SELECTED;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
static void startselection(void)
|
2019-09-30 16:05:52 +00:00
|
|
|
{
|
|
|
|
if (!cfg.selmode) {
|
|
|
|
cfg.selmode = 1;
|
|
|
|
nselected = 0;
|
|
|
|
|
|
|
|
if (selbufpos) {
|
|
|
|
resetselind();
|
|
|
|
writesel(NULL, 0);
|
|
|
|
selbufpos = 0;
|
|
|
|
}
|
2019-12-06 16:54:35 +00:00
|
|
|
|
|
|
|
lastappendpos = 0;
|
2019-09-30 16:05:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-28 17:42:49 +00:00
|
|
|
static void updateselbuf(const char *path, char *newpath)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
size_t r;
|
|
|
|
|
|
|
|
for (; i < ndents; ++i)
|
|
|
|
if (dents[i].flags & FILE_SELECTED) {
|
|
|
|
r = mkpath(path, dents[i].name, newpath);
|
|
|
|
appendfpath(newpath, r);
|
|
|
|
}
|
|
|
|
}
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2019-09-29 16:14:47 +00:00
|
|
|
/* Finish selection procedure before an operation */
|
2019-11-28 17:42:49 +00:00
|
|
|
static void endselection(const char *path, char *newpath)
|
2019-09-29 16:14:47 +00:00
|
|
|
{
|
2019-09-30 16:05:52 +00:00
|
|
|
if (cfg.selmode) {
|
|
|
|
cfg.selmode = 0;
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2019-11-28 17:42:49 +00:00
|
|
|
updateselbuf(path, newpath);
|
|
|
|
|
2019-09-30 16:05:52 +00:00
|
|
|
if (selbufpos) { /* File path(s) written to the buffer */
|
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
|
|
|
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
|
|
|
|
}
|
2019-09-29 16:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-14 17:15:19 +00:00
|
|
|
static void clearselection(void)
|
|
|
|
{
|
|
|
|
nselected = 0;
|
|
|
|
selbufpos = 0;
|
|
|
|
cfg.selmode = 0;
|
|
|
|
writesel(NULL, 0);
|
|
|
|
}
|
|
|
|
|
2019-10-14 22:17:57 +00:00
|
|
|
static bool editselection(void)
|
2019-10-10 13:07:16 +00:00
|
|
|
{
|
|
|
|
bool ret = FALSE;
|
|
|
|
int fd, lines = 0;
|
|
|
|
ssize_t count;
|
2019-10-24 03:14:36 +00:00
|
|
|
struct stat sb;
|
2019-10-10 13:07:16 +00:00
|
|
|
|
|
|
|
if (!selbufpos) {
|
|
|
|
DPRINTF_S("empty selection");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = create_tmp_file();
|
|
|
|
if (fd == -1) {
|
|
|
|
DPRINTF_S("couldn't create tmp file");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
seltofile(fd, NULL);
|
|
|
|
close(fd);
|
|
|
|
|
2019-11-23 20:24:06 +00:00
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, NULL, F_CLI);
|
2019-10-10 13:07:16 +00:00
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd = open(g_tmpfpath, O_RDONLY);
|
|
|
|
if (fd == -1) {
|
2019-10-10 13:07:16 +00:00
|
|
|
DPRINTF_S("couldn't read tmp file");
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
fstat(fd, &sb);
|
|
|
|
|
|
|
|
if (sb.st_size > selbufpos) {
|
|
|
|
DPRINTF_S("edited buffer larger than pervious");
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
count = read(fd, pselbuf, selbuflen);
|
|
|
|
close(fd);
|
|
|
|
unlink(g_tmpfpath);
|
|
|
|
|
|
|
|
if (!count) {
|
|
|
|
ret = TRUE;
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count < 0) {
|
|
|
|
DPRINTF_S("error reading tmp file");
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 14:50:21 +00:00
|
|
|
/* Add a line for the last file */
|
|
|
|
++lines;
|
|
|
|
|
2019-10-10 13:07:16 +00:00
|
|
|
if (lines > nselected) {
|
|
|
|
DPRINTF_S("files added to selection");
|
|
|
|
goto emptyedit;
|
|
|
|
}
|
|
|
|
|
|
|
|
nselected = lines;
|
2019-11-23 04:37:05 +00:00
|
|
|
writesel(pselbuf, selbufpos - 1);
|
|
|
|
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
|
2019-10-10 13:07:16 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
emptyedit:
|
|
|
|
resetselind();
|
2019-10-14 17:15:19 +00:00
|
|
|
clearselection();
|
2019-10-10 13:07:16 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-09-29 05:57:42 +00:00
|
|
|
static bool selsafe(void)
|
2019-01-30 15:29:39 +00:00
|
|
|
{
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Fail if selection file path not generated */
|
2019-09-29 05:57:42 +00:00
|
|
|
if (!g_selpath) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_SEL_MISSING]);
|
2019-01-30 15:29:39 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Fail if selection file path isn't accessible */
|
2019-09-29 05:57:42 +00:00
|
|
|
if (access(g_selpath, R_OK | W_OK) == -1) {
|
2019-11-22 15:00:13 +00:00
|
|
|
errno == ENOENT ? printmsg(messages[MSG_0_SELECTED]) : printwarn(NULL);
|
2019-01-30 15:29:39 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:56:31 +00:00
|
|
|
/* Initialize curses mode */
|
2019-08-24 14:14:49 +00:00
|
|
|
static bool initcurses(mmask_t *oldmask)
|
2017-06-15 16:04:47 +00:00
|
|
|
{
|
2019-03-21 15:39:55 +00:00
|
|
|
short i;
|
2019-11-30 14:21:57 +00:00
|
|
|
char *colors = xgetenv(env_cfg[NNN_CONTEXT_COLORS], "4444");
|
2019-03-11 16:19:35 +00:00
|
|
|
|
2019-01-03 18:13:04 +00:00
|
|
|
if (cfg.picker) {
|
|
|
|
if (!newterm(NULL, stderr, stdin)) {
|
|
|
|
fprintf(stderr, "newterm!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else if (!initscr()) {
|
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);
|
2019-07-12 14:20:30 +00:00
|
|
|
#if NCURSES_MOUSE_VERSION <= 1
|
2019-10-14 12:25:04 +00:00
|
|
|
mousemask(BUTTON1_PRESSED | BUTTON1_DOUBLE_CLICKED, oldmask);
|
2019-07-12 14:20:30 +00:00
|
|
|
#else
|
2019-10-14 12:25:04 +00:00
|
|
|
mousemask(BUTTON1_PRESSED | BUTTON4_PRESSED | BUTTON5_PRESSED,
|
2019-09-15 16:09:39 +00:00
|
|
|
oldmask);
|
2019-07-12 14:20:30 +00:00
|
|
|
#endif
|
2019-10-14 12:25:04 +00:00
|
|
|
mouseinterval(0);
|
2017-06-15 16:04:47 +00:00
|
|
|
curs_set(FALSE); /* Hide cursor */
|
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
2019-02-28 14:43:37 +00:00
|
|
|
|
2019-11-30 14:21:57 +00:00
|
|
|
/* Get and set the context colors */
|
|
|
|
for (i = 0; i < CTX_MAX; ++i) {
|
|
|
|
if (*colors) {
|
|
|
|
g_ctx[i].color = (*colors < '0' || *colors > '7') ? 4 : *colors - '0';
|
|
|
|
++colors;
|
|
|
|
} else
|
|
|
|
g_ctx[i].color = 4;
|
|
|
|
|
2019-08-03 18:25:02 +00:00
|
|
|
init_pair(i + 1, g_ctx[i].color, -1);
|
2019-11-30 14:21:57 +00:00
|
|
|
}
|
2019-02-28 14:43:37 +00:00
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout(); /* One second */
|
2019-01-05 21:23:13 +00:00
|
|
|
set_escdelay(25);
|
2018-12-08 09:58:55 +00:00
|
|
|
return TRUE;
|
2017-06-15 16:04:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 08:53:18 +00:00
|
|
|
/* No NULL check here as spawn() guards against it */
|
2019-03-10 05:43:12 +00:00
|
|
|
static int parseargs(char *line, char **argv)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
argv[count++] = line;
|
|
|
|
|
2019-03-10 08:53:18 +00:00
|
|
|
while (*line) { // NOLINT
|
2019-03-11 16:19:35 +00:00
|
|
|
if (ISBLANK(*line)) {
|
2019-03-10 05:43:12 +00:00
|
|
|
*line++ = '\0';
|
|
|
|
|
2019-03-10 08:53:18 +00:00
|
|
|
if (!*line) // NOLINT
|
2019-03-10 05:43:12 +00:00
|
|
|
return count;
|
|
|
|
|
|
|
|
argv[count++] = line;
|
|
|
|
if (count == EXEC_ARGS_MAX)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
++line;
|
2019-03-17 14:10:57 +00:00
|
|
|
}
|
2019-03-10 05:43:12 +00:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2019-03-10 16:14:16 +00:00
|
|
|
static pid_t xfork(uchar flag)
|
|
|
|
{
|
|
|
|
pid_t p = fork();
|
|
|
|
|
|
|
|
if (p > 0) {
|
|
|
|
/* the parent ignores the interrupt, quit and hangup signals */
|
|
|
|
oldsighup = signal(SIGHUP, SIG_IGN);
|
|
|
|
oldsigtstp = signal(SIGTSTP, SIG_DFL);
|
|
|
|
} else if (p == 0) {
|
|
|
|
/* so they can be used to stop the child */
|
|
|
|
signal(SIGHUP, SIG_DFL);
|
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
signal(SIGQUIT, SIG_DFL);
|
|
|
|
signal(SIGTSTP, SIG_DFL);
|
|
|
|
|
|
|
|
if (flag & F_NOWAIT)
|
|
|
|
setsid();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p == -1)
|
|
|
|
perror("fork");
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2019-04-21 19:51:16 +00:00
|
|
|
static int join(pid_t p, uchar flag)
|
2019-03-10 16:14:16 +00:00
|
|
|
{
|
2019-04-21 19:51:16 +00:00
|
|
|
int status = 0xFFFF;
|
2019-03-10 16:14:16 +00:00
|
|
|
|
2019-04-21 19:51:16 +00:00
|
|
|
if (!(flag & F_NOWAIT)) {
|
2019-03-10 16:14:16 +00:00
|
|
|
/* wait for the child to exit */
|
2019-03-17 14:10:57 +00:00
|
|
|
do {
|
2019-04-25 15:41:35 +00:00
|
|
|
} while (waitpid(p, &status, 0) == -1);
|
2019-03-10 16:14:16 +00:00
|
|
|
|
2019-04-21 19:51:16 +00:00
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
status = WEXITSTATUS(status);
|
|
|
|
DPRINTF_D(status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 16:14:16 +00:00
|
|
|
/* restore parent's signal handling */
|
|
|
|
signal(SIGHUP, oldsighup);
|
|
|
|
signal(SIGTSTP, oldsigtstp);
|
2019-04-21 19:51:16 +00:00
|
|
|
|
|
|
|
return status;
|
2019-03-10 16:14:16 +00:00
|
|
|
}
|
|
|
|
|
2017-04-22 14:19:00 +00:00
|
|
|
/*
|
2017-06-20 15:59:37 +00:00
|
|
|
* Spawns a child process. Behaviour can be controlled using flag.
|
|
|
|
* Limited to 2 arguments to a program, flag works on bit set.
|
2017-04-22 14:19:00 +00:00
|
|
|
*/
|
2019-04-21 19:51:16 +00:00
|
|
|
static int spawn(char *file, char *arg1, char *arg2, const char *dir, uchar flag)
|
2014-10-21 13:21:00 +00:00
|
|
|
{
|
2019-02-06 17:29:33 +00:00
|
|
|
pid_t pid;
|
2019-04-21 19:51:16 +00:00
|
|
|
int status, retstatus = 0xFFFF;
|
2019-03-10 05:43:12 +00:00
|
|
|
char *argv[EXEC_ARGS_MAX] = {0};
|
|
|
|
char *cmd = NULL;
|
|
|
|
|
2019-04-11 14:29:44 +00:00
|
|
|
if (!file || !*file)
|
2019-04-21 19:51:16 +00:00
|
|
|
return retstatus;
|
2014-10-21 13:21:00 +00:00
|
|
|
|
2018-12-06 17:27:59 +00:00
|
|
|
/* Swap args if the first arg is NULL and second isn't */
|
|
|
|
if (!arg1 && arg2) {
|
|
|
|
arg1 = arg2;
|
2019-03-10 05:43:12 +00:00
|
|
|
arg2 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag & F_MULTI) {
|
|
|
|
size_t len = strlen(file) + 1;
|
2019-03-17 14:10:57 +00:00
|
|
|
|
2019-03-10 05:43:12 +00:00
|
|
|
cmd = (char *)malloc(len);
|
|
|
|
if (!cmd) {
|
2019-03-17 14:10:57 +00:00
|
|
|
DPRINTF_S("malloc()!");
|
2019-04-21 19:51:16 +00:00
|
|
|
return retstatus;
|
2019-03-10 05:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
xstrlcpy(cmd, file, len);
|
|
|
|
status = parseargs(cmd, argv);
|
2019-03-10 07:27:41 +00:00
|
|
|
if (status == -1 || status > (EXEC_ARGS_MAX - 3)) { /* arg1, arg2 and last NULL */
|
2019-03-10 05:43:12 +00:00
|
|
|
free(cmd);
|
2019-03-17 14:10:57 +00:00
|
|
|
DPRINTF_S("NULL or too many args");
|
2019-04-21 19:51:16 +00:00
|
|
|
return retstatus;
|
2019-03-10 05:43:12 +00:00
|
|
|
}
|
|
|
|
|
2019-03-10 07:27:41 +00:00
|
|
|
argv[status++] = arg1;
|
|
|
|
argv[status] = arg2;
|
2019-03-10 05:43:12 +00:00
|
|
|
} else {
|
|
|
|
argv[0] = file;
|
|
|
|
argv[1] = arg1;
|
|
|
|
argv[2] = arg2;
|
2018-12-06 17:27:59 +00:00
|
|
|
}
|
|
|
|
|
2019-03-11 16:19:35 +00:00
|
|
|
if (flag & F_NORMAL)
|
2019-03-04 18:12:01 +00:00
|
|
|
exitcurses();
|
|
|
|
|
2019-03-10 16:14:16 +00:00
|
|
|
pid = xfork(flag);
|
2014-10-21 13:21:00 +00:00
|
|
|
if (pid == 0) {
|
2019-03-10 16:51:27 +00:00
|
|
|
if (dir && chdir(dir) == -1)
|
|
|
|
_exit(1);
|
2017-05-14 19:21:36 +00:00
|
|
|
|
|
|
|
/* Suppress stdout and stderr */
|
2017-07-02 10:42:30 +00:00
|
|
|
if (flag & F_NOTRACE) {
|
2017-06-15 14:04:56 +00:00
|
|
|
int fd = open("/dev/null", O_WRONLY, 0200);
|
|
|
|
|
2017-05-14 19:21:36 +00:00
|
|
|
dup2(fd, 1);
|
|
|
|
dup2(fd, 2);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2019-03-10 05:43:12 +00:00
|
|
|
execvp(*argv, argv);
|
2014-10-21 13:21:00 +00:00
|
|
|
_exit(1);
|
2019-04-25 15:41:35 +00:00
|
|
|
} else {
|
|
|
|
retstatus = join(pid, flag);
|
2017-06-15 16:04:47 +00:00
|
|
|
|
2019-04-25 15:41:35 +00:00
|
|
|
DPRINTF_D(pid);
|
2019-06-15 16:17:37 +00:00
|
|
|
if (flag & F_NORMAL) {
|
2019-10-15 00:26:34 +00:00
|
|
|
if (flag & F_CONFIRM) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printf("%s", messages[MSG_CONTINUE]);
|
2019-06-15 16:17:37 +00:00
|
|
|
getchar();
|
|
|
|
}
|
|
|
|
|
2019-05-07 12:54:07 +00:00
|
|
|
refresh();
|
2019-06-15 16:17:37 +00:00
|
|
|
}
|
2019-01-05 18:32:55 +00:00
|
|
|
|
2019-04-25 15:41:35 +00:00
|
|
|
free(cmd);
|
2019-01-05 18:32:55 +00:00
|
|
|
}
|
2019-04-21 19:51:16 +00:00
|
|
|
|
|
|
|
return retstatus;
|
2019-01-05 18:32:55 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 09:48:09 +00:00
|
|
|
static void prompt_run(char *cmd, const char *cur, const char *path)
|
|
|
|
{
|
2019-11-22 15:00:13 +00:00
|
|
|
setenv(envs[ENV_NCUR], cur, 1);
|
2019-10-15 00:26:34 +00:00
|
|
|
spawn(shell, "-c", cmd, path, 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 */
|
2018-10-22 14:25:45 +00:00
|
|
|
static char *xgetenv(const char *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 */
|
|
|
|
static bool xgetenv_set(const char *name)
|
|
|
|
{
|
|
|
|
char *value = getenv(name);
|
|
|
|
|
2019-04-25 13:32:55 +00:00
|
|
|
if (value && value[0] == '1' && !value[1])
|
2019-04-24 15:01:52 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-08-23 12:43:22 +00:00
|
|
|
/* Check if a dir exists, IS a dir and is readable */
|
2018-10-22 14:25:45 +00:00
|
|
|
static bool xdiraccess(const char *path)
|
2017-08-23 12:43:22 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
DIR *dirp = opendir(path);
|
2017-08-23 12:43:22 +00:00
|
|
|
|
2019-04-11 13:57:38 +00:00
|
|
|
if (!dirp) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(NULL);
|
2017-08-23 12:43:22 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dirp);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-15 00:45:32 +00:00
|
|
|
static void opstr(char *buf, char *op)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2019-11-22 15:47:55 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 sh -c '%s \"$0\" \"$@\" . < /dev/tty' < %s", op, g_selpath);
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2019-03-09 03:13:56 +00:00
|
|
|
static void rmmulstr(char *buf)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2019-11-21 13:29:28 +00:00
|
|
|
if (cfg.trash)
|
2019-11-21 12:49:55 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 trash-put < %s", g_selpath);
|
2019-11-21 13:29:28 +00:00
|
|
|
else
|
2019-11-22 15:47:55 +00:00
|
|
|
snprintf(buf, CMD_LEN_MAX, "xargs -0 sh -c 'rm -%cr \"$0\" \"$@\" < /dev/tty' < %s",
|
2019-11-21 13:29:28 +00:00
|
|
|
confirm_force(TRUE), g_selpath);
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2019-03-09 03:13:56 +00:00
|
|
|
static void xrm(char *path)
|
2019-03-02 09:39:00 +00:00
|
|
|
{
|
2019-03-09 03:35:32 +00:00
|
|
|
if (cfg.trash)
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn("trash-put", path, NULL, NULL, F_NORMAL);
|
2019-03-09 03:35:32 +00:00
|
|
|
else {
|
2019-03-13 18:42:37 +00:00
|
|
|
char rm_opts[] = "-ir";
|
2019-03-02 09:39:00 +00:00
|
|
|
|
2019-11-05 16:35:49 +00:00
|
|
|
rm_opts[1] = confirm_force(FALSE);
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn("rm", rm_opts, path, NULL, F_NORMAL);
|
2019-03-09 03:35:32 +00:00
|
|
|
}
|
2019-03-02 09:39:00 +00:00
|
|
|
}
|
|
|
|
|
2019-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);
|
2019-11-22 15:00:13 +00:00
|
|
|
char buf[sizeof(cpmvrenamecmd) + 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) {
|
2019-11-20 19:01:39 +00:00
|
|
|
snprintf(buf, sizeof(buf), "tr '\\0' '\\n' < %s > %s", g_selpath, g_tmpfpath);
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, 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
|
2019-10-14 16:36:45 +00:00
|
|
|
seltofile(fd, &count);
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
snprintf(buf, sizeof(buf), cpmvformatcmd, g_tmpfpath);
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, path, F_CLI);
|
2019-10-14 16:36:45 +00:00
|
|
|
|
2019-11-23 20:24:06 +00:00
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, path, 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;
|
|
|
|
}
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
snprintf(buf, sizeof(buf), cpmvrenamecmd, path, g_tmpfpath, cmd);
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, path, F_CLI);
|
2019-10-14 16:36:45 +00:00
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
finish:
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-10-19 07:55:50 +00:00
|
|
|
static bool cpmvrm_selection(enum action sel, char *path, int *presel)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (!selsafe()) {
|
|
|
|
*presel = MSGWAIT;
|
|
|
|
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') {
|
|
|
|
if (cfg.filtermode)
|
|
|
|
*presel = FILTER;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cpmv_rename(r, path)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], presel);
|
2019-10-19 07:55:50 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: /* SEL_RMMUL */
|
|
|
|
rmmulstr(g_buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sel != SEL_CPMVAS)
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], g_buf, NULL, path, F_CLI);
|
2019-10-19 07:55:50 +00:00
|
|
|
|
|
|
|
/* Clear selection on move or delete */
|
|
|
|
if (sel != SEL_CP)
|
|
|
|
clearselection();
|
|
|
|
|
|
|
|
if (cfg.filtermode)
|
|
|
|
*presel = FILTER;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-05-22 15:02:29 +00:00
|
|
|
static bool batch_rename(const char *path)
|
2019-05-22 13:14:03 +00:00
|
|
|
{
|
2019-07-14 19:38:24 +00:00
|
|
|
int fd1, fd2, i;
|
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};
|
2019-11-22 15:00:13 +00:00
|
|
|
char buf[sizeof(batchrenamecmd) + (PATH_MAX << 1)];
|
2019-05-22 13:14:03 +00:00
|
|
|
|
2019-11-29 15:28:12 +00:00
|
|
|
if (selbufpos) {
|
|
|
|
if (ndents) {
|
|
|
|
i = get_input(messages[MSG_RENAME_OPTS]);
|
|
|
|
if (i == 'c') {
|
|
|
|
selbufpos = 0; /* Clear the selection */
|
|
|
|
dir = TRUE;
|
|
|
|
} else if (i != 's')
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
} else if (ndents)
|
|
|
|
dir = TRUE; /* Rename entries in dir */
|
|
|
|
else
|
|
|
|
return ret;
|
|
|
|
|
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
|
|
|
|
|
|
|
xstrlcpy(foriginal, g_tmpfpath, strlen(g_tmpfpath)+1);
|
|
|
|
|
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)
|
|
|
|
appendfpath(dents[i].name, NAME_MAX);
|
|
|
|
|
2019-09-29 05:57:42 +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
|
|
|
|
2019-11-23 20:24:06 +00:00
|
|
|
spawn((cfg.waitedit ? enveditor : editor), g_tmpfpath, NULL, path, 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
|
|
|
}
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
snprintf(buf, sizeof(buf), batchrenamecmd, foriginal, g_tmpfpath);
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, path, 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
|
|
|
}
|
|
|
|
|
2019-07-27 06:44:49 +00:00
|
|
|
static void get_archive_cmd(char *cmd, char *archive)
|
|
|
|
{
|
2019-11-22 15:16:05 +00:00
|
|
|
if (getutil(utils[UTIL_ATOOL]))
|
2019-07-27 06:44:49 +00:00
|
|
|
xstrlcpy(cmd, "atool -a", ARCHIVE_CMD_LEN);
|
2019-11-22 15:16:05 +00:00
|
|
|
else if (getutil(utils[UTIL_BSDTAR]))
|
2019-08-06 17:56:18 +00:00
|
|
|
xstrlcpy(cmd, "bsdtar -acvf", ARCHIVE_CMD_LEN);
|
2019-07-27 06:44:49 +00:00
|
|
|
else if (is_suffix(archive, ".zip"))
|
|
|
|
xstrlcpy(cmd, "zip -r", ARCHIVE_CMD_LEN);
|
|
|
|
else
|
2019-08-06 17:56:18 +00:00
|
|
|
xstrlcpy(cmd, "tar -acvf", 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
|
|
|
{
|
2019-07-25 14:25:55 +00:00
|
|
|
char *buf = (char *)malloc(CMD_LEN_MAX * sizeof(char));
|
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__
|
2019-09-29 05:57:42 +00:00
|
|
|
"sed -ze 's|^%s/||' '%s' | xargs -0 %s %s", curpath, g_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",
|
2019-09-29 05:57:42 +00:00
|
|
|
g_selpath, curpath, cmd, archive);
|
2019-08-14 15:42:17 +00:00
|
|
|
#endif
|
2019-11-22 15:16:05 +00:00
|
|
|
spawn(utils[UTIL_SH_EXEC], buf, NULL, curpath, F_CLI);
|
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;
|
|
|
|
size_t len = strlen(cfgdir);
|
2019-03-02 19:35:13 +00:00
|
|
|
|
2019-06-07 16:23:27 +00:00
|
|
|
xstrlcpy(cfgdir + len, "/.lastd", 8);
|
|
|
|
DPRINTF_S(cfgdir);
|
2019-03-02 19:35:13 +00:00
|
|
|
|
2019-06-07 16:23:27 +00:00
|
|
|
FILE *fp = fopen(cfgdir, "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);
|
|
|
|
}
|
|
|
|
|
|
|
|
state = result_type[state * 3 + (((c2 == '0') + (xisdigit(c2) != 0)))];
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case VCMP:
|
|
|
|
return diff;
|
|
|
|
case VLEN:
|
2019-02-22 19:32:05 +00:00
|
|
|
while (xisdigit(*p1++))
|
|
|
|
if (!xisdigit(*p2++))
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-14 17:30:14 +00:00
|
|
|
static int (*cmpfn)(const char * const s1, const char * const s2) = &xstricmp;
|
|
|
|
|
2017-08-20 16:10:52 +00:00
|
|
|
/* Return the integer value of a char representing HEX */
|
2018-10-22 14:25:45 +00:00
|
|
|
static char xchartohex(char c)
|
2017-08-20 16:10:52 +00:00
|
|
|
{
|
2019-02-05 13:59:59 +00:00
|
|
|
if (xisdigit(c))
|
2017-08-20 16:10:52 +00:00
|
|
|
return c - '0';
|
|
|
|
|
|
|
|
c = TOUPPER(c);
|
|
|
|
if (c >= 'A' && c <= 'F')
|
|
|
|
return c - 'A' + 10;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2019-02-27 17:06:22 +00:00
|
|
|
static int setfilter(regex_t *regex, const char *filter)
|
2014-10-09 22:35:47 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
int r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2019-02-28 15:37:42 +00:00
|
|
|
if (r != 0 && filter && filter[0] != '\0')
|
2019-03-10 23:38:39 +00:00
|
|
|
mvprintw(xlines - 1, 0, "regex error: %d\n", r);
|
2018-04-01 17:21:55 +00:00
|
|
|
|
2014-10-09 22:35:47 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2019-10-13 13:40:06 +00:00
|
|
|
return regexec(fltrexp->regex, fname, 0, NULL, 0) == 0;
|
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
|
|
|
{
|
2019-10-13 13:40:06 +00:00
|
|
|
return strcasestr(fname, fltrexp->str) != NULL;
|
2019-01-13 17:19:14 +00:00
|
|
|
}
|
|
|
|
|
2019-10-13 13:40:06 +00:00
|
|
|
static int (*filterfn)(const fltrexp_t *fltr, const char *fname) = &visible_re;
|
2019-01-13 17:19:14 +00:00
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static int entrycmp(const void *va, const void *vb)
|
2014-10-07 06:05:30 +00:00
|
|
|
{
|
2019-03-04 19:34:01 +00:00
|
|
|
const struct entry *pa = (pEntry)va;
|
|
|
|
const struct entry *pb = (pEntry)vb;
|
2017-04-01 20:18:33 +00:00
|
|
|
|
2019-01-29 15:52:28 +00:00
|
|
|
if ((pb->flags & DIR_OR_LINK_TO_DIR) != (pa->flags & DIR_OR_LINK_TO_DIR)) {
|
|
|
|
if (pb->flags & DIR_OR_LINK_TO_DIR)
|
|
|
|
return 1;
|
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 */
|
2019-03-21 15:39:55 +00:00
|
|
|
if (cfg.mtimeorder) {
|
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)) {
|
|
|
|
char *extna = xmemrchr((uchar *)pa->name, '.', strlen(pa->name));
|
|
|
|
char *extnb = xmemrchr((uchar *)pb->name, '.', strlen(pb->name));
|
|
|
|
|
|
|
|
if (extna || extnb) {
|
|
|
|
if (!extna)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (!extnb)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-07-14 17:30:14 +00:00
|
|
|
return cmpfn(pa->name, pb->name);
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
/*
|
|
|
|
* Returns SEL_* if key is bound and 0 otherwise.
|
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;
|
|
|
|
const uint len = LEN(bindings);
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2019-03-19 14:09:43 +00:00
|
|
|
struct inotify_event *event;
|
2019-06-05 13:05:19 +00:00
|
|
|
char inotify_buf[EVENT_BUF_LEN];
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-06-04 17:11:48 +00:00
|
|
|
memset((void *)inotify_buf, 0x0, EVENT_BUF_LEN);
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2019-06-05 13:05:19 +00:00
|
|
|
struct kevent event_data[NUM_EVENT_SLOTS];
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-06-04 17:11:48 +00:00
|
|
|
memset((void *)event_data, 0x0, sizeof(struct kevent) * NUM_EVENT_SLOTS);
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2014-10-07 06:05:30 +00:00
|
|
|
|
2019-03-12 21:22:50 +00:00
|
|
|
if (c == 0 || c == MSGWAIT) {
|
2017-04-28 23:02:47 +00:00
|
|
|
c = getch();
|
2019-12-09 17:47:40 +00:00
|
|
|
//DPRINTF_D(c);
|
2019-03-10 23:55:17 +00:00
|
|
|
|
2019-03-12 21:22:50 +00:00
|
|
|
if (presel == MSGWAIT) {
|
|
|
|
if (cfg.filtermode)
|
|
|
|
c = FILTER;
|
|
|
|
else
|
|
|
|
c = CONTROL('L');
|
|
|
|
}
|
2019-03-10 23:55:17 +00:00
|
|
|
}
|
2017-08-22 21:58:26 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
if (c == -1) {
|
2017-06-17 06:58:21 +00:00
|
|
|
++idle;
|
2017-08-22 21:58:26 +00:00
|
|
|
|
2018-11-10 08:26:14 +00:00
|
|
|
/*
|
2019-01-20 12:02:44 +00:00
|
|
|
* Do not check for directory changes in du mode.
|
|
|
|
* A redraw forces du calculation.
|
2017-08-20 20:48:14 +00:00
|
|
|
* Check for changes every odd second.
|
|
|
|
*/
|
2017-08-22 21:58:26 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2019-11-16 14:40:03 +00:00
|
|
|
if (!cfg.selmode && !cfg.blkorder && inotify_wd >= 0 && (idle & 1)) {
|
2019-03-19 14:43:03 +00:00
|
|
|
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
|
|
|
|
if (i > 0) {
|
2019-05-27 01:53:30 +00:00
|
|
|
char *ptr;
|
|
|
|
|
2019-06-04 17:11:48 +00:00
|
|
|
for (ptr = inotify_buf;
|
|
|
|
ptr + ((struct inotify_event *)ptr)->len < inotify_buf + i;
|
2019-03-19 14:09:43 +00:00
|
|
|
ptr += sizeof(struct inotify_event) + event->len) {
|
|
|
|
event = (struct inotify_event *) ptr;
|
|
|
|
DPRINTF_D(event->wd);
|
|
|
|
DPRINTF_D(event->mask);
|
2019-03-20 00:20:20 +00:00
|
|
|
if (!event->wd)
|
|
|
|
break;
|
|
|
|
|
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)
|
2019-11-16 14:40:03 +00:00
|
|
|
if (!cfg.selmode && !cfg.blkorder && event_fd >= 0 && idle & 1
|
2019-01-20 12:02:44 +00:00
|
|
|
&& kevent(kq, events_to_monitor, NUM_EVENT_SLOTS,
|
|
|
|
event_data, NUM_EVENT_FDS, >imeout) > 0)
|
2019-02-11 15:41:28 +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
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
for (i = 0; i < len; ++i)
|
2019-01-21 16:20:29 +00:00
|
|
|
if (c == bindings[i].sym)
|
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;
|
|
|
|
}
|
|
|
|
|
2019-02-26 17:45:01 +00:00
|
|
|
static inline void swap_ent(int id1, int id2)
|
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
struct entry _dent, *pdent1 = &dents[id1], *pdent2 = &dents[id2];
|
2019-02-26 17:45:01 +00:00
|
|
|
|
|
|
|
*(&_dent) = *pdent1;
|
|
|
|
*pdent1 = *pdent2;
|
|
|
|
*pdent2 = *(&_dent);
|
|
|
|
}
|
|
|
|
|
2017-05-17 02:46:33 +00:00
|
|
|
/*
|
|
|
|
* Move non-matching entries to the end
|
|
|
|
*/
|
2019-02-27 17:06:22 +00:00
|
|
|
static int fill(const char *fltr, regex_t *re)
|
2017-04-28 23:02:47 +00:00
|
|
|
{
|
2019-02-28 15:37:42 +00:00
|
|
|
int count = 0;
|
2019-10-13 13:40:06 +00:00
|
|
|
fltrexp_t fltrexp = { .regex = re, .str = fltr };
|
2019-02-28 15:37:42 +00:00
|
|
|
|
|
|
|
for (; count < ndents; ++count) {
|
2019-10-13 13:40:06 +00:00
|
|
|
if (filterfn(&fltrexp, dents[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
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
regex_t re;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
|
|
|
/* Search filter */
|
2019-01-13 17:19:14 +00:00
|
|
|
if (cfg.filter_re && setfilter(&re, fltr) != 0)
|
2017-04-28 23:02:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2019-01-13 17:19:14 +00:00
|
|
|
ndents = fill(fltr, &re);
|
|
|
|
if (cfg.filter_re)
|
|
|
|
regfree(&re);
|
2018-03-18 22:12:56 +00:00
|
|
|
|
2017-04-28 23:02:47 +00:00
|
|
|
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
|
|
|
|
2019-09-11 06:48:58 +00:00
|
|
|
return ndents;
|
2017-04-28 23:02:47 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static int filterentries(char *path)
|
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-03-31 12:23:24 +00:00
|
|
|
int r, total = ndents, oldcur = cur, len;
|
2019-04-12 10:12:33 +00:00
|
|
|
char *pln = g_ctx[cfg.curctx].c_fltr + 1;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
|
|
|
cur = 0;
|
2014-10-09 22:35:47 +00:00
|
|
|
|
2019-03-31 12:23:24 +00:00
|
|
|
if (ndents && ln[0] == FILTER && *pln) {
|
|
|
|
if (matches(pln) != -1)
|
|
|
|
redraw(path);
|
|
|
|
|
|
|
|
len = mbstowcs(wln, ln, REGEX_MAX);
|
|
|
|
} else {
|
|
|
|
ln[0] = wln[0] = FILTER;
|
|
|
|
ln[1] = wln[1] = '\0';
|
|
|
|
len = 1;
|
|
|
|
}
|
|
|
|
|
2017-08-24 01:34:56 +00:00
|
|
|
cleartimeout();
|
2014-10-09 22:35:47 +00:00
|
|
|
curs_set(TRUE);
|
2017-04-28 23:02:47 +00:00
|
|
|
printprompt(ln);
|
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
while ((r = get_wch(ch)) != ERR) {
|
2018-10-27 20:22:07 +00:00
|
|
|
switch (*ch) {
|
2019-08-08 00:38:08 +00:00
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
case KEY_RESIZE:
|
|
|
|
clearoldprompt();
|
|
|
|
if (len == 1) {
|
|
|
|
cur = oldcur;
|
|
|
|
redraw(path);
|
|
|
|
cur = 0;
|
|
|
|
} else
|
|
|
|
redraw(path);
|
|
|
|
printprompt(ln);
|
|
|
|
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
|
|
|
|
case CONTROL('L'): // fallthrough
|
|
|
|
case 127: /* handle DEL */
|
|
|
|
if (len == 1 && *ch != CONTROL('L')) {
|
2017-12-14 13:42:14 +00:00
|
|
|
cur = oldcur;
|
|
|
|
*ch = CONTROL('L');
|
|
|
|
goto end;
|
|
|
|
}
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2018-10-27 20:22:07 +00:00
|
|
|
if (*ch == CONTROL('L'))
|
|
|
|
while (len > 1)
|
|
|
|
wln[--len] = '\0';
|
|
|
|
else
|
|
|
|
wln[--len] = '\0';
|
|
|
|
|
2017-12-14 13:42:14 +00:00
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-12-14 13:42:14 +00:00
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
|
|
|
ndents = total;
|
2018-08-28 17:21:26 +00:00
|
|
|
if (matches(pln) != -1)
|
|
|
|
redraw(path);
|
|
|
|
|
2017-12-14 13:42:14 +00:00
|
|
|
printprompt(ln);
|
|
|
|
continue;
|
2019-07-12 16:58:44 +00:00
|
|
|
case KEY_MOUSE: // fallthrough
|
2018-10-27 20:22:07 +00:00
|
|
|
case 27: /* Exit filter mode on Escape */
|
2019-01-05 21:38:46 +00:00
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
2018-10-27 03:05:05 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
if (r == OK) {
|
2018-04-25 16:27:46 +00:00
|
|
|
/* Handle all control chars in main loop */
|
2019-11-18 14:51:00 +00:00
|
|
|
if ((*ch < ASCII_MAX && keyname(*ch)[0] == '^' && *ch != '^')
|
|
|
|
|| (*ch == ']' && len == 1)) {
|
2019-09-11 06:48:58 +00:00
|
|
|
DPRINTF_D(*ch);
|
|
|
|
DPRINTF_S(keyname(*ch));
|
|
|
|
|
|
|
|
/* If there's a filter, try a command on ^P */
|
|
|
|
if (cfg.filtercmd && *ch == CONTROL('P') && len > 1) {
|
2019-09-28 09:48:09 +00:00
|
|
|
prompt_run(pln, (ndents ? dents[cur].name : ""), path);
|
2019-11-17 00:06:39 +00:00
|
|
|
|
|
|
|
/* Clear the prompt */
|
|
|
|
while (len > 1)
|
|
|
|
wln[--len] = '\0';
|
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
|
|
|
ndents = total;
|
|
|
|
if (matches(pln) != -1)
|
|
|
|
redraw(path);
|
|
|
|
|
|
|
|
printprompt(ln);
|
2019-09-14 20:07:39 +00:00
|
|
|
continue;
|
2019-09-11 06:48:58 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 16:27:46 +00:00
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-08-25 08:40:57 +00:00
|
|
|
switch (*ch) {
|
2019-08-04 08:57:35 +00:00
|
|
|
case '/': /* works as Leader key in filter mode */
|
|
|
|
*ch = CONTROL('_'); // fallthrough
|
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
2019-12-08 19:04:53 +00:00
|
|
|
case '=': // fallthrough /* Launch app */
|
2019-12-01 14:28:08 +00:00
|
|
|
case ':': // fallthrough /* Run plugin keys */
|
|
|
|
case ';': // fallthrough
|
|
|
|
case '?': /* Help and config key, '?' is an invalid regex */
|
2018-03-31 15:28:13 +00:00
|
|
|
if (len == 1) {
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
} // fallthrough
|
2017-04-28 23:02:47 +00:00
|
|
|
default:
|
2017-07-02 20:19:14 +00:00
|
|
|
/* Reset cur in case it's a repeat search */
|
|
|
|
if (len == 1)
|
|
|
|
cur = 0;
|
|
|
|
|
2017-12-19 19:12:11 +00:00
|
|
|
if (len == REGEX_MAX - 1)
|
2017-08-24 04:45:32 +00:00
|
|
|
break;
|
|
|
|
|
2017-06-17 06:58:21 +00:00
|
|
|
wln[len] = (wchar_t)*ch;
|
2017-07-02 20:19:14 +00:00
|
|
|
wln[++len] = '\0';
|
2017-08-24 04:45:32 +00:00
|
|
|
wcstombs(ln, wln, REGEX_MAX);
|
2018-08-07 23:34:34 +00:00
|
|
|
|
|
|
|
/* Forward-filtering optimization:
|
|
|
|
* - new matches can only be a subset of current matches.
|
|
|
|
*/
|
|
|
|
/* ndents = total; */
|
|
|
|
|
2017-04-28 23:02:47 +00:00
|
|
|
if (matches(pln) == -1)
|
|
|
|
continue;
|
2018-08-07 23:27:49 +00:00
|
|
|
|
|
|
|
/* If the only match is a dir, auto-select and cd into it */
|
2019-01-20 12:02:44 +00:00
|
|
|
if (ndents == 1 && cfg.filtermode
|
2019-12-09 13:42:59 +00:00
|
|
|
&& cfg.autoselect && (dents[0].flags & DIR_OR_LINK_TO_DIR)) {
|
2018-08-07 23:27:49 +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,
|
2018-11-09 14:37:47 +00:00
|
|
|
* due to a permission problem. The transition is _jumpy_ in
|
2018-08-07 23:27:49 +00:00
|
|
|
* case of such an error. However, we optimize for successful
|
|
|
|
* cases where the dir has permissions. This skips a redraw().
|
|
|
|
*/
|
2017-04-28 23:02:47 +00:00
|
|
|
redraw(path);
|
|
|
|
printprompt(ln);
|
|
|
|
}
|
2017-08-25 08:40:57 +00:00
|
|
|
} else {
|
|
|
|
if (len == 1)
|
|
|
|
cur = oldcur;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
2017-04-28 23:02:47 +00:00
|
|
|
end:
|
2019-04-12 10:12:33 +00:00
|
|
|
if (*ch != '\t')
|
2019-03-31 12:23:24 +00:00
|
|
|
g_ctx[cfg.curctx].c_fltr[0] = g_ctx[cfg.curctx].c_fltr[1] = '\0';
|
2019-04-12 10:12:33 +00:00
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
move_cursor(cur, 0);
|
2019-05-09 02:38:32 +00:00
|
|
|
|
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();
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
|
|
|
|
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] = ' ';
|
2019-08-08 00:38:08 +00:00
|
|
|
mvaddnwstr(xlines - 1, x, buf, len + 1);
|
|
|
|
move(xlines - 1, x + wcswidth(buf, pos));
|
2017-08-24 01:34:56 +00:00
|
|
|
|
2018-07-12 14:28:53 +00:00
|
|
|
r = get_wch(ch);
|
|
|
|
if (r != ERR) {
|
2017-08-25 08:27:22 +00:00
|
|
|
if (r == OK) {
|
2018-07-04 13:32:47 +00:00
|
|
|
switch (*ch) {
|
2018-11-23 19:10:03 +00:00
|
|
|
case KEY_ENTER: // fallthrough
|
|
|
|
case '\n': // fallthrough
|
2018-07-04 13:32:47 +00:00
|
|
|
case '\r':
|
|
|
|
goto END;
|
2019-02-22 19:32:05 +00:00
|
|
|
case 127: // fallthrough
|
2019-01-20 12:02:44 +00:00
|
|
|
case '\b': /* rhel25 sends '\b' for backspace */
|
2018-07-04 13:18:43 +00:00
|
|
|
if (pos > 0) {
|
2019-06-22 01:49:00 +00:00
|
|
|
memmove(buf + pos - 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
2018-07-04 13:18:43 +00:00
|
|
|
--len, --pos;
|
2018-11-23 19:10:03 +00:00
|
|
|
} // fallthrough
|
2018-07-04 13:32:47 +00:00
|
|
|
case '\t': /* TAB breaks cursor position, ignore it */
|
2018-07-04 13:18:43 +00:00
|
|
|
continue;
|
2018-07-04 13:32:47 +00:00
|
|
|
case CONTROL('L'):
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
2017-08-25 16:19:55 +00:00
|
|
|
len = pos = 0;
|
|
|
|
continue;
|
2018-07-04 13:32:47 +00:00
|
|
|
case CONTROL('A'):
|
2018-03-27 02:35:47 +00:00
|
|
|
pos = 0;
|
|
|
|
continue;
|
2018-07-04 13:32:47 +00:00
|
|
|
case CONTROL('E'):
|
2018-03-27 02:35:47 +00:00
|
|
|
pos = len;
|
|
|
|
continue;
|
2018-07-04 13:32:47 +00:00
|
|
|
case CONTROL('U'):
|
2018-04-25 17:07:59 +00:00
|
|
|
printprompt(prompt);
|
2019-06-22 01:49:00 +00:00
|
|
|
memmove(buf, buf + pos, (len - pos) * WCHAR_T_WIDTH);
|
2018-03-27 02:35:47 +00:00
|
|
|
len -= pos;
|
|
|
|
pos = 0;
|
|
|
|
continue;
|
2018-10-27 03:05:05 +00:00
|
|
|
case 27: /* Exit prompt on Escape */
|
|
|
|
len = 0;
|
|
|
|
goto END;
|
2018-03-27 02:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Filter out all other control chars */
|
2019-01-04 14:06:03 +00:00
|
|
|
if (*ch < ASCII_MAX && keyname(*ch)[0] == '^')
|
2018-03-27 02:35:47 +00:00
|
|
|
continue;
|
|
|
|
|
2019-10-05 01:47:01 +00:00
|
|
|
if (pos < READLINE_MAX - 1) {
|
2019-06-22 01:49:00 +00:00
|
|
|
memmove(buf + pos + 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
2017-08-25 08:27:22 +00:00
|
|
|
buf[pos] = *ch;
|
|
|
|
++len, ++pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (*ch) {
|
2019-08-08 00:38:08 +00:00
|
|
|
#ifdef KEY_RESIZE
|
|
|
|
case KEY_RESIZE:
|
|
|
|
clearoldprompt();
|
|
|
|
xlines = LINES;
|
|
|
|
printprompt(prompt);
|
|
|
|
break;
|
|
|
|
#endif
|
2017-08-25 08:27:22 +00:00
|
|
|
case KEY_LEFT:
|
|
|
|
if (pos > 0)
|
|
|
|
--pos;
|
|
|
|
break;
|
|
|
|
case KEY_RIGHT:
|
|
|
|
if (pos < len)
|
|
|
|
++pos;
|
|
|
|
break;
|
|
|
|
case KEY_BACKSPACE:
|
|
|
|
if (pos > 0) {
|
2019-06-22 01:49:00 +00:00
|
|
|
memmove(buf + pos - 1, buf + pos,
|
|
|
|
(len - pos) * WCHAR_T_WIDTH);
|
2017-08-25 08:27:22 +00:00
|
|
|
--len, --pos;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KEY_DC:
|
|
|
|
if (pos < len) {
|
2019-01-20 12:02:44 +00:00
|
|
|
memmove(buf + pos, buf + pos + 1,
|
2019-06-22 01:49:00 +00:00
|
|
|
(len - pos - 1) * WCHAR_T_WIDTH);
|
2017-08-25 08:27:22 +00:00
|
|
|
--len;
|
|
|
|
}
|
|
|
|
break;
|
2019-03-25 15:50:18 +00:00
|
|
|
case KEY_END:
|
|
|
|
pos = len;
|
|
|
|
break;
|
|
|
|
case KEY_HOME:
|
|
|
|
pos = 0;
|
|
|
|
break;
|
2017-08-25 08:27:22 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-08-24 01:34:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-04 13:32:47 +00:00
|
|
|
END:
|
2018-10-27 03:05:05 +00:00
|
|
|
curs_set(FALSE);
|
2017-08-24 01:34:56 +00:00
|
|
|
settimeout();
|
2018-11-07 16:43:56 +00:00
|
|
|
clearprompt();
|
2018-10-27 03:05:05 +00:00
|
|
|
|
2018-11-07 16:43:56 +00:00
|
|
|
buf[len] = '\0';
|
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
|
|
|
|
*/
|
2019-11-22 15:00:13 +00:00
|
|
|
static char *getreadline(const char *prompt, char *path, char *curpath, int *presel)
|
2019-04-26 20:11:35 +00:00
|
|
|
{
|
|
|
|
/* Switch to current path for readline(3) */
|
|
|
|
if (chdir(path) == -1) {
|
|
|
|
printwarn(presel);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
exitcurses();
|
|
|
|
|
2019-06-01 02:03:11 +00:00
|
|
|
char *input = readline(prompt);
|
2019-04-26 20:11:35 +00:00
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
if (chdir(curpath) == -1) {
|
|
|
|
printwarn(presel);
|
|
|
|
free(input);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input && input[0]) {
|
|
|
|
add_history(input);
|
|
|
|
xstrlcpy(g_buf, input, CMD_LEN_MAX);
|
|
|
|
free(input);
|
|
|
|
return g_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(input);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-02 08:48:54 +00:00
|
|
|
/*
|
2018-01-13 20:13:30 +00:00
|
|
|
* Updates out with "dir/name or "/name"
|
2018-01-13 21:57:24 +00:00
|
|
|
* Returns the number of bytes copied including the terminating NULL byte
|
2017-04-02 08:48:54 +00:00
|
|
|
*/
|
2019-10-18 22:11:39 +00:00
|
|
|
static size_t mkpath(const char *dir, const char *name, char *out)
|
2016-02-10 15:38:22 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
size_t len;
|
2018-01-13 21:57:24 +00:00
|
|
|
|
2016-02-10 15:38:22 +00:00
|
|
|
/* Handle absolute path */
|
2017-03-29 14:12:23 +00:00
|
|
|
if (name[0] == '/')
|
2019-01-20 21:19:05 +00:00
|
|
|
return xstrlcpy(out, name, PATH_MAX);
|
2018-07-08 16:02:26 +00:00
|
|
|
|
|
|
|
/* Handle root case */
|
|
|
|
if (istopdir(dir))
|
|
|
|
len = 1;
|
|
|
|
else
|
2019-01-20 21:19:05 +00:00
|
|
|
len = xstrlcpy(out, dir, PATH_MAX);
|
2018-01-13 20:13:30 +00:00
|
|
|
|
2019-05-15 16:59:38 +00:00
|
|
|
out[len - 1] = '/'; // NOLINT
|
2019-01-20 21:19:05 +00:00
|
|
|
return (xstrlcpy(out + len, name, PATH_MAX - len) + len);
|
2016-02-10 15:38:22 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 12:20:49 +00:00
|
|
|
/*
|
|
|
|
* Create symbolic/hard link(s) to file(s) in selection list
|
|
|
|
* Returns the number of links created
|
|
|
|
*/
|
2019-11-29 15:28:12 +00:00
|
|
|
static int xlink(char *suffix, char *path, char *curfname, char *buf, int *presel, int type)
|
2019-01-20 11:29:55 +00:00
|
|
|
{
|
2019-11-29 15:28:12 +00:00
|
|
|
int count = 0, choice = 's';
|
2019-09-08 08:53:00 +00:00
|
|
|
char *pbuf = 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;
|
|
|
|
|
2019-11-29 15:28:12 +00:00
|
|
|
if (selbufpos) {
|
|
|
|
if (ndents) {
|
|
|
|
choice = get_input(messages[MSG_CUR_SEL_OPTS]);
|
|
|
|
if (choice != 'c' && choice != 's')
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else if (ndents)
|
|
|
|
choice = 'c';
|
|
|
|
else
|
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') {
|
|
|
|
char lnpath[PATH_MAX];
|
|
|
|
|
|
|
|
mkpath(path, curfname, buf);
|
|
|
|
r = mkpath(path, curfname, lnpath);
|
|
|
|
xstrlcpy(lnpath + r - 1, suffix, PATH_MAX - r - 1);
|
|
|
|
|
|
|
|
if (!link_fn(buf, lnpath))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
printwarn(presel);
|
|
|
|
return 0; /* One link created */
|
|
|
|
}
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
while (pos < selbufpos) {
|
2019-01-20 11:29:55 +00:00
|
|
|
len = strlen(pbuf);
|
|
|
|
fname = xbasename(pbuf);
|
2019-01-20 21:19:05 +00:00
|
|
|
r = mkpath(path, fname, buf);
|
2019-01-20 11:29:55 +00:00
|
|
|
xstrlcpy(buf + r - 1, suffix, PATH_MAX - r - 1);
|
|
|
|
|
2019-01-20 16:17:16 +00:00
|
|
|
if (!link_fn(pbuf, buf))
|
2019-01-20 11:29:55 +00:00
|
|
|
++count;
|
|
|
|
|
|
|
|
pos += len + 1;
|
|
|
|
pbuf += len + 1;
|
|
|
|
}
|
|
|
|
|
2019-04-27 12:28:55 +00:00
|
|
|
if (!count)
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_0_CREATED], presel);
|
2019-04-27 12:28:55 +00:00
|
|
|
|
2019-01-20 11:29:55 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
static bool parsekvpair(kv *kvarr, char **envcpy, const char *cfgstr, uchar maxitems)
|
2017-06-11 04:15:50 +00:00
|
|
|
{
|
|
|
|
int i = 0;
|
2019-08-07 20:09:41 +00:00
|
|
|
char *nextkey;
|
2019-08-14 14:27:44 +00:00
|
|
|
char *ptr = getenv(cfgstr);
|
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
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
*envcpy = strdup(ptr);
|
|
|
|
ptr = *envcpy;
|
|
|
|
nextkey = ptr;
|
2019-08-07 20:09:41 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
while (*ptr && i < maxitems) {
|
|
|
|
if (ptr == nextkey) {
|
|
|
|
kvarr[i].key = *ptr;
|
|
|
|
if (*++ptr != ':')
|
2019-01-25 16:33:08 +00:00
|
|
|
return FALSE;
|
2019-08-14 14:27:44 +00:00
|
|
|
if (*++ptr == '\0')
|
2019-01-25 16:33:08 +00:00
|
|
|
return FALSE;
|
2019-08-14 14:27:44 +00:00
|
|
|
kvarr[i].val = ptr;
|
2019-01-25 16:33:08 +00:00
|
|
|
++i;
|
2017-06-11 04:15:50 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (*ptr == ';') {
|
2019-03-07 21:18:20 +00:00
|
|
|
/* Remove trailing space */
|
2019-08-14 14:27:44 +00:00
|
|
|
if (i > 0 && *(ptr - 1) == '/')
|
|
|
|
*(ptr - 1) = '\0';
|
2019-03-07 21:18:20 +00:00
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
*ptr = '\0';
|
|
|
|
nextkey = ptr + 1;
|
2019-01-25 16:33:08 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (i < maxitems) {
|
|
|
|
if (*kvarr[i - 1].val == '\0')
|
2019-01-25 16:33:08 +00:00
|
|
|
return FALSE;
|
2019-08-14 14:27:44 +00:00
|
|
|
kvarr[i].key = '\0';
|
2017-06-11 04:15:50 +00:00
|
|
|
}
|
2018-11-11 21:34:17 +00:00
|
|
|
|
2018-12-08 09:58:55 +00:00
|
|
|
return TRUE;
|
2017-06-11 04:15:50 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
2019-08-14 14:27:44 +00:00
|
|
|
static char *get_kv_val(kv *kvarr, char *buf, int key, uchar max, bool path)
|
2017-12-24 09:51:38 +00:00
|
|
|
{
|
2019-02-28 15:37:42 +00:00
|
|
|
int r = 0;
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
for (; kvarr[r].key && r < max; ++r) {
|
|
|
|
if (kvarr[r].key == key) {
|
|
|
|
if (!path)
|
|
|
|
return kvarr[r].val;
|
|
|
|
|
|
|
|
if (kvarr[r].val[0] == '~') {
|
2019-04-23 03:20:25 +00:00
|
|
|
ssize_t len = strlen(home);
|
2019-08-14 14:27:44 +00:00
|
|
|
ssize_t loclen = strlen(kvarr[r].val);
|
2019-03-04 19:34:01 +00:00
|
|
|
|
2019-04-23 03:20:25 +00:00
|
|
|
if (!buf)
|
|
|
|
buf = (char *)malloc(len + loclen);
|
2017-12-24 09:51:38 +00:00
|
|
|
|
2019-04-23 03:20:25 +00:00
|
|
|
xstrlcpy(buf, home, len + 1);
|
2019-08-14 14:27:44 +00:00
|
|
|
xstrlcpy(buf + len, kvarr[r].val + 1, loclen);
|
2019-04-23 03:20:25 +00:00
|
|
|
return buf;
|
2019-04-23 14:29:37 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
return realpath(kvarr[r].val, buf);
|
2017-12-24 09:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF_S("Invalid key");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-03-01 08:24:40 +00:00
|
|
|
static inline void resetdircolor(int flags)
|
2017-09-02 08:32:29 +00:00
|
|
|
{
|
2019-02-01 05:33:11 +00:00
|
|
|
if (cfg.dircolor && !(flags & DIR_OR_LINK_TO_DIR)) {
|
2019-08-03 18:25:02 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
2017-09-02 08:32:29 +00:00
|
|
|
cfg.dircolor = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-02 10:42:30 +00:00
|
|
|
/*
|
|
|
|
* Replace escape characters in a string with '?'
|
2017-09-01 04:52:44 +00:00
|
|
|
* Adjust string length to maxcols if > 0;
|
2019-03-09 09:26:18 +00:00
|
|
|
* Max supported str length: NAME_MAX;
|
2017-12-19 18:03:27 +00:00
|
|
|
*
|
2018-01-04 12:16:06 +00:00
|
|
|
* Interestingly, note that unescape() uses g_buf. What happens if
|
2017-12-19 18:03:27 +00:00
|
|
|
* str also points to g_buf? In this case we assume that the caller
|
|
|
|
* acknowledges that it's OK to lose the data in g_buf after this
|
|
|
|
* call to unescape().
|
|
|
|
* The API, on its part, first converts str to multibyte (after which
|
|
|
|
* it doesn't touch str anymore). Only after that it starts modifying
|
2018-01-04 12:16:06 +00:00
|
|
|
* g_buf. This is a phased operation.
|
2017-07-02 10:42:30 +00:00
|
|
|
*/
|
2019-08-20 16:25:54 +00:00
|
|
|
static char *unescape(const char *str, uint maxcols, wchar_t **wstr)
|
2017-05-03 13:57:55 +00:00
|
|
|
{
|
2019-03-09 09:26:18 +00:00
|
|
|
static wchar_t wbuf[NAME_MAX + 1] __attribute__ ((aligned));
|
2019-03-09 12:48:32 +00:00
|
|
|
wchar_t *buf = wbuf;
|
2019-05-27 01:53:30 +00:00
|
|
|
size_t lencount = 0;
|
2019-11-05 14:33:12 +00:00
|
|
|
|
|
|
|
#ifdef NOLOCALE
|
|
|
|
memset(wbuf, 0, sizeof(wbuf));
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2019-03-09 12:48:32 +00:00
|
|
|
while (*buf && lencount <= maxcols) {
|
|
|
|
if (*buf <= '\x1f' || *buf == '\x7f')
|
|
|
|
*buf = '\?';
|
|
|
|
|
|
|
|
++buf;
|
|
|
|
++lencount;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = lencount = wcswidth(wbuf, len);
|
2017-12-19 18:03:27 +00:00
|
|
|
|
2019-03-09 12:48:32 +00:00
|
|
|
/* Reduce number of wide chars to max columns */
|
|
|
|
if (len > maxcols) {
|
|
|
|
lencount = maxcols + 1;
|
2019-02-12 15:42:34 +00:00
|
|
|
|
2019-02-13 18:11:49 +00:00
|
|
|
/* Reduce wide chars one by one till it fits */
|
2019-02-12 03:22:31 +00:00
|
|
|
while (len > maxcols)
|
|
|
|
len = wcswidth(wbuf, --lencount);
|
|
|
|
|
|
|
|
wbuf[lencount] = L'\0';
|
2017-09-01 04:52:44 +00:00
|
|
|
}
|
2017-05-03 13:57:55 +00:00
|
|
|
|
2019-08-20 16:25:54 +00:00
|
|
|
if (wstr) {
|
|
|
|
*wstr = wbuf;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-05-03 13:57:55 +00:00
|
|
|
/* Convert wide char to multi-byte */
|
2019-03-09 09:26:18 +00:00
|
|
|
wcstombs(g_buf, wbuf, NAME_MAX);
|
2018-01-04 12:16:06 +00:00
|
|
|
return g_buf;
|
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) {
|
2019-07-14 16:57:22 +00:00
|
|
|
ret = xstrlcpy(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;
|
|
|
|
size_t len = strlen(frac);
|
|
|
|
|
|
|
|
if (len < toprint) {
|
|
|
|
size_buf[ret] = size_buf[ret + 1] = size_buf[ret + 2] = '0';
|
2019-07-14 16:57:22 +00:00
|
|
|
xstrlcpy(size_buf + ret + (toprint - len), frac, len + 1);
|
2019-07-04 19:43:55 +00:00
|
|
|
} else
|
|
|
|
xstrlcpy(size_buf + ret, frac, toprint + 1);
|
|
|
|
|
|
|
|
ret += toprint;
|
|
|
|
} else {
|
2019-07-14 16:57:22 +00:00
|
|
|
ret = xstrlcpy(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;
|
|
|
|
}
|
|
|
|
|
2019-09-14 22:43:09 +00:00
|
|
|
static char get_fileind(mode_t mode)
|
|
|
|
{
|
|
|
|
char c = '\0';
|
|
|
|
|
|
|
|
switch (mode & S_IFMT) {
|
|
|
|
case S_IFREG:
|
|
|
|
c = '-';
|
|
|
|
break;
|
|
|
|
case S_IFDIR:
|
|
|
|
c = 'd';
|
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
|
|
|
c = 'l';
|
|
|
|
break;
|
|
|
|
case S_IFSOCK:
|
|
|
|
c = 's';
|
|
|
|
break;
|
|
|
|
case S_IFIFO:
|
|
|
|
c = 'p';
|
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
|
|
|
c = 'b';
|
|
|
|
break;
|
|
|
|
case S_IFCHR:
|
|
|
|
c = 'c';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
c = '?';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a mode field into "ls -l" type perms field. */
|
|
|
|
static char *get_lsperms(mode_t mode)
|
|
|
|
{
|
|
|
|
static const char * const rwx[] = {"---", "--x", "-w-", "-wx", "r--", "r-x", "rw-", "rwx"};
|
|
|
|
static char bits[11] = {'\0'};
|
|
|
|
|
|
|
|
bits[0] = get_fileind(mode);
|
|
|
|
xstrlcpy(&bits[1], rwx[(mode >> 6) & 7], 4);
|
|
|
|
xstrlcpy(&bits[4], rwx[(mode >> 3) & 7], 4);
|
|
|
|
xstrlcpy(&bits[7], rwx[(mode & 7)], 4);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-05-09 02:04:10 +00:00
|
|
|
static void printent(const struct entry *ent, int sel, uint namecols)
|
2018-01-04 00:53:20 +00:00
|
|
|
{
|
2019-08-20 16:25:54 +00:00
|
|
|
wchar_t *wstr;
|
2019-08-21 15:00:04 +00:00
|
|
|
char ind = '\0';
|
2019-03-04 18:07:51 +00:00
|
|
|
|
2019-08-21 15:00:04 +00:00
|
|
|
switch (ent->mode & S_IFMT) {
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFREG:
|
2019-08-21 15:00:04 +00:00
|
|
|
if (ent->mode & 0100)
|
|
|
|
ind = '*';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFDIR:
|
2019-08-21 15:00:04 +00:00
|
|
|
ind = '/';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
2019-08-21 15:00:04 +00:00
|
|
|
ind = '@';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFSOCK:
|
2019-08-21 15:00:04 +00:00
|
|
|
ind = '=';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFIFO:
|
2019-08-21 15:00:04 +00:00
|
|
|
ind = '|';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFBLK: // fallthrough
|
|
|
|
case S_IFCHR:
|
|
|
|
break;
|
|
|
|
default:
|
2019-08-21 15:00:04 +00:00
|
|
|
ind = '?';
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
|
2019-09-15 12:44:56 +00:00
|
|
|
if (!ind)
|
|
|
|
++namecols;
|
|
|
|
|
|
|
|
unescape(ent->name, namecols, &wstr);
|
|
|
|
|
2017-09-02 08:39:34 +00:00
|
|
|
/* Directories are always shown on top */
|
2019-02-01 05:33:11 +00:00
|
|
|
resetdircolor(ent->flags);
|
2017-09-02 08:39:34 +00:00
|
|
|
|
2019-08-04 03:26:59 +00:00
|
|
|
if (sel)
|
|
|
|
attron(A_REVERSE);
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
|
2019-08-20 16:25:54 +00:00
|
|
|
addwstr(wstr);
|
2019-08-21 15:00:04 +00:00
|
|
|
if (ind)
|
|
|
|
addch(ind);
|
|
|
|
addch('\n');
|
2019-08-04 03:26:59 +00:00
|
|
|
|
|
|
|
if (sel)
|
|
|
|
attroff(A_REVERSE);
|
2017-09-02 08:39:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-27 17:06:22 +00:00
|
|
|
static void printent_long(const struct entry *ent, int sel, uint namecols)
|
2017-03-29 20:21:52 +00:00
|
|
|
{
|
2019-10-16 01:31:19 +00:00
|
|
|
char timebuf[24], permbuf[4], ind1 = '\0', ind2[] = "\0\0";
|
2019-09-08 08:53:00 +00:00
|
|
|
const char cp = (ent->flags & FILE_SELECTED) ? '+' : ' ';
|
2017-04-21 21:40:02 +00:00
|
|
|
|
2019-02-23 14:04:07 +00:00
|
|
|
/* Timestamp */
|
2019-10-16 01:31:19 +00:00
|
|
|
strftime(timebuf, sizeof(timebuf), "%F %R", localtime(&ent->t));
|
|
|
|
timebuf[sizeof(timebuf)-1] = '\0';
|
2019-02-23 14:04:07 +00:00
|
|
|
|
|
|
|
/* Permissions */
|
2019-05-16 19:04:50 +00:00
|
|
|
permbuf[0] = '0' + ((ent->mode >> 6) & 7);
|
|
|
|
permbuf[1] = '0' + ((ent->mode >> 3) & 7);
|
|
|
|
permbuf[2] = '0' + (ent->mode & 7);
|
2019-03-01 08:24:40 +00:00
|
|
|
permbuf[3] = '\0';
|
2019-02-23 14:04:07 +00:00
|
|
|
|
2019-09-15 12:44:56 +00:00
|
|
|
/* Add a column if no indicator is needed */
|
|
|
|
if (S_ISREG(ent->mode) && !(ent->mode & 0100))
|
|
|
|
++namecols;
|
|
|
|
|
2019-02-23 14:04:07 +00:00
|
|
|
/* Trim escape chars from name */
|
2019-08-20 16:25:54 +00:00
|
|
|
const char *pname = unescape(ent->name, namecols, NULL);
|
2017-03-30 04:39:21 +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
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
if (sel)
|
2017-03-30 05:14:26 +00:00
|
|
|
attron(A_REVERSE);
|
|
|
|
|
2019-01-21 14:07:00 +00:00
|
|
|
switch (ent->mode & S_IFMT) {
|
|
|
|
case S_IFREG:
|
|
|
|
if (ent->mode & 0100)
|
2019-03-01 08:47:45 +00:00
|
|
|
printw("%c%-16.16s %s %8.8s* %s*\n", cp, timebuf, permbuf,
|
2019-10-30 17:13:22 +00:00
|
|
|
coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size), pname);
|
2019-01-21 14:07:00 +00:00
|
|
|
else
|
2019-03-01 08:47:45 +00:00
|
|
|
printw("%c%-16.16s %s %8.8s %s\n", cp, timebuf, permbuf,
|
2019-10-30 17:13:22 +00:00
|
|
|
coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size), pname);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFDIR:
|
2019-09-15 12:55:11 +00:00
|
|
|
printw("%c%-16.16s %s %8.8s %s/\n", cp, timebuf, permbuf,
|
2019-10-30 17:13:22 +00:00
|
|
|
coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size), pname);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
2019-08-16 14:33:58 +00:00
|
|
|
printw("%c%-16.16s %s @ %s@\n", cp, timebuf, permbuf, pname);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
|
|
|
case S_IFSOCK:
|
2019-03-01 08:24:40 +00:00
|
|
|
ind1 = ind2[0] = '='; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFIFO:
|
2019-03-01 08:24:40 +00:00
|
|
|
if (!ind1)
|
|
|
|
ind1 = ind2[0] = '|'; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFBLK:
|
2019-03-01 08:24:40 +00:00
|
|
|
if (!ind1)
|
|
|
|
ind1 = 'b'; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
case S_IFCHR:
|
2019-03-01 08:24:40 +00:00
|
|
|
if (!ind1)
|
|
|
|
ind1 = 'c'; // fallthrough
|
2019-01-21 14:07:00 +00:00
|
|
|
default:
|
2019-03-01 08:24:40 +00:00
|
|
|
if (!ind1)
|
|
|
|
ind1 = ind2[0] = '?';
|
2019-03-01 08:47:45 +00:00
|
|
|
printw("%c%-16.16s %s %c %s%s\n", cp, timebuf, permbuf, ind1, pname, ind2);
|
2019-01-21 14:07:00 +00:00
|
|
|
break;
|
2017-04-09 18:41:29 +00:00
|
|
|
}
|
2017-03-30 05:14:26 +00:00
|
|
|
|
2017-06-15 14:04:56 +00:00
|
|
|
if (sel)
|
2017-03-30 05:14:26 +00:00
|
|
|
attroff(A_REVERSE);
|
2017-03-29 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 04:25:14 +00:00
|
|
|
static void (*printptr)(const struct entry *ent, int sel, uint namecols) = &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 */)
|
|
|
|
{
|
|
|
|
settings cfg = *curcfg;
|
2019-09-08 08:53:00 +00:00
|
|
|
bool selmode = cfg.selmode ? TRUE : FALSE;
|
2019-04-09 14:55:17 +00:00
|
|
|
|
|
|
|
/* Save current context */
|
|
|
|
xstrlcpy(g_ctx[cfg.curctx].c_name, curname, NAME_MAX + 1);
|
|
|
|
g_ctx[cfg.curctx].c_cfg = cfg;
|
|
|
|
|
|
|
|
if (g_ctx[r].c_cfg.ctxactive) { /* Switch to saved context */
|
|
|
|
/* Switch light/detail mode */
|
|
|
|
if (cfg.showdetail != g_ctx[r].c_cfg.showdetail)
|
|
|
|
/* set the reverse */
|
|
|
|
printptr = cfg.showdetail ? &printent : &printent_long;
|
|
|
|
|
|
|
|
cfg = g_ctx[r].c_cfg;
|
|
|
|
} else { /* Setup a new context from current context */
|
|
|
|
g_ctx[r].c_cfg.ctxactive = 1;
|
|
|
|
xstrlcpy(g_ctx[r].c_path, path, PATH_MAX);
|
|
|
|
g_ctx[r].c_last[0] = '\0';
|
|
|
|
xstrlcpy(g_ctx[r].c_name, curname, NAME_MAX + 1);
|
|
|
|
g_ctx[r].c_fltr[0] = g_ctx[r].c_fltr[1] = '\0';
|
|
|
|
g_ctx[r].c_cfg = cfg;
|
2019-04-18 14:57:35 +00:00
|
|
|
g_ctx[r].c_cfg.runplugin = 0;
|
2019-04-09 14:55:17 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
/* Continue selection mode */
|
|
|
|
cfg.selmode = selmode;
|
2019-04-09 14:55:17 +00:00
|
|
|
cfg.curctx = r;
|
|
|
|
|
|
|
|
*curcfg = cfg;
|
|
|
|
}
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
static void save_session(bool last_session, int *presel)
|
|
|
|
{
|
2019-10-20 00:05:41 +00:00
|
|
|
char spath[PATH_MAX];
|
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;
|
2019-10-18 22:11:39 +00:00
|
|
|
|
|
|
|
header.ver = SESSIONS_VERSION;
|
|
|
|
|
|
|
|
for (i = 0; i < CTX_MAX; ++i) {
|
|
|
|
if (!g_ctx[i].c_cfg.ctxactive) {
|
|
|
|
header.pathln[i] = header.nameln[i]
|
|
|
|
= header.lastln[i] = header.fltrln[i] = 0;
|
|
|
|
} else {
|
|
|
|
header.pathln[i] = strnlen(g_ctx[i].c_path, PATH_MAX) + 1;
|
|
|
|
header.nameln[i] = strnlen(g_ctx[i].c_name, NAME_MAX) + 1;
|
|
|
|
header.lastln[i] = strnlen(g_ctx[i].c_last, PATH_MAX) + 1;
|
|
|
|
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;
|
2019-10-20 13:49:25 +00:00
|
|
|
mkpath(sessiondir, 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) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_SSN_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)
|
|
|
|
|| (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))
|
|
|
|
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-10-24 03:14:36 +00:00
|
|
|
static bool load_session(const char *sname, char **path, char **lastdir, char **lastname, bool restore)
|
|
|
|
{
|
2019-10-20 00:05:41 +00:00
|
|
|
char spath[PATH_MAX];
|
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;
|
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;
|
|
|
|
|
2019-10-20 13:49:25 +00:00
|
|
|
mkpath(sessiondir, sname, spath);
|
2019-10-18 22:11:39 +00:00
|
|
|
} else
|
2019-10-20 00:05:41 +00:00
|
|
|
mkpath(sessiondir, "@", spath);
|
2019-10-18 22:11:39 +00:00
|
|
|
|
|
|
|
if (has_loaded_dynamically)
|
|
|
|
save_session(TRUE, NULL);
|
|
|
|
|
2019-10-20 13:49:25 +00:00
|
|
|
fsession = fopen(spath, "rb");
|
2019-10-18 22:11:39 +00:00
|
|
|
if (!fsession) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_SSN_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)
|
|
|
|
|| (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))
|
|
|
|
goto END;
|
|
|
|
|
|
|
|
*path = g_ctx[cfg.curctx].c_path;
|
|
|
|
*lastdir = g_ctx[cfg.curctx].c_last;
|
|
|
|
*lastname = g_ctx[cfg.curctx].c_name;
|
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-10-18 22:11:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In parent */
|
2017-07-02 15:02:38 +00:00
|
|
|
waitpid(pid, &tmp, 0);
|
2017-05-15 04:24:30 +00:00
|
|
|
close(pipefd[1]);
|
2017-07-02 15:02:38 +00:00
|
|
|
|
2018-12-01 07:44:46 +00:00
|
|
|
if (!page) {
|
2017-06-15 14:04:56 +00:00
|
|
|
pf = fdopen(pipefd[0], "r");
|
|
|
|
if (pf) {
|
2017-05-15 12:52:00 +00:00
|
|
|
ret = fgets(buf, bytes, pf);
|
|
|
|
close(pipefd[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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]);
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(pager, NULL, NULL, NULL, F_CLI);
|
2017-05-15 12:52:00 +00:00
|
|
|
_exit(1);
|
2017-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-08-12 14:42:35 +00:00
|
|
|
static inline bool getutil(char *util)
|
2019-02-22 19:32:05 +00:00
|
|
|
{
|
2019-08-12 14:42:35 +00:00
|
|
|
return spawn("which", util, NULL, NULL, F_NORMAL | F_NOTRACE) == 0;
|
2018-12-08 04:14:08 +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
|
|
|
|
2019-07-04 19:57:46 +00:00
|
|
|
r = xstrlcpy(g_buf, "stat \"", PATH_MAX);
|
2019-04-01 14:44:49 +00:00
|
|
|
r += xstrlcpy(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
|
|
|
}
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, " %s", begin);
|
2017-04-03 18:03:31 +00:00
|
|
|
}
|
2019-03-01 09:51:58 +00:00
|
|
|
}
|
2017-04-03 14:58:55 +00:00
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "\n\n");
|
|
|
|
fclose(fp);
|
2017-05-15 12:52:00 +00:00
|
|
|
close(fd);
|
2017-04-21 18:26:48 +00:00
|
|
|
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
|
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
|
|
|
}
|
|
|
|
|
2018-10-22 14:25:45 +00:00
|
|
|
static size_t get_fs_info(const char *path, bool type)
|
2017-08-11 20:12:55 +00:00
|
|
|
{
|
2019-02-27 17:06:22 +00:00
|
|
|
struct statvfs svb;
|
2017-08-11 20:12:55 +00:00
|
|
|
|
|
|
|
if (statvfs(path, &svb) == -1)
|
2017-08-24 12:20:00 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-04-25 19:26:45 +00:00
|
|
|
if (type == CAPACITY)
|
2019-03-21 15:39:55 +00:00
|
|
|
return svb.f_blocks << ffs((int)(svb.f_bsize >> 1));
|
2018-11-03 10:20:01 +00:00
|
|
|
|
2019-03-21 15:39:55 +00:00
|
|
|
return svb.f_bavail << ffs((int)(svb.f_frsize >> 1));
|
2017-08-11 20:12:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-27 11:10:30 +00:00
|
|
|
/* List or extract archive */
|
|
|
|
static void handle_archive(char *fpath, const char *dir, 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
|
|
|
|
2019-07-12 15:43:49 +00:00
|
|
|
if (op == 'x') { /* extract */
|
2019-07-27 11:10:30 +00:00
|
|
|
spawn(util, arg, fpath, dir, F_NORMAL);
|
2019-07-12 15:43:49 +00:00
|
|
|
} else { /* list */
|
2017-09-27 14:49:42 +00:00
|
|
|
exitcurses();
|
2019-07-27 11:10:30 +00:00
|
|
|
get_output(NULL, 0, util, arg, fpath, TRUE);
|
2018-01-09 08:02:57 +00:00
|
|
|
refresh();
|
2017-09-27 14:49:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-21 13:58:55 +00:00
|
|
|
static char *visit_parent(char *path, char *newpath, int *presel)
|
|
|
|
{
|
|
|
|
char *dir;
|
|
|
|
|
|
|
|
/* There is no going back */
|
|
|
|
if (istopdir(path)) {
|
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
*presel = FILTER;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use a copy as dirname() may change the string passed */
|
|
|
|
xstrlcpy(newpath, path, PATH_MAX);
|
|
|
|
|
|
|
|
dir = dirname(newpath);
|
|
|
|
if (access(dir, R_OK) == -1) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(presel);
|
2019-04-21 13:58:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2019-10-19 03:13:32 +00:00
|
|
|
static void find_accessible_parent(char *path, char *newpath, char *lastname, int *presel)
|
|
|
|
{
|
|
|
|
char *dir;
|
|
|
|
|
|
|
|
/* Save history */
|
|
|
|
xstrlcpy(lastname, xbasename(path), NAME_MAX + 1);
|
|
|
|
|
|
|
|
xstrlcpy(newpath, path, PATH_MAX);
|
|
|
|
while (true) {
|
|
|
|
dir = visit_parent(path, newpath, presel);
|
|
|
|
if (istopdir(path) || istopdir(newpath)) {
|
|
|
|
if (!dir)
|
|
|
|
dir = dirname(newpath);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!dir) {
|
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
xstrlcpy(path, dir, PATH_MAX);
|
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_DIR_ACCESS]);
|
2019-11-25 02:20:22 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
2019-10-19 03:13:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 13:58:55 +00:00
|
|
|
static bool execute_file(int cur, char *path, char *newpath, int *presel)
|
|
|
|
{
|
|
|
|
if (!ndents)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Check if this is a directory */
|
|
|
|
if (!S_ISREG(dents[cur].mode)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_NOT_REG_FILE], presel);
|
2019-04-21 13:58:55 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if file is executable */
|
|
|
|
if (!(dents[cur].mode & 0100)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_PERM_DENIED], presel);
|
2019-04-21 13:58:55 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mkpath(path, dents[cur].name, newpath);
|
|
|
|
spawn(newpath, NULL, NULL, path, F_NORMAL);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
/* Create non-existent parents and a file or dir */
|
|
|
|
static bool xmktree(char* path, bool dir)
|
2019-04-21 20:44:43 +00:00
|
|
|
{
|
2019-11-20 17:53:44 +00:00
|
|
|
char* p = path;
|
|
|
|
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) {
|
|
|
|
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-11-20 17:53:44 +00:00
|
|
|
/* Restore path */
|
|
|
|
*slash = '/';
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir) {
|
|
|
|
if(mkdir(path, 0777) == -1 && errno != EEXIST) {
|
|
|
|
DPRINTF_S("mkdir2!");
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int fd = open(path, O_CREAT, 0666);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-10-11 20:43:08 +00:00
|
|
|
static bool archive_mount(char *name, char *path, char *newpath, int *presel)
|
|
|
|
{
|
2019-11-22 15:16:05 +00:00
|
|
|
char *dir, *cmd = utils[UTIL_ARCHIVEMOUNT];
|
2019-10-11 20:43:08 +00:00
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if (!getutil(cmd)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_UTIL_MISSING], presel);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir = strdup(name);
|
|
|
|
if (!dir)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
len = strlen(dir);
|
|
|
|
|
|
|
|
while (len > 1)
|
|
|
|
if (dir[--len] == '.') {
|
|
|
|
dir[len] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF_S(dir);
|
|
|
|
|
|
|
|
/* Create the mount point */
|
|
|
|
mkpath(cfgdir, dir, newpath);
|
|
|
|
free(dir);
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
if (!xmktree(newpath, TRUE)) {
|
2019-10-11 20:43:08 +00:00
|
|
|
printwait(strerror(errno), presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mount archive */
|
|
|
|
DPRINTF_S(name);
|
|
|
|
DPRINTF_S(newpath);
|
|
|
|
if (spawn(cmd, name, newpath, path, F_NORMAL)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], presel);
|
2019-10-11 20:43:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-11-24 15:52:44 +00:00
|
|
|
static bool remote_mount(char *newpath, int *presel)
|
2019-04-21 06:25:00 +00:00
|
|
|
{
|
2019-11-24 15:52:44 +00:00
|
|
|
uchar flag = F_CLI;
|
|
|
|
int r, opt = get_input(messages[MSG_REMOTE_OPTS]);
|
|
|
|
char *tmp, *env, *cmd;
|
|
|
|
|
|
|
|
if (opt == 's') {
|
|
|
|
cmd = utils[UTIL_SSHFS];
|
|
|
|
env = xgetenv("NNN_SSHFS_OPTS", cmd);
|
|
|
|
} else if (opt == 'r') {
|
|
|
|
flag |= F_NOWAIT;
|
|
|
|
cmd = utils[UTIL_RCLONE];
|
|
|
|
env = xgetenv("NNN_RCLONE_OPTS", "rclone mount");
|
|
|
|
} else {
|
|
|
|
printwait(messages[MSG_FAILED], presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-06-24 16:15:02 +00:00
|
|
|
|
|
|
|
if (!getutil(cmd)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_UTIL_MISSING], presel);
|
2019-06-24 16:15:02 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_HOSTNAME]);
|
2019-04-21 06:25:00 +00:00
|
|
|
if (!tmp[0])
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Create the mount point */
|
2019-04-21 20:44:43 +00:00
|
|
|
mkpath(cfgdir, tmp, newpath);
|
2019-11-20 17:53:44 +00:00
|
|
|
if (!xmktree(newpath, TRUE)) {
|
2019-04-21 06:25:00 +00:00
|
|
|
printwait(strerror(errno), presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert "Host" to "Host:" */
|
|
|
|
r = strlen(tmp);
|
2019-11-24 15:52:44 +00:00
|
|
|
if (tmp[r - 1] != ':') { /* Append ':' if missing */
|
|
|
|
tmp[r] = ':';
|
|
|
|
tmp[r + 1] = '\0';
|
|
|
|
}
|
2019-06-24 16:15:02 +00:00
|
|
|
|
2019-04-21 06:25:00 +00:00
|
|
|
/* Connect to remote */
|
2019-11-24 15:52:44 +00:00
|
|
|
if (opt == 's') {
|
|
|
|
if (spawn(env, tmp, newpath, NULL, flag)) {
|
|
|
|
printwait(messages[MSG_FAILED], presel);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
spawn(env, tmp, newpath, NULL, flag);
|
|
|
|
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
|
|
|
|
*/
|
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
|
|
|
{
|
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;
|
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;
|
2019-04-21 06:25:00 +00:00
|
|
|
|
|
|
|
/* On Ubuntu it's fusermount */
|
2019-05-15 16:59:38 +00:00
|
|
|
if (!found && !getutil(cmd)) {
|
2019-04-21 06:25:00 +00:00
|
|
|
cmd[10] = '\0';
|
2019-05-15 16:59:38 +00:00
|
|
|
found = TRUE;
|
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2019-10-13 15:23:32 +00:00
|
|
|
if (tmp && strcmp(cfgdir, currentpath) == 0) {
|
2019-10-11 20:43:08 +00:00
|
|
|
mkpath(cfgdir, tmp, newpath);
|
2019-10-13 15:23:32 +00:00
|
|
|
child = lstat(newpath, &sb) != -1;
|
|
|
|
parent = lstat(dirname(newpath), &psb) != -1;
|
|
|
|
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;
|
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
2019-04-21 20:44:43 +00:00
|
|
|
/* Create the mount point */
|
|
|
|
mkpath(cfgdir, tmp, newpath);
|
2019-04-21 06:25:00 +00:00
|
|
|
if (!xdiraccess(newpath)) {
|
|
|
|
*presel = MSGWAIT;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-04-21 19:51:16 +00:00
|
|
|
if (spawn(cmd, "-u", newpath, NULL, F_NORMAL)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], presel);
|
2019-04-21 19:51:16 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2019-04-21 06:25:00 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-06-05 12:32:27 +00:00
|
|
|
static void lock_terminal(void)
|
|
|
|
{
|
2019-11-22 15:16:05 +00:00
|
|
|
char *tmp = utils[UTIL_LOCKER];
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-06-05 12:32:27 +00:00
|
|
|
if (!getutil(tmp))
|
2019-11-22 15:16:05 +00:00
|
|
|
tmp = utils[UTIL_CMATRIX];
|
2019-06-05 12:32:27 +00:00
|
|
|
|
|
|
|
spawn(tmp, NULL, NULL, NULL, F_NORMAL);
|
|
|
|
}
|
|
|
|
|
2019-10-16 01:37:45 +00:00
|
|
|
static void printkv(kv *kvarr, FILE *fp, uchar max)
|
2019-08-14 14:27:44 +00:00
|
|
|
{
|
|
|
|
uchar i = 0;
|
|
|
|
|
|
|
|
for (; i < max && kvarr[i].key; ++i)
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, " %c: %s\n", (char)kvarr[i].key, kvarr[i].val);
|
2019-08-14 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2019-08-13 19:28:33 +00:00
|
|
|
int i, 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-02-22 19:32:05 +00:00
|
|
|
"0\n"
|
|
|
|
"1NAVIGATION\n"
|
2019-10-20 14:07:35 +00:00
|
|
|
"9Up k Up PgUp ^U Scroll up\n"
|
|
|
|
"7Down j Down PgDn ^D Scroll down\n"
|
|
|
|
"7Left h Parent ~ ` @ - HOME, /, start, last\n"
|
2019-10-21 01:25:19 +00:00
|
|
|
"2Ret Right l Open . Toggle show hidden\n"
|
2019-08-07 16:15:32 +00:00
|
|
|
"9g ^A First entry G ^E Last entry\n"
|
2019-02-22 19:32:05 +00:00
|
|
|
"cb Pin current dir ^B Go to pinned dir\n"
|
2019-10-06 14:49:22 +00:00
|
|
|
"6(Sh)Tab Cycle context d Toggle detail view\n"
|
2019-08-07 16:15:32 +00:00
|
|
|
"9, ^/ Lead key N LeadN Context N\n"
|
2019-10-05 01:36:32 +00:00
|
|
|
"c/ Filter/Lead Ins ^N Toggle nav-as-you-type\n"
|
2019-08-24 23:55:29 +00:00
|
|
|
"aEsc Exit prompt ^L F5 Redraw/clear prompt\n"
|
2019-10-05 01:29:43 +00:00
|
|
|
"c? Help, conf ' Lead' First file\n"
|
2019-09-28 16:45:49 +00:00
|
|
|
"9Q ^Q Quit ^G QuitCD q Quit context\n"
|
2019-02-22 19:32:05 +00:00
|
|
|
"1FILES\n"
|
|
|
|
"b^O Open with... n Create new/link\n"
|
2019-11-17 00:00:14 +00:00
|
|
|
"cD File details ^R F2 Rename/duplicate\n"
|
2019-11-29 03:08:11 +00:00
|
|
|
"3Space ^J/a Sel toggle/all r Batch rename\n"
|
|
|
|
"9m ^K Sel range, clear M List selection\n"
|
2019-11-16 15:09:05 +00:00
|
|
|
"cP Copy selection K Edit, flush sel\n"
|
2019-10-17 18:05:49 +00:00
|
|
|
"cV Move selection w Copy/move sel as\n"
|
2019-10-14 22:17:57 +00:00
|
|
|
"cX Del selection ^X Del entry\n"
|
2019-10-11 20:43:08 +00:00
|
|
|
"cf Create archive T Mount archive\n"
|
2019-02-22 19:32:05 +00:00
|
|
|
"b^F Extract archive F List archive\n"
|
|
|
|
"ce Edit in EDITOR p Open in PAGER\n"
|
|
|
|
"1ORDER TOGGLES\n"
|
2019-09-28 16:45:49 +00:00
|
|
|
"cA Apparent du S du\n"
|
2019-11-16 22:41:27 +00:00
|
|
|
"cz Size E Extn t Time\n"
|
2019-02-22 19:32:05 +00:00
|
|
|
"1MISC\n"
|
2019-11-17 19:00:00 +00:00
|
|
|
"9! ^] Shell ;K :K xK Execute plugin K\n"
|
|
|
|
"cC Execute entry R ^V Pick plugin\n"
|
2019-12-08 19:04:53 +00:00
|
|
|
"cU Manage session = Launch app\n"
|
2019-10-24 03:14:36 +00:00
|
|
|
"cc SSHFS mount u Unmount\n"
|
2019-11-18 14:51:00 +00:00
|
|
|
"9] ^P Prompt/run cmd L Lock\n"};
|
2017-06-15 14:04:56 +00:00
|
|
|
|
2019-04-27 14:35:57 +00:00
|
|
|
fd = create_tmp_file();
|
2017-06-15 14:04:56 +00:00
|
|
|
if (fd == -1)
|
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
|
|
|
|
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-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "%*c%.*s",
|
2019-01-24 15:46:37 +00:00
|
|
|
xchartohex(*start), ' ', (int)(end - start), start + 1);
|
|
|
|
start = end + 1;
|
2017-08-20 16:10:52 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 15:46:37 +00:00
|
|
|
++end;
|
2017-08-20 16:10:52 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (bookmark[0].val) {
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "BOOKMARKS\n");
|
|
|
|
printkv(bookmark, fp, BM_MAX);
|
|
|
|
fprintf(fp, "\n");
|
2019-08-13 19:28:33 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (plug[0].val) {
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "PLUGIN KEYS\n");
|
|
|
|
printkv(plug, fp, PLUGIN_MAX);
|
|
|
|
fprintf(fp, "\n");
|
2017-06-11 13:54:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 11:23:16 +00:00
|
|
|
for (i = NNN_OPENER; i <= NNN_TRASH; ++i) {
|
2019-01-20 18:21:45 +00:00
|
|
|
start = getenv(env_cfg[i]);
|
2019-04-24 15:01:52 +00:00
|
|
|
if (start)
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "%s: %s\n", env_cfg[i], start);
|
2019-01-20 18:21:45 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 05:57:42 +00:00
|
|
|
if (g_selpath)
|
2019-10-16 01:37:45 +00:00
|
|
|
fprintf(fp, "SELECTION FILE: %s\n", g_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);
|
|
|
|
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(pager, g_tmpfpath, NULL, NULL, F_CLI);
|
2018-10-21 09:21:50 +00:00
|
|
|
unlink(g_tmpfpath);
|
2017-04-03 17:03:46 +00:00
|
|
|
}
|
|
|
|
|
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 */
|
|
|
|
g_tmpfpath[g_tmpfplen - 1] = '\0';
|
2019-10-23 10:04:12 +00:00
|
|
|
mkpath(g_tmpfpath, g_buf, g_pipepath);
|
|
|
|
unlink(g_pipepath);
|
|
|
|
if (mkfifo(g_pipepath, 0600) != 0)
|
|
|
|
return _FAILURE;
|
|
|
|
|
|
|
|
setenv(env_cfg[NNN_PIPE], g_pipepath, TRUE);
|
|
|
|
|
|
|
|
return _SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-11-17 04:35:23 +00:00
|
|
|
static bool run_selected_plugin(char **path, const char *file, char *newpath, char *runfile, char **lastname, char **lastdir)
|
2019-10-23 10:04:12 +00:00
|
|
|
{
|
2019-10-24 03:14:36 +00:00
|
|
|
int fd;
|
|
|
|
size_t len;
|
|
|
|
|
2019-10-23 10:04:12 +00:00
|
|
|
if (!g_plinit) {
|
|
|
|
plctrl_init();
|
|
|
|
g_plinit = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
fd = open(g_pipepath, O_RDONLY | O_NONBLOCK);
|
2019-10-23 10:04:12 +00:00
|
|
|
if (fd == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
2019-11-15 16:25:18 +00:00
|
|
|
/* Generate absolute path to plugin */
|
|
|
|
mkpath(plugindir, file, newpath);
|
|
|
|
|
2019-11-11 16:13:56 +00:00
|
|
|
if (runfile && runfile[0]) {
|
2019-10-23 10:04:12 +00:00
|
|
|
xstrlcpy(*lastname, runfile, NAME_MAX);
|
|
|
|
spawn(newpath, *lastname, *path, *path, F_NORMAL);
|
2019-10-19 01:30:04 +00:00
|
|
|
} else
|
2019-10-23 10:04:12 +00:00
|
|
|
spawn(newpath, NULL, *path, *path, F_NORMAL);
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
len = read(fd, g_buf, PATH_MAX);
|
2019-10-23 10:04:12 +00:00
|
|
|
g_buf[len] = '\0';
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (len > 1) {
|
|
|
|
int ctx = g_buf[0] - '0';
|
|
|
|
|
2019-11-08 13:45:53 +00:00
|
|
|
if (ctx == 0 || ctx == cfg.curctx + 1) {
|
2019-10-23 10:04:12 +00:00
|
|
|
xstrlcpy(*lastdir, *path, PATH_MAX);
|
|
|
|
xstrlcpy(*path, g_buf + 1, PATH_MAX);
|
|
|
|
} else if (ctx >= 1 && ctx <= CTX_MAX) {
|
|
|
|
int r = ctx - 1;
|
2019-10-24 03:14:36 +00:00
|
|
|
|
2019-10-23 10:04:12 +00:00
|
|
|
g_ctx[r].c_cfg.ctxactive = 0;
|
|
|
|
savecurctx(&cfg, g_buf + 1, dents[cur].name, r);
|
|
|
|
*path = g_ctx[r].c_path;
|
|
|
|
*lastdir = g_ctx[r].c_last;
|
|
|
|
*lastname = g_ctx[r].c_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-19 01:30:04 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-09-15 16:09:39 +00:00
|
|
|
static int sum_bsizes(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
2017-04-09 18:41:29 +00:00
|
|
|
{
|
2019-10-13 13:40:06 +00:00
|
|
|
(void) fpath;
|
|
|
|
(void) ftwbuf;
|
|
|
|
|
2017-06-22 01:37:51 +00:00
|
|
|
if (sb->st_blocks && (typeflag == FTW_F || typeflag == FTW_D))
|
2017-06-22 01:56:05 +00:00
|
|
|
ent_blocks += sb->st_blocks;
|
2017-04-09 18:41:29 +00:00
|
|
|
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
2017-04-09 18:41:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-09-15 16:09:39 +00:00
|
|
|
static int sum_sizes(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
2018-10-04 18:56:31 +00:00
|
|
|
{
|
2019-10-13 13:40:06 +00:00
|
|
|
(void) fpath;
|
|
|
|
(void) ftwbuf;
|
|
|
|
|
2018-10-04 18:56:31 +00:00
|
|
|
if (sb->st_size && (typeflag == FTW_F || typeflag == FTW_D))
|
|
|
|
ent_blocks += sb->st_size;
|
|
|
|
|
|
|
|
++num_files;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-13 17:49:35 +00:00
|
|
|
static void dentfree(void)
|
2018-10-27 18:50:39 +00:00
|
|
|
{
|
|
|
|
free(pnamebuf);
|
|
|
|
free(dents);
|
|
|
|
}
|
|
|
|
|
2018-12-04 23:31:29 +00:00
|
|
|
static int dentfill(char *path, struct entry **dents)
|
2014-10-22 15:21:50 +00:00
|
|
|
{
|
2019-05-15 16:59:38 +00:00
|
|
|
static uint open_max;
|
2019-04-27 10:42:11 +00:00
|
|
|
int n = 0, count, flags = 0;
|
2019-02-27 17:06:22 +00:00
|
|
|
ulong num_saved;
|
|
|
|
struct dirent *dp;
|
2019-05-15 16:59:38 +00:00
|
|
|
char *namep, *pnb, *buf = NULL;
|
2019-02-27 17:06:22 +00:00
|
|
|
struct entry *dentp;
|
|
|
|
size_t off = 0, namebuflen = NAMEBUF_INCR;
|
|
|
|
struct stat sb_path, sb;
|
|
|
|
DIR *dirp = opendir(path);
|
|
|
|
|
2019-04-11 13:57:38 +00:00
|
|
|
if (!dirp)
|
2017-07-05 16:38:13 +00:00
|
|
|
return 0;
|
|
|
|
|
2019-03-10 00:19:55 +00:00
|
|
|
int fd = dirfd(dirp);
|
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;
|
2019-05-15 16:59:38 +00:00
|
|
|
buf = (char *)alloca(strlen(path) + NAME_MAX + 2);
|
2017-08-22 16:01:06 +00:00
|
|
|
|
2019-05-14 18:12:22 +00:00
|
|
|
if (fstatat(fd, path, &sb_path, 0) == -1) {
|
2019-03-10 00:19:55 +00:00
|
|
|
closedir(dirp);
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(NULL);
|
2017-08-22 16:01:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2019-03-11 15:14:45 +00:00
|
|
|
|
|
|
|
/* Increase current open file descriptor limit */
|
|
|
|
if (!open_max)
|
|
|
|
open_max = max_openfds();
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
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-10-16 01:37:45 +00:00
|
|
|
#ifdef __sun
|
|
|
|
if (cfg.blkorder) { /* no d_type */
|
|
|
|
#else
|
2019-04-27 10:42:11 +00:00
|
|
|
if (cfg.blkorder || dp->d_type == DT_UNKNOWN) {
|
2019-10-16 01:37:45 +00:00
|
|
|
#endif
|
2019-04-27 10:42:11 +00:00
|
|
|
/*
|
|
|
|
* Optimization added for filesystems which support dirent.d_type
|
|
|
|
* see readdir(3)
|
|
|
|
* Known drawbacks:
|
|
|
|
* - the symlink size is set to 0
|
|
|
|
* - the modification time of the symlink is set to that of the target file
|
|
|
|
*/
|
|
|
|
flags = AT_SYMLINK_NOFOLLOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2017-07-05 16:38:13 +00:00
|
|
|
namep = dp->d_name;
|
2017-04-11 13:46:06 +00:00
|
|
|
|
2018-12-04 23:31:29 +00:00
|
|
|
/* Skip self and parent */
|
2019-03-09 16:34:07 +00:00
|
|
|
if ((namep[0] == '.' && (namep[1] == '\0' || (namep[1] == '.' && namep[2] == '\0'))))
|
2018-12-04 23:31:29 +00:00
|
|
|
continue;
|
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)) {
|
2017-08-22 16:01:06 +00:00
|
|
|
if (sb_path.st_dev == sb.st_dev) {
|
|
|
|
ent_blocks = 0;
|
2019-05-15 16:59:38 +00:00
|
|
|
mkpath(path, namep, buf);
|
2017-08-22 16:01:06 +00:00
|
|
|
|
2019-11-02 02:21:45 +00:00
|
|
|
tolastln();
|
|
|
|
addstr(xbasename(buf));
|
|
|
|
addstr(" [^C aborts]\n");
|
2019-02-07 20:32:09 +00:00
|
|
|
refresh();
|
2019-11-02 02:21:45 +00:00
|
|
|
if (nftw(buf, nftw_fn, open_max, FTW_MOUNT | FTW_PHYS) < 0) {
|
2019-03-11 02:18:23 +00:00
|
|
|
DPRINTF_S("nftw failed");
|
2019-01-20 12:02:44 +00:00
|
|
|
dir_blocks += (cfg.apparentsz
|
|
|
|
? sb.st_size
|
|
|
|
: sb.st_blocks);
|
2017-08-22 16:01:06 +00:00
|
|
|
} else
|
|
|
|
dir_blocks += ent_blocks;
|
2019-02-08 15:01:37 +00:00
|
|
|
|
2019-03-10 00:19:55 +00:00
|
|
|
if (interrupted) {
|
|
|
|
closedir(dirp);
|
2019-02-08 15:01:37 +00:00
|
|
|
return n;
|
2019-03-10 00:19:55 +00:00
|
|
|
}
|
2017-08-22 16:01:06 +00:00
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
} else {
|
2018-10-04 18:56:31 +00:00
|
|
|
dir_blocks += (cfg.apparentsz ? sb.st_size : sb.st_blocks);
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
|
|
|
}
|
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) {
|
2019-08-12 22:52:34 +00:00
|
|
|
/* List a symlink with target missing */
|
2019-12-09 16:50:46 +00:00
|
|
|
if (flags || (!flags && fstatat(fd, namep, &sb, AT_SYMLINK_NOFOLLOW) == -1)) {
|
|
|
|
DPRINTF_U(flags);
|
|
|
|
if (!flags) {
|
2019-08-12 22:52:34 +00:00
|
|
|
DPRINTF_S(namep);
|
|
|
|
DPRINTF_S(strerror(errno));
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:16:00 +00:00
|
|
|
if (n == total_dents) {
|
2017-12-18 19:46:03 +00:00
|
|
|
total_dents += ENTRY_INCR;
|
2018-01-04 12:16:06 +00:00
|
|
|
*dents = xrealloc(*dents, total_dents * sizeof(**dents));
|
2019-04-11 13:57:38 +00:00
|
|
|
if (!*dents) {
|
2018-10-27 13:43:12 +00:00
|
|
|
free(pnamebuf);
|
2019-03-10 00:19:55 +00:00
|
|
|
closedir(dirp);
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
2018-01-04 00:53:20 +00:00
|
|
|
DPRINTF_P(*dents);
|
2017-12-18 19:46:03 +00:00
|
|
|
}
|
|
|
|
|
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) {
|
2017-12-17 17:38:55 +00:00
|
|
|
free(*dents);
|
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) {
|
|
|
|
dentp = *dents;
|
|
|
|
dentp->name = pnamebuf;
|
|
|
|
|
|
|
|
for (count = 1; count < n; ++dentp, ++count)
|
|
|
|
/* 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
|
|
|
}
|
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
dentp = *dents + n;
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Selection file name */
|
2017-12-20 16:50:28 +00:00
|
|
|
dentp->name = (char *)((size_t)pnamebuf + off);
|
|
|
|
dentp->nlen = xstrlcpy(dentp->name, namep, NAME_MAX + 1);
|
|
|
|
off += dentp->nlen;
|
2017-06-21 18:21:53 +00:00
|
|
|
|
2017-12-18 19:46:03 +00:00
|
|
|
/* Copy other fields */
|
2019-08-30 15:25:23 +00:00
|
|
|
dentp->t = cfg.mtime ? sb.st_mtime : sb.st_atime;
|
2019-10-24 03:14:36 +00:00
|
|
|
#ifndef __sun
|
|
|
|
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;
|
|
|
|
dentp->size = 0;
|
|
|
|
} 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
|
2019-03-01 01:16:13 +00:00
|
|
|
dentp->flags = 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-06-22 01:56:05 +00:00
|
|
|
ent_blocks = 0;
|
2017-08-22 16:01:06 +00:00
|
|
|
num_saved = num_files + 1;
|
2019-05-15 16:59:38 +00:00
|
|
|
mkpath(path, namep, buf);
|
2017-06-22 12:50:48 +00:00
|
|
|
|
2019-11-02 02:21:45 +00:00
|
|
|
tolastln();
|
|
|
|
addstr(xbasename(buf));
|
|
|
|
addstr(" [^C aborts]\n");
|
2019-02-07 20:32:09 +00:00
|
|
|
refresh();
|
2019-11-02 02:21:45 +00:00
|
|
|
if (nftw(buf, nftw_fn, open_max, FTW_MOUNT | FTW_PHYS) < 0) {
|
2019-03-11 02:18:23 +00:00
|
|
|
DPRINTF_S("nftw failed");
|
2018-10-04 18:56:31 +00:00
|
|
|
dentp->blocks = (cfg.apparentsz ? sb.st_size : sb.st_blocks);
|
2017-04-09 18:41:29 +00:00
|
|
|
} else
|
2017-07-05 16:38:13 +00:00
|
|
|
dentp->blocks = ent_blocks;
|
2017-08-22 16:01:06 +00:00
|
|
|
|
2019-02-28 15:37:42 +00:00
|
|
|
if (sb_path.st_dev == sb.st_dev) // NOLINT
|
2017-08-22 16:01:06 +00:00
|
|
|
dir_blocks += dentp->blocks;
|
|
|
|
else
|
|
|
|
num_files = num_saved;
|
2019-02-08 15:01:37 +00:00
|
|
|
|
2019-03-10 00:19:55 +00:00
|
|
|
if (interrupted) {
|
|
|
|
closedir(dirp);
|
2019-02-08 15:01:37 +00:00
|
|
|
return n;
|
2019-03-10 00:19:55 +00:00
|
|
|
}
|
2017-06-22 04:09:17 +00:00
|
|
|
} else {
|
2018-10-04 18:56:31 +00:00
|
|
|
dentp->blocks = (cfg.apparentsz ? sb.st_size : sb.st_blocks);
|
2017-08-22 16:01:06 +00:00
|
|
|
dir_blocks += dentp->blocks;
|
2017-06-22 04:09:17 +00:00
|
|
|
++num_files;
|
|
|
|
}
|
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-10-16 01:37:45 +00:00
|
|
|
#ifndef __sun /* no d_type */
|
|
|
|
} else if (dp->d_type == DT_DIR || (dp->d_type == DT_LNK && S_ISDIR(sb.st_mode))) {
|
2019-01-29 15:52:28 +00:00
|
|
|
dentp->flags |= DIR_OR_LINK_TO_DIR;
|
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:
|
2014-11-13 16:49:57 +00:00
|
|
|
/* Should never be null */
|
2017-05-19 14:38:22 +00:00
|
|
|
if (closedir(dirp) == -1) {
|
2019-03-13 17:49:35 +00:00
|
|
|
dentfree();
|
2017-08-24 16:56:46 +00:00
|
|
|
errexit();
|
2017-04-20 20:16:00 +00:00
|
|
|
}
|
2017-05-19 14:38:22 +00:00
|
|
|
|
2014-10-22 15:21:50 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
/*
|
|
|
|
* Return the position of the matching entry or 0 otherwise
|
|
|
|
* Note there's no NULL check for fname
|
|
|
|
*/
|
2019-01-13 17:19:14 +00:00
|
|
|
static int dentfind(const char *fname, int n)
|
2014-10-22 18:05:59 +00:00
|
|
|
{
|
2019-02-28 15:37:42 +00:00
|
|
|
int i = 0;
|
2017-04-02 08:48:54 +00:00
|
|
|
|
2019-02-28 15:37:42 +00:00
|
|
|
for (; i < n; ++i)
|
2019-01-20 19:40:02 +00:00
|
|
|
if (xstrcmp(fname, dents[i].name) == 0)
|
2014-10-22 18:05:59 +00:00
|
|
|
return i;
|
2017-04-02 08:48:54 +00:00
|
|
|
|
2014-10-22 18:05:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2018-12-04 23:31:29 +00:00
|
|
|
ndents = dentfill(path, &dents);
|
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
|
|
|
|
2019-08-20 14:30:48 +00:00
|
|
|
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
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 */
|
|
|
|
if (!*lastname)
|
2019-05-10 02:14:24 +00:00
|
|
|
move_cursor(0, 0);
|
2019-01-20 20:46:06 +00:00
|
|
|
else
|
2019-05-10 02:14:24 +00:00
|
|
|
move_cursor(dentfind(lastname, ndents), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void move_cursor(int target, int ignore_scrolloff)
|
|
|
|
{
|
|
|
|
int delta, scrolloff, onscreen = xlines - 4;
|
2019-09-15 16:09:39 +00:00
|
|
|
|
2019-05-10 02:14:24 +00:00
|
|
|
target = MAX(0, MIN(ndents - 1, target));
|
|
|
|
delta = target - cur;
|
|
|
|
cur = target;
|
|
|
|
if (!ignore_scrolloff) {
|
|
|
|
scrolloff = MIN(SCROLLOFF, onscreen >> 1);
|
2019-05-19 15:59:29 +00:00
|
|
|
/*
|
2019-05-10 02:14:24 +00:00
|
|
|
* When ignore_scrolloff is 1, the cursor can jump into the scrolloff
|
|
|
|
* margin area, but when ignore_scrolloff is 0, act like a boa
|
|
|
|
* constrictor and squeeze the cursor towards the middle region of the
|
|
|
|
* screen by allowing it to move inward and disallowing it to move
|
|
|
|
* outward (deeper into the scrolloff margin area).
|
|
|
|
*/
|
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));
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
2014-10-07 11:23:44 +00:00
|
|
|
|
2019-12-01 17:30:06 +00:00
|
|
|
static inline 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;
|
|
|
|
default: /* case SEL_END: */
|
|
|
|
move_cursor(ndents - 1, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2019-10-24 13:24:33 +00:00
|
|
|
int lastln = xlines - 1, onscreen = xlines - 4;
|
2019-05-09 02:38:32 +00:00
|
|
|
int i, attrs;
|
2019-10-16 01:31:19 +00:00
|
|
|
char buf[24];
|
2019-03-09 11:33:47 +00:00
|
|
|
char c;
|
2019-09-09 18:11:45 +00:00
|
|
|
char *ptr = path, *base;
|
2019-03-09 11:33:47 +00:00
|
|
|
|
2018-11-09 14:37:47 +00:00
|
|
|
/* Clear screen */
|
2015-07-01 23:56:47 +00:00
|
|
|
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-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_FEW_COLOUMNS]);
|
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) {
|
2019-09-10 19:53:51 +00:00
|
|
|
if (!g_ctx[i].c_cfg.ctxactive) {
|
|
|
|
addch(i + '1');
|
|
|
|
addch(' ');
|
2019-01-27 09:08:19 +00:00
|
|
|
} else {
|
2019-09-10 19:53:51 +00:00
|
|
|
if (cfg.curctx != i)
|
|
|
|
/* Underline active contexts */
|
|
|
|
attrs = COLOR_PAIR(i + 1) | A_BOLD | A_UNDERLINE;
|
|
|
|
else
|
|
|
|
/* Print current context in reverse */
|
|
|
|
attrs = COLOR_PAIR(i + 1) | A_BOLD | A_REVERSE;
|
|
|
|
|
2018-12-04 01:01:14 +00:00
|
|
|
attron(attrs);
|
2019-09-10 19:53:51 +00:00
|
|
|
addch(i + '1');
|
2018-12-04 01:01:14 +00:00
|
|
|
attroff(attrs);
|
2019-09-10 19:53:51 +00:00
|
|
|
addch(' ');
|
2019-01-27 09:08:19 +00:00
|
|
|
}
|
2018-11-08 12:42:55 +00:00
|
|
|
}
|
2019-09-10 19:53:51 +00:00
|
|
|
addstr("\b] "); /* 10 chars printed for contexts - "[1 2 3 4] " */
|
2018-11-08 12:42:55 +00:00
|
|
|
|
2018-08-26 13:09:05 +00:00
|
|
|
attron(A_UNDERLINE);
|
2019-09-08 09:43:44 +00:00
|
|
|
|
|
|
|
/* Print path */
|
2019-09-10 14:56:08 +00:00
|
|
|
i = (int)strlen(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 {
|
2019-09-09 18:11:45 +00:00
|
|
|
base = xbasename(path);
|
|
|
|
if ((base - ptr) <= 1)
|
2019-09-10 18:32:38 +00:00
|
|
|
addnstr(path, ncols - MIN_DISPLAY_COLS);
|
2019-09-09 18:11:45 +00:00
|
|
|
else {
|
2019-09-10 14:56:08 +00:00
|
|
|
i = 0;
|
2019-09-09 18:11:45 +00:00
|
|
|
--base;
|
|
|
|
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-10 18:32:38 +00:00
|
|
|
addnstr(base, ncols - (MIN_DISPLAY_COLS + i));
|
2019-09-09 18:11:45 +00:00
|
|
|
}
|
2019-09-08 09:43:44 +00:00
|
|
|
}
|
|
|
|
|
2019-09-09 18:11:45 +00:00
|
|
|
/* Go to first entry */
|
|
|
|
move(2, 0);
|
|
|
|
|
2018-08-26 13:09:05 +00:00
|
|
|
attroff(A_UNDERLINE);
|
2017-09-01 14:00:25 +00:00
|
|
|
|
|
|
|
/* Calculate the number of cols available to print entry name */
|
2019-03-07 21:43:28 +00:00
|
|
|
if (cfg.showdetail) {
|
|
|
|
/* Fallback to light mode if less than 35 columns */
|
|
|
|
if (ncols < 36) {
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
printptr = &printent;
|
2019-09-10 18:32:38 +00:00
|
|
|
ncols -= 3; /* Preceding space, indicator, newline */
|
2019-03-07 21:43:28 +00:00
|
|
|
} else
|
|
|
|
ncols -= 35;
|
|
|
|
} else
|
2019-09-10 18:32:38 +00:00
|
|
|
ncols -= 3; /* Preceding space, indicator, newline */
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2019-08-20 14:30:48 +00:00
|
|
|
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
|
|
|
cfg.dircolor = 1;
|
2017-06-30 01:54:24 +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)
|
2019-05-09 02:38:32 +00:00
|
|
|
printptr(&dents[i], i == cur, ncols);
|
2017-03-29 21:15:46 +00:00
|
|
|
|
2017-06-30 12:20:38 +00:00
|
|
|
/* Must reset e.g. no files in dir */
|
|
|
|
if (cfg.dircolor) {
|
2019-08-03 18:25:02 +00:00
|
|
|
attroff(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
|
2017-06-30 12:20:38 +00:00
|
|
|
cfg.dircolor = 0;
|
|
|
|
}
|
|
|
|
|
2019-08-04 03:26:59 +00:00
|
|
|
if (ndents) {
|
|
|
|
char sort[] = "\0 ";
|
2019-09-14 22:53:12 +00:00
|
|
|
pEntry pent = &dents[cur];
|
2019-08-04 03:26:59 +00:00
|
|
|
|
|
|
|
if (cfg.mtimeorder)
|
2019-08-30 15:25:23 +00:00
|
|
|
sort[0] = cfg.mtime ? 'T' : 'A';
|
2019-08-04 03:26:59 +00:00
|
|
|
else if (cfg.sizeorder)
|
2019-09-29 05:14:53 +00:00
|
|
|
sort[0] = 'Z';
|
2019-08-04 03:26:59 +00:00
|
|
|
else if (cfg.extnorder)
|
|
|
|
sort[0] = 'E';
|
|
|
|
|
2019-09-12 16:45:25 +00:00
|
|
|
/* Get the file extension for regular files */
|
2019-09-14 22:53:12 +00:00
|
|
|
if (S_ISREG(pent->mode)) {
|
|
|
|
i = (int)strlen(pent->name);
|
|
|
|
ptr = xmemrchr((uchar *)pent->name, '.', i);
|
2019-09-12 16:45:25 +00:00
|
|
|
if (ptr)
|
2019-09-14 22:53:12 +00:00
|
|
|
attrs = ptr - pent->name; /* attrs used as tmp var */
|
2019-09-12 16:45:25 +00:00
|
|
|
if (!ptr || (i - attrs) > 5 || (i - attrs) < 2)
|
|
|
|
ptr = "\b";
|
|
|
|
} else
|
|
|
|
ptr = "\b";
|
|
|
|
|
2019-09-15 00:05:45 +00:00
|
|
|
if (cfg.blkorder) { /* du mode */
|
2019-10-30 17:13:22 +00:00
|
|
|
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
2019-08-04 03:26:59 +00:00
|
|
|
c = cfg.apparentsz ? 'a' : 'd';
|
|
|
|
|
2019-11-18 16:16:38 +00:00
|
|
|
mvprintw(lastln, 0, "%d/%d [%d:%s] %cu:%s free:%s files:%lu %lldB %s",
|
|
|
|
cur + 1, ndents, cfg.selmode, (nselected ? xitoa(nselected) : ""),
|
|
|
|
c, buf, coolsize(get_fs_info(path, FREE)), num_files,
|
2019-11-01 10:44:24 +00:00
|
|
|
(ll)pent->blocks << blk_shift, ptr);
|
2019-09-15 00:05:45 +00:00
|
|
|
} else { /* light or detail mode */
|
2019-09-15 16:09:39 +00:00
|
|
|
/* Show filename as it may be truncated in directory listing */
|
|
|
|
/* Get the unescaped file name */
|
|
|
|
base = unescape(pent->name, NAME_MAX, NULL);
|
|
|
|
|
2019-09-15 00:05:45 +00:00
|
|
|
/* Timestamp */
|
2019-12-05 15:33:05 +00:00
|
|
|
strftime(buf, sizeof(buf), "%F %R", localtime(&pent->t));
|
2019-10-16 01:31:19 +00:00
|
|
|
buf[sizeof(buf)-1] = '\0';
|
2019-09-15 00:05:45 +00:00
|
|
|
|
2019-11-18 16:16:38 +00:00
|
|
|
mvprintw(lastln, 0, "%d/%d [%d:%s] %s%s %s %s %s [%s]",
|
|
|
|
cur + 1, ndents, cfg.selmode, (nselected ? xitoa(nselected) : ""),
|
|
|
|
sort, buf, get_lsperms(pent->mode), coolsize(pent->size), ptr, base);
|
2019-08-04 03:26:59 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
printmsg("0/0");
|
2015-07-01 23:56:47 +00:00
|
|
|
}
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
static void browse(char *ipath, const char *session)
|
2015-07-01 23:56:47 +00:00
|
|
|
{
|
2018-12-16 15:33:28 +00:00
|
|
|
char newpath[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
char mark[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
char rundir[PATH_MAX] __attribute__ ((aligned));
|
|
|
|
char runfile[NAME_MAX + 1] __attribute__ ((aligned));
|
2019-10-02 22:03:15 +00:00
|
|
|
uchar opener_flags = (cfg.cliopener ? F_CLI : (F_NOTRACE | F_NOWAIT));
|
2019-11-29 22:21:29 +00:00
|
|
|
uint utmp;
|
2019-10-19 03:31:23 +00:00
|
|
|
int r = -1, fd, presel, selstartid = 0, selendid = 0;
|
2019-10-02 18:27:26 +00:00
|
|
|
ino_t inode = 0;
|
2018-12-01 01:53:29 +00:00
|
|
|
enum action sel;
|
2019-09-30 16:05:52 +00:00
|
|
|
bool dir_changed = FALSE, rangesel = FALSE;
|
2019-02-27 17:06:22 +00:00
|
|
|
struct stat sb;
|
2019-10-02 22:03:15 +00:00
|
|
|
char *path, *lastdir, *lastname, *dir, *tmp;
|
2019-05-08 00:38:07 +00:00
|
|
|
MEVENT event;
|
2019-10-24 03:14:36 +00:00
|
|
|
struct timespec mousetimings[2] = {{.tv_sec = 0, .tv_nsec = 0}, {.tv_sec = 0, .tv_nsec = 0} };
|
2019-11-29 22:58:09 +00:00
|
|
|
bool currentmouse = 1, ctx_changed = FALSE;
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2019-03-13 17:49:35 +00:00
|
|
|
atexit(dentfree);
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
xlines = LINES;
|
|
|
|
xcols = COLS;
|
|
|
|
|
2018-11-08 12:42:55 +00:00
|
|
|
/* setup first context */
|
2019-10-20 00:05:41 +00:00
|
|
|
if (!session || !load_session(session, &path, &lastdir, &lastname, FALSE)) {
|
2019-10-18 22:11:39 +00:00
|
|
|
xstrlcpy(g_ctx[0].c_path, ipath, PATH_MAX); /* current directory */
|
|
|
|
path = g_ctx[0].c_path;
|
|
|
|
g_ctx[0].c_last[0] = g_ctx[0].c_name[0] = '\0';
|
|
|
|
lastdir = g_ctx[0].c_last; /* last visited directory */
|
|
|
|
lastname = g_ctx[0].c_name; /* last visited filename */
|
|
|
|
g_ctx[0].c_fltr[0] = g_ctx[0].c_fltr[1] = '\0';
|
|
|
|
g_ctx[0].c_cfg = cfg; /* current configuration */
|
|
|
|
}
|
|
|
|
|
|
|
|
newpath[0] = rundir[0] = runfile[0] = mark[0] = '\0';
|
2017-06-03 23:19:16 +00:00
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
presel = cfg.filtermode ? FILTER : 0;
|
2017-06-03 23:19:16 +00:00
|
|
|
|
2018-01-04 12:16:06 +00:00
|
|
|
dents = xrealloc(dents, total_dents * sizeof(struct entry));
|
2019-03-13 17:49:35 +00:00
|
|
|
if (!dents)
|
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:
|
2019-11-29 22:58:09 +00:00
|
|
|
if (cfg.selmode && lastdir[0] && !ctx_changed)
|
2019-11-28 17:42:49 +00:00
|
|
|
updateselbuf(lastdir, newpath);
|
2019-11-29 22:58:09 +00:00
|
|
|
else if (ctx_changed)
|
|
|
|
ctx_changed = FALSE;
|
2019-11-28 17:42:49 +00:00
|
|
|
|
2017-08-20 20:48:14 +00:00
|
|
|
#ifdef LINUX_INOTIFY
|
2018-11-09 19:26:21 +00:00
|
|
|
if ((presel == FILTER || dir_changed) && inotify_wd >= 0) {
|
2017-08-20 20:48:14 +00:00
|
|
|
inotify_rm_watch(inotify_fd, inotify_wd);
|
2017-10-01 10:43:35 +00:00
|
|
|
inotify_wd = -1;
|
|
|
|
dir_changed = FALSE;
|
|
|
|
}
|
2017-08-21 16:33:26 +00:00
|
|
|
#elif defined(BSD_KQUEUE)
|
2018-11-09 19:26:21 +00:00
|
|
|
if ((presel == FILTER || dir_changed) && event_fd >= 0) {
|
2017-08-21 16:33:26 +00:00
|
|
|
close(event_fd);
|
2017-10-01 10:43:35 +00:00
|
|
|
event_fd = -1;
|
|
|
|
dir_changed = FALSE;
|
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
/* Can fail when permissions change while browsing.
|
|
|
|
* It's assumed that path IS a directory when we are here.
|
|
|
|
*/
|
2019-04-20 18:54:19 +00:00
|
|
|
if (access(path, R_OK) == -1)
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(&presel);
|
2015-07-01 23:56:47 +00:00
|
|
|
|
2019-01-20 20:46:06 +00:00
|
|
|
populate(path, lastname);
|
2019-02-08 15:01:37 +00:00
|
|
|
if (interrupted) {
|
|
|
|
interrupted = FALSE;
|
|
|
|
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
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-16 15:33:28 +00:00
|
|
|
while (1) {
|
2016-02-10 15:32:41 +00:00
|
|
|
redraw(path);
|
2014-10-07 06:05:30 +00:00
|
|
|
nochange:
|
2017-04-25 19:12:07 +00:00
|
|
|
/* Exit if parent has exited */
|
|
|
|
if (getppid() == 1)
|
|
|
|
_exit(0);
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2019-07-12 13:07:12 +00:00
|
|
|
/* If CWD is deleted or moved or perms changed, find an accessible parent */
|
2019-06-17 14:15:29 +00:00
|
|
|
if (access(path, F_OK)) {
|
2019-07-12 13:07:12 +00:00
|
|
|
DPRINTF_S("directory inaccessible");
|
2019-10-19 03:13:32 +00:00
|
|
|
find_accessible_parent(path, newpath, lastname, &presel);
|
2019-07-11 22:45:55 +00:00
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
2019-06-17 14:15:29 +00:00
|
|
|
}
|
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 */
|
|
|
|
if (!isatty(STDIN_FILENO) && !cfg.picker)
|
|
|
|
return;
|
|
|
|
|
2019-03-10 23:55:17 +00:00
|
|
|
sel = nextsel(presel);
|
|
|
|
if (presel)
|
|
|
|
presel = 0;
|
2017-04-28 23:02:47 +00:00
|
|
|
|
2017-04-08 05:44:51 +00:00
|
|
|
switch (sel) {
|
2019-05-18 05:25:17 +00:00
|
|
|
case SEL_CLICK:
|
|
|
|
if (getmouse(&event) != OK)
|
|
|
|
goto nochange; // fallthrough
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_BACK:
|
2019-07-12 15:36:37 +00:00
|
|
|
/* Handle clicking on a context at the top */
|
2019-10-14 12:25:04 +00:00
|
|
|
if (sel == SEL_CLICK && 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;
|
2019-10-24 03:14:36 +00:00
|
|
|
else if (r >= 0 && r < CTX_MAX && r != cfg.curctx) {
|
2019-07-12 15:36:37 +00:00
|
|
|
savecurctx(&cfg, path, dents[cur].name, r);
|
|
|
|
|
|
|
|
/* Reset the pointers */
|
|
|
|
path = g_ctx[r].c_path;
|
|
|
|
lastdir = g_ctx[r].c_last;
|
|
|
|
lastname = g_ctx[r].c_name;
|
|
|
|
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sel == SEL_BACK) {
|
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 last working directory */
|
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-10-01 10:43:35 +00:00
|
|
|
|
2019-05-18 05:25:17 +00:00
|
|
|
/* Save history */
|
|
|
|
xstrlcpy(lastname, xbasename(path), NAME_MAX + 1);
|
2019-04-11 14:19:42 +00:00
|
|
|
|
2019-05-18 05:25:17 +00:00
|
|
|
xstrlcpy(path, dir, PATH_MAX);
|
2018-11-09 19:26:21 +00:00
|
|
|
|
2019-05-18 05:25:17 +00:00
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
2019-05-08 15:26:44 +00:00
|
|
|
|
2019-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)) {
|
2019-07-12 15:36:37 +00:00
|
|
|
move_cursor((cur + ndents - 1) % ndents, 0);
|
|
|
|
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))) {
|
2019-07-12 15:36:37 +00:00
|
|
|
move_cursor((cur + 1) % ndents, 0);
|
|
|
|
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-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 */
|
|
|
|
dir_changed = TRUE;
|
|
|
|
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle clicking on a file */
|
2019-10-24 03:14:36 +00:00
|
|
|
if (event.y >= 2 && event.y <= ndents + 1 && event.bstate == BUTTON1_PRESSED) {
|
2019-08-06 20:33:52 +00:00
|
|
|
r = curscroll + (event.y - 2);
|
2019-05-10 02:14:24 +00:00
|
|
|
move_cursor(r, 1);
|
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]);
|
2019-05-08 22:41:29 +00:00
|
|
|
|
2019-07-12 15:36:37 +00:00
|
|
|
/*Single click just selects, double click also opens */
|
2019-10-14 12:25:04 +00:00
|
|
|
if (((_ABSSUB(mousetimings[0].tv_sec, mousetimings[1].tv_sec) << 30)
|
|
|
|
+ (mousetimings[0].tv_nsec - mousetimings[1].tv_nsec))
|
2019-10-14 12:28:16 +00:00
|
|
|
> 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;
|
2019-07-28 07:40:56 +00:00
|
|
|
} else {
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2019-05-08 22:41:29 +00:00
|
|
|
goto nochange; // fallthrough
|
2019-07-28 07:40:56 +00:00
|
|
|
}
|
2018-11-26 18:54:12 +00:00
|
|
|
case SEL_NAV_IN: // fallthrough
|
2014-10-10 07:06:31 +00:00
|
|
|
case SEL_GOIN:
|
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
|
|
|
|
2019-01-20 21:19:05 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath);
|
2014-10-23 14:37:12 +00:00
|
|
|
DPRINTF_S(newpath);
|
2014-10-08 07:52:44 +00:00
|
|
|
|
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
|
|
|
|
2014-10-22 15:50:30 +00:00
|
|
|
switch (sb.st_mode & S_IFMT) {
|
|
|
|
case S_IFDIR:
|
2017-06-30 12:19:43 +00:00
|
|
|
if (access(newpath, R_OK) == -1) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(&presel);
|
2014-10-22 16:25:25 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
2018-11-09 09:26:11 +00:00
|
|
|
lastname[0] = '\0';
|
2018-11-09 19:26:21 +00:00
|
|
|
setdirwatch();
|
2015-07-01 23:56:47 +00:00
|
|
|
goto begin;
|
2014-10-22 15:50:30 +00:00
|
|
|
case S_IFREG:
|
2017-04-01 07:26:25 +00:00
|
|
|
{
|
2018-11-29 14:13:53 +00:00
|
|
|
/* If opened as vim plugin and Enter/^M pressed, pick */
|
|
|
|
if (cfg.picker && sel == SEL_GOIN) {
|
2019-11-30 14:51:48 +00:00
|
|
|
dents[cur].flags |= FILE_SELECTED;
|
|
|
|
updateselbuf(path, newpath);
|
2019-09-29 05:57:42 +00:00
|
|
|
writesel(pselbuf, selbufpos - 1);
|
2018-11-29 14:13:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-26 18:54:12 +00:00
|
|
|
/* If open file is disabled on right arrow or `l`, return */
|
|
|
|
if (cfg.nonavopen && sel == SEL_NAV_IN)
|
|
|
|
continue;
|
|
|
|
|
2019-04-18 14:57:35 +00:00
|
|
|
/* Handle plugin selection mode */
|
|
|
|
if (cfg.runplugin) {
|
2019-11-17 04:35:23 +00:00
|
|
|
cfg.runplugin = 0;
|
|
|
|
/* Must be in plugin dir and same context to select plugin */
|
|
|
|
if ((cfg.runctx != cfg.curctx)
|
|
|
|
|| (strcmp(path, plugindir) != 0))
|
|
|
|
; /* We are somewhere else, continue as usual */
|
|
|
|
else {
|
|
|
|
/* Copy path so we can return back to earlier dir */
|
|
|
|
xstrlcpy(path, rundir, PATH_MAX);
|
|
|
|
rundir[0] = '\0';
|
|
|
|
|
|
|
|
if (!run_selected_plugin(&path, dents[cur].name,
|
|
|
|
newpath, runfile, &lastname,
|
|
|
|
&lastdir)) {
|
|
|
|
DPRINTF_S("plugin failed!");
|
|
|
|
}
|
2019-10-23 10:04:12 +00:00
|
|
|
|
2019-11-17 04:35:23 +00:00
|
|
|
if (runfile[0])
|
|
|
|
runfile[0] = '\0';
|
|
|
|
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
2018-12-15 18:54:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 22:10:49 +00:00
|
|
|
/* If NNN_USE_EDITOR is set, open text in EDITOR */
|
2018-12-04 23:10:01 +00:00
|
|
|
if (cfg.useeditor &&
|
2019-10-16 01:37:45 +00:00
|
|
|
#ifdef FILE_MIME_OPTS
|
|
|
|
get_output(g_buf, CMD_LEN_MAX, "file", FILE_MIME_OPTS, newpath, FALSE)
|
2019-10-14 22:47:12 +00:00
|
|
|
&& !strncmp(g_buf, "text/", 5)) {
|
2019-10-16 01:37:45 +00:00
|
|
|
#else
|
|
|
|
/* no mime option; guess from description instead */
|
|
|
|
get_output(g_buf, CMD_LEN_MAX, "file", "-b", newpath, FALSE)
|
|
|
|
&& strstr(g_buf, "text")) {
|
|
|
|
#endif
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(editor, newpath, NULL, path, F_CLI);
|
2018-12-04 23:10:01 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-08-21 02:55:12 +00:00
|
|
|
|
2019-06-04 15:02:16 +00:00
|
|
|
if (!sb.st_size) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_EMPTY_FILE], &presel);
|
2019-01-11 13:24:54 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2017-06-05 18:26:38 +00:00
|
|
|
/* Invoke desktop opener as last resort */
|
2019-10-02 17:34:56 +00:00
|
|
|
spawn(opener, newpath, NULL, NULL, opener_flags);
|
2017-06-05 18:26:38 +00:00
|
|
|
continue;
|
2017-04-01 07:26:25 +00:00
|
|
|
}
|
2014-10-22 15:50:30 +00:00
|
|
|
default:
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_UNSUPPORTED], &presel);
|
2014-10-22 15:50:30 +00:00
|
|
|
goto nochange;
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
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-02-08 15:26:02 +00:00
|
|
|
case SEL_END:
|
2019-10-19 03:31:23 +00:00
|
|
|
handle_screen_move(sel);
|
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-04-12 14:51:48 +00:00
|
|
|
case SEL_CDROOT: // fallthrough
|
2019-01-19 15:52:03 +00:00
|
|
|
case SEL_VISIT:
|
2019-01-19 16:20:30 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_CDHOME:
|
2019-04-22 19:43:02 +00:00
|
|
|
dir = home;
|
2019-01-19 16:20:30 +00:00
|
|
|
break;
|
|
|
|
case SEL_CDBEGIN:
|
|
|
|
dir = ipath;
|
|
|
|
break;
|
|
|
|
case SEL_CDLAST:
|
|
|
|
dir = lastdir;
|
|
|
|
break;
|
2019-04-12 14:51:48 +00:00
|
|
|
case SEL_CDROOT:
|
|
|
|
dir = "/";
|
|
|
|
break;
|
2019-01-19 16:20:30 +00:00
|
|
|
default: /* case SEL_VISIT */
|
2019-01-19 15:52:03 +00:00
|
|
|
dir = mark;
|
2019-01-19 16:20:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-01-19 15:52:03 +00:00
|
|
|
|
|
|
|
if (dir[0] == '\0') {
|
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
|
|
|
|
2019-04-21 13:58:55 +00:00
|
|
|
if (!xdiraccess(dir)) {
|
|
|
|
presel = MSGWAIT;
|
2016-02-25 15:06:57 +00:00
|
|
|
goto nochange;
|
2019-04-21 13:58:55 +00:00
|
|
|
}
|
2017-04-08 08:16:03 +00:00
|
|
|
|
2018-07-08 16:02:26 +00:00
|
|
|
if (strcmp(path, dir) == 0)
|
2019-04-13 00:10:34 +00:00
|
|
|
goto nochange;
|
2017-04-23 21:06:49 +00:00
|
|
|
|
2019-01-19 15:52:03 +00:00
|
|
|
/* SEL_CDLAST: dir pointing to lastdir */
|
|
|
|
xstrlcpy(newpath, dir, PATH_MAX);
|
|
|
|
|
2017-04-23 21:06:49 +00:00
|
|
|
/* Save last working directory */
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
2017-08-20 11:17:23 +00:00
|
|
|
|
2017-04-29 05:32:12 +00:00
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
2018-11-09 09:26:11 +00:00
|
|
|
lastname[0] = '\0';
|
2017-04-08 08:16:03 +00:00
|
|
|
DPRINTF_S(path);
|
2018-11-09 19:26:21 +00:00
|
|
|
setdirwatch();
|
2017-06-11 04:15:50 +00:00
|
|
|
goto begin;
|
2018-12-16 09:58:01 +00:00
|
|
|
case SEL_LEADER: // fallthrough
|
2019-01-19 07:39:46 +00:00
|
|
|
case SEL_CYCLE: // fallthrough
|
2019-10-05 01:29:43 +00:00
|
|
|
case SEL_CYCLER: // fallthrough
|
|
|
|
case SEL_FIRST: // fallthrough
|
2019-01-19 07:39:46 +00:00
|
|
|
case SEL_CTX1: // fallthrough
|
|
|
|
case SEL_CTX2: // fallthrough
|
|
|
|
case SEL_CTX3: // fallthrough
|
|
|
|
case SEL_CTX4:
|
2019-10-05 01:29:43 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_CYCLE:
|
|
|
|
fd = '\t';
|
|
|
|
break;
|
|
|
|
case SEL_CYCLER:
|
|
|
|
fd = KEY_BTAB;
|
|
|
|
break;
|
|
|
|
case SEL_FIRST:
|
|
|
|
fd = '\'';
|
|
|
|
break;
|
|
|
|
case SEL_CTX1: // fallthrough
|
|
|
|
case SEL_CTX2: // fallthrough
|
|
|
|
case SEL_CTX3: // fallthrough
|
|
|
|
case SEL_CTX4:
|
2019-01-19 07:39:46 +00:00
|
|
|
fd = sel - SEL_CTX1 + '1';
|
2019-10-05 01:29:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
2018-12-16 09:58:01 +00:00
|
|
|
fd = get_input(NULL);
|
2019-10-05 01:29:43 +00:00
|
|
|
}
|
2018-11-26 21:49:37 +00:00
|
|
|
|
2018-11-12 17:35:57 +00:00
|
|
|
switch (fd) {
|
2018-11-23 19:10:03 +00:00
|
|
|
case '~': // fallthrough
|
2019-04-12 14:51:48 +00:00
|
|
|
case '`': // fallthrough
|
2018-11-23 19:10:03 +00:00
|
|
|
case '-': // fallthrough
|
2019-03-12 11:13:17 +00:00
|
|
|
case '@':
|
2018-11-12 17:59:29 +00:00
|
|
|
presel = fd;
|
2018-11-12 17:35:57 +00:00
|
|
|
goto nochange;
|
2019-08-25 00:35:10 +00:00
|
|
|
case '\'': /* jump to first file in the directory */
|
2019-08-07 14:17:17 +00:00
|
|
|
for (r = 0; r < ndents; ++r) {
|
|
|
|
if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) {
|
|
|
|
move_cursor((r) % ndents, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (r != ndents)
|
2019-10-24 03:14:36 +00:00
|
|
|
continue;
|
2019-08-07 14:17:17 +00:00
|
|
|
goto nochange;
|
2019-08-25 00:35:10 +00:00
|
|
|
case '.':
|
|
|
|
cfg.showhidden ^= 1;
|
|
|
|
setdirwatch();
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
|
|
|
goto begin;
|
2019-10-05 01:29:43 +00:00
|
|
|
case '\t': // fallthrough
|
|
|
|
case KEY_BTAB:
|
2019-08-25 00:35:10 +00:00
|
|
|
/* visit next and previous contexts */
|
2018-11-12 17:35:57 +00:00
|
|
|
r = cfg.curctx;
|
2019-10-05 01:29:43 +00:00
|
|
|
if (fd == '\t')
|
2018-11-12 17:35:57 +00:00
|
|
|
do
|
2019-03-17 14:10:57 +00:00
|
|
|
r = (r + 1) & ~CTX_MAX;
|
2018-11-12 17:35:57 +00:00
|
|
|
while (!g_ctx[r].c_cfg.ctxactive);
|
|
|
|
else
|
|
|
|
do
|
2019-03-17 14:10:57 +00:00
|
|
|
r = (r + (CTX_MAX - 1)) & (CTX_MAX - 1);
|
2019-10-05 01:29:43 +00:00
|
|
|
while (!g_ctx[r].c_cfg.ctxactive);
|
2018-11-23 19:10:03 +00:00
|
|
|
fd = '1' + r; // fallthrough
|
|
|
|
case '1': // fallthrough
|
|
|
|
case '2': // fallthrough
|
|
|
|
case '3': // fallthrough
|
2018-11-12 17:35:57 +00:00
|
|
|
case '4':
|
|
|
|
r = fd - '1'; /* Save the next context id */
|
2018-12-02 17:23:07 +00:00
|
|
|
if (cfg.curctx == r) {
|
2019-02-22 19:32:05 +00:00
|
|
|
if (sel != SEL_CYCLE)
|
2018-12-02 17:23:07 +00:00
|
|
|
continue;
|
2018-11-08 12:42:55 +00:00
|
|
|
|
2019-02-22 19:32:05 +00:00
|
|
|
(r == CTX_MAX - 1) ? (r = 0) : ++r;
|
2019-11-22 15:00:13 +00:00
|
|
|
snprintf(newpath, PATH_MAX, messages[MSG_CREATE_CTX], r + 1);
|
2019-02-22 19:32:05 +00:00
|
|
|
fd = get_input(newpath);
|
2019-11-21 13:29:28 +00:00
|
|
|
if (fd != 'y' && fd != 'Y')
|
2019-02-22 19:32:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-03-13 15:24:23 +00:00
|
|
|
|
2019-11-29 22:58:09 +00:00
|
|
|
if (cfg.selmode) {
|
|
|
|
updateselbuf(path, newpath);
|
|
|
|
ctx_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-03-13 15:24:23 +00:00
|
|
|
savecurctx(&cfg, path, dents[cur].name, r);
|
2018-11-12 17:35:57 +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;
|
2018-03-03 13:49:06 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 14:27:44 +00:00
|
|
|
if (!get_kv_val(bookmark, newpath, fd, BM_MAX, TRUE)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_INVBM_KEY], &presel);
|
2017-12-24 09:51:38 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2017-12-24 09:51:38 +00:00
|
|
|
if (!xdiraccess(newpath))
|
|
|
|
goto nochange;
|
2017-07-02 10:42:30 +00:00
|
|
|
|
2018-05-09 11:27:01 +00:00
|
|
|
if (strcmp(path, newpath) == 0)
|
2017-07-02 10:42:30 +00:00
|
|
|
break;
|
2017-06-11 04:15:50 +00:00
|
|
|
|
2018-11-09 09:26:11 +00:00
|
|
|
lastname[0] = '\0';
|
2017-06-11 04:15:50 +00:00
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
|
|
|
|
|
|
|
/* Save the newly opted dir in path */
|
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
|
|
|
DPRINTF_S(path);
|
|
|
|
|
2018-11-09 19:26:21 +00:00
|
|
|
setdirwatch();
|
2017-04-08 08:16:03 +00:00
|
|
|
goto begin;
|
2017-09-01 14:27:36 +00:00
|
|
|
case SEL_PIN:
|
2017-08-20 11:17:23 +00:00
|
|
|
xstrlcpy(mark, path, PATH_MAX);
|
2019-03-10 23:55:17 +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;
|
|
|
|
}
|
|
|
|
#endif
|
2017-12-12 20:16:50 +00:00
|
|
|
presel = filterentries(path);
|
2019-02-27 15:33:14 +00:00
|
|
|
|
2017-12-12 20:16:50 +00:00
|
|
|
/* Save current */
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-03-13 03:03:17 +00:00
|
|
|
|
|
|
|
if (presel == 27) {
|
|
|
|
presel = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-12-12 20:16:50 +00:00
|
|
|
goto nochange;
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_MFLTR: // fallthrough
|
|
|
|
case SEL_TOGGLEDOT: // fallthrough
|
|
|
|
case SEL_DETAIL: // fallthrough
|
|
|
|
case SEL_FSIZE: // fallthrough
|
2019-01-25 17:12:27 +00:00
|
|
|
case SEL_ASIZE: // fallthrough
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_BSIZE: // fallthrough
|
2019-08-01 16:50:40 +00:00
|
|
|
case SEL_EXTN: // fallthrough
|
2019-08-20 14:30:48 +00:00
|
|
|
case SEL_MTIME:
|
2018-12-16 14:15:16 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_MFLTR:
|
|
|
|
cfg.filtermode ^= 1;
|
|
|
|
if (cfg.filtermode) {
|
|
|
|
presel = FILTER;
|
|
|
|
goto nochange;
|
|
|
|
}
|
2018-11-09 19:26:21 +00:00
|
|
|
|
2018-12-16 14:15:16 +00:00
|
|
|
/* Start watching the directory */
|
|
|
|
dir_changed = TRUE;
|
|
|
|
break;
|
|
|
|
case SEL_TOGGLEDOT:
|
|
|
|
cfg.showhidden ^= 1;
|
2019-03-14 13:44:54 +00:00
|
|
|
setdirwatch();
|
2018-12-16 14:15:16 +00:00
|
|
|
break;
|
|
|
|
case SEL_DETAIL:
|
|
|
|
cfg.showdetail ^= 1;
|
|
|
|
cfg.showdetail ? (printptr = &printent_long) : (printptr = &printent);
|
2019-09-14 23:26:54 +00:00
|
|
|
cfg.blkorder = 0;
|
2019-03-12 21:22:50 +00:00
|
|
|
continue;
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_FSIZE:
|
|
|
|
cfg.sizeorder ^= 1;
|
|
|
|
cfg.mtimeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
2019-08-01 16:50:40 +00:00
|
|
|
cfg.extnorder = 0;
|
2019-09-08 08:53:00 +00:00
|
|
|
cfg.selmode = 0;
|
2018-12-16 14:15:16 +00:00
|
|
|
break;
|
2019-01-25 17:12:27 +00:00
|
|
|
case SEL_ASIZE:
|
|
|
|
cfg.apparentsz ^= 1;
|
|
|
|
if (cfg.apparentsz) {
|
|
|
|
nftw_fn = &sum_sizes;
|
|
|
|
cfg.blkorder = 1;
|
2019-10-30 17:13:22 +00:00
|
|
|
blk_shift = 0;
|
2019-01-25 17:12:27 +00:00
|
|
|
} else
|
2019-02-27 15:33:14 +00:00
|
|
|
cfg.blkorder = 0; // fallthrough
|
2018-12-16 14:15:16 +00:00
|
|
|
case SEL_BSIZE:
|
|
|
|
if (sel == SEL_BSIZE) {
|
|
|
|
if (!cfg.apparentsz)
|
|
|
|
cfg.blkorder ^= 1;
|
|
|
|
nftw_fn = &sum_bsizes;
|
|
|
|
cfg.apparentsz = 0;
|
2019-10-30 17:13:22 +00:00
|
|
|
blk_shift = ffs(S_BLKSIZE) - 1;
|
2018-12-16 14:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cfg.blkorder) {
|
|
|
|
cfg.showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
|
|
|
}
|
|
|
|
cfg.mtimeorder = 0;
|
|
|
|
cfg.sizeorder = 0;
|
2019-08-01 16:50:40 +00:00
|
|
|
cfg.extnorder = 0;
|
2019-09-08 08:53:00 +00:00
|
|
|
cfg.selmode = 0;
|
2019-08-01 16:50:40 +00:00
|
|
|
break;
|
|
|
|
case SEL_EXTN:
|
|
|
|
cfg.extnorder ^= 1;
|
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.mtimeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
2019-09-08 08:53:00 +00:00
|
|
|
cfg.selmode = 0;
|
2018-12-16 14:15:16 +00:00
|
|
|
break;
|
2019-08-20 14:30:48 +00:00
|
|
|
default: /* SEL_MTIME */
|
2018-12-16 14:15:16 +00:00
|
|
|
cfg.mtimeorder ^= 1;
|
|
|
|
cfg.sizeorder = 0;
|
|
|
|
cfg.apparentsz = 0;
|
|
|
|
cfg.blkorder = 0;
|
2019-08-01 16:50:40 +00:00
|
|
|
cfg.extnorder = 0;
|
2019-09-08 08:53:00 +00:00
|
|
|
cfg.selmode = 0;
|
2018-12-16 14:15:16 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-11-09 19:26:21 +00:00
|
|
|
|
2017-03-30 05:14:26 +00:00
|
|
|
/* Save current */
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2017-03-29 20:21:52 +00:00
|
|
|
goto begin;
|
2017-04-02 23:35:14 +00:00
|
|
|
case SEL_STATS:
|
2019-10-20 00:05:41 +00:00
|
|
|
if (ndents) {
|
|
|
|
mkpath(path, dents[cur].name, newpath);
|
|
|
|
if (lstat(newpath, &sb) == -1 || !show_stats(newpath, &sb)) {
|
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
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_ARCHIVELS: // fallthrough
|
|
|
|
case SEL_EXTRACT: // fallthrough
|
|
|
|
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
|
2019-10-20 00:05:41 +00:00
|
|
|
case SEL_RUNEDIT: // fallthrough
|
|
|
|
case SEL_RUNPAGE: // 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)
|
2019-01-20 21:19:05 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath);
|
2019-10-20 00:05:41 +00:00
|
|
|
else if (sel == SEL_ARCHIVELS || sel == SEL_EXTRACT
|
|
|
|
|| sel == SEL_RUNEDIT || sel == SEL_RUNPAGE)
|
|
|
|
break;
|
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_ARCHIVELS:
|
2019-07-27 11:10:30 +00:00
|
|
|
handle_archive(newpath, path, 'l');
|
2019-11-19 15:31:59 +00:00
|
|
|
refresh = TRUE;
|
2018-12-06 16:15:29 +00:00
|
|
|
break;
|
|
|
|
case SEL_EXTRACT:
|
2019-07-27 11:10:30 +00:00
|
|
|
handle_archive(newpath, path, 'x');
|
2019-11-19 15:31:59 +00:00
|
|
|
refresh = TRUE;
|
2018-12-06 16:15:29 +00:00
|
|
|
break;
|
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-11-28 17:42:49 +00:00
|
|
|
endselection(path, newpath);
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2019-05-22 15:02:29 +00:00
|
|
|
if (!batch_rename(path)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], &presel);
|
2019-05-22 15:02:29 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2019-11-19 15:31:59 +00:00
|
|
|
refresh = TRUE;
|
2018-12-08 06:21:22 +00:00
|
|
|
break;
|
|
|
|
case SEL_HELP:
|
2019-10-02 17:04:11 +00:00
|
|
|
show_help(path);
|
2019-11-18 16:16:38 +00:00
|
|
|
continue;
|
2018-12-07 21:10:04 +00:00
|
|
|
case SEL_RUNEDIT:
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(editor, dents[cur].name, NULL, path, F_CLI);
|
2019-11-18 16:16:38 +00:00
|
|
|
continue;
|
2018-12-07 21:10:04 +00:00
|
|
|
case SEL_RUNPAGE:
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(pager, dents[cur].name, NULL, path, F_CLI);
|
2019-11-18 16:16:38 +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
|
|
|
|
2018-12-08 06:21:22 +00:00
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
2019-11-19 15:31:59 +00:00
|
|
|
if (cfg.filtermode && !refresh)
|
2019-11-18 16:16:38 +00:00
|
|
|
break;
|
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();
|
|
|
|
if (rangesel)
|
|
|
|
rangesel = FALSE;
|
2018-11-10 23:29:26 +00:00
|
|
|
|
2019-11-29 22:21:29 +00:00
|
|
|
/* Write the path to selection file to avoid flush */
|
|
|
|
if (!(dents[cur].flags & FILE_SELECTED)) {
|
|
|
|
utmp = selbufpos;
|
2019-12-06 16:54:35 +00:00
|
|
|
selbufpos = lastappendpos;
|
2019-11-29 22:21:29 +00:00
|
|
|
appendfpath(newpath, mkpath(path, dents[cur].name, newpath));
|
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
|
|
|
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
|
2019-12-06 16:54:35 +00:00
|
|
|
lastappendpos = selbufpos;
|
2019-11-29 22:21:29 +00:00
|
|
|
selbufpos = utmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Toggle selection status */
|
2019-11-28 17:42:49 +00:00
|
|
|
dents[cur].flags ^= FILE_SELECTED;
|
|
|
|
dents[cur].flags ? ++nselected : --nselected;
|
2019-09-30 16:05:52 +00:00
|
|
|
|
|
|
|
/* move cursor to the next entry if this is not the last entry */
|
2019-11-20 19:26:55 +00:00
|
|
|
if (!cfg.picker && cur != ndents - 1)
|
2019-09-30 16:05:52 +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();
|
2019-10-02 18:27:26 +00:00
|
|
|
rangesel ^= TRUE;
|
|
|
|
|
|
|
|
if (stat(path, &sb) == -1) {
|
|
|
|
printwarn(&presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
2019-09-30 16:05:52 +00:00
|
|
|
|
|
|
|
if (rangesel) { /* Range selection started */
|
2019-10-02 18:27:26 +00:00
|
|
|
inode = sb.st_ino;
|
2019-09-08 08:53:00 +00:00
|
|
|
selstartid = cur;
|
2019-11-22 15:00:13 +00:00
|
|
|
printmsg(messages[MSG_RANGE_SEL_ON]);
|
2019-11-25 02:20:22 +00:00
|
|
|
xdelay(XDELAY_INTERVAL_MS);
|
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();
|
|
|
|
if (rangesel)
|
|
|
|
rangesel = FALSE;
|
|
|
|
|
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 */
|
|
|
|
utmp = selbufpos;
|
2019-12-06 16:54:35 +00:00
|
|
|
selbufpos = lastappendpos;
|
2019-11-29 22:21:29 +00:00
|
|
|
|
2019-11-23 04:37:05 +00:00
|
|
|
for (r = selstartid; r <= selendid; ++r)
|
|
|
|
if (!(dents[r].flags & FILE_SELECTED)) {
|
2019-11-29 22:21:29 +00:00
|
|
|
/* Write the path to selection file to avoid flush */
|
|
|
|
appendfpath(newpath, mkpath(path, dents[r].name, newpath));
|
|
|
|
|
2019-09-08 08:53:00 +00:00
|
|
|
dents[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
|
|
|
|
|
|
|
if (selbufpos != utmp) {
|
|
|
|
writesel(pselbuf, selbufpos - 1); /* Truncate NULL from end */
|
|
|
|
spawn(copier, NULL, NULL, NULL, F_NOTRACE);
|
|
|
|
/* Restore current selection buffer position */
|
2019-12-06 16:54:35 +00:00
|
|
|
lastappendpos = selbufpos;
|
2019-11-29 22:21:29 +00:00
|
|
|
selbufpos = utmp;
|
|
|
|
}
|
2019-03-12 21:22:50 +00:00
|
|
|
continue;
|
2019-11-28 17:42:49 +00:00
|
|
|
case SEL_SELLIST:
|
2019-11-29 03:08:11 +00:00
|
|
|
if (listselbuf(path, newpath) || listselfile()) {
|
2019-03-10 16:14:16 +00:00
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:03:27 +00:00
|
|
|
goto nochange;
|
2019-10-10 13:07:16 +00:00
|
|
|
case SEL_SELEDIT:
|
2019-11-28 17:42:49 +00:00
|
|
|
if (nselected)
|
|
|
|
updateselbuf(path, newpath);
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
if (!editselection()) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED], &presel);
|
2019-10-10 13:07:16 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
break;
|
2019-10-17 18:05:49 +00:00
|
|
|
case SEL_CP: // fallthrough
|
|
|
|
case SEL_MV: // fallthrough
|
|
|
|
case SEL_CPMVAS: // fallthrough
|
2018-11-10 23:29:26 +00:00
|
|
|
case SEL_RMMUL:
|
|
|
|
{
|
2019-11-28 17:42:49 +00:00
|
|
|
endselection(path, newpath);
|
|
|
|
|
2019-10-19 07:55:50 +00:00
|
|
|
if (!cpmvrm_selection(sel, path, &presel))
|
2018-11-20 14:28:07 +00:00
|
|
|
goto nochange;
|
2019-09-30 16:05:52 +00:00
|
|
|
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2018-11-10 23:29:26 +00:00
|
|
|
goto begin;
|
|
|
|
}
|
2019-03-09 03:13:56 +00:00
|
|
|
case SEL_RM:
|
2018-12-01 08:57:05 +00:00
|
|
|
{
|
2019-03-09 03:13:56 +00:00
|
|
|
if (!ndents)
|
|
|
|
break;
|
2019-03-02 16:29:12 +00:00
|
|
|
|
2019-03-09 03:13:56 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath);
|
|
|
|
xrm(newpath);
|
2019-03-02 16:29:12 +00:00
|
|
|
|
2019-03-09 03:13:56 +00:00
|
|
|
/* Don't optimize cur if filtering is on */
|
2019-11-16 16:16:15 +00:00
|
|
|
if (cur && access(newpath, F_OK) == -1)
|
2019-05-10 02:14:24 +00:00
|
|
|
move_cursor(cur - 1, 0);
|
2018-12-09 18:39:05 +00:00
|
|
|
|
2019-04-09 11:32:20 +00:00
|
|
|
/* We reduce cur only if it is > 0, so it's at least 0 */
|
2018-12-01 08:57:05 +00:00
|
|
|
copycurname();
|
2018-12-09 18:39:05 +00:00
|
|
|
|
2018-11-10 23:29:26 +00:00
|
|
|
goto begin;
|
2018-12-01 08:57:05 +00:00
|
|
|
}
|
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
|
|
|
{
|
2019-08-04 02:02:37 +00:00
|
|
|
int dup = 'n';
|
|
|
|
|
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-11-29 15:28:12 +00:00
|
|
|
endselection(path, newpath);
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2019-11-30 10:45:12 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_ARCHIVE:
|
2019-11-29 15:28:12 +00:00
|
|
|
r = get_input(messages[MSG_CUR_SEL_OPTS]);
|
|
|
|
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-11-29 15:28:12 +00:00
|
|
|
} else if (!ndents)
|
2019-02-06 16:36:36 +00:00
|
|
|
goto nochange;
|
2019-11-29 15:28:12 +00:00
|
|
|
else
|
2019-02-07 13:07:45 +00:00
|
|
|
tmp = dents[cur].name;
|
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
|
|
|
|
presel = 0;
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = getreadline(messages[MSG_OPEN_WITH], path, ipath, &presel);
|
2019-04-26 20:23:41 +00:00
|
|
|
if (presel == MSGWAIT)
|
|
|
|
goto nochange;
|
|
|
|
#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')
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_REL_PATH]);
|
2019-10-12 17:32:44 +00:00
|
|
|
else if (r == 's' || r == 'h')
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(NULL, messages[MSG_LINK_SUFFIX]);
|
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 */
|
2019-08-19 14:28:37 +00:00
|
|
|
tmp = xreadline(dents[cur].name, "");
|
|
|
|
break;
|
2018-12-08 17:33:58 +00:00
|
|
|
}
|
2017-12-25 10:25:53 +00:00
|
|
|
|
2019-04-11 13:57:38 +00:00
|
|
|
if (!tmp || !*tmp)
|
2017-09-10 07:35:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Allow only relative, same dir paths */
|
2019-11-19 19:58:11 +00:00
|
|
|
if (tmp[0] == '/'
|
|
|
|
|| ((r != 'f' && r != 'd') && (xstrcmp(xbasename(tmp), tmp) != 0))) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_NO_TRAVERSAL], &presel);
|
2017-09-10 07:35:25 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2018-12-09 01:49:01 +00:00
|
|
|
/* Confirm if app is CLI or GUI */
|
2018-12-16 15:00:44 +00:00
|
|
|
if (sel == SEL_OPENWITH) {
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_CLI_MODE]);
|
2019-12-06 14:51:31 +00:00
|
|
|
r = (r == 'c' ? F_CLI :
|
|
|
|
(r == 'g' ? F_NOWAIT | F_NOTRACE | F_MULTI : 0));
|
|
|
|
if (!r) {
|
|
|
|
cfg.filtermode ? presel = FILTER : clearprompt();
|
|
|
|
goto nochange;
|
|
|
|
}
|
2018-12-07 19:41:55 +00:00
|
|
|
}
|
2017-12-25 10:25:53 +00:00
|
|
|
|
2018-12-08 17:33:58 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_ARCHIVE:
|
2019-05-19 15:59:29 +00:00
|
|
|
{
|
2019-07-27 06:44:49 +00:00
|
|
|
char cmd[ARCHIVE_CMD_LEN];
|
2019-05-19 15:59:29 +00:00
|
|
|
|
2019-07-27 06:44:49 +00:00
|
|
|
get_archive_cmd(cmd, tmp);
|
2017-12-25 10:25:53 +00:00
|
|
|
|
2019-12-04 12:55:41 +00:00
|
|
|
(r == 's') ? archive_selection(cmd, tmp, path)
|
|
|
|
: spawn(cmd, tmp, dents[cur].name,
|
|
|
|
path, F_NORMAL | F_MULTI);
|
2018-12-08 17:33:58 +00:00
|
|
|
break;
|
2019-05-19 15:59:29 +00:00
|
|
|
}
|
2018-12-16 15:00:44 +00:00
|
|
|
case SEL_OPENWITH:
|
2019-01-20 21:19:05 +00:00
|
|
|
mkpath(path, dents[cur].name, newpath);
|
2019-03-11 16:19:35 +00:00
|
|
|
spawn(tmp, newpath, NULL, path, r);
|
2018-12-16 09:58:01 +00:00
|
|
|
break;
|
|
|
|
case SEL_RENAME:
|
|
|
|
/* Skip renaming to same name */
|
2019-08-19 14:28:37 +00:00
|
|
|
if (strcmp(tmp, dents[cur].name) == 0) {
|
2019-11-22 15:00:13 +00:00
|
|
|
tmp = xreadline(dents[cur].name, messages[MSG_COPY_NAME]);
|
2019-08-19 14:28:37 +00:00
|
|
|
if (strcmp(tmp, dents[cur].name) == 0)
|
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
dup = 'd';
|
|
|
|
}
|
2018-12-16 09:58:01 +00:00
|
|
|
break;
|
2018-12-08 17:33:58 +00:00
|
|
|
default:
|
|
|
|
break;
|
2018-12-07 20:12:30 +00:00
|
|
|
}
|
2018-04-25 16:26:13 +00:00
|
|
|
|
2018-12-09 01:49:01 +00:00
|
|
|
/* Complete OPEN, LAUNCH, ARCHIVE operations */
|
2018-12-08 17:33:58 +00:00
|
|
|
if (sel != SEL_NEW && sel != SEL_RENAME) {
|
2018-04-25 16:26:13 +00:00
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
|
|
|
|
/* Save current */
|
|
|
|
copycurname();
|
|
|
|
|
|
|
|
/* Repopulate as directory content may have changed */
|
|
|
|
goto begin;
|
2017-12-25 10:25:53 +00:00
|
|
|
}
|
|
|
|
|
2017-09-10 07:35:25 +00:00
|
|
|
/* Open the descriptor to currently open directory */
|
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? */
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(messages[MSG_OVERWRITE]);
|
2019-01-25 16:43:20 +00:00
|
|
|
if (r != 'y' && r != 'Y') {
|
2018-12-08 17:33:58 +00:00
|
|
|
close(fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2018-12-09 01:49:01 +00:00
|
|
|
/* Do nothing in case of NEW */
|
2018-12-08 17:33:58 +00:00
|
|
|
close(fd);
|
2019-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 */
|
2019-08-04 06:18:45 +00:00
|
|
|
if (dup == 'd')
|
2019-09-11 12:58:41 +00:00
|
|
|
spawn("cp -rp", dents[cur].name, tmp, path, F_SILENT);
|
2019-08-04 06:18:45 +00:00
|
|
|
else if (renameat(fd, dents[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;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Check if it's a dir or file */
|
|
|
|
if (r == 'f') {
|
2019-11-19 19:58:11 +00:00
|
|
|
mkpath(path, tmp, newpath);
|
2019-11-20 17:53:44 +00:00
|
|
|
r = xmktree(newpath, FALSE);
|
2019-11-19 19:58:11 +00:00
|
|
|
} else if (r == 'd') {
|
|
|
|
mkpath(path, tmp, newpath);
|
2019-11-20 17:53:44 +00:00
|
|
|
r = xmktree(newpath, TRUE);
|
2019-11-19 19:58:11 +00:00
|
|
|
} else if (r == 's' || r == 'h') {
|
2019-11-28 17:42:49 +00:00
|
|
|
|
2019-01-20 14:28:20 +00:00
|
|
|
if (tmp[0] == '@' && tmp[1] == '\0')
|
|
|
|
tmp[0] = '\0';
|
2019-11-29 15:28:12 +00:00
|
|
|
r = xlink(tmp, path, (ndents ? dents[cur].name : NULL),
|
|
|
|
newpath, &presel, r);
|
2019-01-20 11:29:55 +00:00
|
|
|
close(fd);
|
|
|
|
|
2019-04-27 12:28:55 +00:00
|
|
|
if (r <= 0)
|
2019-01-20 11:29:55 +00:00
|
|
|
goto nochange;
|
|
|
|
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-01-20 11:29:55 +00:00
|
|
|
goto begin;
|
2018-12-08 17:33:58 +00:00
|
|
|
} else {
|
2017-08-22 19:16:58 +00:00
|
|
|
close(fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-08 17:33:58 +00:00
|
|
|
/* Check if file creation failed */
|
|
|
|
if (r == -1) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(&presel);
|
2019-04-21 18:29:51 +00:00
|
|
|
close(fd);
|
2018-12-08 17:33:58 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
2017-08-22 19:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2018-11-09 09:26:11 +00:00
|
|
|
xstrlcpy(lastname, tmp, NAME_MAX + 1);
|
2017-08-22 19:16:58 +00:00
|
|
|
goto begin;
|
2018-12-08 17:33:58 +00:00
|
|
|
}
|
2018-12-16 03:03:40 +00:00
|
|
|
case SEL_EXEC: // fallthrough
|
2018-12-08 10:48:46 +00:00
|
|
|
case SEL_SHELL: // fallthrough
|
2019-08-13 19:28:33 +00:00
|
|
|
case SEL_PLUGKEY: // fallthrough
|
2019-04-18 14:57:35 +00:00
|
|
|
case SEL_PLUGIN: // 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-11-28 17:42:49 +00:00
|
|
|
endselection(path, newpath);
|
2019-09-29 16:14:47 +00:00
|
|
|
|
2018-12-16 03:03:40 +00:00
|
|
|
switch (sel) {
|
|
|
|
case SEL_EXEC:
|
2019-04-21 13:58:55 +00:00
|
|
|
if (!execute_file(cur, path, newpath, &presel))
|
2018-12-08 12:52:06 +00:00
|
|
|
goto nochange;
|
2018-12-16 03:03:40 +00:00
|
|
|
break;
|
|
|
|
case SEL_SHELL:
|
2019-11-22 15:00:13 +00:00
|
|
|
setenv(envs[ENV_NCUR], (ndents ? dents[cur].name : ""), 1);
|
2019-03-11 02:18:23 +00:00
|
|
|
spawn(shell, NULL, NULL, path, F_CLI);
|
2018-12-16 03:03:40 +00:00
|
|
|
break;
|
2019-08-13 19:28:33 +00:00
|
|
|
case SEL_PLUGKEY: // fallthrough
|
2019-04-18 14:57:35 +00:00
|
|
|
case SEL_PLUGIN:
|
2019-10-19 01:30:04 +00:00
|
|
|
/* Check if directory is accessible */
|
|
|
|
if (!xdiraccess(plugindir)) {
|
2019-04-26 19:25:28 +00:00
|
|
|
printwarn(&presel);
|
2018-12-09 13:48:00 +00:00
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:14:36 +00:00
|
|
|
if (sel == SEL_PLUGKEY) {
|
2019-11-22 15:00:13 +00:00
|
|
|
r = get_input(NULL);
|
2019-08-14 14:27:44 +00:00
|
|
|
tmp = get_kv_val(plug, NULL, r, PLUGIN_MAX, FALSE);
|
|
|
|
if (!tmp)
|
2019-08-13 19:28:33 +00:00
|
|
|
goto nochange;
|
|
|
|
|
2019-10-24 07:09:31 +00:00
|
|
|
if (tmp[0] == '_' && tmp[1]) {
|
|
|
|
xstrlcpy(newpath, ++tmp, PATH_MAX);
|
2019-11-23 20:43:27 +00:00
|
|
|
if (is_suffix(newpath, " $nnn")) {
|
2019-11-16 01:50:18 +00:00
|
|
|
tmp = (ndents ? dents[cur].name : NULL);
|
2019-11-23 20:43:27 +00:00
|
|
|
/* Set `\0` to clear ' $nnn' suffix */
|
2019-11-16 01:50:18 +00:00
|
|
|
newpath[strlen(newpath) - 5] = '\0';
|
|
|
|
} else
|
|
|
|
tmp = NULL;
|
|
|
|
|
|
|
|
spawn(newpath, tmp, NULL, path, F_CLI | F_CONFIRM);
|
2019-10-24 13:24:33 +00:00
|
|
|
} else {
|
2019-11-17 04:35:23 +00:00
|
|
|
if (!run_selected_plugin(&path, tmp, newpath,
|
2019-11-08 13:45:53 +00:00
|
|
|
(ndents ? dents[cur].name : NULL),
|
2019-11-17 04:35:23 +00:00
|
|
|
&lastname, &lastdir)) {
|
2019-11-22 15:00:13 +00:00
|
|
|
printwait(messages[MSG_FAILED],
|
2019-11-17 04:35:23 +00:00
|
|
|
&presel);
|
2019-11-08 13:45:53 +00:00
|
|
|
goto nochange;
|
2019-11-15 17:06:37 +00:00
|
|
|
}
|
2019-11-08 13:45:53 +00:00
|
|
|
}
|
2019-11-16 01:50:18 +00:00
|
|
|
|
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-11-13 21:25:05 +00:00
|
|
|
} else {
|
|
|
|
cfg.runplugin ^= 1;
|
|
|
|
if (!cfg.runplugin && rundir[0]) {
|
|
|
|
/*
|
|
|
|
* If toggled, and still in the plugin dir,
|
|
|
|
* switch to original directory
|
|
|
|
*/
|
|
|
|
if (strcmp(path, plugindir) == 0) {
|
|
|
|
xstrlcpy(path, rundir, PATH_MAX);
|
|
|
|
xstrlcpy(lastname, runfile, NAME_MAX);
|
|
|
|
rundir[0] = runfile[0] = '\0';
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
break;
|
2019-02-23 06:25:29 +00:00
|
|
|
}
|
|
|
|
|
2019-11-13 21:25:05 +00:00
|
|
|
xstrlcpy(rundir, path, PATH_MAX);
|
|
|
|
xstrlcpy(path, plugindir, PATH_MAX);
|
|
|
|
if (ndents)
|
|
|
|
xstrlcpy(runfile, dents[cur].name, NAME_MAX);
|
|
|
|
cfg.runctx = cfg.curctx;
|
|
|
|
lastname[0] = '\0';
|
|
|
|
}
|
2019-02-23 06:25:29 +00:00
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
2019-03-12 10:49:34 +00:00
|
|
|
case SEL_LAUNCH:
|
2019-12-08 19:04:53 +00:00
|
|
|
mkpath(plugindir, utils[UTIL_LAUNCH], newpath);
|
|
|
|
if ((getutil(utils[UTIL_FZF]) || getutil(utils[UTIL_FZY]))
|
|
|
|
&& access(newpath, X_OK) == 0) {
|
|
|
|
tmp = newpath;
|
|
|
|
r = F_NORMAL;
|
|
|
|
} else {
|
|
|
|
tmp = xreadline(NULL, messages[MSG_APP_NAME]);
|
|
|
|
r = F_NOWAIT | F_NOTRACE | F_MULTI;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp && *tmp) // NOLINT
|
|
|
|
spawn(tmp, "0", NULL, path, r);
|
|
|
|
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
|
|
|
goto nochange;
|
2018-12-16 03:03:40 +00:00
|
|
|
default: /* SEL_RUNCMD */
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2019-02-10 05:45:38 +00:00
|
|
|
if (cfg.picker) {
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-02-10 04:28:13 +00:00
|
|
|
tmp = xreadline(NULL, "> ");
|
2019-02-22 00:05:26 +00:00
|
|
|
#ifndef NORL
|
2019-02-10 05:45:38 +00:00
|
|
|
} else {
|
2019-04-26 20:11:35 +00:00
|
|
|
presel = 0;
|
|
|
|
tmp = getreadline("> ", path, ipath, &presel);
|
|
|
|
if (presel == MSGWAIT)
|
2019-02-10 04:28:13 +00:00
|
|
|
goto nochange;
|
2019-01-24 06:35:13 +00:00
|
|
|
}
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-12-08 19:04:53 +00:00
|
|
|
if (tmp && *tmp) // NOLINT
|
2019-09-28 09:48:09 +00:00
|
|
|
prompt_run(tmp, (ndents ? dents[cur].name : ""), path);
|
2018-12-16 03:03:40 +00:00
|
|
|
}
|
2018-03-19 00:02:16 +00:00
|
|
|
|
2018-12-08 10:48:46 +00:00
|
|
|
/* Continue in navigate-as-you-type mode, if enabled */
|
|
|
|
if (cfg.filtermode)
|
|
|
|
presel = FILTER;
|
2018-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();
|
2018-03-16 17:16:03 +00:00
|
|
|
|
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-10-11 20:43:08 +00:00
|
|
|
case SEL_ARCHIVEMNT:
|
|
|
|
if (!ndents || !archive_mount(dents[cur].name, path, newpath, &presel))
|
|
|
|
goto nochange; // fallthrough
|
2019-11-24 15:52:44 +00:00
|
|
|
case SEL_REMOTE:
|
|
|
|
if (sel == SEL_REMOTE && !remote_mount(newpath, &presel))
|
2019-04-21 06:25:00 +00:00
|
|
|
goto nochange;
|
2019-04-20 18:54:19 +00:00
|
|
|
|
|
|
|
lastname[0] = '\0';
|
|
|
|
|
|
|
|
/* Save last working directory */
|
|
|
|
xstrlcpy(lastdir, path, PATH_MAX);
|
|
|
|
|
|
|
|
/* Switch to mount point */
|
|
|
|
xstrlcpy(path, newpath, PATH_MAX);
|
|
|
|
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
2019-04-21 20:44:43 +00:00
|
|
|
case SEL_UMOUNT:
|
2019-10-11 20:43:08 +00:00
|
|
|
tmp = ndents ? dents[cur].name : NULL;
|
2019-10-13 15:23:32 +00:00
|
|
|
unmount(tmp, newpath, &presel, path);
|
2019-04-21 20:44:43 +00:00
|
|
|
goto nochange;
|
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
|
|
|
|
|
|
|
if (r == 's') {
|
|
|
|
save_session(FALSE, &presel);
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == 'l' || r == 'r') {
|
|
|
|
if (load_session(NULL, &path, &lastdir, &lastname, r == 'r')) {
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
presel = MSGWAIT;
|
|
|
|
goto nochange;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
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:
|
2019-10-11 17:49:25 +00:00
|
|
|
if (sel == SEL_QUITCTX) {
|
|
|
|
fd = cfg.curctx; /* fd used as tmp var */
|
|
|
|
for (r = (fd + 1) & ~CTX_MAX;
|
|
|
|
(r != fd) && !g_ctx[r].c_cfg.ctxactive;
|
|
|
|
r = ((r + 1) & ~CTX_MAX)) {
|
|
|
|
};
|
|
|
|
|
|
|
|
if (r != fd) {
|
|
|
|
bool selmode = cfg.selmode ? TRUE : FALSE;
|
|
|
|
|
|
|
|
g_ctx[fd].c_cfg.ctxactive = 0;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* Continue selection mode */
|
|
|
|
cfg.selmode = selmode;
|
|
|
|
cfg.curctx = r;
|
|
|
|
setdirwatch();
|
|
|
|
goto begin;
|
|
|
|
}
|
2019-10-16 02:59:49 +00:00
|
|
|
} else {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-11-21 13:29:28 +00:00
|
|
|
if (!(r == CTX_MAX || r == 'y' || r == 'Y'))
|
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
|
|
|
|
2019-10-11 17:49:25 +00:00
|
|
|
if (sel == SEL_QUITCD || getenv("NNN_TMPFILE")) {
|
2018-11-24 20:51:22 +00:00
|
|
|
/* In vim picker mode, clear selection and exit */
|
|
|
|
if (cfg.picker) {
|
2019-02-23 06:41:53 +00:00
|
|
|
/* Picker mode: reset buffer or clear file */
|
2019-11-20 19:26:55 +00:00
|
|
|
selbufpos = 0;
|
2019-03-10 23:55:17 +00:00
|
|
|
} else if (!write_lastdir(path)) {
|
|
|
|
presel = MSGWAIT;
|
2018-11-12 16:43:35 +00:00
|
|
|
goto nochange;
|
2019-03-10 23:55:17 +00:00
|
|
|
}
|
2019-03-13 17:14:11 +00:00
|
|
|
}
|
|
|
|
return;
|
2019-03-10 23:38:39 +00:00
|
|
|
default:
|
2019-03-10 23:55:17 +00:00
|
|
|
if (xlines != LINES || xcols != COLS) {
|
|
|
|
idle = 0;
|
|
|
|
setdirwatch();
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-03-10 23:38:39 +00:00
|
|
|
goto begin;
|
2019-03-10 23:55:17 +00:00
|
|
|
}
|
2018-03-05 12:45:42 +00:00
|
|
|
|
2019-03-10 23:38:39 +00:00
|
|
|
/* Locker */
|
2019-03-13 13:31:22 +00:00
|
|
|
if (idletimeout && idle == idletimeout) {
|
2019-03-10 23:38:39 +00:00
|
|
|
idle = 0;
|
2019-06-05 12:32:27 +00:00
|
|
|
lock_terminal();
|
2019-04-21 10:11:26 +00:00
|
|
|
if (ndents)
|
|
|
|
copycurname();
|
2019-03-10 23:38:39 +00:00
|
|
|
goto begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto nochange;
|
|
|
|
} /* switch (sel) */
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 15:49:51 +00:00
|
|
|
ulong i = 0;
|
2019-10-11 14:11:56 +00:00
|
|
|
bool bitmap[KEY_MAX] = {FALSE};
|
|
|
|
|
2019-10-11 15:29:22 +00:00
|
|
|
for (; i < sizeof(bindings) / sizeof(struct key); ++i) {
|
|
|
|
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"
|
2019-09-28 14:34:24 +00:00
|
|
|
" PATH start dir [default: .]\n\n"
|
2018-08-16 15:05:57 +00:00
|
|
|
"optional args:\n"
|
2019-08-30 15:25:23 +00:00
|
|
|
" -a use access time\n"
|
2019-01-17 15:29:30 +00:00
|
|
|
" -b key open bookmark key\n"
|
2019-10-02 22:03:15 +00:00
|
|
|
" -c cli-only opener\n"
|
2019-08-04 04:25:14 +00:00
|
|
|
" -d detail mode\n"
|
2019-10-18 22:11:39 +00:00
|
|
|
" -e name load session by name\n"
|
2019-11-28 20:24:47 +00:00
|
|
|
" -E use EDITOR for undetached edits\n"
|
2019-09-11 12:58:41 +00:00
|
|
|
" -f run filter as cmd on prompt key\n"
|
2019-08-04 04:25:14 +00:00
|
|
|
" -H show hidden files\n"
|
2019-01-17 15:29:30 +00:00
|
|
|
" -i nav-as-you-type mode\n"
|
2019-10-11 15:29:22 +00:00
|
|
|
" -K detect key collision\n"
|
2019-07-14 17:30:14 +00:00
|
|
|
" -n version sort\n"
|
2019-10-02 17:04:11 +00:00
|
|
|
" -o open files on Enter\n"
|
|
|
|
" -p file selection file [stdout if '-']\n"
|
|
|
|
" -r use advcpmv patched cp, mv\n"
|
2019-12-01 17:30:06 +00:00
|
|
|
" -R disable rollover at edges\n"
|
2019-02-05 19:08:55 +00:00
|
|
|
" -s string filters [default: regex]\n"
|
2019-02-22 19:32:05 +00:00
|
|
|
" -S du mode\n"
|
2019-08-16 18:37:38 +00:00
|
|
|
" -t disable dir auto-select\n"
|
2019-01-17 15:29:30 +00:00
|
|
|
" -v show version\n"
|
|
|
|
" -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] == '~') {
|
|
|
|
r = xstrlcpy(g_buf, home, PATH_MAX);
|
|
|
|
xstrlcpy(g_buf + r - 1, xdgcfg + 1, PATH_MAX);
|
|
|
|
xdgcfg = g_buf;
|
|
|
|
DPRINTF_S(xdgcfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xdiraccess(xdgcfg)) {
|
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
len = strlen(xdgcfg) + 1 + 13; /* add length of "/nnn/sessions" */
|
2019-06-09 05:06:35 +00:00
|
|
|
xdg = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xdg)
|
2019-10-18 22:11:39 +00:00
|
|
|
len = strlen(home) + 1 + 21; /* add length of "/.config/nnn/sessions" */
|
2019-06-09 05:06:35 +00:00
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
cfgdir = (char *)malloc(len);
|
|
|
|
plugindir = (char *)malloc(len);
|
2019-10-18 22:11:39 +00:00
|
|
|
sessiondir = (char *)malloc(len);
|
|
|
|
if (!cfgdir || !plugindir || !sessiondir) {
|
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) {
|
|
|
|
xstrlcpy(cfgdir, 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 {
|
|
|
|
r = xstrlcpy(cfgdir, home, len);
|
|
|
|
|
|
|
|
/* Create ~/.config */
|
|
|
|
xstrlcpy(cfgdir + r - 1, "/.config", len - r);
|
|
|
|
DPRINTF_S(cfgdir);
|
|
|
|
r += 8; /* length of "/.config" */
|
2019-05-27 13:25:05 +00:00
|
|
|
}
|
2019-04-21 18:29:51 +00:00
|
|
|
|
|
|
|
/* Create ~/.config/nnn */
|
2019-06-09 05:06:35 +00:00
|
|
|
xstrlcpy(cfgdir + r - 1, "/nnn", len - r);
|
2019-05-27 13:25:05 +00:00
|
|
|
DPRINTF_S(cfgdir);
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2019-06-09 05:06:35 +00:00
|
|
|
/* Create ~/.config/nnn/plugins */
|
2019-11-02 16:20:26 +00:00
|
|
|
xstrlcpy(cfgdir + r + 4 - 1, "/plugins", 9); /* subtract length of "/nnn" (4) */
|
2019-04-21 18:29:51 +00:00
|
|
|
DPRINTF_S(cfgdir);
|
|
|
|
|
|
|
|
xstrlcpy(plugindir, cfgdir, len);
|
|
|
|
DPRINTF_S(plugindir);
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
if (!xmktree(cfgdir, TRUE)) {
|
2019-04-21 18:29:51 +00:00
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
/* Create ~/.config/nnn/sessions */
|
2019-11-02 16:20:26 +00:00
|
|
|
xstrlcpy(cfgdir + r + 4 - 1, "/sessions", 10); /* subtract length of "/nnn" (4) */
|
2019-10-18 22:11:39 +00:00
|
|
|
DPRINTF_S(cfgdir);
|
|
|
|
|
|
|
|
xstrlcpy(sessiondir, cfgdir, len);
|
|
|
|
DPRINTF_S(sessiondir);
|
|
|
|
|
2019-11-20 17:53:44 +00:00
|
|
|
if (!xmktree(cfgdir, TRUE)) {
|
2019-10-18 22:11:39 +00:00
|
|
|
xerror();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Reset to config path */
|
2019-06-09 05:06:35 +00:00
|
|
|
cfgdir[r + 3] = '\0';
|
2019-04-21 18:29:51 +00:00
|
|
|
DPRINTF_S(cfgdir);
|
|
|
|
|
|
|
|
/* Set selection file path */
|
|
|
|
if (!cfg.picker) {
|
|
|
|
/* Length of "/.config/nnn/.selection" */
|
2019-09-29 05:57:42 +00:00
|
|
|
g_selpath = (char *)malloc(len + 3);
|
|
|
|
r = xstrlcpy(g_selpath, cfgdir, len + 3);
|
|
|
|
xstrlcpy(g_selpath + r - 1, "/.selection", 12);
|
|
|
|
DPRINTF_S(g_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
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
if (xdiraccess("/tmp"))
|
2019-10-04 15:04:37 +00:00
|
|
|
g_tmpfplen = (uchar)xstrlcpy(g_tmpfpath, "/tmp", TMP_LEN_MAX);
|
2019-04-21 18:29:51 +00:00
|
|
|
else {
|
|
|
|
path = getenv("TMPDIR");
|
|
|
|
if (path)
|
2019-10-04 15:04:37 +00:00
|
|
|
g_tmpfplen = (uchar)xstrlcpy(g_tmpfpath, path, TMP_LEN_MAX);
|
2019-04-21 18:29:51 +00:00
|
|
|
else {
|
|
|
|
fprintf(stderr, "set TMPDIR\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cleanup(void)
|
|
|
|
{
|
2019-09-29 05:57:42 +00:00
|
|
|
free(g_selpath);
|
2019-04-21 18:29:51 +00:00
|
|
|
free(plugindir);
|
2019-10-18 22:11:39 +00:00
|
|
|
free(sessiondir);
|
2019-04-21 18:29:51 +00:00
|
|
|
free(cfgdir);
|
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);
|
2019-04-21 18:29:51 +00:00
|
|
|
|
2019-10-23 10:04:12 +00:00
|
|
|
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-08-24 14:14:49 +00:00
|
|
|
mmask_t mask;
|
2019-04-23 03:20:25 +00:00
|
|
|
char *arg = NULL;
|
2019-10-18 22:11:39 +00:00
|
|
|
char *session = NULL;
|
2017-06-21 04:19:02 +00:00
|
|
|
int opt;
|
2019-08-23 14:48:17 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
bool progress = FALSE;
|
|
|
|
#endif
|
2015-11-26 16:00:26 +00:00
|
|
|
|
2019-12-01 17:30:06 +00:00
|
|
|
while ((opt = getopt(argc, argv, "HSKiab:cde:Efnop:rRstvh")) != -1) {
|
2017-04-01 05:18:18 +00:00
|
|
|
switch (opt) {
|
2017-04-14 11:20:16 +00:00
|
|
|
case 'S':
|
2017-06-22 01:56:05 +00:00
|
|
|
cfg.blkorder = 1;
|
2018-10-19 03:49:53 +00:00
|
|
|
nftw_fn = sum_bsizes;
|
2019-10-30 17:13:22 +00:00
|
|
|
blk_shift = ffs(S_BLKSIZE) - 1; // fallthrough
|
2019-08-04 04:25:14 +00:00
|
|
|
case 'd':
|
|
|
|
cfg.showdetail = 1;
|
|
|
|
printptr = &printent_long;
|
2017-04-01 05:18:18 +00:00
|
|
|
break;
|
2017-06-04 06:15:17 +00:00
|
|
|
case 'i':
|
2017-06-20 14:58:53 +00:00
|
|
|
cfg.filtermode = 1;
|
2017-06-03 23:19:16 +00:00
|
|
|
break;
|
2019-08-30 15:25:23 +00:00
|
|
|
case 'a':
|
|
|
|
cfg.mtime = 0;
|
|
|
|
break;
|
2017-12-24 09:51:38 +00:00
|
|
|
case 'b':
|
2019-04-23 03:20:25 +00:00
|
|
|
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;
|
2019-10-18 22:11:39 +00:00
|
|
|
case 'e':
|
|
|
|
session = optarg;
|
|
|
|
break;
|
2019-11-23 20:24:06 +00:00
|
|
|
case 'E':
|
|
|
|
cfg.waitedit = 1;
|
|
|
|
break;
|
2019-09-11 06:48:58 +00:00
|
|
|
case 'f':
|
|
|
|
cfg.filtercmd = 1;
|
|
|
|
break;
|
2019-08-04 04:25:14 +00:00
|
|
|
case 'H':
|
|
|
|
cfg.showhidden = 1;
|
|
|
|
break;
|
2019-07-14 17:30:14 +00:00
|
|
|
case 'n':
|
|
|
|
cmpfn = &xstrverscasecmp;
|
|
|
|
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':
|
|
|
|
cfg.picker = 1;
|
|
|
|
if (optarg[0] == '-' && optarg[1] == '\0')
|
|
|
|
cfg.pickraw = 1;
|
|
|
|
else {
|
2019-10-24 03:14:36 +00:00
|
|
|
int 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();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2018-11-23 17:11:47 +00:00
|
|
|
}
|
2019-04-22 20:22:53 +00:00
|
|
|
|
|
|
|
close(fd);
|
2019-09-29 05:57:42 +00:00
|
|
|
g_selpath = realpath(optarg, NULL);
|
|
|
|
unlink(g_selpath);
|
2018-11-23 17:11:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-08-23 14:48:17 +00:00
|
|
|
case 'r':
|
|
|
|
#ifdef __linux__
|
|
|
|
progress = TRUE;
|
|
|
|
#endif
|
|
|
|
break;
|
2019-12-01 17:30:06 +00:00
|
|
|
case 'R':
|
|
|
|
cfg.rollover = 0;
|
|
|
|
break;
|
2019-02-05 19:08:55 +00:00
|
|
|
case 's':
|
|
|
|
cfg.filter_re = 0;
|
|
|
|
filterfn = &visible_str;
|
|
|
|
break;
|
2019-08-16 18:37:38 +00:00
|
|
|
case 't':
|
|
|
|
cfg.autoselect = 0;
|
|
|
|
break;
|
2019-10-11 14:11:56 +00:00
|
|
|
case 'K':
|
2019-10-11 15:29:22 +00:00
|
|
|
check_key_collision();
|
2019-10-11 14:11:56 +00:00
|
|
|
return _SUCCESS;
|
2017-04-13 13:43:33 +00:00
|
|
|
case 'v':
|
2018-10-18 17:30:15 +00:00
|
|
|
fprintf(stdout, "%s\n", VERSION);
|
2019-06-28 15:42:43 +00:00
|
|
|
return _SUCCESS;
|
2018-11-28 02:48:01 +00:00
|
|
|
case 'h':
|
|
|
|
usage();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _SUCCESS;
|
2017-04-01 05:18:18 +00:00
|
|
|
default:
|
|
|
|
usage();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2017-03-30 20:04:41 +00:00
|
|
|
}
|
2017-04-01 05:18:18 +00:00
|
|
|
}
|
|
|
|
|
2018-12-17 12:35:36 +00:00
|
|
|
/* Confirm we are in a terminal */
|
2019-08-19 15:42:42 +00:00
|
|
|
if (!cfg.picker && !(isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)))
|
2019-04-15 13:39:28 +00:00
|
|
|
exit(1);
|
2018-12-17 12:35:36 +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
|
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
atexit(cleanup);
|
|
|
|
|
2019-03-20 18:22:08 +00:00
|
|
|
home = getenv("HOME");
|
2019-04-21 18:29:51 +00:00
|
|
|
if (!home) {
|
|
|
|
fprintf(stderr, "set HOME\n");
|
2019-06-28 15:42:43 +00:00
|
|
|
return _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())
|
2019-06-28 15:42:43 +00:00
|
|
|
return _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 */
|
2019-08-14 14:27:44 +00:00
|
|
|
if (!parsekvpair(bookmark, &bmstr, env_cfg[NNN_BMS], BM_MAX)) {
|
2019-03-09 03:43:36 +00:00
|
|
|
fprintf(stderr, "%s\n", env_cfg[NNN_BMS]);
|
2019-06-28 15:42:43 +00:00
|
|
|
return _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 */
|
|
|
|
if (!parsekvpair(plug, &pluginstr, "NNN_PLUG", PLUGIN_MAX)) {
|
|
|
|
fprintf(stderr, "%s\n", "NNN_PLUG");
|
|
|
|
return _FAILURE;
|
|
|
|
}
|
2019-08-13 19:28:33 +00:00
|
|
|
|
2019-04-23 03:20:25 +00:00
|
|
|
if (arg) { /* Open a bookmark directly */
|
2019-10-24 03:14:36 +00:00
|
|
|
if (!arg[1]) /* Bookmarks keys are single char */
|
|
|
|
initpath = get_kv_val(bookmark, NULL, *arg, BM_MAX, TRUE);
|
|
|
|
|
|
|
|
if (!initpath) {
|
2019-11-22 15:00:13 +00:00
|
|
|
fprintf(stderr, "%s\n", messages[MSG_INVBM_KEY]);
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2017-12-24 09:51:38 +00:00
|
|
|
}
|
|
|
|
} else if (argc == optind) {
|
2017-04-01 05:18:18 +00:00
|
|
|
/* Start in the current directory */
|
2019-04-23 03:20:25 +00:00
|
|
|
initpath = getcwd(NULL, PATH_MAX);
|
|
|
|
if (!initpath)
|
|
|
|
initpath = "/";
|
2017-04-01 05:18:18 +00:00
|
|
|
} else {
|
2019-04-23 03:20:25 +00:00
|
|
|
arg = argv[optind];
|
2019-10-14 22:47:12 +00:00
|
|
|
if (strlen(arg) > 7 && !strncmp(arg, "file://", 7))
|
2019-04-23 03:20:25 +00:00
|
|
|
arg = arg + 7;
|
|
|
|
initpath = realpath(arg, NULL);
|
|
|
|
DPRINTF_S(initpath);
|
|
|
|
if (!initpath) {
|
2019-03-09 03:43:36 +00:00
|
|
|
xerror();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2017-04-01 05:18:18 +00:00
|
|
|
}
|
2019-05-15 03:44:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If nnn is set as the file manager, applications may try to open
|
|
|
|
* files by invoking nnn. In that case pass the file path to the
|
|
|
|
* desktop opener and exit.
|
|
|
|
*/
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (stat(initpath, &sb) == -1) {
|
|
|
|
xerror();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2019-05-15 03:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (S_ISREG(sb.st_mode)) {
|
2019-10-30 14:47:31 +00:00
|
|
|
spawn(opener, arg, NULL, NULL, F_NOWAIT);
|
2019-06-28 15:42:43 +00:00
|
|
|
return _SUCCESS;
|
2019-05-15 03:44:28 +00:00
|
|
|
}
|
2014-10-21 10:29:41 +00:00
|
|
|
}
|
|
|
|
|
2019-10-02 22:03:15 +00:00
|
|
|
/* Edit text in EDITOR if opted (and opener is not all-CLI) */
|
|
|
|
if (!cfg.cliopener && xgetenv_set(env_cfg[NNN_USE_EDITOR]))
|
2018-12-01 02:12:37 +00:00
|
|
|
cfg.useeditor = 1;
|
|
|
|
|
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
|
|
|
|
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();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _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();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2017-08-21 16:33:26 +00:00
|
|
|
}
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
|
|
|
|
2019-12-02 14:04:41 +00:00
|
|
|
/* Set nnn nesting level */
|
|
|
|
setenv(env_cfg[NNNLVL], xitoa(xatoi(getenv(env_cfg[NNNLVL])) + 1), 1);
|
2019-02-06 17:29:33 +00:00
|
|
|
|
2019-01-24 17:04:28 +00:00
|
|
|
/* Get locker wait time, if set */
|
|
|
|
idletimeout = xatoi(getenv(env_cfg[NNN_IDLE_TIMEOUT]));
|
|
|
|
DPRINTF_U(idletimeout);
|
2017-06-04 18:46:43 +00:00
|
|
|
|
2019-04-24 15:01:52 +00:00
|
|
|
if (xgetenv_set(env_cfg[NNN_TRASH]))
|
2019-03-02 11:23:16 +00:00
|
|
|
cfg.trash = 1;
|
2019-03-02 09:07:57 +00:00
|
|
|
|
2019-04-21 18:29:51 +00:00
|
|
|
/* Prefix for temporary files */
|
|
|
|
if (!set_tmp_path())
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2018-03-04 05:07:18 +00:00
|
|
|
|
2019-03-07 15:44:43 +00:00
|
|
|
/* Get the clipboard copier, if set */
|
|
|
|
copier = getenv(env_cfg[NNN_COPIER]);
|
|
|
|
|
2019-02-25 14:07:23 +00:00
|
|
|
#ifdef __linux__
|
2019-08-23 14:48:17 +00:00
|
|
|
if (!progress) {
|
2019-02-25 14:07:23 +00:00
|
|
|
cp[5] = cp[4];
|
|
|
|
cp[2] = cp[4] = ' ';
|
|
|
|
|
|
|
|
mv[5] = mv[4];
|
|
|
|
mv[2] = mv[4] = ' ';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-08 18:38:46 +00:00
|
|
|
/* Ignore/handle certain signals */
|
2019-03-09 03:43:36 +00:00
|
|
|
struct sigaction act = {.sa_handler = sigint_handler};
|
2019-03-09 08:06:14 +00:00
|
|
|
|
2019-02-08 18:38:46 +00:00
|
|
|
if (sigaction(SIGINT, &act, NULL) < 0) {
|
2019-03-09 03:43:36 +00:00
|
|
|
xerror();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2019-02-08 18:38:46 +00:00
|
|
|
}
|
2018-11-11 21:44:43 +00:00
|
|
|
signal(SIGQUIT, SIG_IGN);
|
2015-11-03 17:48:39 +00:00
|
|
|
|
2014-10-07 06:05:30 +00:00
|
|
|
/* Test initial path */
|
2019-04-23 03:20:25 +00:00
|
|
|
if (!xdiraccess(initpath)) {
|
2019-03-09 03:43:36 +00:00
|
|
|
xerror();
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2015-11-26 15:54:54 +00:00
|
|
|
}
|
2014-10-07 06:05:30 +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, "");
|
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
|
2019-08-23 13:40:48 +00:00
|
|
|
mkpath(cfgdir, ".history", g_buf);
|
|
|
|
read_history(g_buf);
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-01-24 06:35:13 +00:00
|
|
|
|
2019-08-24 14:14:49 +00:00
|
|
|
if (!initcurses(&mask))
|
2019-06-28 15:42:43 +00:00
|
|
|
return _FAILURE;
|
2018-12-08 09:58:55 +00:00
|
|
|
|
2019-10-18 22:11:39 +00:00
|
|
|
browse(initpath, session);
|
2019-08-24 14:14:49 +00:00
|
|
|
mousemask(mask, NULL);
|
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
|
2019-08-23 13:40:48 +00:00
|
|
|
mkpath(cfgdir, ".history", g_buf);
|
|
|
|
write_history(g_buf);
|
2019-02-22 00:05:26 +00:00
|
|
|
#endif
|
2019-01-24 06:35:13 +00:00
|
|
|
|
2018-11-23 17:42:13 +00:00
|
|
|
if (cfg.pickraw) {
|
2019-09-08 08:53:00 +00:00
|
|
|
if (selbufpos) {
|
2019-09-29 05:57:42 +00:00
|
|
|
opt = seltofile(1, NULL);
|
2019-09-08 08:53:00 +00:00
|
|
|
if (opt != (int)(selbufpos))
|
2019-03-09 03:43:36 +00:00
|
|
|
xerror();
|
2018-11-23 19:10:03 +00:00
|
|
|
}
|
2019-11-20 19:26:55 +00:00
|
|
|
} else if (cfg.picker) {
|
|
|
|
if (selbufpos)
|
|
|
|
writesel(pselbuf, selbufpos - 1);
|
2019-09-29 05:57:42 +00:00
|
|
|
} else if (!cfg.picker && g_selpath)
|
|
|
|
unlink(g_selpath);
|
2018-09-06 00:13:14 +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);
|
2017-08-20 20:48:14 +00:00
|
|
|
#endif
|
2017-08-21 16:33:26 +00:00
|
|
|
|
2019-06-28 15:42:43 +00:00
|
|
|
return _SUCCESS;
|
2014-10-07 06:05:30 +00:00
|
|
|
}
|