Sha256: e7fc214c34aeaff8ad8af1b9d03fa5c58231ceb0367a1e05837f000e9a709fa3

Contents?: true

Size: 1.41 KB

Versions: 9

Compression:

Stored size: 1.41 KB

Contents

# The KeyFactory is responsible for creating keys used for lookup of bindings.
# @api public
#
class Puppet::Pops::Binder::KeyFactory

  # @api public
  def binding_key(binding)
    named_key(binding.type, binding.name)
  end

  # @api public
  def named_key(type, name)
    [(Puppet::Pops::Types::PDataType::DEFAULT.assignable?(type) ? Puppet::Pops::Types::PDataType::DEFAULT : type), name]
  end

  # @api public
  def data_key(name)
    [Puppet::Pops::Types::PDataType::DEFAULT, name]
  end

  # @api public
  def is_contributions_key?(s)
    return false unless s.is_a?(String)
    s.start_with?('mc_')
  end

  # @api public
  def multibind_contributions(multibind_id)
    "mc_#{multibind_id}"
  end

  # @api public
  def multibind_contribution_key_to_id(contributions_key)
    # removes the leading "mc_" from the key to get the multibind_id
    contributions_key[3..-1]
  end

  # @api public
  def is_named?(key)
    key.is_a?(Array) && key[1] && !key[1].empty?
  end

  # @api public
  def is_data?(key)
    return false unless key.is_a?(Array) && key[0].is_a?(Puppet::Pops::Types::PAnyType)
    Puppet::Pops::Types::PDataType::DEFAULT.assignable?(key[0])
  end

  # @api public
  def is_ruby?(key)
    key.is_a?(Array) && key[0].is_a?(Puppet::Pops::Types::PRuntimeType) && key[0].runtime == :ruby
  end

  # Returns the type of the key
  # @api public
  #
  def get_type(key)
    return nil unless key.is_a?(Array)
    key[0]
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
puppet-4.3.2 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.2-x86-mingw32 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.2-x64-mingw32 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.1 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.1-x86-mingw32 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.1-x64-mingw32 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.0 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.0-x86-mingw32 lib/puppet/pops/binder/key_factory.rb
puppet-4.3.0-x64-mingw32 lib/puppet/pops/binder/key_factory.rb