b6ba9f09b2
One shold never parse uri with split(':') as it was in types ring_account_device, ring_container_device and ring_object_device. This is fixed by using uri and just setting variables from that. Also swift_ring_builder didn't add brackets to ipv6 address before adding port information to it. Change-Id: I55b7032143c8446abeed4f6c266c0fff0cb6b3b3
192 lines
5.3 KiB
Ruby
192 lines
5.3 KiB
Ruby
class Puppet::Provider::SwiftRingBuilder < Puppet::Provider
|
|
|
|
def self.instances
|
|
# TODO iterate through the databases
|
|
# and add the database that we used a property
|
|
ring.keys.collect do |name|
|
|
new(:name => name)
|
|
end
|
|
end
|
|
|
|
def self.address_string(address)
|
|
ip = IPAddr.new(address)
|
|
if ip.ipv6?
|
|
'[' + ip.to_s + ']'
|
|
else
|
|
ip.to_s
|
|
end
|
|
end
|
|
|
|
def self.lookup_ring
|
|
object_hash = {}
|
|
if File.exists?(builder_file_path)
|
|
if rows = swift_ring_builder(builder_file_path).split("\n")[4..-1]
|
|
rows.each do |row|
|
|
# Swift 1.7+ output example:
|
|
# Devices: id region zone ip address port name weight partitions balance meta
|
|
# 0 1 2 127.0.0.1 6022 2 1.00 262144 0.00
|
|
# 0 1 3 192.168.101.15 6002 1 1.00 262144 -100.00
|
|
#
|
|
# Swift 1.8.0 output example:
|
|
# Devices: id region zone ip address port name weight partitions balance meta
|
|
# 2 1 2 192.168.101.14 6002 1 1.00 262144 200.00 m2
|
|
# 0 1 3 192.168.101.15 6002 1 1.00 262144-100.00 m2
|
|
#
|
|
# Swift 1.8+ output example:
|
|
# Devices: id region zone ip address port replication ip replication port name weight partitions balance meta
|
|
# 0 1 2 127.0.0.1 6021 127.0.0.1 6021 2 1.00 262144 0.00
|
|
# Swift 1.8+ output example:
|
|
if row =~ /^\s*(\d+)\s+(\d+)\s+(\d+)\s+(\S+)\s+(\d+)\s+\S+\s+\d+\s+(\S+)\s+(\d+\.\d+)\s+(\d+)\s*((-|\s-?)?\d+\.\d+)\s*(\S*)/
|
|
|
|
address = address_string("#{$4}")
|
|
object_hash["#{address}:#{$5}/#{$6}"] = {
|
|
:id => $1,
|
|
:region => $2,
|
|
:zone => $3,
|
|
:weight => $7,
|
|
:partitions => $8,
|
|
:balance => $9,
|
|
:meta => $11
|
|
}
|
|
|
|
# Swift 1.8.0 output example:
|
|
elsif row =~ /^\s*(\d+)\s+(\d+)\s+(\d+)\s+(\S+)\s+(\d+)\s+(\S+)\s+(\d+\.\d+)\s+(\d+)\s*((-|\s-?)?\d+\.\d+)\s*(\S*)/
|
|
|
|
address = address_string("#{$4}")
|
|
object_hash["#{address}:#{$5}/#{$6}"] = {
|
|
:id => $1,
|
|
:region => $2,
|
|
:zone => $3,
|
|
:weight => $7,
|
|
:partitions => $8,
|
|
:balance => $9,
|
|
:meta => $11
|
|
}
|
|
# This regex is for older swift versions
|
|
elsif row =~ /^\s+(\d+)\s+(\d+)\s+(\S+)\s+(\d+)\s+(\S+)\s+(\d+\.\d+)\s+(\d+)\s+(-?\d+\.\d+)\s+(\S*)$/
|
|
|
|
address = address_string("#{$3}")
|
|
object_hash["#{address}:#{$4}/#{$5}"] = {
|
|
:id => $1,
|
|
:region => 'none',
|
|
:zone => $2,
|
|
:weight => $6,
|
|
:partitions => $7,
|
|
:balance => $8,
|
|
:meta => $9
|
|
}
|
|
|
|
else
|
|
Puppet.warning("Unexpected line: #{row}")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
object_hash
|
|
end
|
|
|
|
def ring
|
|
self.class.ring
|
|
end
|
|
|
|
def builder_file_path
|
|
self.class.builder_file_path
|
|
end
|
|
|
|
def exists?
|
|
ring[resource[:name]]
|
|
end
|
|
|
|
def create
|
|
[:zone, :weight].each do |param|
|
|
raise(Puppet::Error, "#{param} is required") unless resource[param]
|
|
end
|
|
|
|
if :region == 'none'
|
|
# Prior to Swift 1.8.0, regions did not exist.
|
|
swift_ring_builder(
|
|
builder_file_path,
|
|
'add',
|
|
"z#{resource[:zone]}-#{resource[:name]}",
|
|
resource[:weight]
|
|
)
|
|
else
|
|
# Swift 1.8+
|
|
# Region defaults to 1 if unspecified
|
|
resource[:region] ||= 1
|
|
swift_ring_builder(
|
|
builder_file_path,
|
|
'add',
|
|
"r#{resource[:region]}z#{resource[:zone]}-#{resource[:name]}",
|
|
resource[:weight]
|
|
)
|
|
end
|
|
end
|
|
|
|
def id
|
|
ring[resource[:name]][:id]
|
|
end
|
|
|
|
def id=(id)
|
|
raise(Puppet::Error, "Cannot assign id, it is immutable")
|
|
end
|
|
|
|
def region
|
|
ring[resource[:name]][:region]
|
|
end
|
|
|
|
def region=(region)
|
|
raise(Puppet::Error, "Changing the region of a device is not possible.")
|
|
end
|
|
|
|
def zone
|
|
ring[resource[:name]][:zone]
|
|
end
|
|
|
|
# TODO - is updating the zone supported?
|
|
def zone=(zone)
|
|
Puppet.warning('Setting zone is not yet supported, I am not even sure if it is supported')
|
|
end
|
|
|
|
def weight
|
|
ring[resource[:name]][:weight]
|
|
# get the weight
|
|
end
|
|
|
|
def weight=(weight)
|
|
swift_ring_builder(
|
|
builder_file_path,
|
|
'set_weight',
|
|
"d#{ring[resource[:name]][:id]}",
|
|
resource[:weight]
|
|
)
|
|
# requires a rebalance
|
|
end
|
|
|
|
def partitions
|
|
ring[resource[:name]][:partitions]
|
|
end
|
|
|
|
def partitions=(part)
|
|
raise(Puppet::Error, "Cannot set partitions, it is set by rebalancing")
|
|
end
|
|
|
|
def balance
|
|
ring[resource[:name]][:balance]
|
|
end
|
|
|
|
def balance=(balance)
|
|
raise(Puppet::Error, "Cannot set balance, it is set by rebalancing")
|
|
end
|
|
|
|
def meta
|
|
ring[resource[:name]][:meta]
|
|
end
|
|
|
|
def meta=(meta)
|
|
raise(Puppet::Error, "Cannot set meta, I am not sure if it makes sense or what it is for")
|
|
end
|
|
|
|
end
|
|
|