Sha256: 22519e412e3c56b84d13b8133554cdaeb697641c1a607b058857fdd92cac9a16

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

module Hieracles
  module Formats
    # for db compatibility
    class Csv < Hieracles::Format
      CVS_DELIM = ';'

      def info(_)
        make_csv @node.info.values
      end

      def files(_)
        make_csv @node.files
      end

      def paths(_)
        make_csv @node.paths
      end

      def build_head(without_common)
        output = []
        @node.files(without_common).each do |f|
          output << f
        end
        output += %w(var value overriden)
        make_csv output
      end

      def build_params_line(key, value, filter)
        output = ''
        if !filter || Regexp.new(filter).match(key)
          first = value.pop
          if first[:value] == first[:merged]
            output << make_csv(in_what_file(first[:file]) +
                     [key, first[:value].to_s, '0'])
          else
            output << make_csv(in_what_file('-') +
                     [key, first[:merged].to_s, '0'])
            output << make_csv(in_what_file(first[:file]) +
                     [key, first[:value].to_s, '1'])
          end
          while value.count > 0
            overriden = value.pop
            output << make_csv(in_what_file(overriden[:file]) +
                     [key, overriden[:value].to_s, '1'])
          end
        end
        output
      end

      def build_modules_line(key, value)
        make_csv [key, value]
      end

    private

      def make_csv(array)
        array.join(CVS_DELIM) + "\n"
      end

      def in_what_file(file)
        output = []
        @node.files.each do |f|
          if file == f
            output << '1'
          else
            output << '0'
          end
        end
        output
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hieracles-0.1.7 lib/hieracles/formats/csv.rb