2020-02-02 00:37:48 +00:00
|
|
|
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-06-08 21:48:07 +00:00
|
|
|
*
|
|
|
|
* Additional permission under GNU GPL version 3 section 7:
|
|
|
|
*
|
|
|
|
* If you modify this Program, or any covered work, by linking or
|
2020-08-04 16:19:14 +00:00
|
|
|
* combining it with OpenSSL (or a modified version of that library),
|
2020-06-08 21:48:07 +00:00
|
|
|
* containing parts covered by the terms of the OpenSSL License and the
|
|
|
|
* original SSLeay license, the licensors of this Program grant you
|
|
|
|
* additional permission to convey the resulting work. Corresponding
|
|
|
|
* Source for a non-source form of such a combination shall include the
|
2020-08-04 16:19:14 +00:00
|
|
|
* source code for the parts of OpenSSL used as well as that of the
|
2020-06-08 21:48:07 +00:00
|
|
|
* covered work.
|
2020-02-02 00:37:48 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
#define _XOPEN_SOURCE_EXTENDED
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <assert.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <ctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <curses.h>
|
|
|
|
#include <err.h>
|
2020-02-11 00:40:13 +00:00
|
|
|
#include <errno.h>
|
2021-06-12 01:09:46 +00:00
|
|
|
#include <fcntl.h>
|
2020-04-02 14:47:17 +00:00
|
|
|
#include <limits.h>
|
2020-02-11 02:09:32 +00:00
|
|
|
#include <signal.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <string.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <sysexits.h>
|
2020-02-02 23:39:08 +00:00
|
|
|
#include <term.h>
|
2020-02-03 00:34:35 +00:00
|
|
|
#include <termios.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <time.h>
|
2020-02-03 00:34:35 +00:00
|
|
|
#include <unistd.h>
|
2020-02-02 06:54:51 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <wctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
|
2021-06-24 22:07:30 +00:00
|
|
|
#ifdef __FreeBSD__
|
2021-06-28 13:11:02 +00:00
|
|
|
#include <capsicum_helpers.h>
|
2021-06-24 22:07:30 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
#include "chat.h"
|
|
|
|
|
2020-02-05 07:03:21 +00:00
|
|
|
// Annoying stuff from <term.h>:
|
|
|
|
#undef lines
|
2020-02-11 01:44:37 +00:00
|
|
|
#undef tab
|
2020-02-05 07:03:21 +00:00
|
|
|
|
2020-05-25 17:51:09 +00:00
|
|
|
enum {
|
|
|
|
StatusLines = 1,
|
|
|
|
MarkerLines = 1,
|
|
|
|
SplitLines = 5,
|
|
|
|
InputLines = 1,
|
|
|
|
InputCols = 1024,
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
#define BOTTOM (LINES - 1)
|
|
|
|
#define RIGHT (COLS - 1)
|
2020-05-25 17:51:09 +00:00
|
|
|
#define MAIN_LINES (LINES - StatusLines - InputLines)
|
2020-02-02 00:37:48 +00:00
|
|
|
|
|
|
|
static WINDOW *status;
|
2020-09-02 04:27:16 +00:00
|
|
|
static WINDOW *main;
|
2020-02-02 00:37:48 +00:00
|
|
|
static WINDOW *input;
|
|
|
|
|
|
|
|
struct Window {
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id;
|
2020-02-10 06:59:08 +00:00
|
|
|
int scroll;
|
2020-02-09 17:13:51 +00:00
|
|
|
bool mark;
|
2020-04-15 20:18:09 +00:00
|
|
|
bool mute;
|
2021-01-27 05:15:46 +00:00
|
|
|
bool time;
|
2021-01-16 17:58:16 +00:00
|
|
|
enum Heat thresh;
|
2020-02-02 00:37:48 +00:00
|
|
|
enum Heat heat;
|
2020-04-07 15:06:29 +00:00
|
|
|
uint unreadSoft;
|
2020-09-02 00:56:09 +00:00
|
|
|
uint unreadHard;
|
2020-02-16 03:19:55 +00:00
|
|
|
uint unreadWarm;
|
2020-09-02 00:35:17 +00:00
|
|
|
struct Buffer *buffer;
|
2020-02-02 00:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *ptrs[IDCap];
|
2020-02-16 03:19:55 +00:00
|
|
|
uint len;
|
2020-02-17 04:05:43 +00:00
|
|
|
uint show;
|
|
|
|
uint swap;
|
2020-04-20 01:13:02 +00:00
|
|
|
uint user;
|
2020-02-02 00:37:48 +00:00
|
|
|
} windows;
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static uint windowPush(struct Window *window) {
|
2020-02-13 10:05:53 +00:00
|
|
|
assert(windows.len < IDCap);
|
|
|
|
windows.ptrs[windows.len] = window;
|
|
|
|
return windows.len++;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static uint windowInsert(uint num, struct Window *window) {
|
2020-02-13 10:05:53 +00:00
|
|
|
assert(windows.len < IDCap);
|
|
|
|
assert(num <= windows.len);
|
|
|
|
memmove(
|
|
|
|
&windows.ptrs[num + 1],
|
|
|
|
&windows.ptrs[num],
|
|
|
|
sizeof(*windows.ptrs) * (windows.len - num)
|
|
|
|
);
|
|
|
|
windows.ptrs[num] = window;
|
|
|
|
windows.len++;
|
|
|
|
return num;
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static struct Window *windowRemove(uint num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
assert(num < windows.len);
|
|
|
|
struct Window *window = windows.ptrs[num];
|
|
|
|
windows.len--;
|
|
|
|
memmove(
|
|
|
|
&windows.ptrs[num],
|
|
|
|
&windows.ptrs[num + 1],
|
|
|
|
sizeof(*windows.ptrs) * (windows.len - num)
|
|
|
|
);
|
|
|
|
return window;
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2021-07-17 20:04:15 +00:00
|
|
|
enum Heat uiThreshold = Cold;
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static uint windowFor(uint id) {
|
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
if (windows.ptrs[num]->id == id) return num;
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = calloc(1, sizeof(*window));
|
2020-02-02 00:37:48 +00:00
|
|
|
if (!window) err(EX_OSERR, "malloc");
|
|
|
|
window->id = id;
|
2020-02-05 07:03:21 +00:00
|
|
|
window->mark = true;
|
2021-01-27 05:15:46 +00:00
|
|
|
window->time = uiTime.enable;
|
2021-07-17 20:04:15 +00:00
|
|
|
window->thresh = uiThreshold;
|
2020-09-02 00:35:17 +00:00
|
|
|
window->buffer = bufferAlloc();
|
2021-03-02 19:45:01 +00:00
|
|
|
completeAdd(None, idNames[id], idColors[id]);
|
2020-02-13 10:05:53 +00:00
|
|
|
return windowPush(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void windowFree(struct Window *window) {
|
2021-03-02 19:45:01 +00:00
|
|
|
completeRemove(None, idNames[window->id]);
|
2020-09-02 00:35:17 +00:00
|
|
|
bufferFree(window->buffer);
|
2020-02-13 10:05:53 +00:00
|
|
|
free(window);
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
2020-02-03 00:38:37 +00:00
|
|
|
|
|
|
|
static short colorPairs;
|
|
|
|
|
|
|
|
static void colorInit(void) {
|
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
2020-02-12 04:01:38 +00:00
|
|
|
if (!COLORS) return;
|
2020-02-03 00:38:37 +00:00
|
|
|
for (short pair = 0; pair < 16; ++pair) {
|
|
|
|
init_pair(1 + pair, pair % COLORS, -1);
|
|
|
|
}
|
|
|
|
colorPairs = 17;
|
|
|
|
}
|
|
|
|
|
|
|
|
static attr_t colorAttr(short fg) {
|
2020-02-12 04:01:38 +00:00
|
|
|
if (!COLORS) return (fg > 0 ? A_BOLD : A_NORMAL);
|
2020-02-10 10:33:31 +00:00
|
|
|
if (fg != COLOR_BLACK && fg % COLORS == COLOR_BLACK) return A_BOLD;
|
|
|
|
if (COLORS > 8) return A_NORMAL;
|
|
|
|
return (fg / COLORS & 1 ? A_BOLD : A_NORMAL);
|
2020-02-03 00:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static short colorPair(short fg, short bg) {
|
2020-02-12 04:01:38 +00:00
|
|
|
if (!COLORS) return 0;
|
2020-02-05 09:24:13 +00:00
|
|
|
fg %= COLORS;
|
|
|
|
bg %= COLORS;
|
2020-02-10 10:33:31 +00:00
|
|
|
if (bg == -1 && fg < 16) return 1 + fg;
|
2020-02-03 00:38:37 +00:00
|
|
|
for (short pair = 17; pair < colorPairs; ++pair) {
|
|
|
|
short f, b;
|
|
|
|
pair_content(pair, &f, &b);
|
|
|
|
if (f == fg && b == bg) return pair;
|
|
|
|
}
|
2020-02-05 09:24:13 +00:00
|
|
|
init_pair(colorPairs, fg, bg);
|
2020-02-03 00:38:37 +00:00
|
|
|
return colorPairs++;
|
|
|
|
}
|
2020-02-02 00:37:48 +00:00
|
|
|
|
2020-02-08 01:41:27 +00:00
|
|
|
#define ENUM_KEY \
|
2021-03-07 23:18:37 +00:00
|
|
|
X(KeyCtrlLeft, "\33[1;5D", NULL) \
|
|
|
|
X(KeyCtrlRight, "\33[1;5C", NULL) \
|
2020-02-17 17:27:07 +00:00
|
|
|
X(KeyMeta0, "\0330", "\33)") \
|
|
|
|
X(KeyMeta1, "\0331", "\33!") \
|
|
|
|
X(KeyMeta2, "\0332", "\33@") \
|
|
|
|
X(KeyMeta3, "\0333", "\33#") \
|
|
|
|
X(KeyMeta4, "\0334", "\33$") \
|
|
|
|
X(KeyMeta5, "\0335", "\33%") \
|
|
|
|
X(KeyMeta6, "\0336", "\33^") \
|
|
|
|
X(KeyMeta7, "\0337", "\33&") \
|
|
|
|
X(KeyMeta8, "\0338", "\33*") \
|
|
|
|
X(KeyMeta9, "\0339", "\33(") \
|
|
|
|
X(KeyMetaA, "\33a", NULL) \
|
|
|
|
X(KeyMetaB, "\33b", NULL) \
|
|
|
|
X(KeyMetaD, "\33d", NULL) \
|
|
|
|
X(KeyMetaF, "\33f", NULL) \
|
|
|
|
X(KeyMetaL, "\33l", NULL) \
|
|
|
|
X(KeyMetaM, "\33m", NULL) \
|
2020-09-03 20:37:31 +00:00
|
|
|
X(KeyMetaN, "\33n", NULL) \
|
|
|
|
X(KeyMetaP, "\33p", NULL) \
|
2020-04-07 14:48:44 +00:00
|
|
|
X(KeyMetaQ, "\33q", NULL) \
|
2021-01-27 05:15:46 +00:00
|
|
|
X(KeyMetaT, "\33t", NULL) \
|
2020-02-17 17:27:07 +00:00
|
|
|
X(KeyMetaU, "\33u", NULL) \
|
|
|
|
X(KeyMetaV, "\33v", NULL) \
|
2020-03-23 19:03:55 +00:00
|
|
|
X(KeyMetaEnter, "\33\r", "\33\n") \
|
2020-04-07 18:09:29 +00:00
|
|
|
X(KeyMetaGt, "\33>", "\33.") \
|
|
|
|
X(KeyMetaLt, "\33<", "\33,") \
|
2021-01-16 17:58:16 +00:00
|
|
|
X(KeyMetaEqual, "\33=", NULL) \
|
2020-03-31 18:31:10 +00:00
|
|
|
X(KeyMetaMinus, "\33-", "\33_") \
|
2021-01-16 17:58:16 +00:00
|
|
|
X(KeyMetaPlus, "\33+", NULL) \
|
2020-04-15 20:18:09 +00:00
|
|
|
X(KeyMetaSlash, "\33/", "\33?") \
|
2020-02-17 17:27:07 +00:00
|
|
|
X(KeyFocusIn, "\33[I", NULL) \
|
|
|
|
X(KeyFocusOut, "\33[O", NULL) \
|
|
|
|
X(KeyPasteOn, "\33[200~", NULL) \
|
2021-02-16 00:07:56 +00:00
|
|
|
X(KeyPasteOff, "\33[201~", NULL) \
|
|
|
|
X(KeyPasteManual, "\32p", "\32\20")
|
2020-02-08 01:41:27 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
KeyMax = KEY_MAX,
|
2020-02-17 17:27:07 +00:00
|
|
|
#define X(id, seq, alt) id,
|
2020-02-08 01:41:27 +00:00
|
|
|
ENUM_KEY
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
2020-02-19 06:18:09 +00:00
|
|
|
// XXX: Assuming terminals will be fine with these even if they're unsupported,
|
|
|
|
// since they're "private" modes.
|
2021-02-15 23:59:17 +00:00
|
|
|
static const char *FocusMode[2] = { "\33[?1004l", "\33[?1004h" };
|
|
|
|
static const char *PasteMode[2] = { "\33[?2004l", "\33[?2004h" };
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2021-01-27 19:18:20 +00:00
|
|
|
struct Time uiTime = { .format = "%X" };
|
|
|
|
|
2020-02-19 06:18:09 +00:00
|
|
|
static void errExit(void) {
|
2021-02-15 23:59:17 +00:00
|
|
|
putp(FocusMode[false]);
|
|
|
|
putp(PasteMode[false]);
|
2020-02-19 06:18:09 +00:00
|
|
|
reset_shell_mode();
|
|
|
|
}
|
|
|
|
|
2020-10-12 23:25:08 +00:00
|
|
|
void uiInitEarly(void) {
|
2020-02-02 00:37:48 +00:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
2020-02-08 07:13:02 +00:00
|
|
|
colorInit();
|
2020-10-12 23:25:08 +00:00
|
|
|
atexit(errExit);
|
2020-02-03 00:34:35 +00:00
|
|
|
|
2021-02-27 21:28:21 +00:00
|
|
|
#ifndef A_ITALIC
|
|
|
|
#define A_ITALIC A_BLINK
|
|
|
|
// Force ncurses to use individual enter_attr_mode strings:
|
|
|
|
set_attributes = NULL;
|
|
|
|
enter_blink_mode = enter_italics_mode;
|
|
|
|
#endif
|
|
|
|
|
2020-02-02 23:39:08 +00:00
|
|
|
if (!to_status_line && !strncmp(termname(), "xterm", 5)) {
|
|
|
|
to_status_line = "\33]2;";
|
|
|
|
from_status_line = "\7";
|
|
|
|
}
|
2020-02-08 07:13:02 +00:00
|
|
|
|
2020-02-17 17:27:07 +00:00
|
|
|
#define X(id, seq, alt) define_key(seq, id); if (alt) define_key(alt, id);
|
2020-02-08 01:41:27 +00:00
|
|
|
ENUM_KEY
|
|
|
|
#undef X
|
2020-02-02 23:39:08 +00:00
|
|
|
|
2020-05-25 17:51:09 +00:00
|
|
|
status = newwin(StatusLines, COLS, 0, 0);
|
2020-02-08 07:13:02 +00:00
|
|
|
if (!status) err(EX_OSERR, "newwin");
|
|
|
|
|
2020-09-02 04:27:16 +00:00
|
|
|
main = newwin(MAIN_LINES, COLS, StatusLines, 0);
|
|
|
|
if (!main) err(EX_OSERR, "newwin");
|
2020-02-09 16:50:56 +00:00
|
|
|
|
2021-01-27 19:45:03 +00:00
|
|
|
int y;
|
|
|
|
char buf[TimeCap];
|
|
|
|
struct tm *time = localtime(&(time_t) { -22100400 });
|
|
|
|
size_t len = strftime(buf, sizeof(buf), uiTime.format, time);
|
|
|
|
if (!len) errx(EX_CONFIG, "invalid timestamp format: %s", uiTime.format);
|
|
|
|
waddstr(main, buf);
|
|
|
|
waddch(main, ' ');
|
|
|
|
getyx(main, y, uiTime.width);
|
|
|
|
(void)y;
|
|
|
|
|
2020-05-25 17:51:09 +00:00
|
|
|
input = newpad(InputLines, InputCols);
|
2020-02-08 07:13:02 +00:00
|
|
|
if (!input) err(EX_OSERR, "newpad");
|
2020-02-02 00:37:48 +00:00
|
|
|
keypad(input, true);
|
|
|
|
nodelay(input, true);
|
2020-02-08 07:13:02 +00:00
|
|
|
|
2020-02-13 10:05:53 +00:00
|
|
|
windowFor(Network);
|
2020-02-04 08:58:56 +00:00
|
|
|
uiShow();
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 23:25:08 +00:00
|
|
|
// Avoid disabling VINTR until main loop.
|
|
|
|
void uiInitLate(void) {
|
|
|
|
struct termios term;
|
|
|
|
int error = tcgetattr(STDOUT_FILENO, &term);
|
|
|
|
if (error) err(EX_OSERR, "tcgetattr");
|
|
|
|
|
|
|
|
// Gain use of C-q, C-s, C-c, C-z, C-y, C-v, C-o.
|
|
|
|
term.c_iflag &= ~IXON;
|
|
|
|
term.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
|
|
term.c_cc[VSUSP] = _POSIX_VDISABLE;
|
|
|
|
#ifdef VDSUSP
|
|
|
|
term.c_cc[VDSUSP] = _POSIX_VDISABLE;
|
|
|
|
#endif
|
|
|
|
term.c_cc[VLNEXT] = _POSIX_VDISABLE;
|
|
|
|
term.c_cc[VDISCARD] = _POSIX_VDISABLE;
|
|
|
|
|
|
|
|
error = tcsetattr(STDOUT_FILENO, TCSANOW, &term);
|
|
|
|
if (error) err(EX_OSERR, "tcsetattr");
|
|
|
|
|
|
|
|
def_prog_mode();
|
|
|
|
}
|
|
|
|
|
2020-02-14 03:32:35 +00:00
|
|
|
static bool hidden = true;
|
2020-02-11 03:05:02 +00:00
|
|
|
static bool waiting;
|
|
|
|
|
2020-02-11 02:24:30 +00:00
|
|
|
static char title[256];
|
2020-02-11 03:05:02 +00:00
|
|
|
static char prevTitle[sizeof(title)];
|
2020-02-11 02:24:30 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
void uiDraw(void) {
|
2020-02-09 19:09:27 +00:00
|
|
|
if (hidden) return;
|
2020-02-02 00:37:48 +00:00
|
|
|
wnoutrefresh(status);
|
2020-09-02 04:27:16 +00:00
|
|
|
wnoutrefresh(main);
|
2020-02-05 23:18:25 +00:00
|
|
|
int y, x;
|
|
|
|
getyx(input, y, x);
|
2020-02-02 00:37:48 +00:00
|
|
|
pnoutrefresh(
|
|
|
|
input,
|
2020-02-08 01:28:22 +00:00
|
|
|
0, (x + 1 > RIGHT ? x + 1 - RIGHT : 0),
|
2020-05-25 17:51:09 +00:00
|
|
|
LINES - InputLines, 0,
|
2020-02-02 00:37:48 +00:00
|
|
|
BOTTOM, RIGHT
|
|
|
|
);
|
2020-02-11 08:47:30 +00:00
|
|
|
(void)y;
|
2020-02-02 00:37:48 +00:00
|
|
|
doupdate();
|
2020-02-11 02:34:23 +00:00
|
|
|
|
2020-02-11 03:05:02 +00:00
|
|
|
if (!to_status_line) return;
|
2020-02-11 02:34:23 +00:00
|
|
|
if (!strcmp(title, prevTitle)) return;
|
|
|
|
strcpy(prevTitle, title);
|
2020-02-11 02:24:30 +00:00
|
|
|
putp(to_status_line);
|
|
|
|
putp(title);
|
|
|
|
putp(from_status_line);
|
|
|
|
fflush(stdout);
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 22:43:36 +00:00
|
|
|
static const short Colors[ColorCap] = {
|
2020-02-10 09:17:07 +00:00
|
|
|
[Default] = -1,
|
|
|
|
[White] = 8 + COLOR_WHITE,
|
|
|
|
[Black] = 0 + COLOR_BLACK,
|
|
|
|
[Blue] = 0 + COLOR_BLUE,
|
|
|
|
[Green] = 0 + COLOR_GREEN,
|
|
|
|
[Red] = 8 + COLOR_RED,
|
|
|
|
[Brown] = 0 + COLOR_RED,
|
|
|
|
[Magenta] = 0 + COLOR_MAGENTA,
|
|
|
|
[Orange] = 0 + COLOR_YELLOW,
|
|
|
|
[Yellow] = 8 + COLOR_YELLOW,
|
|
|
|
[LightGreen] = 8 + COLOR_GREEN,
|
|
|
|
[Cyan] = 0 + COLOR_CYAN,
|
|
|
|
[LightCyan] = 8 + COLOR_CYAN,
|
|
|
|
[LightBlue] = 8 + COLOR_BLUE,
|
|
|
|
[Pink] = 8 + COLOR_MAGENTA,
|
|
|
|
[Gray] = 8 + COLOR_BLACK,
|
|
|
|
[LightGray] = 0 + COLOR_WHITE,
|
|
|
|
52, 94, 100, 58, 22, 29, 23, 24, 17, 54, 53, 89,
|
|
|
|
88, 130, 142, 64, 28, 35, 30, 25, 18, 91, 90, 125,
|
|
|
|
124, 166, 184, 106, 34, 49, 37, 33, 19, 129, 127, 161,
|
|
|
|
196, 208, 226, 154, 46, 86, 51, 75, 21, 171, 201, 198,
|
|
|
|
203, 215, 227, 191, 83, 122, 87, 111, 63, 177, 207, 205,
|
|
|
|
217, 223, 229, 193, 157, 158, 159, 153, 147, 183, 219, 212,
|
|
|
|
16, 233, 235, 237, 239, 241, 244, 247, 250, 254, 231,
|
|
|
|
};
|
2020-02-02 02:57:11 +00:00
|
|
|
|
2020-09-01 22:05:17 +00:00
|
|
|
static attr_t styleAttr(struct Style style) {
|
|
|
|
attr_t attr = A_NORMAL;
|
|
|
|
if (style.attr & Bold) attr |= A_BOLD;
|
|
|
|
if (style.attr & Reverse) attr |= A_REVERSE;
|
|
|
|
if (style.attr & Italic) attr |= A_ITALIC;
|
|
|
|
if (style.attr & Underline) attr |= A_UNDERLINE;
|
|
|
|
return attr | colorAttr(Colors[style.fg]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static short stylePair(struct Style style) {
|
|
|
|
return colorPair(Colors[style.fg], Colors[style.bg]);
|
2020-02-02 02:57:11 +00:00
|
|
|
}
|
|
|
|
|
Avoid writing past the end of the status bar
When waddnstr is called with a string that would extend past the
end of the window, the string is truncated, the cursor remains at
the last column, and ERR is returned. If this error is ignored and
the loop continues, the next call to waddnstr overwrites the character
at this column, resulting in a slight visual artifact. When the
window is too small to fit the full status line, it is effectively
truncated by one space on the right, since the string shown for
each channel begins with a space. Additionally, if the last window
is the current window, the space is shown with a colored background.
To fix this, when waddnstr returns ERR, exit the loop in styleAdd()
early return -1 to propogate this error down to the caller.
2021-06-05 05:14:44 +00:00
|
|
|
static int styleAdd(WINDOW *win, const char *str) {
|
2020-09-01 22:05:17 +00:00
|
|
|
struct Style style = StyleDefault;
|
2020-02-02 02:57:11 +00:00
|
|
|
while (*str) {
|
2020-02-19 06:18:09 +00:00
|
|
|
size_t len = styleParse(&style, &str);
|
2020-09-02 04:27:16 +00:00
|
|
|
wattr_set(win, styleAttr(style), stylePair(style), NULL);
|
Avoid writing past the end of the status bar
When waddnstr is called with a string that would extend past the
end of the window, the string is truncated, the cursor remains at
the last column, and ERR is returned. If this error is ignored and
the loop continues, the next call to waddnstr overwrites the character
at this column, resulting in a slight visual artifact. When the
window is too small to fit the full status line, it is effectively
truncated by one space on the right, since the string shown for
each channel begins with a space. Additionally, if the last window
is the current window, the space is shown with a colored background.
To fix this, when waddnstr returns ERR, exit the loop in styleAdd()
early return -1 to propogate this error down to the caller.
2021-06-05 05:14:44 +00:00
|
|
|
if (waddnstr(win, str, len) == ERR)
|
|
|
|
return -1;
|
2020-02-02 02:57:11 +00:00
|
|
|
str += len;
|
|
|
|
}
|
Avoid writing past the end of the status bar
When waddnstr is called with a string that would extend past the
end of the window, the string is truncated, the cursor remains at
the last column, and ERR is returned. If this error is ignored and
the loop continues, the next call to waddnstr overwrites the character
at this column, resulting in a slight visual artifact. When the
window is too small to fit the full status line, it is effectively
truncated by one space on the right, since the string shown for
each channel begins with a space. Additionally, if the last window
is the current window, the space is shown with a colored background.
To fix this, when waddnstr returns ERR, exit the loop in styleAdd()
early return -1 to propogate this error down to the caller.
2021-06-05 05:14:44 +00:00
|
|
|
return 0;
|
2020-02-02 02:57:11 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 08:13:50 +00:00
|
|
|
static void statusUpdate(void) {
|
2020-02-19 06:18:09 +00:00
|
|
|
struct {
|
|
|
|
uint unread;
|
|
|
|
enum Heat heat;
|
|
|
|
} others = { 0, Cold };
|
2020-02-10 22:54:16 +00:00
|
|
|
|
2020-02-19 06:18:09 +00:00
|
|
|
wmove(status, 0, 0);
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
const struct Window *window = windows.ptrs[num];
|
2020-07-12 13:38:52 +00:00
|
|
|
if (num != windows.show && !window->scroll) {
|
2020-04-15 20:18:09 +00:00
|
|
|
if (window->heat < Warm) continue;
|
|
|
|
if (window->mute && window->heat < Hot) continue;
|
|
|
|
}
|
2020-02-13 10:05:53 +00:00
|
|
|
if (num != windows.show) {
|
2020-02-19 06:18:09 +00:00
|
|
|
others.unread += window->unreadWarm;
|
|
|
|
if (window->heat > others.heat) others.heat = window->heat;
|
2020-02-10 22:54:16 +00:00
|
|
|
}
|
2021-06-07 04:09:58 +00:00
|
|
|
char buf[256], *end = &buf[sizeof(buf)];
|
|
|
|
char *ptr = seprintf(
|
|
|
|
buf, end, "\3%d%s %u%s%s %s ",
|
2021-01-28 03:52:36 +00:00
|
|
|
idColors[window->id], (num == windows.show ? "\26" : ""),
|
|
|
|
num, window->thresh[(const char *[]) { "-", "", "+", "++" }],
|
|
|
|
&"="[!window->mute], idNames[window->id]
|
2020-02-02 08:13:50 +00:00
|
|
|
);
|
2020-05-24 16:34:23 +00:00
|
|
|
if (window->mark && window->unreadWarm) {
|
2021-06-07 04:09:58 +00:00
|
|
|
ptr = seprintf(
|
|
|
|
ptr, end, "\3%d+%d\3%d%s",
|
2020-05-24 16:34:23 +00:00
|
|
|
(window->heat > Warm ? White : idColors[window->id]),
|
|
|
|
window->unreadWarm, idColors[window->id],
|
|
|
|
(window->scroll ? "" : " ")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (window->scroll) {
|
2021-06-07 04:09:58 +00:00
|
|
|
ptr = seprintf(ptr, end, "~%d ", window->scroll);
|
2020-04-06 18:34:32 +00:00
|
|
|
}
|
Avoid writing past the end of the status bar
When waddnstr is called with a string that would extend past the
end of the window, the string is truncated, the cursor remains at
the last column, and ERR is returned. If this error is ignored and
the loop continues, the next call to waddnstr overwrites the character
at this column, resulting in a slight visual artifact. When the
window is too small to fit the full status line, it is effectively
truncated by one space on the right, since the string shown for
each channel begins with a space. Additionally, if the last window
is the current window, the space is shown with a colored background.
To fix this, when waddnstr returns ERR, exit the loop in styleAdd()
early return -1 to propogate this error down to the caller.
2021-06-05 05:14:44 +00:00
|
|
|
if (styleAdd(status, buf) < 0) break;
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
|
|
|
wclrtoeol(status);
|
2020-02-02 22:57:07 +00:00
|
|
|
|
2020-02-13 10:05:53 +00:00
|
|
|
const struct Window *window = windows.ptrs[windows.show];
|
2021-06-07 04:09:58 +00:00
|
|
|
char *end = &title[sizeof(title)];
|
|
|
|
char *ptr = seprintf(
|
|
|
|
title, end, "%s %s", network.name, idNames[window->id]
|
|
|
|
);
|
2020-02-14 10:00:26 +00:00
|
|
|
if (window->mark && window->unreadWarm) {
|
2021-06-07 04:09:58 +00:00
|
|
|
ptr = seprintf(
|
|
|
|
ptr, end, " +%d%s", window->unreadWarm, &"!"[window->heat < Hot]
|
|
|
|
);
|
2020-02-10 22:54:16 +00:00
|
|
|
}
|
2020-02-19 06:18:09 +00:00
|
|
|
if (others.unread) {
|
2021-06-07 04:09:58 +00:00
|
|
|
ptr = seprintf(
|
|
|
|
ptr, end, " (+%d%s)", others.unread, &"!"[others.heat < Hot]
|
|
|
|
);
|
2020-02-10 22:54:16 +00:00
|
|
|
}
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 06:59:08 +00:00
|
|
|
static void mark(struct Window *window) {
|
|
|
|
if (window->scroll) return;
|
|
|
|
window->mark = true;
|
2020-09-02 00:56:09 +00:00
|
|
|
window->unreadSoft = 0;
|
2020-02-14 10:00:26 +00:00
|
|
|
window->unreadWarm = 0;
|
2020-02-10 06:59:08 +00:00
|
|
|
}
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
static void unmark(struct Window *window) {
|
2020-02-09 16:50:56 +00:00
|
|
|
if (!window->scroll) {
|
2020-02-09 14:18:26 +00:00
|
|
|
window->mark = false;
|
2020-02-10 06:59:08 +00:00
|
|
|
window->heat = Cold;
|
2020-02-09 14:18:26 +00:00
|
|
|
}
|
2020-02-04 09:09:54 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
2020-02-13 00:40:55 +00:00
|
|
|
void uiShow(void) {
|
2020-02-14 03:09:25 +00:00
|
|
|
if (!hidden) return;
|
2020-02-13 00:40:55 +00:00
|
|
|
prevTitle[0] = '\0';
|
2021-02-15 23:59:17 +00:00
|
|
|
putp(FocusMode[true]);
|
|
|
|
putp(PasteMode[true]);
|
2020-02-13 00:40:55 +00:00
|
|
|
fflush(stdout);
|
|
|
|
hidden = false;
|
2020-02-13 10:05:53 +00:00
|
|
|
unmark(windows.ptrs[windows.show]);
|
2020-02-13 00:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiHide(void) {
|
2020-02-14 03:09:25 +00:00
|
|
|
if (hidden) return;
|
2020-02-13 10:05:53 +00:00
|
|
|
mark(windows.ptrs[windows.show]);
|
2020-02-13 00:40:55 +00:00
|
|
|
hidden = true;
|
2021-02-15 23:59:17 +00:00
|
|
|
putp(FocusMode[false]);
|
|
|
|
putp(PasteMode[false]);
|
2020-02-13 00:40:55 +00:00
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2021-01-27 00:53:38 +00:00
|
|
|
static size_t windowTop(const struct Window *window) {
|
|
|
|
size_t top = BufferCap - MAIN_LINES - window->scroll;
|
|
|
|
if (window->scroll) top += MarkerLines;
|
|
|
|
return top;
|
|
|
|
}
|
|
|
|
|
2021-01-27 04:08:58 +00:00
|
|
|
static size_t windowBottom(const struct Window *window) {
|
|
|
|
size_t bottom = BufferCap - (window->scroll ?: 1);
|
|
|
|
if (window->scroll) bottom -= SplitLines + MarkerLines;
|
|
|
|
return bottom;
|
|
|
|
}
|
|
|
|
|
2021-01-27 05:15:46 +00:00
|
|
|
static int windowCols(const struct Window *window) {
|
2021-01-27 19:45:03 +00:00
|
|
|
return COLS - (window->time ? uiTime.width : 0);
|
2021-01-27 05:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mainAdd(int y, bool time, const struct Line *line) {
|
2020-09-02 20:06:34 +00:00
|
|
|
int ny, nx;
|
|
|
|
wmove(main, y, 0);
|
2021-01-27 05:15:46 +00:00
|
|
|
if (!line || !line->str[0]) {
|
|
|
|
wclrtoeol(main);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (time && line->time) {
|
|
|
|
char buf[TimeCap];
|
|
|
|
strftime(buf, sizeof(buf), uiTime.format, localtime(&line->time));
|
|
|
|
wattr_set(
|
|
|
|
main,
|
|
|
|
colorAttr(Colors[Gray]), colorPair(Colors[Gray], -1),
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
waddstr(main, buf);
|
|
|
|
waddch(main, ' ');
|
|
|
|
} else if (time) {
|
2021-01-27 19:45:03 +00:00
|
|
|
whline(main, ' ', uiTime.width);
|
|
|
|
wmove(main, y, uiTime.width);
|
2021-01-27 05:15:46 +00:00
|
|
|
}
|
|
|
|
styleAdd(main, line->str);
|
2020-09-02 20:06:34 +00:00
|
|
|
getyx(main, ny, nx);
|
2021-01-27 05:15:46 +00:00
|
|
|
if (ny != y) return;
|
|
|
|
wclrtoeol(main);
|
2020-09-09 22:04:41 +00:00
|
|
|
(void)nx;
|
2020-09-02 20:06:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 00:53:38 +00:00
|
|
|
static void mainUpdate(void) {
|
2020-09-02 04:27:16 +00:00
|
|
|
struct Window *window = windows.ptrs[windows.show];
|
|
|
|
|
2021-01-21 16:39:23 +00:00
|
|
|
int y = 0;
|
|
|
|
int marker = MAIN_LINES - SplitLines - MarkerLines;
|
|
|
|
for (size_t i = windowTop(window); i < BufferCap; ++i) {
|
2021-01-27 05:15:46 +00:00
|
|
|
mainAdd(y++, window->time, bufferHard(window->buffer, i));
|
2021-01-21 16:39:23 +00:00
|
|
|
if (window->scroll && y == marker) break;
|
2020-09-02 04:27:16 +00:00
|
|
|
}
|
2020-09-02 20:06:34 +00:00
|
|
|
if (!window->scroll) return;
|
|
|
|
|
2021-01-21 16:39:23 +00:00
|
|
|
y = MAIN_LINES - SplitLines;
|
|
|
|
for (size_t i = BufferCap - SplitLines; i < BufferCap; ++i) {
|
2021-01-27 05:15:46 +00:00
|
|
|
mainAdd(y++, window->time, bufferHard(window->buffer, i));
|
2020-09-02 20:06:34 +00:00
|
|
|
}
|
|
|
|
wattr_set(main, A_NORMAL, 0, NULL);
|
2021-01-21 16:39:23 +00:00
|
|
|
mvwhline(main, marker, 0, ACS_BULLET, COLS);
|
2020-09-02 04:27:16 +00:00
|
|
|
}
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
static void windowScroll(struct Window *window, int n) {
|
2020-02-10 06:59:08 +00:00
|
|
|
mark(window);
|
2020-02-09 13:52:17 +00:00
|
|
|
window->scroll += n;
|
2020-09-02 04:27:16 +00:00
|
|
|
if (window->scroll > BufferCap - MAIN_LINES) {
|
|
|
|
window->scroll = BufferCap - MAIN_LINES;
|
2020-02-09 16:50:56 +00:00
|
|
|
}
|
|
|
|
if (window->scroll < 0) window->scroll = 0;
|
2020-02-10 06:59:08 +00:00
|
|
|
unmark(window);
|
2021-01-27 00:53:38 +00:00
|
|
|
if (window == windows.ptrs[windows.show]) mainUpdate();
|
2020-09-07 00:40:29 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 01:12:34 +00:00
|
|
|
struct Util uiNotifyUtil;
|
2020-02-16 03:19:55 +00:00
|
|
|
static void notify(uint id, const char *str) {
|
2021-01-25 23:27:07 +00:00
|
|
|
if (self.restricted) return;
|
2020-02-13 01:12:34 +00:00
|
|
|
if (!uiNotifyUtil.argc) return;
|
|
|
|
|
2021-06-07 04:09:58 +00:00
|
|
|
char buf[1024];
|
|
|
|
styleStrip(buf, sizeof(buf), str);
|
2020-10-09 22:45:52 +00:00
|
|
|
|
2020-02-13 01:12:34 +00:00
|
|
|
struct Util util = uiNotifyUtil;
|
|
|
|
utilPush(&util, idNames[id]);
|
|
|
|
utilPush(&util, buf);
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (pid) return;
|
|
|
|
|
2021-06-13 02:28:15 +00:00
|
|
|
setsid();
|
2020-02-13 01:12:34 +00:00
|
|
|
close(STDIN_FILENO);
|
2020-02-14 02:57:55 +00:00
|
|
|
dup2(utilPipe[1], STDOUT_FILENO);
|
|
|
|
dup2(utilPipe[1], STDERR_FILENO);
|
2020-02-13 01:12:34 +00:00
|
|
|
execvp(util.argv[0], (char *const *)util.argv);
|
|
|
|
warn("%s", util.argv[0]);
|
|
|
|
_exit(EX_CONFIG);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiWrite(uint id, enum Heat heat, const time_t *src, const char *str) {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = windows.ptrs[windowFor(id)];
|
2020-02-19 06:18:09 +00:00
|
|
|
time_t ts = (src ? *src : time(NULL));
|
2020-09-02 04:27:16 +00:00
|
|
|
|
2021-01-16 17:58:16 +00:00
|
|
|
if (heat >= window->thresh) {
|
2020-09-02 22:51:07 +00:00
|
|
|
if (!window->unreadSoft++) window->unreadHard = 0;
|
|
|
|
}
|
2020-02-03 01:23:36 +00:00
|
|
|
if (window->mark && heat > Cold) {
|
2020-02-14 10:00:26 +00:00
|
|
|
if (!window->unreadWarm++) {
|
2021-01-27 05:15:46 +00:00
|
|
|
int lines = bufferPush(
|
|
|
|
window->buffer, windowCols(window),
|
|
|
|
window->thresh, Warm, ts, ""
|
|
|
|
);
|
2020-09-03 19:50:39 +00:00
|
|
|
if (window->scroll) windowScroll(window, lines);
|
2020-09-08 02:21:41 +00:00
|
|
|
if (window->unreadSoft > 1) {
|
|
|
|
window->unreadSoft++;
|
|
|
|
window->unreadHard += lines;
|
|
|
|
}
|
2020-02-03 01:23:36 +00:00
|
|
|
}
|
2020-02-19 06:18:09 +00:00
|
|
|
if (heat > window->heat) window->heat = heat;
|
2020-02-03 01:23:36 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
2021-01-27 05:15:46 +00:00
|
|
|
int lines = bufferPush(
|
|
|
|
window->buffer, windowCols(window),
|
|
|
|
window->thresh, heat, ts, str
|
|
|
|
);
|
2020-09-02 00:56:09 +00:00
|
|
|
window->unreadHard += lines;
|
2020-02-09 16:50:56 +00:00
|
|
|
if (window->scroll) windowScroll(window, lines);
|
2021-01-27 00:53:38 +00:00
|
|
|
if (window == windows.ptrs[windows.show]) mainUpdate();
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2020-02-13 01:12:34 +00:00
|
|
|
if (window->mark && heat > Warm) {
|
|
|
|
beep();
|
|
|
|
notify(id, str);
|
|
|
|
}
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiFormat(
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id, enum Heat heat, const time_t *time, const char *format, ...
|
2020-02-02 00:37:48 +00:00
|
|
|
) {
|
|
|
|
char buf[1024];
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
int len = vsnprintf(buf, sizeof(buf), format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
assert((size_t)len < sizeof(buf));
|
|
|
|
uiWrite(id, heat, time, buf);
|
|
|
|
}
|
2020-02-04 08:58:56 +00:00
|
|
|
|
2021-01-27 03:33:16 +00:00
|
|
|
static void scrollTo(struct Window *window, int top) {
|
|
|
|
window->scroll = 0;
|
|
|
|
windowScroll(window, top - MAIN_LINES + MarkerLines);
|
|
|
|
}
|
|
|
|
|
2021-01-27 00:33:17 +00:00
|
|
|
static void windowReflow(struct Window *window) {
|
2021-01-27 03:33:16 +00:00
|
|
|
uint num = 0;
|
|
|
|
const struct Line *line = bufferHard(window->buffer, windowTop(window));
|
|
|
|
if (line) num = line->num;
|
2021-01-27 00:33:17 +00:00
|
|
|
window->unreadHard = bufferReflow(
|
2021-01-27 05:15:46 +00:00
|
|
|
window->buffer, windowCols(window),
|
|
|
|
window->thresh, window->unreadSoft
|
2021-01-27 00:33:17 +00:00
|
|
|
);
|
2021-01-27 03:33:16 +00:00
|
|
|
if (!window->scroll || !num) return;
|
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
|
|
|
line = bufferHard(window->buffer, i);
|
|
|
|
if (!line || line->num != num) continue;
|
|
|
|
scrollTo(window, BufferCap - i);
|
|
|
|
break;
|
|
|
|
}
|
2021-01-27 00:33:17 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 07:03:21 +00:00
|
|
|
static void resize(void) {
|
2020-09-02 06:18:04 +00:00
|
|
|
wclear(main);
|
2020-09-02 04:27:16 +00:00
|
|
|
wresize(main, MAIN_LINES, COLS);
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
2021-01-27 00:33:17 +00:00
|
|
|
windowReflow(windows.ptrs[num]);
|
2020-02-05 07:03:21 +00:00
|
|
|
}
|
2021-01-27 05:15:46 +00:00
|
|
|
statusUpdate();
|
2021-01-27 00:53:38 +00:00
|
|
|
mainUpdate();
|
2020-02-05 07:03:21 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 04:08:58 +00:00
|
|
|
static void windowList(const struct Window *window) {
|
2020-02-09 23:16:01 +00:00
|
|
|
uiHide();
|
|
|
|
waiting = true;
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2021-01-27 04:08:58 +00:00
|
|
|
uint num = 0;
|
|
|
|
const struct Line *line = bufferHard(window->buffer, windowBottom(window));
|
|
|
|
if (line) num = line->num;
|
2020-02-09 23:16:01 +00:00
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
2021-01-27 04:08:58 +00:00
|
|
|
line = bufferSoft(window->buffer, i);
|
2020-09-02 00:35:17 +00:00
|
|
|
if (!line) continue;
|
2021-01-27 04:08:58 +00:00
|
|
|
if (line->num > num) break;
|
2021-01-25 22:27:54 +00:00
|
|
|
if (!line->str[0]) {
|
|
|
|
printf("\n");
|
|
|
|
continue;
|
|
|
|
}
|
2020-02-09 23:16:01 +00:00
|
|
|
|
2021-01-27 05:15:46 +00:00
|
|
|
char buf[TimeCap];
|
|
|
|
strftime(buf, sizeof(buf), uiTime.format, localtime(&line->time));
|
2020-02-10 09:17:07 +00:00
|
|
|
vid_attr(colorAttr(Colors[Gray]), colorPair(Colors[Gray], -1), NULL);
|
2021-01-27 05:15:46 +00:00
|
|
|
printf("%s ", buf);
|
2020-02-09 23:16:01 +00:00
|
|
|
|
2020-02-11 01:44:37 +00:00
|
|
|
bool align = false;
|
2020-09-01 22:05:17 +00:00
|
|
|
struct Style style = StyleDefault;
|
2020-09-02 00:35:17 +00:00
|
|
|
for (const char *str = line->str; *str;) {
|
|
|
|
if (*str == '\t') {
|
2020-02-11 01:44:37 +00:00
|
|
|
printf("%c", (align ? '\t' : ' '));
|
|
|
|
align = true;
|
2020-09-02 00:35:17 +00:00
|
|
|
str++;
|
2020-02-11 01:44:37 +00:00
|
|
|
}
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2020-09-02 00:35:17 +00:00
|
|
|
size_t len = styleParse(&style, &str);
|
|
|
|
size_t tab = strcspn(str, "\t");
|
2020-02-11 01:44:37 +00:00
|
|
|
if (tab < len) len = tab;
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2020-09-01 22:05:17 +00:00
|
|
|
vid_attr(styleAttr(style), stylePair(style), NULL);
|
2020-09-02 00:35:17 +00:00
|
|
|
printf("%.*s", (int)len, str);
|
|
|
|
str += len;
|
2020-02-09 23:16:01 +00:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 17:48:55 +00:00
|
|
|
static void inputAdd(struct Style reset, struct Style *style, const char *str) {
|
2020-02-05 01:23:55 +00:00
|
|
|
while (*str) {
|
|
|
|
const char *code = str;
|
2020-02-19 06:18:09 +00:00
|
|
|
size_t len = styleParse(style, &str);
|
2020-02-05 01:23:55 +00:00
|
|
|
wattr_set(input, A_BOLD | A_REVERSE, 0, NULL);
|
|
|
|
switch (*code) {
|
2020-02-07 07:46:40 +00:00
|
|
|
break; case B: waddch(input, 'B');
|
|
|
|
break; case C: waddch(input, 'C');
|
|
|
|
break; case O: waddch(input, 'O');
|
|
|
|
break; case R: waddch(input, 'R');
|
|
|
|
break; case I: waddch(input, 'I');
|
|
|
|
break; case U: waddch(input, 'U');
|
2020-03-23 18:55:43 +00:00
|
|
|
break; case '\n': waddch(input, 'N');
|
2020-02-05 01:23:55 +00:00
|
|
|
}
|
|
|
|
if (str - code > 1) waddnstr(input, &code[1], str - &code[1]);
|
2020-03-23 18:55:43 +00:00
|
|
|
if (str[0] == '\n') {
|
2021-03-17 17:48:55 +00:00
|
|
|
*style = reset;
|
2020-03-23 18:55:43 +00:00
|
|
|
str++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
size_t nl = strcspn(str, "\n");
|
|
|
|
if (nl < len) len = nl;
|
2020-09-01 22:05:17 +00:00
|
|
|
wattr_set(input, styleAttr(*style), stylePair(*style), NULL);
|
2020-02-05 01:23:55 +00:00
|
|
|
waddnstr(input, str, len);
|
|
|
|
str += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 17:48:55 +00:00
|
|
|
static char *inputStop(
|
|
|
|
struct Style reset, struct Style *style,
|
|
|
|
const char *str, char *stop
|
|
|
|
) {
|
2021-03-17 17:34:33 +00:00
|
|
|
char ch = *stop;
|
|
|
|
*stop = '\0';
|
2021-03-17 17:48:55 +00:00
|
|
|
inputAdd(reset, style, str);
|
2021-03-17 17:34:33 +00:00
|
|
|
*stop = ch;
|
|
|
|
return stop;
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:23:55 +00:00
|
|
|
static void inputUpdate(void) {
|
2020-02-09 06:28:24 +00:00
|
|
|
size_t pos;
|
|
|
|
char *buf = editBuffer(&pos);
|
2021-01-27 05:15:46 +00:00
|
|
|
struct Window *window = windows.ptrs[windows.show];
|
2020-02-09 06:28:24 +00:00
|
|
|
|
|
|
|
const char *prefix = "";
|
2020-02-11 22:52:55 +00:00
|
|
|
const char *prompt = self.nick;
|
2020-02-09 06:28:24 +00:00
|
|
|
const char *suffix = "";
|
2020-02-19 06:18:09 +00:00
|
|
|
const char *skip = buf;
|
|
|
|
struct Style stylePrompt = { .fg = self.color, .bg = Default };
|
2020-09-01 22:05:17 +00:00
|
|
|
struct Style styleInput = StyleDefault;
|
2020-02-19 06:18:09 +00:00
|
|
|
|
2021-03-17 17:34:33 +00:00
|
|
|
size_t split = commandWillSplit(window->id, buf);
|
2021-01-27 05:15:46 +00:00
|
|
|
const char *privmsg = commandIsPrivmsg(window->id, buf);
|
|
|
|
const char *notice = commandIsNotice(window->id, buf);
|
|
|
|
const char *action = commandIsAction(window->id, buf);
|
2020-02-19 06:18:09 +00:00
|
|
|
if (privmsg) {
|
2020-02-09 06:28:24 +00:00
|
|
|
prefix = "<"; suffix = "> ";
|
2020-02-19 06:18:09 +00:00
|
|
|
skip = privmsg;
|
|
|
|
} else if (notice) {
|
2020-02-09 06:28:24 +00:00
|
|
|
prefix = "-"; suffix = "- ";
|
2020-02-19 06:18:09 +00:00
|
|
|
styleInput.fg = LightGray;
|
|
|
|
skip = notice;
|
|
|
|
} else if (action) {
|
2020-02-09 06:28:24 +00:00
|
|
|
prefix = "* "; suffix = " ";
|
2020-09-01 22:05:17 +00:00
|
|
|
stylePrompt.attr |= Italic;
|
|
|
|
styleInput.attr |= Italic;
|
2020-02-19 06:18:09 +00:00
|
|
|
skip = action;
|
2021-01-27 05:15:46 +00:00
|
|
|
} else if (window->id == Debug && buf[0] != '/') {
|
2020-02-09 06:28:24 +00:00
|
|
|
prompt = "<< ";
|
2020-02-19 06:18:09 +00:00
|
|
|
stylePrompt.fg = Gray;
|
2020-02-09 06:28:24 +00:00
|
|
|
} else {
|
|
|
|
prompt = "";
|
|
|
|
}
|
2020-02-19 06:18:09 +00:00
|
|
|
if (skip > &buf[pos]) {
|
2020-02-09 06:28:24 +00:00
|
|
|
prefix = prompt = suffix = "";
|
2020-02-19 06:18:09 +00:00
|
|
|
skip = buf;
|
2020-02-05 01:23:55 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 00:05:51 +00:00
|
|
|
wmove(input, 0, 0);
|
2021-01-27 05:15:46 +00:00
|
|
|
if (window->time && window->id != Network) {
|
2021-01-27 19:45:03 +00:00
|
|
|
whline(input, ' ', uiTime.width);
|
|
|
|
wmove(input, 0, uiTime.width);
|
2021-01-27 05:15:46 +00:00
|
|
|
}
|
2020-09-01 22:05:17 +00:00
|
|
|
wattr_set(input, styleAttr(stylePrompt), stylePair(stylePrompt), NULL);
|
2020-02-09 06:28:24 +00:00
|
|
|
waddstr(input, prefix);
|
|
|
|
waddstr(input, prompt);
|
|
|
|
waddstr(input, suffix);
|
2021-03-17 17:34:33 +00:00
|
|
|
|
|
|
|
int y, x;
|
|
|
|
const char *ptr = skip;
|
2020-02-19 06:18:09 +00:00
|
|
|
struct Style style = styleInput;
|
2021-03-17 17:34:33 +00:00
|
|
|
if (split && split < pos) {
|
2021-03-17 17:48:55 +00:00
|
|
|
ptr = inputStop(styleInput, &style, ptr, &buf[split]);
|
2021-03-17 17:34:33 +00:00
|
|
|
style = styleInput;
|
|
|
|
style.bg = Red;
|
|
|
|
}
|
2021-03-17 17:48:55 +00:00
|
|
|
ptr = inputStop(styleInput, &style, ptr, &buf[pos]);
|
2020-02-05 01:23:55 +00:00
|
|
|
getyx(input, y, x);
|
2021-03-17 17:34:33 +00:00
|
|
|
if (split && split >= pos) {
|
2021-03-17 17:48:55 +00:00
|
|
|
ptr = inputStop(styleInput, &style, ptr, &buf[split]);
|
2021-03-17 17:34:33 +00:00
|
|
|
style = styleInput;
|
|
|
|
style.bg = Red;
|
|
|
|
}
|
2021-03-17 17:48:55 +00:00
|
|
|
inputAdd(styleInput, &style, ptr);
|
2020-02-05 01:23:55 +00:00
|
|
|
wclrtoeol(input);
|
|
|
|
wmove(input, y, x);
|
|
|
|
}
|
|
|
|
|
2021-05-29 00:38:43 +00:00
|
|
|
void uiWindows(void) {
|
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
|
|
|
const struct Window *window = windows.ptrs[num];
|
|
|
|
uiFormat(
|
|
|
|
Network, Warm, NULL, "\3%02d%u %s",
|
|
|
|
idColors[window->id], num, idNames[window->id]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void windowShow(uint num) {
|
2021-01-30 04:24:58 +00:00
|
|
|
if (num != windows.show) {
|
|
|
|
windows.swap = windows.show;
|
2021-01-31 20:33:41 +00:00
|
|
|
mark(windows.ptrs[windows.swap]);
|
2021-01-30 04:24:58 +00:00
|
|
|
}
|
2020-02-13 10:05:53 +00:00
|
|
|
windows.show = num;
|
2021-01-30 04:24:58 +00:00
|
|
|
windows.user = num;
|
2020-02-13 10:05:53 +00:00
|
|
|
unmark(windows.ptrs[windows.show]);
|
2021-01-27 00:53:38 +00:00
|
|
|
mainUpdate();
|
2020-02-10 06:59:08 +00:00
|
|
|
inputUpdate();
|
2020-02-05 01:46:16 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiShowID(uint id) {
|
2020-02-05 01:46:16 +00:00
|
|
|
windowShow(windowFor(id));
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiShowNum(uint num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
if (num < windows.len) windowShow(num);
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiMoveID(uint id, uint num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = windowRemove(windowFor(id));
|
|
|
|
if (num < windows.len) {
|
|
|
|
windowShow(windowInsert(num, window));
|
|
|
|
} else {
|
|
|
|
windowShow(windowPush(window));
|
2020-02-05 01:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static void windowClose(uint num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
if (windows.ptrs[num]->id == Network) return;
|
|
|
|
struct Window *window = windowRemove(num);
|
2020-02-11 23:18:48 +00:00
|
|
|
completeClear(window->id);
|
2020-02-13 10:05:53 +00:00
|
|
|
windowFree(window);
|
|
|
|
if (windows.swap >= num) windows.swap--;
|
|
|
|
if (windows.show == num) {
|
|
|
|
windowShow(windows.swap);
|
2020-02-13 10:10:55 +00:00
|
|
|
windows.swap = windows.show;
|
2020-02-13 10:05:53 +00:00
|
|
|
} else if (windows.show > num) {
|
|
|
|
windows.show--;
|
2021-01-27 00:53:38 +00:00
|
|
|
mainUpdate();
|
2020-02-08 07:26:00 +00:00
|
|
|
}
|
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiCloseID(uint id) {
|
2020-02-08 07:26:00 +00:00
|
|
|
windowClose(windowFor(id));
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void uiCloseNum(uint num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
if (num < windows.len) windowClose(num);
|
2020-02-08 07:26:00 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 00:53:38 +00:00
|
|
|
static void scrollPage(struct Window *window, int n) {
|
|
|
|
windowScroll(window, n * (MAIN_LINES - SplitLines - MarkerLines - 1));
|
|
|
|
}
|
|
|
|
|
2021-01-30 04:32:47 +00:00
|
|
|
static void scrollTop(struct Window *window) {
|
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
|
|
|
if (!bufferHard(window->buffer, i)) continue;
|
|
|
|
scrollTo(window, BufferCap - i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 00:53:38 +00:00
|
|
|
static void scrollHot(struct Window *window, int dir) {
|
|
|
|
for (size_t i = windowTop(window) + dir; i < BufferCap; i += dir) {
|
|
|
|
const struct Line *line = bufferHard(window->buffer, i);
|
|
|
|
const struct Line *prev = bufferHard(window->buffer, i - 1);
|
|
|
|
if (!line || line->heat < Hot) continue;
|
|
|
|
if (prev && prev->heat > Warm) continue;
|
|
|
|
scrollTo(window, BufferCap - i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scrollSearch(struct Window *window, const char *str, int dir) {
|
|
|
|
for (size_t i = windowTop(window) + dir; i < BufferCap; i += dir) {
|
|
|
|
const struct Line *line = bufferHard(window->buffer, i);
|
|
|
|
if (!line || !strcasestr(line->str, str)) continue;
|
|
|
|
scrollTo(window, BufferCap - i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 05:15:46 +00:00
|
|
|
static void toggleTime(struct Window *window) {
|
|
|
|
window->time ^= true;
|
|
|
|
windowReflow(window);
|
|
|
|
statusUpdate();
|
|
|
|
mainUpdate();
|
|
|
|
inputUpdate();
|
|
|
|
}
|
|
|
|
|
2021-01-16 17:58:16 +00:00
|
|
|
static void incThresh(struct Window *window, int n) {
|
|
|
|
if (n > 0 && window->thresh == Hot) return;
|
2021-01-16 18:05:01 +00:00
|
|
|
if (n < 0 && window->thresh == Ice) {
|
|
|
|
window->thresh = Cold;
|
|
|
|
} else {
|
|
|
|
window->thresh += n;
|
|
|
|
}
|
2021-01-27 00:33:17 +00:00
|
|
|
windowReflow(window);
|
2021-01-27 05:15:46 +00:00
|
|
|
statusUpdate();
|
2021-01-27 00:53:38 +00:00
|
|
|
mainUpdate();
|
2020-04-15 19:54:55 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:14:22 +00:00
|
|
|
static void showAuto(void) {
|
2020-07-23 04:22:36 +00:00
|
|
|
uint minHot = UINT_MAX, numHot = 0;
|
|
|
|
uint minWarm = UINT_MAX, numWarm = 0;
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
2020-04-15 20:18:09 +00:00
|
|
|
struct Window *window = windows.ptrs[num];
|
|
|
|
if (window->heat >= Hot) {
|
|
|
|
if (window->unreadWarm >= minHot) continue;
|
|
|
|
minHot = window->unreadWarm;
|
2020-04-02 14:47:17 +00:00
|
|
|
numHot = num;
|
|
|
|
}
|
2020-04-15 20:18:09 +00:00
|
|
|
if (window->heat >= Warm && !window->mute) {
|
|
|
|
if (window->unreadWarm >= minWarm) continue;
|
|
|
|
minWarm = window->unreadWarm;
|
2020-04-02 14:47:17 +00:00
|
|
|
numWarm = num;
|
|
|
|
}
|
2020-02-09 13:14:22 +00:00
|
|
|
}
|
2020-04-20 01:13:02 +00:00
|
|
|
uint user = windows.user;
|
2020-04-02 14:47:17 +00:00
|
|
|
if (minHot < UINT_MAX) {
|
|
|
|
windowShow(numHot);
|
2020-04-20 01:13:02 +00:00
|
|
|
windows.user = user;
|
2020-04-02 14:47:17 +00:00
|
|
|
} else if (minWarm < UINT_MAX) {
|
|
|
|
windowShow(numWarm);
|
2020-04-20 01:13:02 +00:00
|
|
|
windows.user = user;
|
2020-04-20 20:12:02 +00:00
|
|
|
} else if (user != windows.show) {
|
2020-04-20 01:13:02 +00:00
|
|
|
windowShow(user);
|
2020-02-09 13:14:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
static void keyCode(int code) {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = windows.ptrs[windows.show];
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = window->id;
|
2020-02-04 08:58:56 +00:00
|
|
|
switch (code) {
|
2020-02-05 07:03:21 +00:00
|
|
|
break; case KEY_RESIZE: resize();
|
2020-02-09 13:52:17 +00:00
|
|
|
break; case KeyFocusIn: unmark(window);
|
2020-02-10 06:59:08 +00:00
|
|
|
break; case KeyFocusOut: mark(window);
|
2020-02-07 06:55:26 +00:00
|
|
|
|
2020-03-23 19:03:55 +00:00
|
|
|
break; case KeyMetaEnter: edit(id, EditInsert, L'\n');
|
2020-04-15 20:18:09 +00:00
|
|
|
break; case KeyMetaEqual: window->mute ^= true; statusUpdate();
|
2021-01-16 17:58:16 +00:00
|
|
|
break; case KeyMetaMinus: incThresh(window, -1);
|
|
|
|
break; case KeyMetaPlus: incThresh(window, +1);
|
2020-02-13 10:05:53 +00:00
|
|
|
break; case KeyMetaSlash: windowShow(windows.swap);
|
2020-02-09 13:17:05 +00:00
|
|
|
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case KeyMetaGt: scrollTo(window, 0);
|
2021-01-30 04:32:47 +00:00
|
|
|
break; case KeyMetaLt: scrollTop(window);
|
2020-04-07 18:09:29 +00:00
|
|
|
|
2020-04-03 21:10:52 +00:00
|
|
|
break; case KeyMeta0 ... KeyMeta9: uiShowNum(code - KeyMeta0);
|
2020-02-09 13:14:22 +00:00
|
|
|
break; case KeyMetaA: showAuto();
|
2020-02-09 09:20:07 +00:00
|
|
|
break; case KeyMetaB: edit(id, EditPrevWord, 0);
|
2020-02-09 09:32:32 +00:00
|
|
|
break; case KeyMetaD: edit(id, EditDeleteNextWord, 0);
|
2020-02-09 09:20:07 +00:00
|
|
|
break; case KeyMetaF: edit(id, EditNextWord, 0);
|
2021-01-27 04:08:58 +00:00
|
|
|
break; case KeyMetaL: windowList(window);
|
2021-01-19 15:50:55 +00:00
|
|
|
break; case KeyMetaM: uiWrite(id, Warm, NULL, "");
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case KeyMetaN: scrollHot(window, +1);
|
|
|
|
break; case KeyMetaP: scrollHot(window, -1);
|
2020-04-07 14:48:44 +00:00
|
|
|
break; case KeyMetaQ: edit(id, EditCollapse, 0);
|
2021-01-27 05:15:46 +00:00
|
|
|
break; case KeyMetaT: toggleTime(window);
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case KeyMetaU: scrollTo(window, window->unreadHard);
|
|
|
|
break; case KeyMetaV: scrollPage(window, +1);
|
2020-02-08 01:41:27 +00:00
|
|
|
|
2021-03-07 23:18:37 +00:00
|
|
|
break; case KeyCtrlLeft: edit(id, EditPrevWord, 0);
|
|
|
|
break; case KeyCtrlRight: edit(id, EditNextWord, 0);
|
|
|
|
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_BACKSPACE: edit(id, EditDeletePrev, 0);
|
|
|
|
break; case KEY_DC: edit(id, EditDeleteNext, 0);
|
2020-02-09 16:50:56 +00:00
|
|
|
break; case KEY_DOWN: windowScroll(window, -1);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_END: edit(id, EditTail, 0);
|
2020-02-07 06:55:26 +00:00
|
|
|
break; case KEY_ENTER: edit(id, EditEnter, 0);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_HOME: edit(id, EditHead, 0);
|
|
|
|
break; case KEY_LEFT: edit(id, EditPrev, 0);
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case KEY_NPAGE: scrollPage(window, -1);
|
|
|
|
break; case KEY_PPAGE: scrollPage(window, +1);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_RIGHT: edit(id, EditNext, 0);
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case KEY_SEND: scrollTo(window, 0);
|
|
|
|
break; case KEY_SHOME: scrollTo(window, BufferCap);
|
2020-02-09 16:50:56 +00:00
|
|
|
break; case KEY_UP: windowScroll(window, +1);
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:56:27 +00:00
|
|
|
static void keyCtrl(wchar_t ch) {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = windows.ptrs[windows.show];
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = window->id;
|
2020-02-07 07:46:40 +00:00
|
|
|
switch (ch ^ L'@') {
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case L'?': edit(id, EditDeletePrev, 0);
|
|
|
|
break; case L'A': edit(id, EditHead, 0);
|
|
|
|
break; case L'B': edit(id, EditPrev, 0);
|
2020-02-11 02:09:32 +00:00
|
|
|
break; case L'C': raise(SIGINT);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case L'D': edit(id, EditDeleteNext, 0);
|
|
|
|
break; case L'E': edit(id, EditTail, 0);
|
|
|
|
break; case L'F': edit(id, EditNext, 0);
|
|
|
|
break; case L'H': edit(id, EditDeletePrev, 0);
|
2020-02-08 02:30:25 +00:00
|
|
|
break; case L'I': edit(id, EditComplete, 0);
|
2020-02-05 05:20:39 +00:00
|
|
|
break; case L'J': edit(id, EditEnter, 0);
|
2020-02-09 09:22:41 +00:00
|
|
|
break; case L'K': edit(id, EditDeleteTail, 0);
|
2020-02-05 01:56:27 +00:00
|
|
|
break; case L'L': clearok(curscr, true);
|
2020-02-13 10:05:53 +00:00
|
|
|
break; case L'N': uiShowNum(windows.show + 1);
|
|
|
|
break; case L'P': uiShowNum(windows.show - 1);
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case L'R': scrollSearch(window, editBuffer(NULL), -1);
|
|
|
|
break; case L'S': scrollSearch(window, editBuffer(NULL), +1);
|
2020-02-12 06:16:40 +00:00
|
|
|
break; case L'T': edit(id, EditTranspose, 0);
|
2020-02-09 09:22:41 +00:00
|
|
|
break; case L'U': edit(id, EditDeleteHead, 0);
|
2021-01-27 00:53:38 +00:00
|
|
|
break; case L'V': scrollPage(window, -1);
|
2020-02-12 06:16:40 +00:00
|
|
|
break; case L'W': edit(id, EditDeletePrevWord, 0);
|
2020-03-30 18:56:26 +00:00
|
|
|
break; case L'X': edit(id, EditExpand, 0);
|
2020-02-09 12:09:51 +00:00
|
|
|
break; case L'Y': edit(id, EditPaste, 0);
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 07:46:40 +00:00
|
|
|
static void keyStyle(wchar_t ch) {
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id = windows.ptrs[windows.show]->id;
|
2021-03-17 20:00:06 +00:00
|
|
|
if (iswcntrl(ch)) ch = towlower(ch ^ L'@');
|
|
|
|
enum Color color = Default;
|
|
|
|
switch (ch) {
|
|
|
|
break; case L'A': color = Gray;
|
|
|
|
break; case L'B': color = Blue;
|
|
|
|
break; case L'C': color = Cyan;
|
|
|
|
break; case L'G': color = Green;
|
|
|
|
break; case L'K': color = Black;
|
|
|
|
break; case L'M': color = Magenta;
|
|
|
|
break; case L'N': color = Brown;
|
|
|
|
break; case L'O': color = Orange;
|
|
|
|
break; case L'P': color = Pink;
|
|
|
|
break; case L'R': color = Red;
|
|
|
|
break; case L'W': color = White;
|
|
|
|
break; case L'Y': color = Yellow;
|
|
|
|
break; case L'b': edit(id, EditInsert, B);
|
|
|
|
break; case L'c': edit(id, EditInsert, C);
|
|
|
|
break; case L'i': edit(id, EditInsert, I);
|
|
|
|
break; case L'o': edit(id, EditInsert, O);
|
|
|
|
break; case L'r': edit(id, EditInsert, R);
|
|
|
|
break; case L'u': edit(id, EditInsert, U);
|
|
|
|
}
|
|
|
|
if (color != Default) {
|
|
|
|
char buf[4];
|
|
|
|
snprintf(buf, sizeof(buf), "%c%02d", C, color);
|
|
|
|
for (char *ch = buf; *ch; ++ch) {
|
|
|
|
edit(id, EditInsert, *ch);
|
|
|
|
}
|
2020-02-07 07:46:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
void uiRead(void) {
|
2020-02-09 23:16:01 +00:00
|
|
|
if (hidden) {
|
|
|
|
if (waiting) {
|
|
|
|
uiShow();
|
|
|
|
flushinp();
|
|
|
|
waiting = false;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
wint_t ch;
|
2021-02-03 19:52:16 +00:00
|
|
|
static bool paste, style, literal;
|
2020-03-30 23:44:45 +00:00
|
|
|
for (int ret; ERR != (ret = wget_wch(input, &ch));) {
|
2020-03-23 18:55:43 +00:00
|
|
|
if (ret == KEY_CODE_YES && ch == KeyPasteOn) {
|
|
|
|
paste = true;
|
|
|
|
} else if (ret == KEY_CODE_YES && ch == KeyPasteOff) {
|
|
|
|
paste = false;
|
2021-02-16 00:07:56 +00:00
|
|
|
} else if (ret == KEY_CODE_YES && ch == KeyPasteManual) {
|
|
|
|
paste ^= true;
|
2021-02-03 19:52:16 +00:00
|
|
|
} else if (paste || literal) {
|
2020-03-23 18:55:43 +00:00
|
|
|
edit(windows.ptrs[windows.show]->id, EditInsert, ch);
|
|
|
|
} else if (ret == KEY_CODE_YES) {
|
2020-02-04 08:58:56 +00:00
|
|
|
keyCode(ch);
|
2020-02-07 07:46:40 +00:00
|
|
|
} else if (ch == (L'Z' ^ L'@')) {
|
|
|
|
style = true;
|
|
|
|
continue;
|
2021-02-03 19:52:16 +00:00
|
|
|
} else if (style && ch == (L'V' ^ L'@')) {
|
|
|
|
literal = true;
|
|
|
|
continue;
|
2020-02-07 07:46:40 +00:00
|
|
|
} else if (style) {
|
|
|
|
keyStyle(ch);
|
2020-02-05 01:56:27 +00:00
|
|
|
} else if (iswcntrl(ch)) {
|
2020-02-07 07:46:40 +00:00
|
|
|
keyCtrl(ch);
|
2020-02-04 08:58:56 +00:00
|
|
|
} else {
|
2020-02-13 10:05:53 +00:00
|
|
|
edit(windows.ptrs[windows.show]->id, EditInsert, ch);
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-08 01:41:27 +00:00
|
|
|
style = false;
|
2021-02-03 19:52:16 +00:00
|
|
|
literal = false;
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-05 01:23:55 +00:00
|
|
|
inputUpdate();
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-11 00:40:13 +00:00
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
static const time_t Signatures[] = {
|
2020-02-19 06:18:09 +00:00
|
|
|
0x6C72696774616301, // no heat, unread, unreadWarm
|
2020-02-29 06:03:46 +00:00
|
|
|
0x6C72696774616302, // no self.pos
|
2020-03-31 18:12:43 +00:00
|
|
|
0x6C72696774616303, // no buffer line heat
|
2020-04-15 20:18:09 +00:00
|
|
|
0x6C72696774616304, // no mute
|
2021-01-11 23:05:22 +00:00
|
|
|
0x6C72696774616305, // no URLs
|
2021-01-16 18:09:55 +00:00
|
|
|
0x6C72696774616306, // no thresh
|
2021-01-27 20:35:26 +00:00
|
|
|
0x6C72696774616307, // no window time
|
|
|
|
0x6C72696774616308,
|
2020-02-11 00:40:13 +00:00
|
|
|
};
|
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
static size_t signatureVersion(time_t signature) {
|
2020-02-11 00:40:13 +00:00
|
|
|
for (size_t i = 0; i < ARRAY_LEN(Signatures); ++i) {
|
|
|
|
if (signature == Signatures[i]) return i;
|
|
|
|
}
|
2021-06-12 01:22:03 +00:00
|
|
|
errx(EX_DATAERR, "unknown file signature %jX", (uintmax_t)signature);
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int writeTime(FILE *file, time_t time) {
|
|
|
|
return (fwrite(&time, sizeof(time), 1, file) ? 0 : -1);
|
|
|
|
}
|
|
|
|
static int writeString(FILE *file, const char *str) {
|
|
|
|
return (fwrite(str, strlen(str) + 1, 1, file) ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
2021-06-11 12:30:58 +00:00
|
|
|
static FILE *saveFile;
|
2020-02-11 00:40:13 +00:00
|
|
|
|
2021-06-11 12:30:58 +00:00
|
|
|
int uiSave(void) {
|
2021-01-11 23:05:22 +00:00
|
|
|
int error = 0
|
2021-06-11 12:30:58 +00:00
|
|
|
|| ftruncate(fileno(saveFile), 0)
|
2021-06-11 12:30:57 +00:00
|
|
|
|| writeTime(saveFile, Signatures[7])
|
|
|
|
|| writeTime(saveFile, self.pos);
|
2021-01-11 23:05:22 +00:00
|
|
|
if (error) return error;
|
2020-02-16 03:19:55 +00:00
|
|
|
for (uint num = 0; num < windows.len; ++num) {
|
2020-02-13 10:05:53 +00:00
|
|
|
const struct Window *window = windows.ptrs[num];
|
2021-01-11 23:05:22 +00:00
|
|
|
error = 0
|
2021-06-11 12:30:57 +00:00
|
|
|
|| writeString(saveFile, idNames[window->id])
|
|
|
|
|| writeTime(saveFile, window->mute)
|
|
|
|
|| writeTime(saveFile, window->time)
|
|
|
|
|| writeTime(saveFile, window->thresh)
|
|
|
|
|| writeTime(saveFile, window->heat)
|
|
|
|
|| writeTime(saveFile, window->unreadSoft)
|
|
|
|
|| writeTime(saveFile, window->unreadWarm);
|
2021-01-11 23:05:22 +00:00
|
|
|
if (error) return error;
|
2020-02-11 00:40:13 +00:00
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
2020-09-02 00:35:17 +00:00
|
|
|
const struct Line *line = bufferSoft(window->buffer, i);
|
|
|
|
if (!line) continue;
|
2021-01-11 23:05:22 +00:00
|
|
|
error = 0
|
2021-06-11 12:30:57 +00:00
|
|
|
|| writeTime(saveFile, line->time)
|
|
|
|
|| writeTime(saveFile, line->heat)
|
|
|
|
|| writeString(saveFile, line->str);
|
2021-01-11 23:05:22 +00:00
|
|
|
if (error) return error;
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
2021-06-11 12:30:57 +00:00
|
|
|
error = writeTime(saveFile, 0);
|
2021-01-11 23:05:22 +00:00
|
|
|
if (error) return error;
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
2021-01-11 23:05:22 +00:00
|
|
|
return 0
|
2021-06-11 12:30:57 +00:00
|
|
|
|| writeString(saveFile, "")
|
|
|
|
|| urlSave(saveFile)
|
|
|
|
|| fclose(saveFile);
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static time_t readTime(FILE *file) {
|
|
|
|
time_t time;
|
|
|
|
fread(&time, sizeof(time), 1, file);
|
|
|
|
if (ferror(file)) err(EX_IOERR, "fread");
|
|
|
|
if (feof(file)) errx(EX_DATAERR, "unexpected eof");
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
static ssize_t readString(FILE *file, char **buf, size_t *cap) {
|
|
|
|
ssize_t len = getdelim(buf, cap, '\0', file);
|
|
|
|
if (len < 0 && !feof(file)) err(EX_IOERR, "getdelim");
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiLoad(const char *name) {
|
2021-06-24 22:07:30 +00:00
|
|
|
int error;
|
2021-06-21 17:26:55 +00:00
|
|
|
saveFile = dataOpen(name, "a+e");
|
2021-06-12 01:02:40 +00:00
|
|
|
if (!saveFile) exit(EX_CANTCREAT);
|
|
|
|
rewind(saveFile);
|
2020-02-11 00:40:13 +00:00
|
|
|
|
2021-06-24 22:07:30 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
cap_rights_t rights;
|
2021-07-13 17:58:14 +00:00
|
|
|
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FLOCK, CAP_FTRUNCATE);
|
2021-06-28 13:11:02 +00:00
|
|
|
error = caph_rights_limit(fileno(saveFile), &rights);
|
2021-06-24 22:07:30 +00:00
|
|
|
if (error) err(EX_OSERR, "cap_rights_limit");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
error = flock(fileno(saveFile), LOCK_EX | LOCK_NB);
|
2021-06-12 01:09:46 +00:00
|
|
|
if (error && errno == EWOULDBLOCK) {
|
|
|
|
errx(EX_CANTCREAT, "%s: save file in use", name);
|
|
|
|
}
|
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
time_t signature;
|
2021-06-11 12:30:57 +00:00
|
|
|
fread(&signature, sizeof(signature), 1, saveFile);
|
|
|
|
if (ferror(saveFile)) err(EX_IOERR, "fread");
|
|
|
|
if (feof(saveFile)) {
|
2020-02-11 23:01:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-02-14 10:20:22 +00:00
|
|
|
size_t version = signatureVersion(signature);
|
2020-02-11 00:40:13 +00:00
|
|
|
|
2020-02-29 06:03:46 +00:00
|
|
|
if (version > 1) {
|
2021-06-11 12:30:57 +00:00
|
|
|
self.pos = readTime(saveFile);
|
2020-02-29 06:03:46 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 00:40:13 +00:00
|
|
|
char *buf = NULL;
|
|
|
|
size_t cap = 0;
|
2021-06-11 12:30:57 +00:00
|
|
|
while (0 < readString(saveFile, &buf, &cap) && buf[0]) {
|
2020-02-13 10:05:53 +00:00
|
|
|
struct Window *window = windows.ptrs[windowFor(idFor(buf))];
|
2021-06-11 12:30:57 +00:00
|
|
|
if (version > 3) window->mute = readTime(saveFile);
|
|
|
|
if (version > 6) window->time = readTime(saveFile);
|
|
|
|
if (version > 5) window->thresh = readTime(saveFile);
|
2020-02-14 10:20:22 +00:00
|
|
|
if (version > 0) {
|
2021-06-11 12:30:57 +00:00
|
|
|
window->heat = readTime(saveFile);
|
|
|
|
window->unreadSoft = readTime(saveFile);
|
|
|
|
window->unreadWarm = readTime(saveFile);
|
2020-02-14 10:20:22 +00:00
|
|
|
}
|
2020-02-11 00:40:13 +00:00
|
|
|
for (;;) {
|
2021-06-11 12:30:57 +00:00
|
|
|
time_t time = readTime(saveFile);
|
2020-02-11 00:40:13 +00:00
|
|
|
if (!time) break;
|
2021-06-11 12:30:57 +00:00
|
|
|
enum Heat heat = (version > 2 ? readTime(saveFile) : Cold);
|
|
|
|
readString(saveFile, &buf, &cap);
|
2021-01-16 17:58:16 +00:00
|
|
|
bufferPush(window->buffer, COLS, window->thresh, heat, time, buf);
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
2021-01-27 00:33:17 +00:00
|
|
|
windowReflow(window);
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
2021-06-11 12:30:57 +00:00
|
|
|
urlLoad(saveFile, version);
|
2020-02-11 00:40:13 +00:00
|
|
|
|
|
|
|
free(buf);
|
|
|
|
}
|