Sha256: 9a3b50cc57212b24c84da1babb3c6c18681a6af51bb169e966f0d3901d248c30

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

###  NOT CURRENTLY USED  ###

module ROM
  module FMP
    # @private
    class Header
      include Equalizer.new(:columns, :table)

      attr_reader :columns, :table

      def initialize(columns, table)
        @columns = columns
        @table = table
      end

      def to_ary
        columns
      end
      alias_method :to_a, :to_ary

      def to_h
        columns.each_with_object({}) do |col, h|
          left, right = col.to_s.split('___')
          h[left.to_sym] = (right || left).to_sym
        end
      end

      def names
        columns.map { |col| :"#{col.to_s.split('___').last}" }
      end

      def project(*names)
        self.class.new(columns.find_all { |col| names.include?(col) }, table)
      end

      def qualified
        self.class.new(columns.map { |col| :"#{table}__#{col}" }, table)
      end

      def rename(options)
        self.class.new(columns.map { |col|
          new_name = options[col]

          if new_name
            :"#{col}___#{new_name}"
          else
            col
          end
        }, table)
      end

      def prefix(col_prefix)
        rename(Hash[columns.map { |col| [col, :"#{col_prefix}_#{col}"] }])
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rom-fmp-0.0.4 lib/rom/fmp/header.rb