3 |
# Jan-Oliver Wagner <[email protected]> |
# Jan-Oliver Wagner <[email protected]> |
4 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
5 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
6 |
|
# Frank Koormann <[email protected]> |
7 |
# |
# |
8 |
# This program is free software under the GPL (>=v2) |
# This program is free software under the GPL (>=v2) |
9 |
# Read the file COPYING coming with GRASS for details. |
# Read the file COPYING coming with GRASS for details. |
101 |
|
|
102 |
class SessionLoader(XMLReader): |
class SessionLoader(XMLReader): |
103 |
|
|
104 |
def __init__(self, db_connection_callback = None): |
def __init__(self, db_connection_callback = None, |
105 |
|
shapefile_callback = None): |
106 |
"""Inititialize the Sax handler.""" |
"""Inititialize the Sax handler.""" |
107 |
XMLReader.__init__(self) |
XMLReader.__init__(self) |
108 |
|
|
109 |
self.db_connection_callback = db_connection_callback |
self.db_connection_callback = db_connection_callback |
110 |
|
self.shapefile_callback = shapefile_callback |
111 |
self.theSession = None |
self.theSession = None |
112 |
self.aMap = None |
self.aMap = None |
113 |
self.aLayer = None |
self.aLayer = None |
260 |
normalized[d.name] = value |
normalized[d.name] = value |
261 |
return normalized |
return normalized |
262 |
|
|
263 |
|
def open_shapefile(self, filename): |
264 |
|
"""Open shapefile, eventually with alternative path.""" |
265 |
|
from_list = 0 |
266 |
|
while 1: |
267 |
|
try: |
268 |
|
store = self.theSession.OpenShapefile(filename) |
269 |
|
if from_list: |
270 |
|
# The correct? path has been guessed from a list |
271 |
|
# Let the user confirm - or select an alternative. |
272 |
|
filename, from_list = self.shapefile_callback( |
273 |
|
filename, "check") |
274 |
|
if filename is None: |
275 |
|
# Selection cancelled |
276 |
|
raise LoadCancelled |
277 |
|
elif store.FileName() == filename: |
278 |
|
# Proposed file has been accepted |
279 |
|
break |
280 |
|
else: |
281 |
|
# the filename has been changed, try the new file |
282 |
|
pass |
283 |
|
else: |
284 |
|
break |
285 |
|
except IOError: |
286 |
|
if self.shapefile_callback is not None: |
287 |
|
filename, from_list = self.shapefile_callback( |
288 |
|
filename, |
289 |
|
mode = "search", |
290 |
|
second_try = from_list) |
291 |
|
if filename is None: |
292 |
|
raise LoadCancelled |
293 |
|
print filename |
294 |
|
else: |
295 |
|
raise |
296 |
|
return store |
297 |
|
|
298 |
def start_dbconnection(self, name, qname, attrs): |
def start_dbconnection(self, name, qname, attrs): |
299 |
attrs = self.check_attrs(name, attrs, |
attrs = self.check_attrs(name, attrs, |
300 |
[AttrDesc("id", True), |
[AttrDesc("id", True), |
370 |
filetype = attrs["filetype"] |
filetype = attrs["filetype"] |
371 |
if filetype != "shapefile": |
if filetype != "shapefile": |
372 |
raise LoadError("shapesource filetype %r not supported" % filetype) |
raise LoadError("shapesource filetype %r not supported" % filetype) |
373 |
self.idmap[ID] = self.theSession.OpenShapefile(filename) |
self.idmap[ID] = self.open_shapefile(filename) |
374 |
|
|
375 |
def start_derivedshapesource(self, name, qname, attrs): |
def start_derivedshapesource(self, name, qname, attrs): |
376 |
attrs = self.check_attrs(name, attrs, |
attrs = self.check_attrs(name, attrs, |
481 |
if attrs.has_key((None, "shapestore")): |
if attrs.has_key((None, "shapestore")): |
482 |
store = self.idmap[attrs[(None, "shapestore")]] |
store = self.idmap[attrs[(None, "shapestore")]] |
483 |
else: |
else: |
484 |
store = self.theSession.OpenShapefile(filename) |
store = self.open_shapefile(filename) |
485 |
|
|
486 |
self.aLayer = layer_class(title, store, |
self.aLayer = layer_class(title, store, |
487 |
fill = fill, stroke = stroke, |
fill = fill, stroke = stroke, |
488 |
lineWidth = stroke_width, |
lineWidth = stroke_width, |
625 |
pass |
pass |
626 |
|
|
627 |
|
|
628 |
def load_session(filename, db_connection_callback = None): |
def load_session(filename, db_connection_callback = None, |
629 |
|
shapefile_callback = None): |
630 |
"""Load a Thuban session from the file object file |
"""Load a Thuban session from the file object file |
631 |
|
|
632 |
The db_connection_callback, if given should be a callable object |
The db_connection_callback, if given should be a callable object |
639 |
corrected and perhaps additional parameters like a password or None |
corrected and perhaps additional parameters like a password or None |
640 |
to indicate that the user cancelled. |
to indicate that the user cancelled. |
641 |
""" |
""" |
642 |
handler = SessionLoader(db_connection_callback) |
handler = SessionLoader(db_connection_callback, shapefile_callback) |
643 |
handler.read(filename) |
handler.read(filename) |
644 |
|
|
645 |
session = handler.theSession |
session = handler.theSession |