2021-08-15 07:05:27 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-04-23 01:55:28 +00:00
|
|
|
#include "libc/calls/struct/metatermios.internal.h"
|
2023-06-15 00:02:57 +00:00
|
|
|
#include "libc/calls/struct/termios.h"
|
2022-05-23 22:06:11 +00:00
|
|
|
#include "libc/calls/syscall-sysv.internal.h"
|
2023-06-15 00:02:57 +00:00
|
|
|
#include "libc/calls/termios.h"
|
2022-03-18 09:33:37 +00:00
|
|
|
#include "libc/errno.h"
|
2021-08-15 07:05:27 +00:00
|
|
|
#include "libc/log/internal.h"
|
2022-08-08 05:10:18 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2022-03-18 09:33:37 +00:00
|
|
|
#include "libc/sysv/consts/termios.h"
|
|
|
|
|
|
|
|
/**
|
2022-04-23 01:55:28 +00:00
|
|
|
* @fileoverview Terminal Restoration Helper for System Five.
|
2022-03-18 09:33:37 +00:00
|
|
|
*
|
|
|
|
* This is used by the crash reporting functions, e.g. __die(), to help
|
|
|
|
* ensure the terminal is in an unborked state after a crash happens.
|
|
|
|
*/
|
2021-08-15 07:05:27 +00:00
|
|
|
|
2021-08-16 22:26:31 +00:00
|
|
|
#define RESET_COLOR "\e[0m"
|
2021-08-15 07:05:27 +00:00
|
|
|
#define SHOW_CURSOR "\e[?25h"
|
|
|
|
#define DISABLE_MOUSE "\e[?1000;1002;1015;1006l"
|
2021-08-16 22:26:31 +00:00
|
|
|
#define ANSI_RESTORE RESET_COLOR SHOW_CURSOR DISABLE_MOUSE
|
2021-08-15 07:05:27 +00:00
|
|
|
|
2022-04-23 01:55:28 +00:00
|
|
|
static bool __isrestorable;
|
2023-06-15 00:02:57 +00:00
|
|
|
static struct termios __oldtermios;
|
2021-08-15 07:05:27 +00:00
|
|
|
|
2023-05-29 02:42:00 +00:00
|
|
|
static size_t __strlen(const char *s) {
|
|
|
|
size_t i = 0;
|
|
|
|
while (s[i]) ++i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2023-06-15 00:02:57 +00:00
|
|
|
// called weakly by libc/calls/tcsetattr.c to avoid pledge("tty")
|
|
|
|
void __on_tcsetattr(int fd) {
|
2022-04-23 01:55:28 +00:00
|
|
|
int e;
|
|
|
|
e = errno;
|
2023-06-15 00:02:57 +00:00
|
|
|
if (tcgetattr(fd, &__oldtermios) != -1) {
|
2022-04-23 01:55:28 +00:00
|
|
|
__isrestorable = true;
|
|
|
|
}
|
2022-03-18 09:33:37 +00:00
|
|
|
errno = e;
|
2021-08-15 07:05:27 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 01:55:28 +00:00
|
|
|
void __restore_tty(void) {
|
2022-04-08 03:30:04 +00:00
|
|
|
int e;
|
2022-08-08 05:10:18 +00:00
|
|
|
if (__isrestorable && !__isworker && !__nocolor) {
|
2022-04-18 07:01:26 +00:00
|
|
|
e = errno;
|
2022-05-28 12:50:01 +00:00
|
|
|
sys_write(0, ANSI_RESTORE, __strlen(ANSI_RESTORE));
|
2023-06-15 00:02:57 +00:00
|
|
|
tcsetattr(0, TCSAFLUSH, &__oldtermios);
|
2022-04-18 07:01:26 +00:00
|
|
|
errno = e;
|
2021-08-15 07:05:27 +00:00
|
|
|
}
|
|
|
|
}
|