Class: Puppet::Parser::AST::ASTArray

Inherits:
Branch show all
Includes:
Enumerable
Defined in:
lib/puppet/parser/ast/astarray.rb

Overview

The basic container class. This object behaves almost identically to a normal array except at initialization time. Note that its name is ‘AST::ASTArray’, rather than plain ‘AST::Array’; I had too many bugs when it was just ‘AST::Array’, because things like ‘object.is_a?(Array)’ never behaved as I expected.

Direct Known Subclasses

ResourceInstance

Constant Summary

Constants inherited from Puppet::Parser::AST

AST

Instance Attribute Summary

Attributes inherited from Branch

#children, #pin

Attributes inherited from Puppet::Parser::AST

#parent, #scope

Attributes included from Util::Docs

#doc, #nodoc

Attributes included from FileCollection::Lookup

#file_index, #line

Instance Method Summary collapse

Methods inherited from Branch

#each, #initialize

Methods inherited from Puppet::Parser::AST

associates_doc, #evaluate_match, #initialize, #inspect, #parsefail, #parsewrap, #safeevaluate, settor?, #use_docs

Methods included from Util::Docs

#desc, #dochook, #doctable, #nodoc?, #pad, scrub

Methods included from Util::MethodHelper

#requiredopts, #set_options, #symbolize_options

Methods included from Util::Errors

#adderrorcontext, #devfail, #error_context, #exceptwrap, #fail

Methods included from FileCollection::Lookup

#file, #file=, #file_collection

Constructor Details

This class inherits a constructor from Puppet::Parser::AST::Branch

Instance Method Details

#[](index) ⇒ Object

Return a child by index. Probably never used.



13
14
15
# File 'lib/puppet/parser/ast/astarray.rb', line 13

def [](index)
  @children[index]
end

#evaluate(scope) ⇒ Object

Evaluate our children.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/puppet/parser/ast/astarray.rb', line 18

def evaluate(scope)
  # Make a new array, so we don't have to deal with the details of
  # flattening and such
  items = []

  # First clean out any AST::ASTArrays
  @children.each { |child|
    if child.instance_of?(AST::ASTArray)
      child.each do |ac|
        items << ac
      end
    else
      items << child
    end
  }

  rets = items.flatten.collect { |child|
    child.safeevaluate(scope)
  }
  rets.reject { |o| o.nil? }
end

#push(*ary) ⇒ Object



40
41
42
43
44
45
46
47
48
49
# File 'lib/puppet/parser/ast/astarray.rb', line 40

def push(*ary)
  ary.each { |child|
    #Puppet.debug "adding %s(%s) of type %s to %s" %
    #    [child, child.object_id, child.class.to_s.sub(/.+::/,''),
    #    self.object_id]
    @children.push(child)
  }

  self
end

#to_sObject



51
52
53
# File 'lib/puppet/parser/ast/astarray.rb', line 51

def to_s
  "[" + @children.collect { |c| c.to_s }.join(', ') + "]"
end