Class: Specinfra::HostInventory

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/specinfra/host_inventory.rb,
lib/specinfra/host_inventory/cpu.rb,
lib/specinfra/host_inventory/ec2.rb,
lib/specinfra/host_inventory/base.rb,
lib/specinfra/host_inventory/fqdn.rb,
lib/specinfra/host_inventory/domain.rb,
lib/specinfra/host_inventory/memory.rb,
lib/specinfra/host_inventory/hostname.rb,
lib/specinfra/host_inventory/platform.rb,
lib/specinfra/host_inventory/filesystem.rb,
lib/specinfra/host_inventory/platform_version.rb

Defined Under Namespace

Classes: Base, Cpu, Domain, Ec2, Filesystem, Fqdn, Hostname, Memory, Platform, PlatformVersion

Constant Summary collapse

KEYS =
%w{
  memory
  ec2
  hostname
  domain
  fqdn
  platform
  platform_version
  filesystem
  cpu
}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(backend, inventory = {}) ⇒ HostInventory

Returns a new instance of HostInventory.



24
25
26
27
# File 'lib/specinfra/host_inventory.rb', line 24

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

Instance Attribute Details

#backendObject (readonly)

Returns the value of attribute backend.



17
18
19
# File 'lib/specinfra/host_inventory.rb', line 17

def backend
  @backend
end

Class Method Details

.instanceObject



19
20
21
22
# File 'lib/specinfra/host_inventory.rb', line 19

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

Instance Method Details

#[](key) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/specinfra/host_inventory.rb', line 29

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

#eachObject



42
43
44
45
46
# File 'lib/specinfra/host_inventory.rb', line 42

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

#each_keyObject



48
49
50
51
52
# File 'lib/specinfra/host_inventory.rb', line 48

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

#each_valueObject



54
55
56
57
58
# File 'lib/specinfra/host_inventory.rb', line 54

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