1 |
# Copyright (c) 2001, 2002 by Intevation GmbH |
# Copyright (c) 2001, 2002, 2003 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
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]> |
6 |
# |
# |
7 |
# This program is free software under the GPL (>=v2) |
# This program is free software under the GPL (>=v2) |
8 |
# Read the file COPYING coming with Thuban for details. |
# Read the file COPYING coming with Thuban for details. |
13 |
|
|
14 |
__version__ = "$Revision$" |
__version__ = "$Revision$" |
15 |
|
|
16 |
|
# fix for people using python2.1 |
17 |
|
from __future__ import nested_scopes |
18 |
|
|
19 |
import os |
import os |
20 |
import string |
import string |
21 |
|
|
22 |
import Thuban.Lib.fileutil |
import Thuban.Lib.fileutil |
23 |
|
|
24 |
|
from Thuban.Model.color import Color |
25 |
|
|
26 |
|
from Thuban.Model.classification import \ |
27 |
|
ClassGroupDefault, ClassGroupSingleton, ClassGroupRange, ClassGroupMap |
28 |
|
|
29 |
|
# |
30 |
|
# one level of indention |
31 |
|
# |
32 |
|
TAB = " " |
33 |
|
|
34 |
def relative_filename(dir, filename): |
def relative_filename(dir, filename): |
35 |
"""Return a filename relative to dir for the absolute file name absname. |
"""Return a filename relative to dir for the absolute file name absname. |
36 |
|
|
53 |
data = string.replace(data, "'", "'") |
data = string.replace(data, "'", "'") |
54 |
return data |
return data |
55 |
|
|
56 |
class Saver: |
class XMLWriter: |
57 |
|
"""Abstract XMLWriter. |
|
"""Class to serialize a session into an XML file. |
|
58 |
|
|
59 |
Applications built on top of Thuban may derive from this class and |
Should be overridden to provide specific object saving functionality. |
|
override or extend the methods to save additinal information. This |
|
|
additional information should take the form of additional attributes |
|
|
or elements whose names are prefixed with a namespace. To define a |
|
|
namespace derived classes should extend the write_session method to |
|
|
pass the namespaces to the default implementation. |
|
60 |
""" |
""" |
61 |
|
|
62 |
def __init__(self, session): |
def __init__(self): |
63 |
self.session = session |
self.filename = None |
64 |
|
pass |
65 |
|
|
66 |
def write(self, file_or_filename): |
def write(self, file_or_filename): |
67 |
"""Write the session to a file. |
"""Write the session to a file. |
74 |
directory. |
directory. |
75 |
|
|
76 |
If the argument is a file object (which is determined by the |
If the argument is a file object (which is determined by the |
77 |
presence of a write method) all filenames will be absolut |
presence of a write method) all filenames will be absolute |
78 |
filenames. |
filenames. |
79 |
""" |
""" |
80 |
|
|
81 |
|
# keep track of how many levels of indentation to write |
82 |
|
self.indent_level = 0 |
83 |
|
# track whether an element is currently open. see open_element(). |
84 |
|
self.element_open = 0 |
85 |
|
|
86 |
if hasattr(file_or_filename, "write"): |
if hasattr(file_or_filename, "write"): |
87 |
# it's a file object |
# it's a file object |
88 |
self.file = file_or_filename |
self.file = file_or_filename |
89 |
self.dir = "" |
self.dir = "" |
90 |
else: |
else: |
91 |
filename = file_or_filename |
self.filename = file_or_filename |
92 |
self.dir = os.path.dirname(filename) |
self.dir = os.path.dirname(self.filename) |
93 |
self.file = open(filename, 'w') |
self.file = open(self.filename, 'w') |
94 |
self.write_header() |
|
95 |
self.write_session(self.session) |
def close(self): |
96 |
|
assert self.indent_level == 0 |
97 |
|
if self.filename is not None: |
98 |
|
self.file.close() |
99 |
|
|
100 |
|
def write_header(self, doctype, system): |
101 |
|
"""Write the XML header""" |
102 |
|
self.file.write('<?xml version="1.0" encoding="UTF-8"?>\n') |
103 |
|
self.file.write('<!DOCTYPE %s SYSTEM "%s">\n' % (doctype, system)) |
104 |
|
|
105 |
|
def open_element(self, element, attrs = {}): |
106 |
|
|
107 |
|
# |
108 |
|
# we note when an element is opened so that if two open_element() |
109 |
|
# calls are made successively we can end the currently open |
110 |
|
# tag and will later write a proper close tag. otherwise, |
111 |
|
# if a close_element() call is made directly after an open_element() |
112 |
|
# call we will close the tag with a /> |
113 |
|
# |
114 |
|
if self.element_open == 1: |
115 |
|
self.file.write(">\n") |
116 |
|
|
117 |
|
self.element_open = 1 |
118 |
|
|
|
def write_element(self, element, attrs, empty = 0, indentation = ""): |
|
119 |
# Helper function to write an element open tag with attributes |
# Helper function to write an element open tag with attributes |
120 |
self.file.write("%s<%s" % (indentation, element)) |
self.file.write("%s<%s" % (TAB*self.indent_level, element)) |
121 |
for name, value in attrs.items(): |
self.__write_attribs(attrs) |
122 |
self.file.write(' %s="%s"' % (escape(name), escape(value))) |
|
123 |
if empty: |
self.indent_level += 1 |
124 |
|
|
125 |
|
def close_element(self, element): |
126 |
|
self.indent_level -= 1 |
127 |
|
assert self.indent_level >= 0 |
128 |
|
|
129 |
|
# see open_element() for an explanation |
130 |
|
if self.element_open == 1: |
131 |
|
self.element_open = 0 |
132 |
self.file.write("/>\n") |
self.file.write("/>\n") |
133 |
else: |
else: |
134 |
self.file.write(">\n") |
self.file.write("%s</%s>\n" % (TAB*self.indent_level, element)) |
135 |
|
|
136 |
def write_header(self): |
def write_element(self, element, attrs = {}): |
137 |
"""Write the XML header""" |
"""write an element that won't need a closing tag""" |
138 |
write = self.file.write |
self.open_element(element, attrs) |
139 |
write('<?xml version="1.0" encoding="UTF-8"?>\n') |
self.close_element(element) |
140 |
write('<!DOCTYPE session SYSTEM "thuban.dtd">\n') |
|
141 |
|
def __write_attribs(self, attrs): |
142 |
|
for name, value in attrs.items(): |
143 |
|
self.file.write(' %s="%s"' % (self.encode(name), |
144 |
|
self.encode(value))) |
145 |
|
|
146 |
|
def encode(self, str): |
147 |
|
"""Assume that str is in Latin1, escape it, and encode it in UTF-8. |
148 |
|
|
149 |
|
If str is None, return None |
150 |
|
""" |
151 |
|
|
152 |
|
if str is not None: |
153 |
|
return escape(str).encode("utf8") |
154 |
|
else: |
155 |
|
return None |
156 |
|
|
157 |
|
class SessionSaver(XMLWriter): |
158 |
|
|
159 |
|
"""Class to serialize a session into an XML file. |
160 |
|
|
161 |
|
Applications built on top of Thuban may derive from this class and |
162 |
|
override or extend the methods to save additional information. This |
163 |
|
additional information should take the form of additional attributes |
164 |
|
or elements whose names are prefixed with a namespace. To define a |
165 |
|
namespace derived classes should extend the write_session method to |
166 |
|
pass the namespaces to the default implementation. |
167 |
|
""" |
168 |
|
|
169 |
|
|
170 |
|
def __init__(self, session): |
171 |
|
XMLWriter.__init__(self) |
172 |
|
self.session = session |
173 |
|
|
174 |
|
def write(self, file_or_filename): |
175 |
|
XMLWriter.write(self, file_or_filename) |
176 |
|
|
177 |
|
self.write_header("session", "thuban.dtd") |
178 |
|
self.write_session(self.session) |
179 |
|
self.close() |
180 |
|
|
181 |
def write_session(self, session, attrs = None, namespaces = ()): |
def write_session(self, session, attrs = None, namespaces = ()): |
182 |
"""Write the session and its contents |
"""Write the session and its contents |
199 |
attrs["title"] = session.title |
attrs["title"] = session.title |
200 |
for name, uri in namespaces: |
for name, uri in namespaces: |
201 |
attrs["xmlns:" + name] = uri |
attrs["xmlns:" + name] = uri |
202 |
self.write_element("session", attrs) |
self.open_element("session", attrs) |
203 |
for map in session.Maps(): |
for map in session.Maps(): |
204 |
self.write_map(map) |
self.write_map(map) |
205 |
self.file.write('</session>\n') |
self.close_element("session") |
206 |
|
|
207 |
def write_map(self, map): |
def write_map(self, map): |
208 |
"""Write the map and its contents. |
"""Write the map and its contents. |
212 |
element, call write_layer for each layer contained in the map |
element, call write_layer for each layer contained in the map |
213 |
and finally call write_label_layer to write the label layer. |
and finally call write_label_layer to write the label layer. |
214 |
""" |
""" |
215 |
write = self.file.write |
self.open_element('map title="%s"' % self.encode(map.title)) |
|
write('\t<map title="%s">\n' % escape(map.title)) |
|
216 |
self.write_projection(map.projection) |
self.write_projection(map.projection) |
217 |
for layer in map.Layers(): |
for layer in map.Layers(): |
218 |
self.write_layer(layer) |
self.write_layer(layer) |
219 |
self.write_label_layer(map.LabelLayer()) |
self.write_label_layer(map.LabelLayer()) |
220 |
write('\t</map>\n') |
self.close_element('map') |
221 |
|
|
222 |
def write_projection(self, projection): |
def write_projection(self, projection): |
223 |
"""Write the projection. |
"""Write the projection. |
224 |
""" |
""" |
225 |
if projection and len(projection.params) > 0: |
if projection and len(projection.params) > 0: |
226 |
self.file.write('\t\t<projection>\n') |
self.open_element("projection", {"name": projection.GetName()}) |
227 |
for param in projection.params: |
for param in projection.params: |
228 |
self.file.write('\t\t\t<parameter value="%s"/>\n' |
self.write_element('parameter value="%s"' % |
229 |
% escape(param)) |
self.encode(param)) |
230 |
self.file.write('\t\t</projection>\n') |
self.close_element("projection") |
231 |
|
|
232 |
def write_layer(self, layer, attrs = None): |
def write_layer(self, layer, attrs = None): |
233 |
"""Write the layer. |
"""Write the layer. |
236 |
given, should be a mapping from attribute names to attribute |
given, should be a mapping from attribute names to attribute |
237 |
values. The values should not be XML-escaped yet. |
values. The values should not be XML-escaped yet. |
238 |
""" |
""" |
239 |
|
lc = layer.GetClassification() |
240 |
|
|
241 |
if attrs is None: |
if attrs is None: |
242 |
attrs = {} |
attrs = {} |
243 |
attrs["title"] = layer.title |
|
244 |
attrs["filename"] = relative_filename(self.dir, layer.filename) |
attrs["title"] = layer.title |
245 |
attrs["stroke_width"] = str(layer.stroke_width) |
attrs["filename"] = relative_filename(self.dir, layer.filename) |
246 |
fill = layer.fill |
attrs["stroke"] = lc.GetDefaultLineColor().hex() |
247 |
if fill is None: |
attrs["stroke_width"] = str(lc.GetDefaultLineWidth()) |
248 |
attrs["fill"] = "None" |
attrs["fill"] = lc.GetDefaultFill().hex() |
249 |
else: |
attrs["visible"] = ("false", "true")[int(layer.Visible())] |
250 |
attrs["fill"] = fill.hex() |
|
251 |
stroke = layer.stroke |
self.open_element("layer", attrs) |
252 |
if stroke is None: |
|
253 |
attrs["stroke"] = "None" |
proj = layer.GetProjection() |
254 |
else: |
if proj is not None: |
255 |
attrs["stroke"] = stroke.hex() |
self.write_projection(proj) |
256 |
self.write_element("layer", attrs, empty = 1, indentation = "\t\t") |
|
257 |
|
self.write_classification(layer) |
258 |
|
|
259 |
|
self.close_element("layer") |
260 |
|
|
261 |
|
def write_classification(self, layer, attrs = None): |
262 |
|
if attrs is None: |
263 |
|
attrs = {} |
264 |
|
|
265 |
|
lc = layer.GetClassification() |
266 |
|
|
267 |
|
field = lc.GetField() |
268 |
|
|
269 |
|
# |
270 |
|
# there isn't a classification of anything |
271 |
|
# so don't do anything |
272 |
|
# |
273 |
|
if field is None: return |
274 |
|
|
275 |
|
attrs["field"] = field |
276 |
|
attrs["field_type"] = str(lc.GetFieldType()) |
277 |
|
self.open_element("classification", attrs) |
278 |
|
|
279 |
|
|
280 |
|
types = [[lambda p: 'clnull label="%s"' % self.encode(p.GetLabel()), |
281 |
|
lambda p: 'clnull'], |
282 |
|
[lambda p: 'clpoint label="%s" value="%s"' % |
283 |
|
(self.encode(p.GetLabel()), str(p.GetValue())), |
284 |
|
lambda p: 'clpoint'], |
285 |
|
[lambda p: 'clrange label="%s" range="%s"' % |
286 |
|
(self.encode(p.GetLabel()), |
287 |
|
str(p.GetRange())), |
288 |
|
lambda p: 'clrange']] |
289 |
|
|
290 |
|
def write_class_group(group): |
291 |
|
type = -1 |
292 |
|
if isinstance(group, ClassGroupDefault): type = 0 |
293 |
|
elif isinstance(group, ClassGroupSingleton): type = 1 |
294 |
|
elif isinstance(group, ClassGroupRange): type = 2 |
295 |
|
elif isinstance(group, ClassGroupMap): type = 3 |
296 |
|
assert type >= 0 |
297 |
|
|
298 |
|
if type <= 2: |
299 |
|
data = group.GetProperties() |
300 |
|
dict = {'stroke' : data.GetLineColor().hex(), |
301 |
|
'stroke_width': str(data.GetLineWidth()), |
302 |
|
'fill' : data.GetFill().hex()} |
303 |
|
|
304 |
|
self.open_element(types[type][0](group)) |
305 |
|
self.write_element("cldata", dict) |
306 |
|
self.close_element(types[type][1](group)) |
307 |
|
else: pass # XXX: we need to handle maps |
308 |
|
|
309 |
|
for i in lc: |
310 |
|
write_class_group(i) |
311 |
|
|
312 |
|
self.close_element("classification") |
313 |
|
|
314 |
def write_label_layer(self, layer): |
def write_label_layer(self, layer): |
315 |
"""Write the label layer. |
"""Write the label layer. |
316 |
""" |
""" |
317 |
labels = layer.Labels() |
labels = layer.Labels() |
318 |
if labels: |
if labels: |
319 |
self.file.write('\t\t<labellayer>\n') |
self.open_element('labellayer') |
320 |
for label in labels: |
for label in labels: |
321 |
self.file.write(('\t\t\t<label x="%g" y="%g" text="%s"' |
self.write_element(('label x="%g" y="%g" text="%s"' |
322 |
' halign="%s" valign="%s"/>\n') |
' halign="%s" valign="%s"') |
323 |
% (label.x, label.y, label.text, label.halign, |
% (label.x, label.y, |
324 |
|
self.encode(label.text), |
325 |
|
label.halign, |
326 |
label.valign)) |
label.valign)) |
327 |
self.file.write('\t\t</labellayer>\n') |
self.close_element('labellayer') |
328 |
|
|
329 |
|
|
330 |
|
|
335 |
|
|
336 |
The optional argument saver_class is the class to use to serialize |
The optional argument saver_class is the class to use to serialize |
337 |
the session. By default or if it's None, the saver class will be |
the session. By default or if it's None, the saver class will be |
338 |
Saver. |
SessionSaver. |
339 |
|
|
340 |
If writing the session is successful call the session's |
If writing the session is successful call the session's |
341 |
UnsetModified method |
UnsetModified method |
342 |
""" |
""" |
343 |
if saver_class is None: |
if saver_class is None: |
344 |
saver_class = Saver |
saver_class = SessionSaver |
345 |
saver = saver_class(session) |
saver = saver_class(session) |
346 |
saver.write(file) |
saver.write(file) |
347 |
|
|