django1/django/contrib/gis/db/backends/postgis/schema.py

67 lines
2.7 KiB
Python
Raw Normal View History

from django.db.backends.postgresql.schema import DatabaseSchemaEditor
2013-11-27 21:32:12 +08:00
class PostGISSchemaEditor(DatabaseSchemaEditor):
geom_index_type = 'GIST'
geom_index_ops_nd = 'GIST_GEOMETRY_OPS_ND'
rast_index_wrapper = 'ST_ConvexHull(%s)'
2013-11-27 21:32:12 +08:00
sql_add_spatial_index = "CREATE INDEX %(index)s ON %(table)s USING %(index_type)s (%(column)s %(ops)s)"
def __init__(self, *args, **kwargs):
super(PostGISSchemaEditor, self).__init__(*args, **kwargs)
self.geometry_sql = []
2013-11-27 21:32:12 +08:00
def geo_quote_name(self, name):
return self.connection.ops.geo_quote_name(name)
def column_sql(self, model, field, include_default=False):
from django.contrib.gis.db.models.fields import BaseSpatialField
if not isinstance(field, BaseSpatialField):
return super(PostGISSchemaEditor, self).column_sql(model, field, include_default)
2013-11-27 21:32:12 +08:00
column_sql = super(PostGISSchemaEditor, self).column_sql(model, field, include_default)
2013-11-27 21:32:12 +08:00
if field.spatial_index:
# Spatial indexes created the same way for both Geometry and
# Geography columns.
field_column = self.quote_name(field.column)
if field.geom_type == 'RASTER':
# For raster fields, wrap index creation SQL statement with ST_ConvexHull.
# Indexes on raster columns are based on the convex hull of the raster.
field_column = self.rast_index_wrapper % field_column
index_ops = ''
elif field.geography:
2013-11-27 21:32:12 +08:00
index_ops = ''
else:
# Use either "nd" ops which are fast on multidimensional cases
# or just plain gist index for the 2d case.
2013-11-27 21:32:12 +08:00
if field.dim > 2:
index_ops = self.geom_index_ops_nd
else:
index_ops = ''
self.geometry_sql.append(
2013-11-27 21:32:12 +08:00
self.sql_add_spatial_index % {
"index": self.quote_name('%s_%s_id' % (model._meta.db_table, field.column)),
"table": self.quote_name(model._meta.db_table),
"column": field_column,
2013-11-27 21:32:12 +08:00
"index_type": self.geom_index_type,
"ops": index_ops,
}
)
return column_sql
2013-11-27 21:32:12 +08:00
def create_model(self, model):
super(PostGISSchemaEditor, self).create_model(model)
# Create geometry columns
for sql in self.geometry_sql:
self.execute(sql)
self.geometry_sql = []
def add_field(self, model, field):
super(PostGISSchemaEditor, self).add_field(model, field)
# Create geometry columns
for sql in self.geometry_sql:
self.execute(sql)
self.geometry_sql = []