Sha256: 23ade5ed667f2ad47a28a722854fa9f3a44a38ea756fec98dec523f1a9bf0ffe

Contents?: true

Size: 1.85 KB

Versions: 7

Compression:

Stored size: 1.85 KB

Contents

require "aws/cfn/decompiler/version"
require "aws/cfn/compiler"

require 'json'
require 'ap'
require 'yaml'

module Aws
  module Cfn
    module DeCompiler
      class Base < ::Aws::Cfn::Compiler::Base
        attr_accessor :template

        require "aws/cfn/decompiler/mixins/options"
        include Aws::Cfn::DeCompiler::Options

        def save_dsl(output_dir, decompiled=@items)

          specification = {}
          format = @config[:format] rescue 'yaml'
          ruby   = (not format.match(%r'^ruby|rb$').nil?)
          if ruby
            pprint_cfn_template simplify(decompiled)
          end
          decompiled.each do |section, section_items|
            case section
              when /Mappings|Parameters|Resources|Outputs/
                specification[section] = []
                section_items.each do |name,value|
                  unless ruby
                    dir  = File.join(output_dir,section.to_s)
                    unless File.directory?(dir)
                      Dir.mkdir(dir)
                    end
                    file = "#{name}.#{format}"
                    hash = {  name => value }

                    save_section(dir, file, format, section, hash)
                  end
                  specification[section] << name
                end
              when /AWSTemplateFormatVersion|Description/
                specification[section] = section_items
              else
                abort! "Unsupported section '#{section}' in template"
            end
          end

          # Save specification
          unless @config[:specification].nil?
            dir = File.dirname(@config[:specification])
            dir = output_dir unless dir
            save_section(dir, File.basename(@config[:specification]), format, '', specification, '', "specification")
          end

        end

        protected

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
aws-cfn-decompiler-0.9.3 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.9.2 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.9.1 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.8.2 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.8.1 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.8.0 lib/aws/cfn/decompiler/base.rb
aws-cfn-decompiler-0.7.0 lib/aws/cfn/decompiler/base.rb