Sha256: ba3b315f375e8b740771d715bda9f3538f9939b9c3fc1562338faba2da2464b6

Contents?: true

Size: 1.18 KB

Versions: 133

Compression:

Stored size: 1.18 KB

Contents

require 'puppet/parser/ast'
require 'puppet/parser/ast/branch'
require 'puppet/parser/relationship'

class Puppet::Parser::AST::Relationship < Puppet::Parser::AST::Branch
  RELATIONSHIP_TYPES = %w{-> <- ~> <~}

  attr_accessor :left, :right, :arrow, :type

  # Evaluate our object, but just return a simple array of the type
  # and name.
  def evaluate(scope)
    real_left = left.safeevaluate(scope)
    real_right = right.safeevaluate(scope)

    source, target = sides2edge(real_left, real_right)
    scope.compiler.add_relationship Puppet::Parser::Relationship.new(source, target, type)

    real_right
  end

  def initialize(left, right, arrow, args = {})
    super(args)
    unless RELATIONSHIP_TYPES.include?(arrow)
      raise ArgumentError, "Invalid relationship type #{arrow.inspect}; valid types are #{RELATIONSHIP_TYPES.collect { |r| r.to_s }.join(", ")}"
    end
    @left, @right, @arrow = left, right, arrow
  end

  def type
    subscription? ? :subscription : :relationship
  end

  def sides2edge(left, right)
    out_edge? ? [left, right] : [right, left]
  end

  private

  def out_edge?
    ["->", "~>"].include?(arrow)
  end

  def subscription?
    ["~>", "<~"].include?(arrow)
  end
end

Version data entries

133 entries across 133 versions & 4 rubygems

Version Path
puppet-3.4.0.rc1 lib/puppet/parser/ast/relationship.rb
puppet-3.3.2 lib/puppet/parser/ast/relationship.rb
puppet-3.3.1 lib/puppet/parser/ast/relationship.rb
puppet-3.3.1.rc3 lib/puppet/parser/ast/relationship.rb
puppet-3.3.1.rc2 lib/puppet/parser/ast/relationship.rb
puppet-3.3.1.rc1 lib/puppet/parser/ast/relationship.rb
puppet-3.3.0 lib/puppet/parser/ast/relationship.rb
puppet-3.3.0.rc3 lib/puppet/parser/ast/relationship.rb
puppet-3.3.0.rc2 lib/puppet/parser/ast/relationship.rb
puppet-3.2.4 lib/puppet/parser/ast/relationship.rb
puppet-2.7.23 lib/puppet/parser/ast/relationship.rb
puppet-3.2.3 lib/puppet/parser/ast/relationship.rb
puppet-3.2.3.rc1 lib/puppet/parser/ast/relationship.rb
puppet-3.2.2 lib/puppet/parser/ast/relationship.rb
puppet-2.7.22 lib/puppet/parser/ast/relationship.rb
puppet-3.2.1 lib/puppet/parser/ast/relationship.rb
puppet-3.2.1.rc1 lib/puppet/parser/ast/relationship.rb
puppet-3.2.0.rc2 lib/puppet/parser/ast/relationship.rb
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/lib/puppet/parser/ast/relationship.rb
puppet-3.2.0.rc1 lib/puppet/parser/ast/relationship.rb