Sha256: 89b2aef9c063d7c37cfe07e72da36dcb4848c942d439dc95c8ef859c788881c3

Contents?: true

Size: 1.73 KB

Versions: 3

Compression:

Stored size: 1.73 KB

Contents

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

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

      def facts(_)
        make_csv(@node.facts.keys) + make_csv(@node.facts.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 << build_line('-', key, first[:merged])
            output << build_line(first[:file], key, first[:value], '1')
          else
            output << build_line(first[:file], key, first[:value])
          end
          while value.count > 0
            overriden = value.pop
            output << build_line(overriden[:file], key, overriden[:value], '1')
          end
        end
        output
      end

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

    private

      def build_line(whatfile, key, value, overriden = '0')
        make_csv(in_what_file(whatfile) + [key, value.to_s, overriden])
      end

      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

3 entries across 3 versions & 1 rubygems

Version Path
hieracles-0.3.0 lib/hieracles/formats/csv.rb
hieracles-0.2.2 lib/hieracles/formats/csv.rb
hieracles-0.2.1 lib/hieracles/formats/csv.rb