2021-02-22 00:26:36 +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│
|
2020-06-15 14:18:57 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2021-02-22 00:26:36 +00:00
|
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2023-08-19 13:41:06 +00:00
|
|
|
#include "libc/atomic.h"
|
|
|
|
#include "libc/calls/internal.h"
|
2022-03-25 14:11:44 +00:00
|
|
|
#include "libc/calls/sig.internal.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/fd.internal.h"
|
2022-03-16 20:33:13 +00:00
|
|
|
#include "libc/calls/struct/winsize.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/calls/struct/winsize.internal.h"
|
2022-03-25 14:11:44 +00:00
|
|
|
#include "libc/dce.h"
|
2023-08-19 13:41:06 +00:00
|
|
|
#include "libc/intrin/atomic.h"
|
2022-10-13 20:44:41 +00:00
|
|
|
#include "libc/intrin/strace.internal.h"
|
2023-08-19 13:41:06 +00:00
|
|
|
#include "libc/nt/console.h"
|
2022-03-16 20:33:13 +00:00
|
|
|
#include "libc/nt/struct/consolescreenbufferinfoex.h"
|
2022-03-25 14:11:44 +00:00
|
|
|
#include "libc/sysv/consts/sicode.h"
|
2022-03-23 04:04:08 +00:00
|
|
|
#include "libc/sysv/consts/sig.h"
|
2023-08-19 13:41:06 +00:00
|
|
|
|
2023-05-09 08:56:56 +00:00
|
|
|
#ifdef __x86_64__
|
|
|
|
|
2023-08-19 13:41:06 +00:00
|
|
|
static atomic_uint __win_winsize;
|
2021-02-27 18:33:32 +00:00
|
|
|
|
2023-08-19 13:41:06 +00:00
|
|
|
static textwindows unsigned __get_console_size(void) {
|
|
|
|
for (int fd = 1; fd < 10; ++fd) {
|
|
|
|
intptr_t hConsoleOutput;
|
|
|
|
if (g_fds.p[fd].kind == kFdConsole) {
|
|
|
|
hConsoleOutput = g_fds.p[fd].extra;
|
2022-03-16 20:33:13 +00:00
|
|
|
} else {
|
2023-08-19 13:41:06 +00:00
|
|
|
hConsoleOutput = g_fds.p[fd].handle;
|
|
|
|
}
|
|
|
|
struct NtConsoleScreenBufferInfoEx sr = {.cbSize = sizeof(sr)};
|
|
|
|
if (GetConsoleScreenBufferInfoEx(hConsoleOutput, &sr)) {
|
|
|
|
unsigned short yn = sr.srWindow.Bottom - sr.srWindow.Top + 1;
|
|
|
|
unsigned short xn = sr.srWindow.Right - sr.srWindow.Left + 1;
|
|
|
|
return (unsigned)yn << 16 | xn;
|
2022-03-16 20:33:13 +00:00
|
|
|
}
|
2021-02-22 00:26:36 +00:00
|
|
|
}
|
2023-08-19 13:41:06 +00:00
|
|
|
return -1u;
|
|
|
|
}
|
|
|
|
|
|
|
|
textwindows void _check_sigwinch(void) {
|
|
|
|
unsigned old = atomic_load_explicit(&__win_winsize, memory_order_acquire);
|
|
|
|
if (old == -1u) return;
|
|
|
|
unsigned neu = __get_console_size();
|
|
|
|
old = atomic_exchange(&__win_winsize, neu);
|
|
|
|
if (neu != old) {
|
|
|
|
__sig_add(0, SIGWINCH, SI_KERNEL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__((__constructor__)) static void sigwinch_init(void) {
|
|
|
|
if (!IsWindows()) return;
|
|
|
|
unsigned ws = __get_console_size();
|
|
|
|
atomic_store_explicit(&__win_winsize, ws, memory_order_release);
|
|
|
|
STRACE("sigwinch_init() → %08x", ws);
|
2021-02-22 00:26:36 +00:00
|
|
|
}
|
2023-05-09 08:56:56 +00:00
|
|
|
|
|
|
|
#endif /* __x86_64__ */
|