1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/utils/terminal.py

85 lines
2.5 KiB
Python
Raw Normal View History

2014-06-26 22:55:54 +02:00
import os
2019-08-25 00:40:39 +02:00
import platform
2014-06-26 22:55:54 +02:00
import shlex
import struct
import subprocess
def get_terminal_size():
2020-09-06 14:19:24 +02:00
"""getTerminalSize()
- get width and height of console
- works on linux,os x,windows,cygwin(windows)
originally retrieved from:
http://stackoverflow.com/questions/566746/how-to-get-console-window-width-in-python
https://gist.github.com/jtriley/1108174
2014-06-26 22:55:54 +02:00
"""
current_os = platform.system()
tuple_xy = None
2019-08-25 00:27:31 +02:00
if current_os == "Windows":
2014-06-26 22:55:54 +02:00
tuple_xy = _get_terminal_size_windows()
if tuple_xy is None:
tuple_xy = _get_terminal_size_tput()
# needed for window's python in cygwin's xterm!
2019-08-25 00:27:31 +02:00
if current_os in ["Linux", "Darwin"] or current_os.startswith("CYGWIN"):
2014-06-26 22:55:54 +02:00
tuple_xy = _get_terminal_size_linux()
if tuple_xy is None:
2019-08-25 00:27:31 +02:00
tuple_xy = (80, 25) # default value
2014-06-26 22:55:54 +02:00
return tuple_xy
def _get_terminal_size_windows():
try:
from ctypes import windll, create_string_buffer
2019-08-25 00:27:31 +02:00
2014-06-26 22:55:54 +02:00
# stdin handle is -10
# stdout handle is -11
# stderr handle is -12
h = windll.kernel32.GetStdHandle(-12)
csbi = create_string_buffer(22)
res = windll.kernel32.GetConsoleScreenBufferInfo(h, csbi)
if res:
(bufx, bufy, curx, cury, wattr, left, top, right, bottom, maxx, maxy) = struct.unpack("hhhhHhhhhhh", csbi.raw)
2014-06-26 22:55:54 +02:00
sizex = right - left + 1
sizey = bottom - top + 1
return sizex, sizey
2018-01-30 20:11:37 +01:00
except Exception:
2014-06-26 22:55:54 +02:00
pass
def _get_terminal_size_tput():
# get terminal width
# src: http://stackoverflow.com/questions/263890/how-do-i-find-the-width-height-of-a-terminal-window
try:
2019-08-25 00:27:31 +02:00
cols = int(subprocess.check_output(shlex.split("tput cols")))
rows = int(subprocess.check_output(shlex.split("tput lines")))
2014-06-26 22:55:54 +02:00
return (cols, rows)
2018-01-30 20:11:37 +01:00
except Exception:
2014-06-26 22:55:54 +02:00
pass
def _get_terminal_size_linux():
def ioctl_GWINSZ(fd):
try:
import fcntl
import termios
2019-08-25 00:27:31 +02:00
cr = struct.unpack("hh", fcntl.ioctl(fd, termios.TIOCGWINSZ, "1234"))
2014-06-26 22:55:54 +02:00
return cr
2018-01-30 20:11:37 +01:00
except Exception:
2014-06-26 22:55:54 +02:00
pass
2019-08-25 00:27:31 +02:00
2014-06-26 22:55:54 +02:00
cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2)
if not cr:
try:
fd = os.open(os.ctermid(), os.O_RDONLY)
cr = ioctl_GWINSZ(fd)
os.close(fd)
2018-01-30 20:11:37 +01:00
except Exception:
2014-06-26 22:55:54 +02:00
pass
if not cr:
try:
2019-08-25 00:27:31 +02:00
cr = (os.environ["LINES"], os.environ["COLUMNS"])
2018-01-30 20:11:37 +01:00
except Exception:
2014-06-26 22:55:54 +02:00
return None
2018-02-26 00:02:53 +01:00
return int(cr[1]), int(cr[0])