Module: Aws::Cfn::Compiler::Parse

Included in:
Base
Defined in:
lib/aws/cfn/compiler/mixins/parse.rb

Instance Method Summary collapse

Instance Method Details

#parseObject



12
13
14
15
16
17
18
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 12

def parse
  parse_meta(@spec)
  @dsl ||= Aws::Cfn::Dsl::Template.new(@config[:directory])
  @all_sections.each do |section|
    parse_section(section,@spec)
  end
end

#parse_meta(spec) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 20

def parse_meta(spec)
  begin
    reqs = meta(:Require)
    if reqs
      reqs.each do |name,args|
        requirement(name,args)
      end
    end
  rescue Exception => e
    abort! e
  end
end

#parse_rb_file(base, section, filename) ⇒ Object



145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 145

def parse_rb_file(base, section, filename)
  Aws::Cfn::Compiler.binding ||= {}
  Aws::Cfn::Compiler.binding[section] ||= {}
  Aws::Cfn::Compiler.binding[section][base] ||= {
      brick_path:       @config[:brick_path],
      brick_path_list:  @config[:brick_path_list],
      template:         @dsl,
      logger:           @logger,
      compiler:         self
  }
  source_file = File.expand_path(filename)
  begin
    eval 'require source_file', binding
  rescue Exception => e
    abort! "Cannot compile #{source_file}\n\n" + e.message + "\n\n" + e.backtrace.to_s
  end
  unless @dsl.dict[section.to_sym]
    abort! "Unable to compile/expand #{filename} for #{section}/#{base}"
  end
  sym_to_s(@dsl.dict[section.to_sym])
end

#parse_section(section, spec = nil) ⇒ Object

noinspection RubyGlobalVariableNamingConvention



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 76

def parse_section(section,spec=nil)
  logStep "Parsing #{section}..."

  if spec and spec[section]
    @items          ||= {}
    @items[section] ||= {}
    get  = {}
    item = {}
    spec[section].each do |rsrc|
      @logger.debug "\tUsing #{section}::#{rsrc}"
      refp,sub,base,rel = map_resource_reference(rsrc)
      if refp.nil?
        path = get_brick_dirname(section, rsrc)
      else
        path = get_brick_dirname(sub ? sub : section, rsrc, refp, rel)
      end
      abort! "No such directory: #{path} (I am here: #{Dir.pwd})" unless File.directory?(path)
      unless get[path]
        get[path] = get_file_set([".*"], path, @config[:precedence])
      end
      set = get[path]
      if set[base]
        if item.has_key?(base)
          @logger.error "  !! error: Duplicate item: #{section}/#{base}"
          abort!
        end

        filename = set[base]
        unless filename =~ /\.(ru?by?|ya?ml|js(|on))\z/i
          @logger.info "Brick not supported/ relevant: #{filename}"
          next
        end

        begin
          @logger.debug "  reading #{filename}"
          content = File.read(filename)
          next if content.size==0

          if filename =~ /\.(rb|ruby)\z/i
            item.merge! parse_rb_file(base, section, filename)
          elsif filename =~ /\.js(|on)\z/i
            item.merge! JSON.parse(content)
          elsif filename =~ /\.ya?ml\z/i
            item.merge! YAML.load(content)
          else
            next
          end

        rescue
          abort! "  !! error: #{$!}"
        end
      else
        abort! "  !! error: #{section}/#{base} not found!"
      end
    end
    item.keys.each { |key|
      if @items[section].has_key?(key)
        abort! "  !! error: Duplicate item: #{section}/#{key}"
      end
    }
    @items[section].merge! item

    unless @items[section].keys.count == spec[section].count
      abort! "  !! error: Suspect that a #{section} item was missed or not properly named (Brick name and file name mismatch?)! \nRequested: #{spec[section]}\n    Found: #{@items[section].keys}"
    end
  end

end

#requirement(name, *args) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 33

def requirement(name, *args)

  #options = args.last.is_a?(Hash) ? args.pop.dup : {}
  constraint = case args.class.name
                 when /Array/
                   args.shift
                 when /Symbol/
                   args.to_s
                 when /String/
                   args
                 else
                   raise "Unsupported class #{args.class.name} for #{args.ai}"
               end
  version,constraint = case name
    when /Compiler/
      [Aws::Cfn::Compiler::VERSION,constraint]
    when /^(DeCompiler|Decompiler)/
      [Aws::Cfn::DeCompiler::VERSION,constraint]
    when /^(Dsl|DSL)/
      [Aws::Cfn::Dsl::VERSION,constraint]
    when /Gems/
      constraint.map { |h|
        h.map { |k,v|
          ver = eval "#{k}::VERSION"
          semver = ::Semverse::Version.new(ver)
          raise "The constraint failed: #{k} #{v} (Found #{ver})" unless ::Semverse::Constraint.new(v).satisfies?(semver)
        }
      }
      return
    when /Template/
      @logger.warn "Template constraint check supported but not implemented in version #{VERSION}: #{constraint}"
      return
    # when /MinVersion/
    #   [Aws::Cfn::Compiler::VERSION,">= #{constraint}"]
    else
      raise "#{name} constraint not supported"
  end

  raise "The constraint failed: #{name} #{constraint} (Found #{version})" unless ::Semverse::Constraint.new(constraint).satisfies?(::Semverse::Version.new(version))

end

#sym_to_s(hash) ⇒ Object



167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/aws/cfn/compiler/mixins/parse.rb', line 167

def sym_to_s(hash)
  case hash.class.name
    when /Hash/
      item = {}
      hash.each { |k,v|
        item[k.to_s] = sym_to_s(v)
      }
      item
    when /Array/
      hash.map{|e| sym_to_s(e) }
    when /Fixnum|String|TrueClass|FalseClass/
      hash
    when /Symbol/
      hash.to_s
    else
      abort! "Internal error: #{hash} is a #{hash.class.name} which our Ruby parsing is not prepared for. Fix #{__FILE__}::sym_to_s"
  end
end