2019-05-12 18:22:27 +03:00
|
|
|
require 'timeout'
|
|
|
|
|
|
|
|
class Reline::GeneralIO
|
2021-04-20 06:00:08 +03:00
|
|
|
def self.reset(encoding: nil)
|
2020-11-08 15:56:27 +03:00
|
|
|
@@pasting = false
|
2021-04-20 06:00:08 +03:00
|
|
|
@@encoding = encoding
|
2020-11-08 15:56:27 +03:00
|
|
|
end
|
|
|
|
|
2020-01-12 16:24:17 +03:00
|
|
|
def self.encoding
|
2021-04-20 06:00:08 +03:00
|
|
|
if @@encoding
|
|
|
|
@@encoding
|
|
|
|
elsif RUBY_PLATFORM =~ /mswin|mingw/
|
|
|
|
Encoding::UTF_8
|
|
|
|
else
|
|
|
|
Encoding::default_external
|
|
|
|
end
|
2020-01-12 16:24:17 +03:00
|
|
|
end
|
|
|
|
|
2020-01-31 20:59:46 +03:00
|
|
|
def self.win?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2021-04-05 10:03:53 +03:00
|
|
|
def self.set_default_key_bindings(_)
|
|
|
|
end
|
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
|
|
|
|
|
2020-11-08 15:56:27 +03:00
|
|
|
@@pasting = false
|
|
|
|
|
2020-10-20 02:39:12 +03:00
|
|
|
def self.in_pasting?
|
2020-11-08 15:56:27 +03:00
|
|
|
@@pasting
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.start_pasting
|
|
|
|
@@pasting = true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.finish_pasting
|
|
|
|
@@pasting = false
|
2020-10-20 02:39:12 +03:00
|
|
|
end
|
|
|
|
|
2019-05-12 18:22:27 +03:00
|
|
|
def self.prep
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.deprep(otio)
|
|
|
|
end
|
|
|
|
end
|