1 |
# Copyright (c) 2001 by Intevation GmbH |
# Copyright (c) 2001, 2003 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
4 |
# |
# |
16 |
If no mapping can be found then default data will |
If no mapping can be found then default data will |
17 |
be returned. Input values must be hashable objects |
be returned. Input values must be hashable objects |
18 |
|
|
19 |
See the description of GetClassData() for more information |
See the description of GetGroup() for more information |
20 |
on the mapping algorithm. |
on the mapping algorithm. |
21 |
""" |
""" |
22 |
|
|
23 |
# fix for people using python2.1 |
# fix for people using python2.1 |
24 |
from __future__ import nested_scopes |
from __future__ import nested_scopes |
25 |
|
|
26 |
|
import copy |
27 |
|
|
28 |
|
from types import * |
29 |
|
|
30 |
from messages import LAYER_PROJECTION_CHANGED, LAYER_LEGEND_CHANGED, \ |
from messages import LAYER_PROJECTION_CHANGED, LAYER_LEGEND_CHANGED, \ |
31 |
LAYER_VISIBILITY_CHANGED |
LAYER_VISIBILITY_CHANGED |
32 |
|
|
33 |
from Thuban import _ |
from Thuban import _ |
34 |
from Thuban.Model.color import Color |
from Thuban.Model.color import Color |
35 |
|
|
36 |
from wxPython.wx import * |
import Thuban.Model.layer |
37 |
|
|
38 |
# constants |
# constants |
39 |
RANGE_MIN = 0 |
RANGE_MIN = 0 |
41 |
RANGE_DATA = 2 |
RANGE_DATA = 2 |
42 |
|
|
43 |
class Classification: |
class Classification: |
44 |
|
"""Encapsulates the classification of layer. The Classification |
45 |
|
divides some kind of data into Groups which are associated with |
46 |
|
properties. Later the properties can be retrieved by matching |
47 |
|
data values to the appropriate group.""" |
48 |
|
|
49 |
def __init__(self, layer = None, field = None): |
def __init__(self, layer = None, field = None): |
50 |
"""Initialize a classification. |
"""Initialize a classification. |
51 |
|
|
52 |
layer -- the layer object who owns this classification |
layer -- the Layer object who owns this classification |
53 |
|
|
54 |
field -- the name of the data table field that |
field -- the name of the data table field that |
55 |
is to be used to classify layer properties |
is to be used to classify layer properties |
56 |
""" |
""" |
57 |
|
|
58 |
self.layer = layer |
self.layer = None |
59 |
self.points = {} |
self.field = None |
60 |
self.ranges = [] |
self.fieldType = None |
61 |
self.maps = [] |
self.groups = [] |
62 |
self.DefaultData = ClassDataDefault() |
|
63 |
self.field = field |
self.__setLayerLock = False |
64 |
#self.SetField(field) |
|
65 |
|
self.SetDefaultGroup(ClassGroupDefault()) |
66 |
|
|
67 |
|
self.SetLayer(layer) |
68 |
|
self.SetField(field) |
69 |
|
|
70 |
def __iter__(self): |
def __iter__(self): |
71 |
return ClassIterator(self.DefaultData, |
return ClassIterator(self.groups) |
|
self.points.values(), |
|
|
self.ranges, |
|
|
self.maps) |
|
72 |
|
|
73 |
def __SendMessage(self, message): |
def __SendNotification(self): |
74 |
|
"""Notify the layer that this class has changed.""" |
75 |
if self.layer is not None: |
if self.layer is not None: |
76 |
self.layer.changed(message, self.layer) |
self.layer.ClassChanged() |
77 |
|
|
78 |
def SetField(self, field): |
def SetField(self, field): |
79 |
"""Set the name of the data table field to use. |
"""Set the name of the data table field to use. |
80 |
|
|
81 |
|
If there is no layer then the field type is set to None, |
82 |
|
otherwise the layer is queried to find the type of the |
83 |
|
field data |
84 |
|
|
85 |
field -- if None then all values map to the default data |
field -- if None then all values map to the default data |
86 |
""" |
""" |
87 |
|
|
88 |
|
if field == "": |
89 |
|
field = None |
90 |
|
|
91 |
|
|
92 |
|
if field is None: |
93 |
|
if self.layer is not None: |
94 |
|
self.fieldType = None |
95 |
|
else: |
96 |
|
if self.layer is not None: |
97 |
|
fieldType = self.layer.GetFieldType(field) |
98 |
|
if fieldType is None: |
99 |
|
raise ValueError("'%s' was not found in the layer's table." |
100 |
|
% self.field) |
101 |
|
|
102 |
|
# |
103 |
|
# unfortunately we cannot call SetFieldType() because it |
104 |
|
# requires the layer to be None |
105 |
|
# |
106 |
|
self.fieldType = fieldType |
107 |
|
#self.SetFieldType(fieldType) |
108 |
|
|
109 |
self.field = field |
self.field = field |
110 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
|
111 |
|
self.__SendNotification() |
112 |
|
|
113 |
def GetField(self): |
def GetField(self): |
114 |
|
"""Return the name of the field.""" |
115 |
return self.field |
return self.field |
116 |
|
|
117 |
|
def GetFieldType(self): |
118 |
|
"""Return the field type.""" |
119 |
|
return self.fieldType |
120 |
|
|
121 |
|
def SetFieldType(self, type): |
122 |
|
"""Set the type of the field used by this classification. |
123 |
|
|
124 |
|
A ValueError is raised if the owning layer is not None and |
125 |
|
'type' is different from the current field type. |
126 |
|
""" |
127 |
|
|
128 |
|
if type != self.fieldType: |
129 |
|
if self.layer is not None: |
130 |
|
raise ValueError() |
131 |
|
else: |
132 |
|
self.fieldType = type |
133 |
|
self.__SendNotification() |
134 |
|
|
135 |
def SetLayer(self, layer): |
def SetLayer(self, layer): |
136 |
self.layer = layer |
"""Set the owning Layer of this classification. |
137 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
|
138 |
|
A ValueError exception will be thrown either the field or |
139 |
|
field type mismatch the information in the layer's table. |
140 |
|
""" |
141 |
|
|
142 |
|
# prevent infinite recursion when calling SetClassification() |
143 |
|
if self.__setLayerLock: return |
144 |
|
|
145 |
|
self.__setLayerLock = True |
146 |
|
|
147 |
|
if layer is None: |
148 |
|
if self.layer is not None: |
149 |
|
l = self.layer |
150 |
|
self.layer = None |
151 |
|
l.SetClassification(None) |
152 |
|
else: |
153 |
|
assert isinstance(layer, Thuban.Model.layer.Layer) |
154 |
|
|
155 |
|
old_layer = self.layer |
156 |
|
|
157 |
|
self.layer = layer |
158 |
|
|
159 |
|
try: |
160 |
|
self.SetField(self.GetField()) # this sync's the fieldType |
161 |
|
except ValueError: |
162 |
|
self.layer = old_layer |
163 |
|
self.__setLayerLock = False |
164 |
|
raise ValueError |
165 |
|
else: |
166 |
|
self.layer.SetClassification(self) |
167 |
|
|
168 |
|
self.__setLayerLock = False |
169 |
|
|
170 |
def GetLayer(self): |
def GetLayer(self): |
171 |
return layer.self |
"""Return the parent layer.""" |
172 |
|
return self.layer |
173 |
|
|
174 |
def SetDefaultData(self, data): |
def SetDefaultGroup(self, group): |
175 |
"""Set the data to be used when a value can't be classified. |
"""Set the group to be used when a value can't be classified. |
176 |
|
|
177 |
data -- data that the value maps to. See class description. |
group -- group that the value maps to. |
178 |
""" |
""" |
179 |
|
|
180 |
assert(data.GetType() == ClassData.DEFAULT) |
assert isinstance(group, ClassGroupDefault) |
181 |
self.DefaultData = data |
self.AddGroup(group) |
182 |
|
|
183 |
def GetDefaultData(self): |
def GetDefaultGroup(self): |
184 |
return self.DefaultData |
"""Return the default group.""" |
185 |
|
return self.groups[0] |
186 |
|
|
187 |
# |
# |
188 |
# these SetDefault* methods are really only provided for |
# these SetDefault* methods are really only provided for |
191 |
# |
# |
192 |
|
|
193 |
def SetDefaultFill(self, fill): |
def SetDefaultFill(self, fill): |
194 |
self.DefaultData.SetFill(fill) |
"""Set the default fill color. |
195 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
|
196 |
|
fill -- a Color object. |
197 |
|
""" |
198 |
|
assert isinstance(fill, Color) |
199 |
|
self.GetDefaultGroup().GetProperties().SetFill(fill) |
200 |
|
self.__SendNotification() |
201 |
|
|
202 |
def GetDefaultFill(self): |
def GetDefaultFill(self): |
203 |
return self.DefaultData.GetFill() |
"""Return the default fill color.""" |
204 |
|
return self.GetDefaultGroup().GetProperties().GetFill() |
205 |
|
|
206 |
def SetDefaultStroke(self, stroke): |
def SetDefaultLineColor(self, color): |
207 |
self.DefaultData.SetStroke(stroke) |
"""Set the default line color. |
208 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
|
209 |
|
color -- a Color object. |
210 |
|
""" |
211 |
|
assert isinstance(color, Color) |
212 |
|
self.GetDefaultGroup().GetProperties().SetLineColor(color) |
213 |
|
self.__SendNotification() |
214 |
|
|
215 |
def GetDefaultStroke(self): |
def GetDefaultLineColor(self): |
216 |
return self.DefaultData.GetStroke() |
"""Return the default line color.""" |
217 |
|
return self.GetDefaultGroup().GetProperties().GetLineColor() |
218 |
|
|
219 |
def SetDefaultStrokeWidth(self, strokeWidth): |
def SetDefaultLineWidth(self, lineWidth): |
220 |
self.DefaultData.SetStrokeWidth(strokeWidth) |
"""Set the default line width. |
221 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
|
222 |
|
lineWidth -- an integer > 0. |
223 |
|
""" |
224 |
|
assert isinstance(lineWidth, IntType) |
225 |
|
self.GetDefaultGroup().GetProperties().SetLineWidth(lineWidth) |
226 |
|
self.__SendNotification() |
227 |
|
|
228 |
def GetDefaultStrokeWidth(self): |
def GetDefaultLineWidth(self): |
229 |
return self.DefaultData.GetStrokeWidth() |
"""Return the default line width.""" |
230 |
|
return self.GetDefaultGroup().GetProperties().GetLineWidth() |
231 |
|
|
232 |
def AddClassData(self, item): |
def AddGroup(self, item): |
233 |
type = item.GetType() |
"""Add a new ClassGroup item to the classification. |
234 |
|
|
235 |
|
item -- this must be a valid ClassGroup object |
236 |
|
""" |
237 |
|
|
238 |
|
assert isinstance(item, ClassGroup) |
239 |
|
|
240 |
if type == ClassData.POINT: |
if len(self.groups) > 0 and isinstance(item, ClassGroupDefault): |
241 |
self.points[item.GetValue()] = item |
self.groups[0] = item |
|
elif type == ClassData.RANGE: |
|
|
self.ranges.append(item) |
|
|
elif type == ClassData.MAP: |
|
|
self.maps.append(item) |
|
|
elif type == ClassData.DEFAULT: |
|
|
self.DefaultData = item |
|
242 |
else: |
else: |
243 |
raise ValueError(_("Unrecognized ClassData type %s") % type) |
self.groups.append(item) |
244 |
|
|
245 |
self.__SendMessage(LAYER_LEGEND_CHANGED) |
self.__SendNotification() |
246 |
|
|
247 |
def GetClassData(self, value): |
def GetGroup(self, value): |
248 |
"""Return the associated data, or the default data. |
"""Return the associated group, or the default group. |
249 |
|
|
250 |
The following search technique is used: |
Groups are checked in the order the were added to the |
251 |
(1) if the field is None, return the default data |
Classification. |
|
(2) check if the value exists as a single value |
|
|
(3) check if the value falls within a range. Ranges |
|
|
are checked in the order they were added to |
|
|
the classification. |
|
252 |
|
|
253 |
value -- the value to classify. If there is no mapping, |
value -- the value to classify. If there is no mapping, |
254 |
or value is None, return the default properties |
the field is None or value is None, |
255 |
|
return the default properties |
256 |
""" |
""" |
257 |
|
|
258 |
if self.field is not None and value is not None: |
if self.GetField() is not None and value is not None: |
259 |
# |
|
260 |
# check the discrete values |
for i in range(1, len(self.groups)): |
261 |
# |
group = self.groups[i] |
262 |
if self.points.has_key(value): |
if group.Matches(value): |
263 |
return self.points[value] |
return group |
|
|
|
|
# |
|
|
# check the ranges |
|
|
# |
|
|
for p in self.ranges: |
|
|
if p.InRange(value): |
|
|
return p |
|
|
|
|
|
# |
|
|
# check the maps |
|
|
# |
|
|
for p in self.maps: |
|
|
try: |
|
|
return p.Map(value) |
|
|
except: pass |
|
264 |
|
|
265 |
return self.DefaultData |
return self.GetDefaultGroup() |
266 |
|
|
267 |
|
def GetProperties(self, value): |
268 |
|
"""Return the properties associated with the given value.""" |
269 |
|
|
270 |
|
group = self.GetGroup(value) |
271 |
|
if isinstance(group, ClassGroupMap): |
272 |
|
return group.GetPropertiesFromValue(value) |
273 |
|
else: |
274 |
|
return group.GetProperties() |
275 |
|
|
276 |
def TreeInfo(self): |
def TreeInfo(self): |
277 |
items = [] |
items = [] |
284 |
(text, color.red, color.green, color.blue), |
(text, color.red, color.green, color.blue), |
285 |
color) |
color) |
286 |
|
|
287 |
def build_item(data, string): |
def build_item(group, string): |
288 |
label = data.GetLabel() |
label = group.GetLabel() |
289 |
if label == "": |
if label == "": |
290 |
label = string |
label = string |
291 |
else: |
else: |
292 |
label += " (%s)" % string |
label += " (%s)" % string |
293 |
|
|
294 |
|
props = group.GetProperties() |
295 |
i = [] |
i = [] |
296 |
v = data.GetStroke() |
v = props.GetLineColor() |
297 |
i.append(build_color_item(_("Stroke"), v)) |
i.append(build_color_item(_("Line Color"), v)) |
298 |
v = data.GetStrokeWidth() |
v = props.GetLineWidth() |
299 |
i.append(_("Stroke Width: %s") % v) |
i.append(_("Line Width: %s") % v) |
300 |
v = data.GetFill() |
v = props.GetFill() |
301 |
i.append(build_color_item(_("Fill"), v)) |
i.append(build_color_item(_("Fill"), v)) |
302 |
return (label, i) |
return (label, i) |
303 |
|
|
304 |
for p in self: |
for p in self: |
305 |
type = p.GetType() |
if isinstance(p, ClassGroupDefault): |
306 |
if type == ClassData.DEFAULT: |
items.append(build_item(self.GetDefaultGroup(), _("'DEFAULT'"))) |
307 |
items.append(build_item(self.DefaultData, _("'DEFAULT'"))) |
elif isinstance(p, ClassGroupSingleton): |
|
elif type == ClassData.POINT: |
|
308 |
items.append(build_item(p, str(p.GetValue()))) |
items.append(build_item(p, str(p.GetValue()))) |
309 |
elif type == ClassData.RANGE: |
elif isinstance(p, ClassGroupRange): |
310 |
items.append(build_item(p, "%s - %s" % |
items.append(build_item(p, "%s - %s" % |
311 |
(p.GetMin(), p.GetMax()))) |
(p.GetMin(), p.GetMax()))) |
312 |
|
|
313 |
# for p in self.points.values(): |
return (_("Classification"), items) |
314 |
# items.append(build_item(p, str(p.GetValue()))) |
|
315 |
|
class ClassIterator: |
316 |
|
"""Allows the Groups in a Classifcation to be interated over. |
317 |
|
|
318 |
|
The items are returned in the following order: |
319 |
|
default data, singletons, ranges, maps |
320 |
|
""" |
321 |
|
|
322 |
# for p in self.ranges: |
def __init__(self, data): #default, points, ranges, maps): |
323 |
# items.append(build_item(p, "%s - %s" % (p.GetMin(), p.GetMax()))) |
"""Constructor. |
324 |
|
|
325 |
return (_("Classifications"), items) |
default -- the default group |
326 |
|
|
327 |
class ClassIterator: |
points -- a list of singleton groups |
328 |
|
|
329 |
def __init__(self, default, points, ranges, maps): |
ranges -- a list of range groups |
330 |
self.data = [default, points, ranges, maps] |
|
331 |
self.data_iter = iter(self.data) |
maps -- a list of map groups |
332 |
self.iter = None |
""" |
333 |
|
|
334 |
|
self.data = data #[default, points, ranges, maps] |
335 |
|
self.data_index = 0 |
336 |
|
#self.data_iter = iter(self.data) |
337 |
|
#self.iter = None |
338 |
|
|
339 |
def __iter__(self): |
def __iter__(self): |
340 |
return self |
return self |
341 |
|
|
342 |
def next(self): |
def next(self): |
343 |
if self.iter is None: |
"""Return the next item.""" |
344 |
try: |
|
345 |
self.data_item = self.data_iter.next() |
if self.data_index >= len(self.data): |
346 |
self.iter = iter(self.data_item) |
raise StopIteration |
347 |
except TypeError: |
else: |
348 |
return self.data_item |
d = self.data[self.data_index] |
349 |
|
self.data_index += 1 |
350 |
try: |
return d |
351 |
return self.iter.next() |
|
352 |
except StopIteration: |
# if self.iter is None: |
353 |
self.iter = None |
# try: |
354 |
return self.next() |
# self.data_item = self.data_iter.next() |
355 |
|
# self.iter = iter(self.data_item) |
356 |
|
# except TypeError: |
357 |
|
# return self.data_item |
358 |
|
|
359 |
|
# try: |
360 |
|
# return self.iter.next() |
361 |
|
# except StopIteration: |
362 |
|
# self.iter = None |
363 |
|
# return self.next() |
364 |
|
|
365 |
class ClassData: |
class ClassGroupProperties: |
366 |
|
"""Represents the properties of a single Classification Group. |
367 |
|
|
368 |
|
These are used when rendering a layer.""" |
369 |
|
|
370 |
|
def __init__(self, props = None): |
371 |
|
"""Constructor. |
372 |
|
|
373 |
|
props -- a ClassGroupProperties object. The class is copied if |
374 |
|
prop is not None. Otherwise, a default set of properties |
375 |
|
is created such that: line color = Color.Black, line width = 1, |
376 |
|
and fill color = Color.None |
377 |
|
""" |
378 |
|
|
379 |
INVALID = -1 |
self.stroke = None |
380 |
DEFAULT = 0 |
self.strokeWidth = 0 |
381 |
POINT = 1 |
self.fill = None |
382 |
RANGE = 2 |
|
383 |
MAP = 3 |
if props is not None: |
384 |
|
self.SetProperties(props) |
|
def __init__(self, classData = None, type = INVALID): |
|
|
|
|
|
if classData is not None: |
|
|
self.SetStroke(classData.GetStroke()) |
|
|
self.SetStrokeWidth(classData.GetStrokeWidth()) |
|
|
self.SetFill(classData.GetFill()) |
|
385 |
else: |
else: |
386 |
self.SetStroke(Color.None) |
self.SetLineColor(Color.Black) |
387 |
self.SetStrokeWidth(1) |
self.SetLineWidth(1) |
388 |
self.SetFill(Color.None) |
self.SetFill(Color.None) |
389 |
|
|
390 |
self.type = type |
def SetProperties(self, props): |
391 |
self.label = "" |
"""Set this class's properties to those in class props.""" |
|
|
|
|
def GetType(self): |
|
|
return self.type |
|
392 |
|
|
393 |
def GetStroke(self): |
assert isinstance(props, ClassGroupProperties) |
394 |
|
self.SetLineColor(props.GetLineColor()) |
395 |
|
self.SetLineWidth(props.GetLineWidth()) |
396 |
|
self.SetFill(props.GetFill()) |
397 |
|
|
398 |
|
def GetLineColor(self): |
399 |
|
"""Return the line color as a Color object.""" |
400 |
return self.stroke |
return self.stroke |
401 |
|
|
402 |
def SetStroke(self, stroke): |
def SetLineColor(self, color): |
403 |
assert(isinstance(stroke, Color)) |
"""Set the line color. |
404 |
self.stroke = stroke |
|
405 |
|
color -- the color of the line. This must be a Color object. |
406 |
def GetStrokeWidth(self): |
""" |
|
return self.stroke_width |
|
|
|
|
|
def SetStrokeWidth(self, stroke_width): |
|
|
if (stroke_width < 1): |
|
|
raise ValueError(_("stroke_width < 1")) |
|
407 |
|
|
408 |
self.stroke_width = stroke_width |
assert isinstance(color, Color) |
409 |
|
#self.stroke = Color(color.red, color.green, color.blue) |
410 |
|
self.stroke = copy.copy(color) |
411 |
|
|
412 |
|
def GetLineWidth(self): |
413 |
|
"""Return the line width.""" |
414 |
|
return self.strokeWidth |
415 |
|
|
416 |
|
def SetLineWidth(self, lineWidth): |
417 |
|
"""Set the line width. |
418 |
|
|
419 |
|
lineWidth -- the new line width. This must be > 0. |
420 |
|
""" |
421 |
|
assert isinstance(lineWidth, IntType) |
422 |
|
if (lineWidth < 1): |
423 |
|
raise ValueError(_("lineWidth < 1")) |
424 |
|
|
425 |
|
self.strokeWidth = lineWidth |
426 |
|
|
427 |
def GetFill(self): |
def GetFill(self): |
428 |
|
"""Return the fill color as a Color object.""" |
429 |
return self.fill |
return self.fill |
430 |
|
|
431 |
def SetFill(self, fill): |
def SetFill(self, fill): |
432 |
assert(isinstance(fill, Color)) |
"""Set the fill color. |
433 |
self.fill = fill |
|
434 |
|
fill -- the color of the fill. This must be a Color object. |
435 |
|
""" |
436 |
|
|
437 |
|
assert isinstance(fill, Color) |
438 |
|
self.fill = copy.copy(fill) |
439 |
|
#self.fill = Color(fill.red, fill.green, fill.blue) |
440 |
|
|
441 |
|
def __eq__(self, other): |
442 |
|
"""Return true if 'props' has the same attributes as this class""" |
443 |
|
|
444 |
|
return isinstance(other, ClassGroupProperties) \ |
445 |
|
and self.stroke == other.GetLineColor() \ |
446 |
|
and self.strokeWidth == other.GetLineWidth() \ |
447 |
|
and self.fill == other.GetFill() |
448 |
|
|
449 |
|
def __ne__(self, other): |
450 |
|
return not self.__eq__(other) |
451 |
|
|
452 |
|
def __copy__(self): |
453 |
|
return ClassGroupProperties(self) |
454 |
|
|
455 |
|
def __deepcopy__(self): |
456 |
|
return ClassGroupProperties(self) |
457 |
|
|
458 |
|
class ClassGroup: |
459 |
|
"""A base class for all Groups within a Classification""" |
460 |
|
|
461 |
|
def __init__(self, label = ""): |
462 |
|
"""Constructor. |
463 |
|
|
464 |
|
label -- A string representing the Group's label |
465 |
|
""" |
466 |
|
|
467 |
|
self.label = None |
468 |
|
|
469 |
|
self.SetLabel(label) |
470 |
|
|
471 |
def GetLabel(self): |
def GetLabel(self): |
472 |
|
"""Return the Group's label.""" |
473 |
return self.label |
return self.label |
474 |
|
|
475 |
def SetLabel(self, label): |
def SetLabel(self, label): |
476 |
|
"""Set the Group's label. |
477 |
|
|
478 |
|
label -- a string representing the Group's label. This must |
479 |
|
not be None. |
480 |
|
""" |
481 |
|
assert isinstance(label, StringType) |
482 |
self.label = label |
self.label = label |
483 |
|
|
484 |
class ClassDataDefault(ClassData): |
def GetDisplayText(self): |
485 |
def __init__(self, classData = None): |
assert False, "GetDisplay must be overridden by subclass!" |
486 |
ClassData.__init__(self, classData, ClassData.DEFAULT) |
return "" |
487 |
|
|
488 |
|
def Matches(self, value): |
489 |
|
"""Determines if this Group is associated with the given value. |
490 |
|
|
491 |
|
Returns False. This needs to be overridden by all subclasses. |
492 |
|
""" |
493 |
|
assert False, "GetMatches must be overridden by subclass!" |
494 |
|
return False |
495 |
|
|
496 |
|
def GetProperties(self): |
497 |
|
"""Return the properties associated with the given value. |
498 |
|
|
499 |
|
Returns None. This needs to be overridden by all subclasses. |
500 |
|
""" |
501 |
|
assert False, "GetProperties must be overridden by subclass!" |
502 |
|
return None |
503 |
|
|
504 |
|
|
505 |
class ClassDataPoint(ClassData): |
class ClassGroupSingleton(ClassGroup): |
506 |
|
"""A Group that is associated with a single value.""" |
507 |
|
|
508 |
def __init__(self, value = 0, classData = None): |
def __init__(self, value = 0, prop = None, label = ""): |
509 |
ClassData.__init__(self, classData, ClassData.POINT) |
"""Constructor. |
510 |
|
|
511 |
self.value = value |
value -- the associated value. |
512 |
|
|
513 |
|
prop -- a ClassGroupProperites object. If prop is None a default |
514 |
|
set of properties is created. |
515 |
|
|
516 |
|
label -- a label for this group. |
517 |
|
""" |
518 |
|
ClassGroup.__init__(self, label) |
519 |
|
|
520 |
|
self.prop = None |
521 |
|
self.value = None |
522 |
|
|
523 |
|
self.SetValue(value) |
524 |
|
self.SetProperties(prop) |
525 |
|
|
526 |
|
def __copy__(self): |
527 |
|
return ClassGroupSingleton(self.GetValue(), |
528 |
|
self.GetProperties(), |
529 |
|
self.GetLabel()) |
530 |
|
|
531 |
|
def __deepcopy__(self, memo): |
532 |
|
return ClassGroupSingleton(copy.copy(self.GetValue()), |
533 |
|
copy.copy(self.GetProperties()), |
534 |
|
copy.copy(self.GetLabel())) |
535 |
|
|
536 |
def GetValue(self): |
def GetValue(self): |
537 |
|
"""Return the associated value.""" |
538 |
return self.value |
return self.value |
539 |
|
|
540 |
def SetValue(self, value): |
def SetValue(self, value): |
541 |
|
"""Associate this Group with the given value.""" |
542 |
self.value = value |
self.value = value |
543 |
|
|
544 |
class ClassDataRange(ClassData): |
def Matches(self, value): |
545 |
|
"""Determine if the given value matches the associated Group value.""" |
546 |
|
|
547 |
def __init__(self, min = 0, max = 1, classData = None): |
"""Returns True if the value matches, False otherwise.""" |
|
ClassData.__init__(self, classData, ClassData.RANGE) |
|
548 |
|
|
549 |
if min >= max: |
return self.value == value |
550 |
raise ValueError(_("ClassDataRange: %i(min) >= %i(max)!") % |
|
551 |
(min, max)) |
def GetProperties(self): |
552 |
|
"""Return the Properties associated with this Group.""" |
553 |
|
|
554 |
|
return self.prop |
555 |
|
|
556 |
|
def SetProperties(self, prop): |
557 |
|
"""Set the properties associated with this Group. |
558 |
|
|
559 |
|
prop -- a ClassGroupProperties object. if prop is None, |
560 |
|
a default set of properties is created. |
561 |
|
""" |
562 |
|
|
563 |
|
if prop is None: prop = ClassGroupProperties() |
564 |
|
assert isinstance(prop, ClassGroupProperties) |
565 |
|
self.prop = prop |
566 |
|
|
567 |
|
def GetDisplayText(self): |
568 |
|
label = self.GetLabel() |
569 |
|
|
570 |
|
if label != "": return label |
571 |
|
|
572 |
|
return str(self.GetValue()) |
573 |
|
|
574 |
|
def __eq__(self, other): |
575 |
|
return isinstance(other, ClassGroupSingleton) \ |
576 |
|
and self.GetProperties() == other.GetProperties() \ |
577 |
|
and self.GetValue() == other.GetValue() |
578 |
|
|
579 |
|
def __ne__(self, other): |
580 |
|
return not self.__eq__(other) |
581 |
|
|
582 |
|
class ClassGroupDefault(ClassGroup): |
583 |
|
"""The default Group. When values do not match any other |
584 |
|
Group within a Classification, the properties from this |
585 |
|
class are used.""" |
586 |
|
|
587 |
|
def __init__(self, prop = None, label = ""): |
588 |
|
"""Constructor. |
589 |
|
|
590 |
|
prop -- a ClassGroupProperites object. If prop is None a default |
591 |
|
set of properties is created. |
592 |
|
|
593 |
|
label -- a label for this group. |
594 |
|
""" |
595 |
|
|
596 |
|
ClassGroup.__init__(self, label) |
597 |
|
self.SetProperties(prop) |
598 |
|
|
599 |
|
def __copy__(self): |
600 |
|
return ClassGroupDefault(self.GetProperties(), self.GetLabel()) |
601 |
|
|
602 |
|
def __deepcopy__(self, memo): |
603 |
|
return ClassGroupDefault(copy.copy(self.GetProperties()), |
604 |
|
copy.copy(self.GetLabel())) |
605 |
|
|
606 |
|
def Matches(self, value): |
607 |
|
return True |
608 |
|
|
609 |
|
def GetProperties(self): |
610 |
|
"""Return the Properties associated with this Group.""" |
611 |
|
return self.prop |
612 |
|
|
613 |
|
def SetProperties(self, prop): |
614 |
|
"""Set the properties associated with this Group. |
615 |
|
|
616 |
|
prop -- a ClassGroupProperties object. if prop is None, |
617 |
|
a default set of properties is created. |
618 |
|
""" |
619 |
|
|
620 |
|
if prop is None: prop = ClassGroupProperties() |
621 |
|
assert isinstance(prop, ClassGroupProperties) |
622 |
|
self.prop = prop |
623 |
|
|
624 |
|
def GetDisplayText(self): |
625 |
|
label = self.GetLabel() |
626 |
|
|
627 |
|
if label != "": return label |
628 |
|
|
629 |
|
return "DEFAULT" |
630 |
|
|
631 |
|
def __eq__(self, other): |
632 |
|
return isinstance(other, ClassGroupDefault) \ |
633 |
|
and self.GetProperties() == other.GetProperties() |
634 |
|
|
635 |
|
def __ne__(self, other): |
636 |
|
return not self.__eq__(other) |
637 |
|
|
638 |
|
class ClassGroupRange(ClassGroup): |
639 |
|
"""A Group that represents a range of values that map to the same |
640 |
|
set of properties.""" |
641 |
|
|
642 |
|
def __init__(self, min = 0, max = 1, prop = None, label = ""): |
643 |
|
"""Constructor. |
644 |
|
|
645 |
|
The minumum value must be strictly less than the maximum. |
646 |
|
|
647 |
|
min -- the minimum range value |
648 |
|
|
649 |
|
max -- the maximum range value |
650 |
|
|
651 |
|
prop -- a ClassGroupProperites object. If prop is None a default |
652 |
|
set of properties is created. |
653 |
|
|
654 |
|
label -- a label for this group. |
655 |
|
""" |
656 |
|
|
657 |
|
ClassGroup.__init__(self, label) |
658 |
|
|
659 |
|
self.min = self.max = 0 |
660 |
|
self.prop = None |
661 |
|
|
662 |
self.SetRange(min, max) |
self.SetRange(min, max) |
663 |
|
self.SetProperties(prop) |
664 |
|
|
665 |
|
def __copy__(self): |
666 |
|
return ClassGroupRange(self.GetMin(), |
667 |
|
self.GetMax(), |
668 |
|
self.GetProperties(), |
669 |
|
self.GetLabel()) |
670 |
|
|
671 |
|
def __deepcopy__(self, memo): |
672 |
|
return ClassGroupRange(copy.copy(self.GetMin()), |
673 |
|
copy.copy(self.GetMax()), |
674 |
|
copy.copy(self.GetProperties()), |
675 |
|
copy.copy(self.GetLabel())) |
676 |
|
|
677 |
def GetMin(self): |
def GetMin(self): |
678 |
|
"""Return the range's minimum value.""" |
679 |
return self.min |
return self.min |
680 |
|
|
681 |
def SetMin(self, min): |
def SetMin(self, min): |
682 |
|
"""Set the range's minimum value. |
683 |
|
|
684 |
|
min -- the new minimum. Note that this must be less than the current |
685 |
|
maximum value. Use SetRange() to change both min and max values. |
686 |
|
""" |
687 |
|
|
688 |
self.SetRange(min, self.max) |
self.SetRange(min, self.max) |
689 |
|
|
690 |
def GetMax(self): |
def GetMax(self): |
691 |
|
"""Return the range's maximum value.""" |
692 |
return self.max |
return self.max |
693 |
|
|
694 |
def SetMax(self, max): |
def SetMax(self, max): |
695 |
|
"""Set the range's maximum value. |
696 |
|
|
697 |
|
max -- the new maximum. Note that this must be greater than the current |
698 |
|
minimum value. Use SetRange() to change both min and max values. |
699 |
|
""" |
700 |
self.SetRange(self.min, max) |
self.SetRange(self.min, max) |
701 |
|
|
702 |
def SetRange(self, min, max): |
def SetRange(self, min, max): |
703 |
self.min = min |
"""Set a new range. |
704 |
self.max = max |
|
705 |
|
Note that min must be strictly less than max. |
706 |
|
|
707 |
|
min -- the new minimum value |
708 |
|
min -- the new maximum value |
709 |
|
""" |
710 |
|
|
711 |
if min >= max: |
if min >= max: |
712 |
raise ValueError(_("ClassDataRange: %i(min) >= %i(max)!") % |
raise ValueError(_("ClassGroupRange: %i(min) >= %i(max)!") % |
713 |
(min, max)) |
(min, max)) |
714 |
|
self.min = min |
715 |
|
self.max = max |
716 |
|
|
717 |
def GetRange(self): |
def GetRange(self): |
718 |
|
"""Return the range as a tuple (min, max)""" |
719 |
return (self.min, self.max) |
return (self.min, self.max) |
720 |
|
|
721 |
def InRange(self, value): |
def Matches(self, value): |
722 |
|
"""Determine if the given value lies with the current range. |
723 |
|
|
724 |
|
The following check is used: min <= value < max. |
725 |
|
""" |
726 |
|
|
727 |
return self.min <= value < self.max |
return self.min <= value < self.max |
728 |
|
|
729 |
class ClassDataMap(ClassData): |
def GetProperties(self): |
730 |
|
"""Return the Properties associated with this Group.""" |
731 |
|
return self.prop |
732 |
|
|
733 |
|
def SetProperties(self, prop): |
734 |
|
"""Set the properties associated with this Group. |
735 |
|
|
736 |
|
prop -- a ClassGroupProperties object. if prop is None, |
737 |
|
a default set of properties is created. |
738 |
|
""" |
739 |
|
if prop is None: prop = ClassGroupProperties() |
740 |
|
assert isinstance(prop, ClassGroupProperties) |
741 |
|
self.prop = prop |
742 |
|
|
743 |
|
def GetDisplayText(self): |
744 |
|
label = self.GetLabel() |
745 |
|
|
746 |
|
if label != "": return label |
747 |
|
|
748 |
|
return _("%s - %s") % (self.GetMin(), self.GetMax()) |
749 |
|
|
750 |
|
def __eq__(self, other): |
751 |
|
return isinstance(other, ClassGroupRange) \ |
752 |
|
and self.GetProperties() == other.GetProperties() \ |
753 |
|
and self.GetRange() == other.GetRange() |
754 |
|
|
755 |
|
def __ne__(self, other): |
756 |
|
return not self.__eq__(other) |
757 |
|
|
758 |
|
class ClassGroupMap(ClassGroup): |
759 |
|
"""Currently, this class is not used.""" |
760 |
|
|
761 |
FUNC_ID = "id" |
FUNC_ID = "id" |
762 |
|
|
763 |
def __init__(self, map_type = FUNC_ID, func = None, classData = None): |
def __init__(self, map_type = FUNC_ID, func = None, prop = None, label=""): |
764 |
ClassData.__init__(self, classData, ClassData.MAP) |
ClassGroup.__init__(self, label) |
765 |
|
|
766 |
self.map_type = map_type |
self.map_type = map_type |
767 |
self.func = func |
self.func = func |
772 |
def Map(self, value): |
def Map(self, value): |
773 |
return self.func(value) |
return self.func(value) |
774 |
|
|
775 |
|
def GetProperties(self): |
776 |
|
return None |
777 |
|
|
778 |
|
def GetPropertiesFromValue(self, value): |
779 |
|
pass |
780 |
|
|
781 |
|
def GetDisplayText(self): |
782 |
|
return "Map: " + self.map_type |
783 |
|
|
784 |
# |
# |
785 |
# built-in mappings |
# built-in mappings |
786 |
# |
# |