Sha256: 8c7680db8a6e246bab872076cf484511e20ab4feb84fa850135435ce2d0428c3

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

module Specinfra
  class HostInventory
    KEYS = %w{
      memory
      ec2
      hostname
      domain
      fqdn
      platform
      platform_version
      filesystem
      cpu
    }

    include Enumerable

    attr_reader :backend

    def self.instance
      property[:host_inventory] ||= {}
      self.new(Specinfra.backend, property[:host_inventory])
    end

    def initialize(backend, inventory = {})
      @backend = backend
      @inventory = inventory
    end

    def [](key)
      @inventory[key.to_sym] ||= {}
      if @inventory[key.to_sym].empty?
        begin
          inventory_class = Specinfra::HostInventory.const_get(key.to_s.to_camel_case)
          @inventory[key.to_sym] = inventory_class.new(self).get
        rescue
          @inventory[key.to_sym] = nil
        end
      end
      @inventory[key.to_sym]
    end

    def each
      KEYS.each do |k|
        yield k, self[k]
      end
    end

    def each_key
      KEYS.each do |k|
        yield k
      end
    end

    def each_value
      KEYS.each do |k|
        yield self[k]
      end
    end

  end
end

require "specinfra/host_inventory/base"
Specinfra::HostInventory::KEYS.each do |k|
  require "specinfra/host_inventory/#{k}"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
specinfra-2.26.1 lib/specinfra/host_inventory.rb
specinfra-2.26.0 lib/specinfra/host_inventory.rb
specinfra-2.25.1 lib/specinfra/host_inventory.rb
specinfra-2.25.0 lib/specinfra/host_inventory.rb
specinfra-2.24.2 lib/specinfra/host_inventory.rb
specinfra-2.24.1 lib/specinfra/host_inventory.rb
specinfra-2.24.0 lib/specinfra/host_inventory.rb