Class: IStats::Command
- Inherits:
-
Object
- Object
- IStats::Command
- Extended by:
- Color
- Defined in:
- lib/iStats/command.rb
Overview
Main point of entry for ‘istats` command-line tool
Constant Summary
Constants included from Color
Class Method Summary collapse
-
.all ⇒ Object
Execute all the stats methodes for all modules.
-
.delegate(category, stat, options) ⇒ Object
Delegate command to proper class.
-
.execute ⇒ Object
Executes a command.
-
.help(error = nil) ⇒ Object
Public: Prints help.
-
.parse_options ⇒ Object
Public: Parse extra options.
-
.quit ⇒ Object
Public: Quit / Exit program.
-
.setup(options) ⇒ Object
Setup execution by applying global settings.
Methods included from Color
Class Method Details
.all ⇒ Object
Execute all the stats methodes for all modules
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/iStats/command.rb', line 66 def all puts "--- CPU Stats ---\n" Cpu.all puts "\n--- Fan Stats ---\n" Fan.all puts "\n--- Battery Stats ---\n" Battery.all sensors = $config.params if sensors.keys.any? {|key| sensors[key]['enabled'] == "1"} puts "\n--- Extra Stats ---\n" Extra.all else puts "\nFor more stats run `istats extra` and follow the instructions." end end |
.delegate(category, stat, options) ⇒ Object
Delegate command to proper class
category - Hardware we are targeting (CPU, fan, etc.) stat - The stat we want
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/iStats/command.rb', line 39 def delegate(category, stat, ) case category when 'all' all when 'cpu' Cpu.delegate stat when 'fan' Fan.delegate stat when 'battery' Battery.delegate stat when 'extra' Extra.delegate stat when 'scan' SMC.delegate stat when 'enable' Settings.delegate ['enable',stat] when 'disable' Settings.delegate ['disable',stat] when 'list' Settings.list else help("Unknown category: #{category}") end end |
.execute ⇒ Object
Executes a command
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/iStats/command.rb', line 9 def execute Settings.load = # Default command is 'all' category = ARGV.empty? ? 'all' : ARGV.shift stat = ARGV.empty? ? 'all' : ARGV.shift setup delegate(category, stat, ) end |
.help(error = nil) ⇒ Object
Public: Prints help.
Returns nothing.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/iStats/command.rb', line 143 def help(error = nil) text = " #{error.nil? ? '' : red("\n[Error] #{error}\n")} - iStats: help --------------------------------------------------- istats --help This help text istats --version Print current version # Commands istats all Print all stats istats cpu Print all CPU stats istats cpu [temp | temperature] Print CPU temperature istats fan Print all fan stats istats fan [speed] Print fan speed istats battery Print all battery stats istats battery [health] Print battery health istats battery [time | remain] Print battery time remaining istats battery [cycle_count | cc] Print battery cycle count info istats battery [temp | temperature] Print battery temperature istats battery [charge] Print battery charge istats battery [capacity] Print battery capacity info istats scan Scans and print temperatures istats scan [key] Print single SMC temperature key istats scan [zabbix] JSON output for Zabbix discovery istats enable [key | all] Enables key istats disable [key | all] Disable key istats list List available keys # Arguments --no-graphs Don't display sparklines graphs --no-labels Don't display item names/labels --no-scale Display just the stat value --value-only No graph, label, or scale -f, --fahrenheit Display temperatures in fahrenheit for more help see: https://github.com/Chris911/iStats ".gsub(/^ {8}/, '') # strip the first eight spaces of every line puts text end |
.parse_options ⇒ Object
Public: Parse extra options
returns nothing
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/iStats/command.rb', line 86 def = { :display_graphs => true, :display_labels => true, :display_scale => true, :temperature_scale => 'celcius', } opt_parser = OptionParser.new do |opts| opts.on('-v', '--version', 'Print Version') do puts "iStats v#{IStats::VERSION}" quit end opts.on('-h', '--help', 'Print Help') do help quit end opts.on('--no-graphs', 'Don\'t display graphs') do [:display_graphs] = false end opts.on('--no-labels', 'Don\'t display key names') do [:display_labels] = false end opts.on('--no-scale', 'Display just the stat value (number-only)') do [:display_scale] = false end opts.on('--value-only', 'No graph, label, or scale') do [:display_graphs] = false [:display_labels] = false [:display_scale] = false end opts.on('-f', '--fahrenheit', 'Display temperatures in fahrenheit') do [:temperature_scale] = 'fahrenheit' end end begin opt_parser.parse! rescue OptionParser::MissingArgument => e help e. quit rescue OptionParser::InvalidOption => e help e. quit end end |
.quit ⇒ Object
Public: Quit / Exit program
Returns nothing
188 189 190 |
# File 'lib/iStats/command.rb', line 188 def quit exit(1) end |
.setup(options) ⇒ Object
Setup execution by applying global settings
options - command line options
27 28 29 30 31 32 |
# File 'lib/iStats/command.rb', line 27 def setup() Printer.disable_graphs unless [:display_graphs] Printer.disable_labels unless [:display_labels] Printer.disable_scale unless [:display_scale] Printer.set_temperature_scale [:temperature_scale] end |