Class: Pwrake::HostMap

Inherits:
Hash
  • Object
show all
Defined in:
lib/pwrake/option/host_map.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arg = nil) ⇒ HostMap

Returns a new instance of HostMap.



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/pwrake/option/host_map.rb', line 118

def initialize(arg=nil)
  @host_map = {}
  @by_id = []
  @by_name = {}
  @is_local = false
  @ipmatch_for_name = {}
  @@hostmap = self
  case arg
  when /\.yaml$/
    read_yaml(arg)
  when String
    read_host(arg)
  when Integer
    parse_hosts(["localhost #{arg}"])
  when NilClass
    parse_hosts(["localhost 1"])
  else
    raise ArgumentError, "arg=#{arg.inspect}"
  end

  # local check
  if @by_id.size == 1
    if @by_id[0].local?
      @is_local = true
    end
  end
end

Instance Attribute Details

#by_idObject (readonly)

Returns the value of attribute by_id.



145
146
147
# File 'lib/pwrake/option/host_map.rb', line 145

def by_id
  @by_id
end

#by_nameObject (readonly)

Returns the value of attribute by_name.



145
146
147
# File 'lib/pwrake/option/host_map.rb', line 145

def by_name
  @by_name
end

Class Method Details

.ipmatch_for_name(name) ⇒ Object



114
115
116
# File 'lib/pwrake/option/host_map.rb', line 114

def self.ipmatch_for_name(name)
  @@hostmap.ipmatch_for_name(name)
end

Instance Method Details

#group_core_weightObject



163
164
165
166
167
168
169
# File 'lib/pwrake/option/host_map.rb', line 163

def group_core_weight
  a = []
  self.each do |sub,list|
    list.each{|h| (a[h.group] ||= []) << h.weight}
  end
  a
end

#group_hostsObject



155
156
157
158
159
160
161
# File 'lib/pwrake/option/host_map.rb', line 155

def group_hosts
  a = []
  self.each do |sub,list|
    list.each{|h| (a[h.group] ||= []) << h.name}
  end
  a
end

#group_weight_sumObject



171
172
173
174
175
176
177
# File 'lib/pwrake/option/host_map.rb', line 171

def group_weight_sum
  a = []
  self.each do |sub,list|
    list.each{|h| a[h.group] = (a[h.group]||0) + h.weight}
  end
  a
end

#host_countObject



151
152
153
# File 'lib/pwrake/option/host_map.rb', line 151

def host_count
  @by_id.size
end

#ipmatch_for_name(node) ⇒ Object



179
180
181
182
183
184
185
186
187
188
189
# File 'lib/pwrake/option/host_map.rb', line 179

def ipmatch_for_name(node)
  unless a = @ipmatch_for_name[node]
    @ipmatch_for_name[node] = a = []
    ip = IPSocket.getaddress(node)
    @by_id.each_with_index do |h,id|
      a << id if h.ipaddr.include?(ip)
    end
    Log.debug "node:#{node} hosts:#{a.map{|id|@by_id[id].name}.inspect}"
  end
  a
end

#local?Boolean

Returns:

  • (Boolean)


147
148
149
# File 'lib/pwrake/option/host_map.rb', line 147

def local?
  @is_local
end