Sha256: 9ef406f7f2524bba464369fabc0965066d20c61b41ccdfc3ec9f85076fdf3f5a

Contents?: true

Size: 1.78 KB

Versions: 18

Compression:

Stored size: 1.78 KB

Contents

#coding=utf-8

require "aio/core"

class Aio::Module::Cmd::Maipu::ShowSystemPower < Aio::Module::Cmd::Maipu
	include Aio::Module

	def initialize
		super({
			:cmd_full		=> "show system power",
			:cmd_short	=> "sh sys po",
			:author			=> "Elin",
			:description	=> "This is Maipu Command# show system power",
			:ranking		=> Ranking_1,
			:platform		=> "all",
			:benchmark	=> {
				:power_status		=> ["==", "NORMAL"],
				:power_alarm		=> ["<", 1]
				}
		})
	end

	def parse
		cont = self.context.dup
		useful[:power] = {}
		
		cont.readline_range_loop(/System Power Information/, reg_blank) do |cont_layer|
			parse_power(cont_layer)
		end
	end

	def parse_power(context)
		power = {}
		power_id = nil
		context.readline_match_block(/System Power Information\(Power (?<power_id>\d+) - (?<state>.*)\)/) do |block|
			power_id = block[:power_id]
			useful[:power]["slot_#{power_id}"] = power
			block.update(power, :power_id)
			block.update(power, :state)
		end

		if power[:state] =~ /ONLINE/
			context.readline_match_block(/Status: (?<power_status>.*)/) do |block|
				block.warning_serious(power, :power_status, self)
			end
			context.readline_match_block(/Last-Alarm: (?<power_alarm>\d+)/) do |block|
				block.warning_serious(power, :power_alarm, self)
			end
			context.readline_match_block(/Serial No\.: (?<sn>.*)/) do |block|
				block.update(power, :sn)
			end
			context.readline_match_block(/Description: (?<description>.*)/) do |block|
				block.update(power, :description)
			end
		end

		context.readline_match_block(/STATISTICS: (?<in>\d+) IN, (?<out>\d+) OUT, (?<in_error>\d+) IERR, (?<out_error>\d+) OERR/) do |block|
			stat = {}
			power[:statistics] = stat
			block.update(stat, :in)
			block.update(stat, :out)
			block.update(stat, :in_error)
			block.update(stat, :out_error)
		end
	end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
aio_elin-1.1.8 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.7 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.4 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.3 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.2 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.1 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.1.0 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.9 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.8 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.7 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.6 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.5 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.4 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.3 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.2 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.1 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-1.0.0 lib/modules/cmd/maipu/show_system_power.rb
aio_elin-0.0.1 lib/modules/cmd/maipu/show_system_power.rb