term.py 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. term: Terminal classes for the MMGen suite
  20. """
  21. import sys,os,time
  22. from collections import namedtuple
  23. from .common import *
  24. try:
  25. import tty,termios
  26. from select import select
  27. _platform = 'linux'
  28. except:
  29. try:
  30. import msvcrt
  31. _platform = 'mswin'
  32. except:
  33. die(2,'Unable to set terminal mode')
  34. if not sys.stdin.isatty():
  35. msvcrt.setmode(sys.stdin.fileno(),os.O_BINARY)
  36. class MMGenTerm(object):
  37. tdim = namedtuple('terminal_dimensions',['width','height'])
  38. @classmethod
  39. def init(cls,noecho=False):
  40. pass
  41. @classmethod
  42. def reset(cls):
  43. pass
  44. @classmethod
  45. def kb_hold_protect(cls):
  46. return None
  47. class MMGenTermLinux(MMGenTerm):
  48. @classmethod
  49. def reset(cls):
  50. termios.tcsetattr( cls.stdin_fd, termios.TCSANOW, cls.orig_term )
  51. cls.old_term = cls.orig_term
  52. @classmethod
  53. def init(cls,noecho=False):
  54. cls.stdin_fd = sys.stdin.fileno()
  55. if not hasattr(cls,'orig_term'):
  56. cls.orig_term = termios.tcgetattr(cls.stdin_fd)
  57. if noecho: # don’t echo input characters
  58. t = termios.tcgetattr(cls.stdin_fd)
  59. t[3] &= ~(termios.ECHO | termios.ECHONL)
  60. termios.tcsetattr( cls.stdin_fd, termios.TCSANOW, t )
  61. cls.old_term = termios.tcgetattr(cls.stdin_fd)
  62. @classmethod
  63. def get_terminal_size(cls):
  64. try:
  65. ret = os.get_terminal_size()
  66. except:
  67. try:
  68. ret = (os.environ['COLUMNS'],os.environ['LINES'])
  69. except:
  70. ret = (80,25)
  71. return cls.tdim(*ret)
  72. @classmethod
  73. def kb_hold_protect(cls):
  74. if g.hold_protect_disable:
  75. return
  76. tty.setcbreak(cls.stdin_fd)
  77. timeout = 0.3
  78. while True:
  79. key = select([sys.stdin], [], [], timeout)[0]
  80. if key:
  81. sys.stdin.read(1)
  82. else:
  83. termios.tcsetattr(cls.stdin_fd, termios.TCSADRAIN, cls.old_term)
  84. break
  85. @classmethod
  86. def get_char(cls,prompt='',immed_chars='',prehold_protect=True,num_bytes=5):
  87. """
  88. Use os.read(), not file.read(), to get a variable number of bytes without blocking.
  89. Request 5 bytes to cover escape sequences generated by F1, F2, .. Fn keys (5 bytes)
  90. as well as UTF8 chars (4 bytes max).
  91. """
  92. timeout = 0.3
  93. tty.setcbreak(cls.stdin_fd)
  94. msg_r(prompt)
  95. if g.hold_protect_disable:
  96. prehold_protect = False
  97. while True:
  98. # Protect against held-down key before read()
  99. key = select([sys.stdin], [], [], timeout)[0]
  100. s = os.read(cls.stdin_fd,num_bytes).decode()
  101. if prehold_protect and key:
  102. continue
  103. if s in immed_chars:
  104. break
  105. # Protect against long keypress
  106. key = select([sys.stdin], [], [], timeout)[0]
  107. if not key:
  108. break
  109. termios.tcsetattr(cls.stdin_fd, termios.TCSADRAIN, cls.old_term)
  110. return s
  111. @classmethod
  112. def get_char_raw(cls,prompt='',num_bytes=5):
  113. tty.setcbreak(cls.stdin_fd)
  114. msg_r(prompt)
  115. s = os.read(cls.stdin_fd,num_bytes).decode()
  116. termios.tcsetattr(cls.stdin_fd, termios.TCSADRAIN, cls.old_term)
  117. return s
  118. class MMGenTermLinuxStub(MMGenTermLinux):
  119. @classmethod
  120. def init(cls,noecho=False):
  121. cls.stdin_fd = sys.stdin.fileno()
  122. @classmethod
  123. def reset(cls):
  124. pass
  125. @classmethod
  126. def get_char(cls,prompt='',immed_chars='',prehold_protect=None,num_bytes=5):
  127. msg_r(prompt)
  128. return os.read(0,num_bytes).decode()
  129. get_char_raw = get_char
  130. @classmethod
  131. def kb_hold_protect(cls):
  132. pass
  133. class MMGenTermMSWin(MMGenTerm):
  134. @classmethod
  135. def get_terminal_size(cls):
  136. import struct
  137. x,y = 0,0
  138. try:
  139. from ctypes import windll,create_string_buffer
  140. # handles - stdin: -10, stdout: -11, stderr: -12
  141. csbi = create_string_buffer(22)
  142. h = windll.kernel32.GetStdHandle(-12)
  143. res = windll.kernel32.GetConsoleScreenBufferInfo(h,csbi)
  144. assert res, 'failed to get console screen buffer info'
  145. left,top,right,bottom = struct.unpack('hhhhHhhhhhh', csbi.raw)[5:9]
  146. x = right - left + 1
  147. y = bottom - top + 1
  148. except:
  149. pass
  150. if x and y:
  151. return cls.tdim(x,y)
  152. else:
  153. msg(yellow('Warning: could not get terminal size. Using fallback dimensions.'))
  154. return cls.tdim(80,25)
  155. @classmethod
  156. def kb_hold_protect(cls):
  157. timeout = 0.5
  158. while True:
  159. hit_time = time.time()
  160. while True:
  161. if msvcrt.kbhit():
  162. msvcrt.getch()
  163. break
  164. if time.time() - hit_time > timeout:
  165. return
  166. @classmethod
  167. def get_char(cls,prompt='',immed_chars='',prehold_protect=True,num_bytes=None):
  168. """
  169. always return a single character, ignore num_bytes
  170. first character of 2-character sequence returned by F1-F12 keys is discarded
  171. prehold_protect is ignored
  172. """
  173. msg_r(prompt)
  174. timeout = 0.5
  175. while True:
  176. if msvcrt.kbhit():
  177. ch = chr(msvcrt.getch()[0])
  178. if ch == '\x03':
  179. raise KeyboardInterrupt
  180. if ch in immed_chars:
  181. return ch
  182. hit_time = time.time()
  183. while True:
  184. if msvcrt.kbhit():
  185. break
  186. if time.time() - hit_time > timeout:
  187. return ch
  188. @classmethod
  189. def get_char_raw(cls,prompt='',num_bytes=None):
  190. """
  191. always return a single character, ignore num_bytes
  192. first character of 2-character sequence returned by F1-F12 keys is discarded
  193. """
  194. while True:
  195. msg_r(prompt)
  196. ch = chr(msvcrt.getch()[0])
  197. if ch in '\x00\xe0': # first char of 2-char sequence for F1-F12 keys
  198. continue
  199. if ch == '\x03':
  200. raise KeyboardInterrupt
  201. return ch
  202. class MMGenTermMSWinStub(MMGenTermMSWin):
  203. @classmethod
  204. def get_char(cls,prompt='',immed_chars='',prehold_protect=None,num_bytes=None):
  205. """
  206. Use stdin to allow UTF-8 and emulate the one-character behavior of MMGenTermMSWin
  207. """
  208. msg_r(prompt)
  209. return sys.stdin.read(1)
  210. get_char_raw = get_char
  211. def get_term():
  212. return {
  213. 'linux': (MMGenTermLinux if sys.stdin.isatty() else MMGenTermLinuxStub),
  214. 'mswin': (MMGenTermMSWin if sys.stdin.isatty() else MMGenTermMSWinStub),
  215. }[_platform]
  216. def init_term(noecho=False):
  217. term = get_term()
  218. term.init(noecho=noecho)
  219. import mmgen.term as self
  220. for var in ('get_char','get_char_raw','kb_hold_protect','get_terminal_size'):
  221. setattr( self, var, getattr(term,var) )
  222. def reset_term():
  223. get_term().reset()