1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
# $Id: console.rb,v 1.9 2003/08/29 15:43:42 sdalu Exp $
#
# CONTACT : zonecheck@nic.fr
# AUTHOR : Stephane D'Alu <sdalu@nic.fr>
#
# CREATED : 2003/03/17 10:54:53
# REVISION : $Revision: 1.9 $
# DATE : $Date: 2003/08/29 15:43:42 $
#
# CONTRIBUTORS: (see also CREDITS file)
#
#
# LICENSE : GPL v2 (or MIT/X11-like after agreement)
# COPYRIGHT : AFNIC (c) 2003
#
# This file is part of ZoneCheck.
#
# ZoneCheck is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# ZoneCheck is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ZoneCheck; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# XXX: NEED CLEANUP
#
class Console
##
## Exception: requested encoding is not possible (conversion lose)
##
class EncodingError < StandardError
end
##
##
##
class IOConv
def initialize(console, io, ctl=nil)
@io = io
@console = console
end
def puts(*args)
@io.puts *args.collect { |e| @console.conv_to(e.to_s) }
end
def print(*args)
@io.print *args.collect { |e| @console.conv_to(e.to_s) }
end
def printf(*args)
@io.printf *args.collect { |e|
case e
when String then @console.conv_to(e)
else e
end
}
end
def method_missing(method, *args)
@io.method(method).call(*args)
end
end
attr_reader :stdin, :stdout, :stderr
attr_reader :encoding
attr_reader :ctl
def initialize(stdin=$stdin, stdout=$stdout, stderr=$stderr)
# Initialize conversion enconding engine
@iconv = nil
begin
require 'iconv'
rescue LoadError => e
@iconv = false
end
@encoding = 'UTF-8'
#
@ctl = {
've' => "\033[?25h", # show cursor
'vi' => "\033[?25l", # hide cursor
'ce' => "\033[K" # clear end of line
}
#
@stdin = IOConv::new(self, stdin)
@stdout = IOConv::new(self, stdout, @ctl)
@stderr = IOConv::new(self, stderr, @ctl)
end
def encoding=(encoding)
return true if @encoding == encoding # Nothing to change
return false if @iconv == false # Don't support convertion
@iconv = case encoding
when NilClass, 'UTF-8' then nil
else Iconv::new(encoding, 'UTF-8')
end
@encoding = encoding || 'UTF-8'
end
def conv_to(msg)
begin
return @iconv ? @iconv.iconv(msg) : msg
rescue Iconv::Failure, Iconv::InvalidCharacter => e
raise EncodingError, "Can't do full conversion to #{@encoding}"
end
end
end
|