Sha256: a8b937ae1336c732a2674118f518ecc83cdd53a3d65140e1a0cd78e6254921b8

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

module ActiveRecord  # :nodoc:
  module ConnectionAdapters  # :nodoc:
    module PostGIS
      # Do spatial sql queries for column info and memoize that info.
      class SpatialColumnInfo
        def initialize(adapter, table_name)
          @adapter = adapter
          @table_name = table_name
        end

        def all
          info = @adapter.query("SELECT f_geometry_column,coord_dimension,srid,type FROM geometry_columns WHERE f_table_name='#{@table_name}'")
          result = {}
          info.each do |row|
            name = row[0]
            type = row[3]
            dimension = row[1].to_i
            has_m = !!(type =~ /m$/i)
            type.sub!(/m$/, '')
            has_z = dimension > 3 || dimension == 3 && !has_m
            result[name] = {
              dimension: dimension,
              has_m:     has_m,
              has_z:     has_z,
              name:      name,
              srid:      row[2].to_i,
              type:      type,
            }
          end
          result
        end

        # do not query the database for non-spatial columns/tables
        def get(column_name, type)
          return unless PostGISAdapter.spatial_column_options(type.to_sym)
          @spatial_column_info ||= all
          @spatial_column_info[column_name]
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activerecord-postgis-adapter-3.1.0 lib/active_record/connection_adapters/postgis/spatial_column_info.rb
activerecord-postgis-adapter-3.0.0 lib/active_record/connection_adapters/postgis/spatial_column_info.rb