Sha256: cccdcb533e059f40ec5962ee375e8c82bc19870cb56cf47bd80350ac98d76acc

Contents?: true

Size: 1.05 KB

Versions: 4

Compression:

Stored size: 1.05 KB

Contents

module ROM
  module Plugins
    module Relation
      module SQL
        module AutoCombine
          # @api private
          def self.included(klass)
            super
            klass.class_eval do
              include(InstanceInterface)
              extend(ClassInterface)
            end
          end

          module ClassInterface
            def inherited(klass)
              super
              klass.auto_curry :for_combine
            end
          end

          module InstanceInterface
            # Default methods for fetching combined relation
            #
            # This method is used by default by `combine`
            #
            # @return [SQL::Relation]
            #
            # @api private
            def for_combine(keys, relation)
              pk, fk = keys.to_a.flatten
              where(fk => relation.map { |tuple| tuple[pk] })
            end
          end
        end
      end
    end
  end
end

ROM.plugins do
  adapter :sql do
    register :auto_combine, ROM::Plugins::Relation::SQL::AutoCombine, type: :relation
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
rom-sql-0.7.0 lib/rom/plugins/relation/sql/auto_combine.rb
rom-sql-0.7.0.rc1 lib/rom/plugins/relation/sql/auto_combine.rb
rom-sql-0.7.0.beta1 lib/rom/plugins/relation/sql/auto_combine.rb
rom-repository-0.1.0 lib/rom/plugins/relation/sql/auto_combine.rb