Class: TerminalSize::TerminalSize
- Inherits:
-
Object
- Object
- TerminalSize::TerminalSize
- Defined in:
- lib/output/index_diagram/terminal_size.rb
Overview
class to extract the terminal dimension of the the terminal which called the executing script
Instance Attribute Summary collapse
-
#columns ⇒ Integer
readonly
The number of lines of the used terminal.
-
#lines ⇒ Integer
readonly
The number of fields per row of the used terminal.
Instance Method Summary collapse
-
#command_exists?(command) ⇒ Boolean
private
method to check if the given command can be executed.
-
#detect_terminal_size ⇒ Array
private
method to read the terminal dimension, using different shell programs.
-
#initialize ⇒ TerminalSize
constructor
initialization.
-
#read_terminal_size ⇒ Object
method to determine the terminal dimension.
Constructor Details
#initialize ⇒ TerminalSize
initialization
14 15 16 |
# File 'lib/output/index_diagram/terminal_size.rb', line 14 def initialize read_terminal_size end |
Instance Attribute Details
#columns ⇒ Integer (readonly)
Returns the number of lines of the used terminal.
9 10 11 |
# File 'lib/output/index_diagram/terminal_size.rb', line 9 def columns @columns end |
#lines ⇒ Integer (readonly)
Returns the number of fields per row of the used terminal.
11 12 13 |
# File 'lib/output/index_diagram/terminal_size.rb', line 11 def lines @lines end |
Instance Method Details
#command_exists?(command) ⇒ Boolean (private)
method to check if the given command can be executed
56 57 58 59 60 |
# File 'lib/output/index_diagram/terminal_size.rb', line 56 def command_exists?(command) ENV["PATH"].split(File::PATH_SEPARATOR).any? { |d| File.exist?(File.join(d, command)) } end |
#detect_terminal_size ⇒ Array (private)
method to read the terminal dimension, using different shell programs
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/output/index_diagram/terminal_size.rb', line 34 def detect_terminal_size # take informations directly from ENV variable if (ENV["COLUMNS"] =~ /^\d+$/) && (ENV["LINES"] =~ /^\d+$/) [ENV["COLUMNS"].to_i, ENV["LINES"].to_i] # take informations from tput command elsif ((RUBY_PLATFORM =~ /java/ || (!STDIN.tty? && ENV["TERM"])) && command_exists?("tput")) [`tput cols`.to_i, `tput lines`.to_i] # take informations from stty command elsif (STDIN.tty? && command_exists?("stty")) `stty size`.scan(/\d+/).map { |s| s.to_i }.reverse else nil end rescue StandardError puts " Error: could not determine correct terminal size".red nil end |
#read_terminal_size ⇒ Object
method to determine the terminal dimension
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/output/index_diagram/terminal_size.rb', line 19 def read_terminal_size values = detect_terminal_size if (values != nil) @columns = values[0] @lines = values[1] else raise NoMethodError, " Error: terminal size cannot be retrieved on" \ " this system".red end end |