2019-05-12 18:22:27 +03:00
|
|
|
require 'timeout'
|
|
|
|
|
|
|
|
class Reline::GeneralIO
|
2020-01-12 16:24:17 +03:00
|
|
|
def self.encoding
|
2020-01-26 06:55:13 +03:00
|
|
|
RUBY_PLATFORM =~ /mswin|mingw/ ? Encoding::UTF_8 : Encoding::default_external
|
2020-01-12 16:24:17 +03:00
|
|
|
end
|
|
|
|
|
2019-10-17 20:29:13 +03:00
|
|
|
RAW_KEYSTROKE_CONFIG = {}
|
2019-05-31 18:34:38 +03:00
|
|
|
|
2019-05-12 18:22:27 +03:00
|
|
|
@@buf = []
|
|
|
|
|
|
|
|
def self.input=(val)
|
|
|
|
@@input = val
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.getc
|
2019-05-24 17:38:40 +03:00
|
|
|
unless @@buf.empty?
|
|
|
|
return @@buf.shift
|
|
|
|
end
|
2019-05-12 18:22:27 +03:00
|
|
|
c = nil
|
|
|
|
loop do
|
|
|
|
result = select([@@input], [], [], 0.1)
|
|
|
|
next if result.nil?
|
|
|
|
c = @@input.read(1)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
c&.ord
|
|
|
|
end
|
|
|
|
|
2019-05-24 17:38:40 +03:00
|
|
|
def self.ungetc(c)
|
|
|
|
@@buf.unshift(c)
|
|
|
|
end
|
|
|
|
|
2019-05-12 18:22:27 +03:00
|
|
|
def self.get_screen_size
|
|
|
|
[1, 1]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.cursor_pos
|
|
|
|
Reline::CursorPos.new(1, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_column(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_up(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.move_cursor_down(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.erase_after_cursor
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.scroll_down(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.clear_screen
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.set_screen_size(rows, columns)
|
|
|
|
end
|
|
|
|
|
2019-08-29 09:21:00 +03:00
|
|
|
def self.set_winch_handler(&handler)
|
|
|
|
end
|
|
|
|
|
2019-05-12 18:22:27 +03:00
|
|
|
def self.prep
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.deprep(otio)
|
|
|
|
end
|
|
|
|
end
|