Sha256: de3d822a9e585d9ca0034b0770cca5ff3c71baa7c669fa806febd790fbfa4000

Contents?: true

Size: 1.66 KB

Versions: 1

Compression:

Stored size: 1.66 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 is_merged? first
            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'])
          else
            output << make_csv(in_what_file(first[:file]) +
                     [key, first[:value].to_s, '0'])
          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.2.0 lib/hieracles/formats/csv.rb