1 |
# Copyright (C) 2003, 2004 by Intevation GmbH |
# Copyright (C) 2003, 2004, 2005, 2006 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
4 |
# |
# |
85 |
# PostgreSQL and database |
# PostgreSQL and database |
86 |
# |
# |
87 |
|
|
88 |
|
_pg_ctl_command = "pg_ctl" |
89 |
|
_initdb_command = "initdb" |
90 |
|
# Example Values for Debian (upcomind Etch) postgresql-8.1 |
91 |
|
# TODO: detect which values to use here. |
92 |
|
#_pg_ctl_command = "/usr/lib/postgresql/8.1/bin/pg_ctl" |
93 |
|
#_initdb_command = "/usr/lib/postgresql/8.1/bin/initdb" |
94 |
|
|
95 |
class PostgreSQLServer: |
class PostgreSQLServer: |
96 |
|
|
97 |
"""A PostgreSQL server |
"""A PostgreSQL server |
149 |
shutil.rmtree(self.dbdir) |
shutil.rmtree(self.dbdir) |
150 |
os.mkdir(self.dbdir) |
os.mkdir(self.dbdir) |
151 |
|
|
152 |
run_command(["initdb", "-D", self.dbdir, "-U", self.admin_name], |
run_command([_initdb_command, "-D", self.dbdir, "-U", self.admin_name], |
153 |
os.path.join(self.dbdir, "initdb.log")) |
os.path.join(self.dbdir, "initdb.log")) |
154 |
|
|
155 |
extra_opts = "-p %d" % self.port |
extra_opts = "-p %d" % self.port |
156 |
if self.socket_dir is not None: |
if self.socket_dir is not None: |
157 |
extra_opts += " -k %s" % self.socket_dir |
extra_opts += " -k %s" % self.socket_dir |
158 |
run_command(["pg_ctl", "-D", self.dbdir, |
run_command([_pg_ctl_command, "-D", self.dbdir, |
159 |
"-l", os.path.join(self.dbdir, "logfile"), |
"-l", os.path.join(self.dbdir, "logfile"), |
160 |
"-o", extra_opts, "start"], |
"-o", extra_opts, "start"], |
161 |
os.path.join(self.dbdir, "pg_ctl-start.log")) |
os.path.join(self.dbdir, "pg_ctl-start.log")) |
203 |
instance, if the server has been started manually for debugging |
instance, if the server has been started manually for debugging |
204 |
purposes after a test suite run. |
purposes after a test suite run. |
205 |
""" |
""" |
206 |
return run_boolean_command(["pg_ctl", "-D", self.dbdir, "status"]) |
return run_boolean_command([_pg_ctl_command, "-D", self.dbdir, "status"]) |
207 |
|
|
208 |
def shutdown(self): |
def shutdown(self): |
209 |
"""Stop the postmaster running for self.dbdir""" |
"""Stop the postmaster running for self.dbdir""" |
210 |
run_command(["pg_ctl", "-m", "fast", "-D", self.dbdir, "stop"], |
run_command([_pg_ctl_command, "-m", "fast", "-D", self.dbdir, "stop"], |
211 |
os.path.join(self.dbdir, "pg_ctl-stop.log")) |
os.path.join(self.dbdir, "pg_ctl-stop.log")) |
212 |
|
|
213 |
def new_postgis_db(self, dbname, tables = None, reference_systems = None, |
def new_postgis_db(self, dbname, tables = None, reference_systems = None, |
258 |
[("gid_offset", 1000)]), |
[("gid_offset", 1000)]), |
259 |
("political", os.path.join("..", "Data", "iceland", |
("political", os.path.join("..", "Data", "iceland", |
260 |
"political.shp")), |
"political.shp")), |
261 |
("roads", os.path.join("..", "Data", "iceland", |
("roads_multi", os.path.join("..", "Data", "iceland", |
262 |
"roads-line.shp")), |
"roads-line.shp")), |
263 |
|
|
264 |
|
# same as roads-multi but using LINESTRING instead of |
265 |
|
# MULTILINESTRING |
266 |
|
("roads", os.path.join("..", "Data", "iceland", |
267 |
|
"roads-line.shp"), |
268 |
|
[("force_wkt_type", "LINESTRING")]), |
269 |
|
|
270 |
# The polygon data as a MULTIPOLYGON geometry type |
# The polygon data as a MULTIPOLYGON geometry type |
271 |
("political_multi", os.path.join("..", "Data", "iceland", |
("political_multi", os.path.join("..", "Data", "iceland", |
272 |
"political.shp"), |
"political.shp"), |
375 |
f = open(os.path.join(self.dbdir, "pg_hba.conf"), "w") |
f = open(os.path.join(self.dbdir, "pg_hba.conf"), "w") |
376 |
f.write(contents) |
f.write(contents) |
377 |
f.close() |
f.close() |
378 |
run_command(["pg_ctl", "-D", self.dbdir, "reload"], |
run_command([_pg_ctl_command, "-D", self.dbdir, "reload"], |
379 |
os.path.join(self.dbdir, "pg_ctl-reload.log")) |
os.path.join(self.dbdir, "pg_ctl-reload.log")) |
380 |
|
|
381 |
|
|
403 |
server -- The PostgreSQLServer instance containing the |
server -- The PostgreSQLServer instance containing the |
404 |
database |
database |
405 |
|
|
406 |
postgis_sql -- Filename of the postgis.sql file with the |
postgis_sql -- Filename of the sql file with the postgis |
407 |
postgis initialization code |
initialization code |
408 |
|
|
409 |
dbname -- The name of the database |
dbname -- The name of the database |
410 |
|
|
508 |
"""Return the name of the postgis_sql file |
"""Return the name of the postgis_sql file |
509 |
|
|
510 |
A postgis installation usually has the postgis_sql file in |
A postgis installation usually has the postgis_sql file in |
511 |
PostgreSQL's datadir (i.e. the directory where PostgreSQL keeps |
PostgreSQL's $datadir (i.e. the directory where PostgreSQL keeps |
512 |
static files, not the directory containing the databases). |
static files, not the directory containing the databases). |
513 |
Unfortunately there's no way to determine the name of this directory |
Unfortunately there's no way to determine the name of this directory |
514 |
with pg_config so we assume here that it's |
with pg_config so we assume here that it's |
515 |
$bindir/../share/postgresql/. |
$bindir/../share/postgresql/. |
516 |
|
|
517 |
|
Furthermore, different versions of postgis place the file in |
518 |
|
slightly different locations or may even use different names. For |
519 |
|
instance: |
520 |
|
|
521 |
|
postgis 0.7.5 $datadir/contrib/postgis.sql |
522 |
|
postgis 0.8.1 $datadir/postgis.sql |
523 |
|
postgis 1.0.0-rc1 $datadir/lwpostgis.sql |
524 |
|
postgis 1.0.0-rc4 $datadir/contrib/lwpostgis.sql |
525 |
|
|
526 |
|
To support both versions, we look in both places and return the |
527 |
|
first one found (looking under contrib first). |
528 |
|
|
529 |
|
Debian (umcoming Etch) can do several version of postgresql |
530 |
|
and thus has changed the paths. We try one location |
531 |
|
in datadir2 only for Debian Etch postgresql-8.1. |
532 |
|
|
533 |
|
If the file is not found the return value is None. |
534 |
""" |
""" |
535 |
bindir = run_config_script("pg_config --bindir").strip() |
bindir = run_config_script("pg_config --bindir").strip() |
536 |
return os.path.join(bindir, "..", "share", "postgresql", |
datadir = os.path.join(bindir, "..", "share", "postgresql") |
537 |
"contrib", "postgis.sql") |
datadir2 = os.path.join("/", "usr", "share", "postgresql-8.1-postgis") |
538 |
|
|
539 |
|
for filename in [os.path.join(datadir, "contrib", "postgis.sql"), |
540 |
|
os.path.join(datadir, "postgis.sql"), |
541 |
|
os.path.join(datadir, "lwpostgis.sql"), |
542 |
|
os.path.join(datadir, "contrib", "lwpostgis.sql"), |
543 |
|
os.path.join(datadir2, "lwpostgis.sql") \ |
544 |
|
]: |
545 |
|
if os.path.exists(filename): |
546 |
|
return filename |
547 |
|
|
548 |
|
|
549 |
_postgres_server = None |
_postgres_server = None |
550 |
def get_test_server(): |
def get_test_server(): |
594 |
return "Can't run PostGIS test because popen2.Popen4 does not exist" |
return "Can't run PostGIS test because popen2.Popen4 does not exist" |
595 |
|
|
596 |
try: |
try: |
597 |
run_command(["pg_ctl", "--help"], None) |
run_command([_pg_ctl_command, "--help"], None) |
598 |
except RuntimeError: |
except RuntimeError: |
599 |
return "Can't run PostGIS tests because pg_ctl fails" |
return "Can't run PostGIS tests because pg_ctl fails" |
600 |
|
|
656 |
poly.append(", ".join(["%r %r" % p for p in ring])) |
poly.append(", ".join(["%r %r" % p for p in ring])) |
657 |
return "POLYGON((%s))" % "), (".join(poly) |
return "POLYGON((%s))" % "), (".join(poly) |
658 |
|
|
659 |
|
def coords_to_linestring(coords): |
660 |
|
"""Return string with a LINESTRING WKT representation of coords""" |
661 |
|
if len(coords) > 1: |
662 |
|
raise ValueError("A LINESTRING can only have one arc") |
663 |
|
return "LINESTRING(%s)" % ", ".join(["%r %r" % p for p in coords[0]]) |
664 |
|
|
665 |
def coords_to_multilinestring(coords): |
def coords_to_multilinestring(coords): |
666 |
"""Return string with a WKT representation of the arc in coords""" |
"""Return string with a MULTILINESTRING WKT representation of coords""" |
667 |
poly = [] |
poly = [] |
668 |
for ring in coords: |
for ring in coords: |
669 |
poly.append(", ".join(["%r %r" % p for p in ring])) |
poly.append(", ".join(["%r %r" % p for p in ring])) |
678 |
|
|
679 |
wkt_converter = { |
wkt_converter = { |
680 |
"POINT": coords_to_point, |
"POINT": coords_to_point, |
681 |
|
"LINESTRING": coords_to_linestring, |
682 |
"MULTILINESTRING": coords_to_multilinestring, |
"MULTILINESTRING": coords_to_multilinestring, |
683 |
"POLYGON": coords_to_polygon, |
"POLYGON": coords_to_polygon, |
684 |
"MULTIPOLYGON": coords_to_multipolygon, |
"MULTIPOLYGON": coords_to_multipolygon, |
697 |
tablename -- The name of the table to create and into which the data |
tablename -- The name of the table to create and into which the data |
698 |
is to be inserted |
is to be inserted |
699 |
|
|
700 |
force_wkt_type -- If given the real WKT geometry type to use instead |
force_wkt_type -- If given and not None, this is used as the WKT |
701 |
of the default that would be chosen based on the type of |
geometry type to use instead of the default that would |
702 |
the shapefile |
be chosen based on the type of the shapefile |
703 |
|
|
704 |
gid_offset -- A number to add to the shapeid to get the value for |
gid_offset -- A number to add to the shapeid to get the value for |
705 |
the gid column (default 0) |
the gid column (default 0) |