author | Laurent Bessard |
Mon, 09 Sep 2013 00:48:34 +0200 | |
changeset 1307 | 26e8b99bc2c3 |
parent 1305 | 714f1381a09a |
child 1315 | ff14a66bbd12 |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
|
5 |
#based on the plcopen standard. |
|
6 |
# |
|
7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
|
8 |
# |
|
9 |
#See COPYING file for copyrights details. |
|
10 |
# |
|
11 |
#This library is free software; you can redistribute it and/or |
|
12 |
#modify it under the terms of the GNU General Public |
|
13 |
#License as published by the Free Software Foundation; either |
|
14 |
#version 2.1 of the License, or (at your option) any later version. |
|
15 |
# |
|
16 |
#This library is distributed in the hope that it will be useful, |
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
19 |
#General Public License for more details. |
|
20 |
# |
|
21 |
#You should have received a copy of the GNU General Public |
|
22 |
#License along with this library; if not, write to the Free Software |
|
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
24 |
||
25 |
import os, sys |
|
26 |
import re |
|
27 |
import datetime |
|
28 |
from types import * |
|
29 |
from xml.dom import minidom |
|
30 |
from xml.sax.saxutils import escape, unescape, quoteattr |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
31 |
from lxml import etree |
814 | 32 |
from new import classobj |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
33 |
from collections import OrderedDict |
814 | 34 |
|
35 |
def CreateNode(name): |
|
36 |
node = minidom.Node() |
|
37 |
node.nodeName = name |
|
38 |
node._attrs = {} |
|
39 |
node.childNodes = [] |
|
40 |
return node |
|
41 |
||
42 |
def NodeRenameAttr(node, old_name, new_name): |
|
43 |
node._attrs[new_name] = node._attrs.pop(old_name) |
|
44 |
||
45 |
def NodeSetAttr(node, name, value): |
|
46 |
attr = minidom.Attr(name) |
|
47 |
text = minidom.Text() |
|
48 |
text.data = value |
|
49 |
attr.childNodes[0] = text |
|
50 |
node._attrs[name] = attr |
|
51 |
||
52 |
""" |
|
53 |
Regular expression models for checking all kind of string values defined in XML |
|
54 |
standard |
|
55 |
""" |
|
56 |
Name_model = re.compile('([a-zA-Z_\:][\w\.\-\:]*)$') |
|
57 |
Names_model = re.compile('([a-zA-Z_\:][\w\.\-\:]*(?: [a-zA-Z_\:][\w\.\-\:]*)*)$') |
|
58 |
NMToken_model = re.compile('([\w\.\-\:]*)$') |
|
59 |
NMTokens_model = re.compile('([\w\.\-\:]*(?: [\w\.\-\:]*)*)$') |
|
60 |
QName_model = re.compile('((?:[a-zA-Z_][\w]*:)?[a-zA-Z_][\w]*)$') |
|
61 |
QNames_model = re.compile('((?:[a-zA-Z_][\w]*:)?[a-zA-Z_][\w]*(?: (?:[a-zA-Z_][\w]*:)?[a-zA-Z_][\w]*)*)$') |
|
62 |
NCName_model = re.compile('([a-zA-Z_][\w]*)$') |
|
63 |
URI_model = re.compile('((?:http://|/)?(?:[\w.-]*/?)*)$') |
|
64 |
LANGUAGE_model = re.compile('([a-zA-Z]{1,8}(?:-[a-zA-Z0-9]{1,8})*)$') |
|
65 |
||
66 |
ONLY_ANNOTATION = re.compile("((?:annotation )?)") |
|
67 |
||
68 |
""" |
|
69 |
Regular expression models for extracting dates and times from a string |
|
70 |
""" |
|
71 |
time_model = re.compile('([0-9]{2}):([0-9]{2}):([0-9]{2}(?:\.[0-9]*)?)(?:Z)?$') |
|
72 |
date_model = re.compile('([0-9]{4})-([0-9]{2})-([0-9]{2})((?:[\-\+][0-9]{2}:[0-9]{2})|Z)?$') |
|
73 |
datetime_model = re.compile('([0-9]{4})-([0-9]{2})-([0-9]{2})[ T]([0-9]{2}):([0-9]{2}):([0-9]{2}(?:\.[0-9]*)?)((?:[\-\+][0-9]{2}:[0-9]{2})|Z)?$') |
|
74 |
||
75 |
class xml_timezone(datetime.tzinfo): |
|
76 |
||
77 |
def SetOffset(self, offset): |
|
78 |
if offset == "Z": |
|
79 |
self.__offset = timedelta(minutes = 0) |
|
80 |
self.__name = "UTC" |
|
81 |
else: |
|
82 |
sign = {"-" : -1, "+" : 1}[offset[0]] |
|
83 |
hours, minutes = [int(val) for val in offset[1:].split(":")] |
|
84 |
self.__offset = timedelta(minutes=sign * (hours * 60 + minutes)) |
|
85 |
self.__name = "" |
|
86 |
||
87 |
def utcoffset(self, dt): |
|
88 |
return self.__offset |
|
89 |
||
90 |
def tzname(self, dt): |
|
91 |
return self.__name |
|
92 |
||
93 |
def dst(self, dt): |
|
94 |
return ZERO |
|
95 |
||
96 |
[SYNTAXELEMENT, SYNTAXATTRIBUTE, SIMPLETYPE, COMPLEXTYPE, COMPILEDCOMPLEXTYPE, |
|
97 |
ATTRIBUTESGROUP, ELEMENTSGROUP, ATTRIBUTE, ELEMENT, CHOICE, ANY, TAG, CONSTRAINT, |
|
98 |
] = range(13) |
|
99 |
||
100 |
def NotSupportedYet(type): |
|
101 |
""" |
|
102 |
Function that generates a function that point out to user that datatype |
|
103 |
used is not supported by xmlclass yet |
|
104 |
@param type: data type |
|
105 |
@return: function generated |
|
106 |
""" |
|
107 |
def GetUnknownValue(attr): |
|
108 |
raise ValueError("\"%s\" type isn't supported by \"xmlclass\" yet!" % \ |
|
109 |
type) |
|
110 |
return GetUnknownValue |
|
111 |
||
112 |
""" |
|
113 |
This function calculates the number of whitespace for indentation |
|
114 |
""" |
|
115 |
def getIndent(indent, balise): |
|
116 |
first = indent * 2 |
|
117 |
second = first + len(balise) + 1 |
|
118 |
return u'\t'.expandtabs(first), u'\t'.expandtabs(second) |
|
119 |
||
120 |
||
121 |
def GetAttributeValue(attr, extract=True): |
|
122 |
""" |
|
123 |
Function that extracts data from a tree node |
|
124 |
@param attr: tree node containing data to extract |
|
125 |
@param extract: attr is a tree node or not |
|
126 |
@return: data extracted as string |
|
127 |
""" |
|
128 |
if not extract: |
|
129 |
return attr |
|
130 |
if len(attr.childNodes) == 1: |
|
131 |
return unicode(unescape(attr.childNodes[0].data)) |
|
132 |
else: |
|
133 |
# content is a CDATA |
|
134 |
text = u'' |
|
135 |
for node in attr.childNodes: |
|
136 |
if not (node.nodeName == "#text" and node.data.strip() == u''): |
|
137 |
text += unicode(unescape(node.data)) |
|
138 |
return text |
|
139 |
||
140 |
||
141 |
def GetNormalizedString(attr, extract=True): |
|
142 |
""" |
|
143 |
Function that normalizes a string according to XML 1.0. Replace |
|
144 |
tabulations, line feed and carriage return by white space |
|
145 |
@param attr: tree node containing data to extract or data to normalize |
|
146 |
@param extract: attr is a tree node or not |
|
147 |
@return: data normalized as string |
|
148 |
""" |
|
149 |
if extract: |
|
150 |
value = GetAttributeValue(attr) |
|
151 |
else: |
|
152 |
value = attr |
|
153 |
return value.replace("\t", " ").replace("\r", " ").replace("\n", " ") |
|
154 |
||
155 |
||
156 |
def GetToken(attr, extract=True): |
|
157 |
""" |
|
158 |
Function that tokenizes a string according to XML 1.0. Remove any leading |
|
159 |
and trailing white space and replace internal sequence of two or more |
|
160 |
spaces by only one white space |
|
161 |
@param attr: tree node containing data to extract or data to tokenize |
|
162 |
@param extract: attr is a tree node or not |
|
163 |
@return: data tokenized as string |
|
164 |
""" |
|
165 |
return " ".join([part for part in |
|
166 |
GetNormalizedString(attr, extract).split(" ") |
|
167 |
if part]) |
|
168 |
||
169 |
||
170 |
def GetHexInteger(attr, extract=True): |
|
171 |
""" |
|
172 |
Function that extracts an hexadecimal integer from a tree node or a string |
|
173 |
@param attr: tree node containing data to extract or data as a string |
|
174 |
@param extract: attr is a tree node or not |
|
175 |
@return: data as an integer |
|
176 |
""" |
|
177 |
if extract: |
|
178 |
value = GetAttributeValue(attr) |
|
179 |
else: |
|
180 |
value = attr |
|
181 |
if len(value) % 2 != 0: |
|
182 |
raise ValueError("\"%s\" isn't a valid hexadecimal integer!" % value) |
|
183 |
try: |
|
184 |
return int(value, 16) |
|
185 |
except: |
|
186 |
raise ValueError("\"%s\" isn't a valid hexadecimal integer!" % value) |
|
187 |
||
188 |
||
189 |
def GenerateIntegerExtraction(minInclusive=None, maxInclusive=None, |
|
190 |
minExclusive=None, maxExclusive=None): |
|
191 |
""" |
|
192 |
Function that generates an extraction function for integer defining min and |
|
193 |
max of integer value |
|
194 |
@param minInclusive: inclusive minimum |
|
195 |
@param maxInclusive: inclusive maximum |
|
196 |
@param minExclusive: exclusive minimum |
|
197 |
@param maxExclusive: exclusive maximum |
|
198 |
@return: function generated |
|
199 |
""" |
|
200 |
def GetInteger(attr, extract=True): |
|
201 |
""" |
|
202 |
Function that extracts an integer from a tree node or a string |
|
203 |
@param attr: tree node containing data to extract or data as a string |
|
204 |
@param extract: attr is a tree node or not |
|
205 |
@return: data as an integer |
|
206 |
""" |
|
207 |
||
208 |
if extract: |
|
209 |
value = GetAttributeValue(attr) |
|
210 |
else: |
|
211 |
value = attr |
|
212 |
try: |
|
213 |
# TODO: permit to write value like 1E2 |
|
214 |
value = int(value) |
|
215 |
except: |
|
216 |
raise ValueError("\"%s\" isn't a valid integer!" % value) |
|
217 |
if minInclusive is not None and value < minInclusive: |
|
218 |
raise ValueError("\"%d\" isn't greater or equal to %d!" % \ |
|
219 |
(value, minInclusive)) |
|
220 |
if maxInclusive is not None and value > maxInclusive: |
|
221 |
raise ValueError("\"%d\" isn't lesser or equal to %d!" % \ |
|
222 |
(value, maxInclusive)) |
|
223 |
if minExclusive is not None and value <= minExclusive: |
|
224 |
raise ValueError("\"%d\" isn't greater than %d!" % \ |
|
225 |
(value, minExclusive)) |
|
226 |
if maxExclusive is not None and value >= maxExclusive: |
|
227 |
raise ValueError("\"%d\" isn't lesser than %d!" % \ |
|
228 |
(value, maxExclusive)) |
|
229 |
return value |
|
230 |
return GetInteger |
|
231 |
||
232 |
||
233 |
def GenerateFloatExtraction(type, extra_values=[]): |
|
234 |
""" |
|
235 |
Function that generates an extraction function for float |
|
236 |
@param type: name of the type of float |
|
237 |
@return: function generated |
|
238 |
""" |
|
239 |
def GetFloat(attr, extract = True): |
|
240 |
""" |
|
241 |
Function that extracts a float from a tree node or a string |
|
242 |
@param attr: tree node containing data to extract or data as a string |
|
243 |
@param extract: attr is a tree node or not |
|
244 |
@return: data as a float |
|
245 |
""" |
|
246 |
if extract: |
|
247 |
value = GetAttributeValue(attr) |
|
248 |
else: |
|
249 |
value = attr |
|
250 |
if value in extra_values: |
|
251 |
return value |
|
252 |
try: |
|
253 |
return float(value) |
|
254 |
except: |
|
255 |
raise ValueError("\"%s\" isn't a valid %s!" % (value, type)) |
|
256 |
return GetFloat |
|
257 |
||
258 |
||
259 |
def GetBoolean(attr, extract=True): |
|
260 |
""" |
|
261 |
Function that extracts a boolean from a tree node or a string |
|
262 |
@param attr: tree node containing data to extract or data as a string |
|
263 |
@param extract: attr is a tree node or not |
|
264 |
@return: data as a boolean |
|
265 |
""" |
|
266 |
if extract: |
|
267 |
value = GetAttributeValue(attr) |
|
268 |
else: |
|
269 |
value = attr |
|
270 |
if value == "true" or value == "1": |
|
271 |
return True |
|
272 |
elif value == "false" or value == "0": |
|
273 |
return False |
|
274 |
else: |
|
275 |
raise ValueError("\"%s\" isn't a valid boolean!" % value) |
|
276 |
||
277 |
||
278 |
def GetTime(attr, extract=True): |
|
279 |
""" |
|
280 |
Function that extracts a time from a tree node or a string |
|
281 |
@param attr: tree node containing data to extract or data as a string |
|
282 |
@param extract: attr is a tree node or not |
|
283 |
@return: data as a time |
|
284 |
""" |
|
285 |
if extract: |
|
286 |
value = GetAttributeValue(attr) |
|
287 |
else: |
|
288 |
value = attr |
|
289 |
result = time_model.match(value) |
|
290 |
if result: |
|
291 |
values = result.groups() |
|
292 |
time_values = [int(v) for v in values[:2]] |
|
293 |
seconds = float(values[2]) |
|
294 |
time_values.extend([int(seconds), int((seconds % 1) * 1000000)]) |
|
295 |
return datetime.time(*time_values) |
|
296 |
else: |
|
297 |
raise ValueError("\"%s\" isn't a valid time!" % value) |
|
298 |
||
299 |
||
300 |
def GetDate(attr, extract=True): |
|
301 |
""" |
|
302 |
Function that extracts a date from a tree node or a string |
|
303 |
@param attr: tree node containing data to extract or data as a string |
|
304 |
@param extract: attr is a tree node or not |
|
305 |
@return: data as a date |
|
306 |
""" |
|
307 |
if extract: |
|
308 |
value = GetAttributeValue(attr) |
|
309 |
else: |
|
310 |
value = attr |
|
311 |
result = date_model.match(value) |
|
312 |
if result: |
|
313 |
values = result.groups() |
|
314 |
date_values = [int(v) for v in values[:3]] |
|
315 |
if values[3] is not None: |
|
316 |
tz = xml_timezone() |
|
317 |
tz.SetOffset(values[3]) |
|
318 |
date_values.append(tz) |
|
319 |
return datetime.date(*date_values) |
|
320 |
else: |
|
321 |
raise ValueError("\"%s\" isn't a valid date!" % value) |
|
322 |
||
323 |
||
324 |
def GetDateTime(attr, extract=True): |
|
325 |
""" |
|
326 |
Function that extracts date and time from a tree node or a string |
|
327 |
@param attr: tree node containing data to extract or data as a string |
|
328 |
@param extract: attr is a tree node or not |
|
329 |
@return: data as date and time |
|
330 |
""" |
|
331 |
if extract: |
|
332 |
value = GetAttributeValue(attr) |
|
333 |
else: |
|
334 |
value = attr |
|
335 |
result = datetime_model.match(value) |
|
336 |
if result: |
|
337 |
values = result.groups() |
|
338 |
datetime_values = [int(v) for v in values[:5]] |
|
339 |
seconds = float(values[5]) |
|
340 |
datetime_values.extend([int(seconds), int((seconds % 1) * 1000000)]) |
|
341 |
if values[6] is not None: |
|
342 |
tz = xml_timezone() |
|
343 |
tz.SetOffset(values[6]) |
|
344 |
datetime_values.append(tz) |
|
345 |
return datetime.datetime(*datetime_values) |
|
346 |
else: |
|
347 |
raise ValueError("\"%s\" isn't a valid datetime!" % value) |
|
348 |
||
349 |
||
350 |
def GenerateModelNameExtraction(type, model): |
|
351 |
""" |
|
352 |
Function that generates an extraction function for string matching a model |
|
353 |
@param type: name of the data type |
|
354 |
@param model: model that data must match |
|
355 |
@return: function generated |
|
356 |
""" |
|
357 |
def GetModelName(attr, extract=True): |
|
358 |
""" |
|
359 |
Function that extracts a string from a tree node or not and check that |
|
360 |
string extracted or given match the model |
|
361 |
@param attr: tree node containing data to extract or data as a string |
|
362 |
@param extract: attr is a tree node or not |
|
363 |
@return: data as a string if matching |
|
364 |
""" |
|
365 |
if extract: |
|
366 |
value = GetAttributeValue(attr) |
|
367 |
else: |
|
368 |
value = attr |
|
369 |
result = model.match(value) |
|
370 |
if not result: |
|
371 |
raise ValueError("\"%s\" isn't a valid %s!" % (value, type)) |
|
372 |
return value |
|
373 |
return GetModelName |
|
374 |
||
375 |
||
376 |
def GenerateLimitExtraction(min=None, max=None, unbounded=True): |
|
377 |
""" |
|
378 |
Function that generates an extraction function for integer defining min and |
|
379 |
max of integer value |
|
380 |
@param min: minimum limit value |
|
381 |
@param max: maximum limit value |
|
382 |
@param unbounded: value can be "unbounded" or not |
|
383 |
@return: function generated |
|
384 |
""" |
|
385 |
def GetLimit(attr, extract=True): |
|
386 |
""" |
|
387 |
Function that extracts a string from a tree node or not and check that |
|
388 |
string extracted or given is in a list of values |
|
389 |
@param attr: tree node containing data to extract or data as a string |
|
390 |
@param extract: attr is a tree node or not |
|
391 |
@return: data as a string |
|
392 |
""" |
|
393 |
if extract: |
|
394 |
value = GetAttributeValue(attr) |
|
395 |
else: |
|
396 |
value = attr |
|
397 |
if value == "unbounded": |
|
398 |
if unbounded: |
|
399 |
return value |
|
400 |
else: |
|
401 |
raise ValueError("Member limit can't be defined to \"unbounded\"!") |
|
402 |
try: |
|
403 |
limit = int(value) |
|
404 |
except: |
|
405 |
raise ValueError("\"%s\" isn't a valid value for this member limit!" % value) |
|
406 |
if limit < 0: |
|
407 |
raise ValueError("Member limit can't be negative!") |
|
408 |
elif min is not None and limit < min: |
|
409 |
raise ValueError("Member limit can't be lower than \"%d\"!" % min) |
|
410 |
elif max is not None and limit > max: |
|
411 |
raise ValueError("Member limit can't be upper than \"%d\"!" % max) |
|
412 |
return limit |
|
413 |
return GetLimit |
|
414 |
||
415 |
||
416 |
def GenerateEnumeratedExtraction(type, list): |
|
417 |
""" |
|
418 |
Function that generates an extraction function for enumerated values |
|
419 |
@param type: name of the data type |
|
420 |
@param list: list of possible values |
|
421 |
@return: function generated |
|
422 |
""" |
|
423 |
def GetEnumerated(attr, extract=True): |
|
424 |
""" |
|
425 |
Function that extracts a string from a tree node or not and check that |
|
426 |
string extracted or given is in a list of values |
|
427 |
@param attr: tree node containing data to extract or data as a string |
|
428 |
@param extract: attr is a tree node or not |
|
429 |
@return: data as a string |
|
430 |
""" |
|
431 |
if extract: |
|
432 |
value = GetAttributeValue(attr) |
|
433 |
else: |
|
434 |
value = attr |
|
435 |
if value in list: |
|
436 |
return value |
|
437 |
else: |
|
438 |
raise ValueError("\"%s\" isn't a valid value for %s!" % \ |
|
439 |
(value, type)) |
|
440 |
return GetEnumerated |
|
441 |
||
442 |
||
443 |
def GetNamespaces(attr, extract=True): |
|
444 |
""" |
|
445 |
Function that extracts a list of namespaces from a tree node or a string |
|
446 |
@param attr: tree node containing data to extract or data as a string |
|
447 |
@param extract: attr is a tree node or not |
|
448 |
@return: list of namespaces |
|
449 |
""" |
|
450 |
if extract: |
|
451 |
value = GetAttributeValue(attr) |
|
452 |
else: |
|
453 |
value = attr |
|
454 |
if value == "": |
|
455 |
return [] |
|
456 |
elif value == "##any" or value == "##other": |
|
457 |
namespaces = [value] |
|
458 |
else: |
|
459 |
namespaces = [] |
|
460 |
for item in value.split(" "): |
|
461 |
if item == "##targetNamespace" or item == "##local": |
|
462 |
namespaces.append(item) |
|
463 |
else: |
|
464 |
result = URI_model.match(item) |
|
465 |
if result is not None: |
|
466 |
namespaces.append(item) |
|
467 |
else: |
|
468 |
raise ValueError("\"%s\" isn't a valid value for namespace!" % value) |
|
469 |
return namespaces |
|
470 |
||
471 |
||
472 |
def GenerateGetList(type, list): |
|
473 |
""" |
|
474 |
Function that generates an extraction function for a list of values |
|
475 |
@param type: name of the data type |
|
476 |
@param list: list of possible values |
|
477 |
@return: function generated |
|
478 |
""" |
|
479 |
def GetLists(attr, extract=True): |
|
480 |
""" |
|
481 |
Function that extracts a list of values from a tree node or a string |
|
482 |
@param attr: tree node containing data to extract or data as a string |
|
483 |
@param extract: attr is a tree node or not |
|
484 |
@return: list of values |
|
485 |
""" |
|
486 |
if extract: |
|
487 |
value = GetAttributeValue(attr) |
|
488 |
else: |
|
489 |
value = attr |
|
490 |
if value == "": |
|
491 |
return [] |
|
492 |
elif value == "#all": |
|
493 |
return [value] |
|
494 |
else: |
|
495 |
values = [] |
|
496 |
for item in value.split(" "): |
|
497 |
if item in list: |
|
498 |
values.append(item) |
|
499 |
else: |
|
500 |
raise ValueError("\"%s\" isn't a valid value for %s!" % \ |
|
501 |
(value, type)) |
|
502 |
return values |
|
503 |
return GetLists |
|
504 |
||
505 |
||
506 |
def GenerateModelNameListExtraction(type, model): |
|
507 |
""" |
|
508 |
Function that generates an extraction function for list of string matching |
|
509 |
a model |
|
510 |
@param type: name of the data type |
|
511 |
@param model: model that list elements must match |
|
512 |
@return: function generated |
|
513 |
""" |
|
514 |
def GetModelNameList(attr, extract=True): |
|
515 |
""" |
|
516 |
Function that extracts a list of string from a tree node or not and |
|
517 |
check that all extracted items match the model |
|
518 |
@param attr: tree node containing data to extract or data as a string |
|
519 |
@param extract: attr is a tree node or not |
|
520 |
@return: data as a list of string if matching |
|
521 |
""" |
|
522 |
if extract: |
|
523 |
value = GetAttributeValue(attr) |
|
524 |
else: |
|
525 |
value = attr |
|
526 |
values = [] |
|
527 |
for item in value.split(" "): |
|
528 |
result = model.match(item) |
|
529 |
if result is not None: |
|
530 |
values.append(item) |
|
531 |
else: |
|
532 |
raise ValueError("\"%s\" isn't a valid value for %s!" % \ |
|
533 |
(value, type)) |
|
534 |
return values |
|
535 |
return GetModelNameList |
|
536 |
||
537 |
def GenerateAnyInfos(infos): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
538 |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
539 |
def GetTextElement(tree): |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
540 |
if infos["namespace"][0] == "##any": |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
541 |
return tree.xpath("p")[0] |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
542 |
return tree.xpath("ns:p", namespaces={"ns": infos["namespace"][0]})[0] |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
543 |
|
814 | 544 |
def ExtractAny(tree): |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
545 |
return GetTextElement(tree).text |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
546 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
547 |
def GenerateAny(tree, value): |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
548 |
GetTextElement(tree).text = etree.CDATA(value) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
549 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
550 |
def InitialAny(): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
551 |
if infos["namespace"][0] == "##any": |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
552 |
element_name = "p" |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
553 |
else: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
554 |
element_name = "{%s}p" % infos["namespace"][0] |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
555 |
p = etree.Element(element_name) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
556 |
p.text = etree.CDATA("") |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
557 |
return p |
814 | 558 |
|
559 |
return { |
|
560 |
"type": COMPLEXTYPE, |
|
561 |
"extract": ExtractAny, |
|
562 |
"generate": GenerateAny, |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
563 |
"initial": InitialAny, |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
564 |
"check": lambda x: isinstance(x, (StringType, UnicodeType, etree.ElementBase)) |
814 | 565 |
} |
566 |
||
567 |
def GenerateTagInfos(infos): |
|
568 |
def ExtractTag(tree): |
|
569 |
if len(tree._attrs) > 0: |
|
570 |
raise ValueError("\"%s\" musn't have attributes!" % infos["name"]) |
|
571 |
if len(tree.childNodes) > 0: |
|
572 |
raise ValueError("\"%s\" musn't have children!" % infos["name"]) |
|
573 |
if infos["minOccurs"] == 0: |
|
574 |
return True |
|
575 |
else: |
|
576 |
return None |
|
577 |
||
578 |
def GenerateTag(value, name=None, indent=0): |
|
579 |
if name is not None and not (infos["minOccurs"] == 0 and value is None): |
|
580 |
ind1, ind2 = getIndent(indent, name) |
|
581 |
return ind1 + "<%s/>\n" % name |
|
582 |
else: |
|
583 |
return "" |
|
584 |
||
585 |
return { |
|
586 |
"type": TAG, |
|
587 |
"extract": ExtractTag, |
|
588 |
"generate": GenerateTag, |
|
589 |
"initial": lambda: None, |
|
590 |
"check": lambda x: x == None or infos["minOccurs"] == 0 and value == True |
|
591 |
} |
|
592 |
||
593 |
def FindTypeInfos(factory, infos): |
|
594 |
if isinstance(infos, (UnicodeType, StringType)): |
|
595 |
namespace, name = DecomposeQualifiedName(infos) |
|
596 |
return factory.GetQualifiedNameInfos(name, namespace) |
|
597 |
return infos |
|
598 |
||
599 |
def GetElementInitialValue(factory, infos): |
|
600 |
infos["elmt_type"] = FindTypeInfos(factory, infos["elmt_type"]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
601 |
if infos["minOccurs"] == 1: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
602 |
element_name = factory.etreeNamespaceFormat % infos["name"] |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
603 |
if infos["elmt_type"]["type"] == SIMPLETYPE: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
604 |
def initial_value(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
605 |
value = etree.Element(element_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
606 |
value.text = (infos["elmt_type"]["generate"](infos["elmt_type"]["initial"]())) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
607 |
return value |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
608 |
else: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
609 |
def initial_value(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
610 |
value = infos["elmt_type"]["initial"]() |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
611 |
if infos["type"] != ANY: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
612 |
DefaultElementClass.__setattr__(value, "tag", element_name) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
613 |
value.init() |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
614 |
return value |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
615 |
return [initial_value() for i in xrange(infos["minOccurs"])] |
814 | 616 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
617 |
return [] |
814 | 618 |
|
619 |
def GetContentInfos(name, choices): |
|
620 |
for choice_infos in choices: |
|
621 |
if choices_infos["type"] == "sequence": |
|
622 |
for element_infos in choices_infos["elements"]: |
|
623 |
if element_infos["type"] == CHOICE: |
|
624 |
if GetContentInfos(name, element_infos["choices"]): |
|
625 |
return choices_infos |
|
626 |
elif element_infos["name"] == name: |
|
627 |
return choices_infos |
|
628 |
elif choice_infos["name"] == name: |
|
629 |
return choices_infos |
|
630 |
return None |
|
631 |
||
632 |
def ComputeContentChoices(factory, name, infos): |
|
633 |
choices = [] |
|
634 |
for choice in infos["choices"]: |
|
635 |
if choice["type"] == "sequence": |
|
636 |
choice["name"] = "sequence" |
|
637 |
for sequence_element in choice["elements"]: |
|
638 |
if sequence_element["type"] != CHOICE: |
|
639 |
element_infos = factory.ExtractTypeInfos(sequence_element["name"], name, sequence_element["elmt_type"]) |
|
640 |
if element_infos is not None: |
|
641 |
sequence_element["elmt_type"] = element_infos |
|
642 |
elif choice["elmt_type"] == "tag": |
|
643 |
choice["elmt_type"] = GenerateTagInfos(choice) |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
644 |
factory.AddToLookupClass(choice["name"], name, DefaultElementClass) |
814 | 645 |
else: |
646 |
choice_infos = factory.ExtractTypeInfos(choice["name"], name, choice["elmt_type"]) |
|
647 |
if choice_infos is not None: |
|
648 |
choice["elmt_type"] = choice_infos |
|
649 |
choices.append((choice["name"], choice)) |
|
650 |
return choices |
|
651 |
||
652 |
def GenerateContentInfos(factory, name, choices): |
|
653 |
choices_dict = {} |
|
654 |
for choice_name, infos in choices: |
|
655 |
if choice_name == "sequence": |
|
656 |
for element in infos["elements"]: |
|
657 |
if element["type"] == CHOICE: |
|
658 |
element["elmt_type"] = GenerateContentInfos(factory, name, ComputeContentChoices(factory, name, element)) |
|
659 |
elif choices_dict.has_key(element["name"]): |
|
660 |
raise ValueError("'%s' element defined two times in choice" % choice_name) |
|
661 |
else: |
|
662 |
choices_dict[element["name"]] = infos |
|
663 |
else: |
|
664 |
if choices_dict.has_key(choice_name): |
|
665 |
raise ValueError("'%s' element defined two times in choice" % choice_name) |
|
666 |
choices_dict[choice_name] = infos |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
667 |
choices_xpath = "|".join(map(lambda x: "%s:%s" % (factory.TargetNamespace, x), choices_dict.keys())) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
668 |
|
814 | 669 |
def GetContentInitial(): |
670 |
content_name, infos = choices[0] |
|
671 |
if content_name == "sequence": |
|
672 |
content_value = [] |
|
673 |
for i in xrange(infos["minOccurs"]): |
|
674 |
for element_infos in infos["elements"]: |
|
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
675 |
content_value.extend(GetElementInitialValue(factory, element_infos)) |
814 | 676 |
else: |
677 |
content_value = GetElementInitialValue(factory, infos) |
|
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
678 |
return content_value |
814 | 679 |
|
680 |
return { |
|
681 |
"type": COMPLEXTYPE, |
|
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
682 |
"choices_xpath": etree.XPath(choices_xpath, namespaces=factory.NSMAP), |
814 | 683 |
"initial": GetContentInitial, |
684 |
} |
|
685 |
||
686 |
#------------------------------------------------------------------------------- |
|
687 |
# Structure extraction functions |
|
688 |
#------------------------------------------------------------------------------- |
|
689 |
||
690 |
||
691 |
def DecomposeQualifiedName(name): |
|
692 |
result = QName_model.match(name) |
|
693 |
if not result: |
|
694 |
raise ValueError("\"%s\" isn't a valid QName value!" % name) |
|
695 |
parts = result.groups()[0].split(':') |
|
696 |
if len(parts) == 1: |
|
697 |
return None, parts[0] |
|
698 |
return parts |
|
699 |
||
700 |
def GenerateElement(element_name, attributes, elements_model, |
|
701 |
accept_text=False): |
|
702 |
def ExtractElement(factory, node): |
|
703 |
attrs = factory.ExtractNodeAttrs(element_name, node, attributes) |
|
704 |
children_structure = "" |
|
705 |
children_infos = [] |
|
706 |
children = [] |
|
707 |
for child in node.childNodes: |
|
708 |
if child.nodeName not in ["#comment", "#text"]: |
|
709 |
namespace, childname = DecomposeQualifiedName(child.nodeName) |
|
710 |
children_structure += "%s "%childname |
|
711 |
result = elements_model.match(children_structure) |
|
712 |
if not result: |
|
713 |
raise ValueError("Invalid structure for \"%s\" children!. First element invalid." % node.nodeName) |
|
714 |
valid = result.groups()[0] |
|
715 |
if len(valid) < len(children_structure): |
|
716 |
raise ValueError("Invalid structure for \"%s\" children!. Element number %d invalid." % (node.nodeName, len(valid.split(" ")) - 1)) |
|
717 |
for child in node.childNodes: |
|
718 |
if child.nodeName != "#comment" and \ |
|
719 |
(accept_text or child.nodeName != "#text"): |
|
720 |
if child.nodeName == "#text": |
|
721 |
children.append(GetAttributeValue(node)) |
|
722 |
else: |
|
723 |
namespace, childname = DecomposeQualifiedName(child.nodeName) |
|
724 |
infos = factory.GetQualifiedNameInfos(childname, namespace) |
|
725 |
if infos["type"] != SYNTAXELEMENT: |
|
726 |
raise ValueError("\"%s\" can't be a member child!" % name) |
|
727 |
if infos["extract"].has_key(element_name): |
|
728 |
children.append(infos["extract"][element_name](factory, child)) |
|
729 |
else: |
|
730 |
children.append(infos["extract"]["default"](factory, child)) |
|
731 |
return node.nodeName, attrs, children |
|
732 |
return ExtractElement |
|
733 |
||
734 |
||
735 |
""" |
|
736 |
Class that generate class from an XML Tree |
|
737 |
""" |
|
738 |
class ClassFactory: |
|
739 |
||
740 |
def __init__(self, document, filepath=None, debug=False): |
|
741 |
self.Document = document |
|
742 |
if filepath is not None: |
|
743 |
self.BaseFolder, self.FileName = os.path.split(filepath) |
|
744 |
else: |
|
745 |
self.BaseFolder = self.FileName = None |
|
746 |
self.Debug = debug |
|
747 |
||
748 |
# Dictionary for stocking Classes and Types definitions created from |
|
749 |
# the XML tree |
|
750 |
self.XMLClassDefinitions = {} |
|
751 |
||
752 |
self.DefinedNamespaces = {} |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
753 |
self.NSMAP = {} |
814 | 754 |
self.Namespaces = {} |
755 |
self.SchemaNamespace = None |
|
756 |
self.TargetNamespace = None |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
757 |
self.etreeNamespaceFormat = "%s" |
814 | 758 |
|
759 |
self.CurrentCompilations = [] |
|
760 |
||
761 |
# Dictionaries for stocking Classes and Types generated |
|
762 |
self.ComputeAfter = [] |
|
763 |
if self.FileName is not None: |
|
764 |
self.ComputedClasses = {self.FileName: {}} |
|
765 |
else: |
|
766 |
self.ComputedClasses = {} |
|
767 |
self.ComputedClassesInfos = {} |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
768 |
self.ComputedClassesLookUp = {} |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
769 |
self.EquivalentClassesParent = {} |
814 | 770 |
self.AlreadyComputed = {} |
771 |
||
772 |
def GetQualifiedNameInfos(self, name, namespace=None, canbenone=False): |
|
773 |
if namespace is None: |
|
774 |
if self.Namespaces[self.SchemaNamespace].has_key(name): |
|
775 |
return self.Namespaces[self.SchemaNamespace][name] |
|
776 |
for space, elements in self.Namespaces.iteritems(): |
|
777 |
if space != self.SchemaNamespace and elements.has_key(name): |
|
778 |
return elements[name] |
|
779 |
parts = name.split("_", 1) |
|
780 |
if len(parts) > 1: |
|
781 |
group = self.GetQualifiedNameInfos(parts[0], namespace) |
|
782 |
if group is not None and group["type"] == ELEMENTSGROUP: |
|
783 |
elements = [] |
|
784 |
if group.has_key("elements"): |
|
785 |
elements = group["elements"] |
|
786 |
elif group.has_key("choices"): |
|
787 |
elements = group["choices"] |
|
788 |
for element in elements: |
|
789 |
if element["name"] == parts[1]: |
|
790 |
return element |
|
791 |
if not canbenone: |
|
792 |
raise ValueError("Unknown element \"%s\" for any defined namespaces!" % name) |
|
793 |
elif self.Namespaces.has_key(namespace): |
|
794 |
if self.Namespaces[namespace].has_key(name): |
|
795 |
return self.Namespaces[namespace][name] |
|
796 |
parts = name.split("_", 1) |
|
797 |
if len(parts) > 1: |
|
798 |
group = self.GetQualifiedNameInfos(parts[0], namespace) |
|
799 |
if group is not None and group["type"] == ELEMENTSGROUP: |
|
800 |
elements = [] |
|
801 |
if group.has_key("elements"): |
|
802 |
elements = group["elements"] |
|
803 |
elif group.has_key("choices"): |
|
804 |
elements = group["choices"] |
|
805 |
for element in elements: |
|
806 |
if element["name"] == parts[1]: |
|
807 |
return element |
|
808 |
if not canbenone: |
|
809 |
raise ValueError("Unknown element \"%s\" for namespace \"%s\"!" % (name, namespace)) |
|
810 |
elif not canbenone: |
|
811 |
raise ValueError("Unknown namespace \"%s\"!" % namespace) |
|
812 |
return None |
|
813 |
||
814 |
def SplitQualifiedName(self, name, namespace=None, canbenone=False): |
|
815 |
if namespace is None: |
|
816 |
if self.Namespaces[self.SchemaNamespace].has_key(name): |
|
817 |
return name, None |
|
818 |
for space, elements in self.Namespaces.items(): |
|
819 |
if space != self.SchemaNamespace and elements.has_key(name): |
|
820 |
return name, None |
|
821 |
parts = name.split("_", 1) |
|
822 |
if len(parts) > 1: |
|
823 |
group = self.GetQualifiedNameInfos(parts[0], namespace) |
|
824 |
if group is not None and group["type"] == ELEMENTSGROUP: |
|
825 |
elements = [] |
|
826 |
if group.has_key("elements"): |
|
827 |
elements = group["elements"] |
|
828 |
elif group.has_key("choices"): |
|
829 |
elements = group["choices"] |
|
830 |
for element in elements: |
|
831 |
if element["name"] == parts[1]: |
|
832 |
return part[1], part[0] |
|
833 |
if not canbenone: |
|
834 |
raise ValueError("Unknown element \"%s\" for any defined namespaces!" % name) |
|
835 |
elif self.Namespaces.has_key(namespace): |
|
836 |
if self.Namespaces[namespace].has_key(name): |
|
837 |
return name, None |
|
838 |
parts = name.split("_", 1) |
|
839 |
if len(parts) > 1: |
|
840 |
group = self.GetQualifiedNameInfos(parts[0], namespace) |
|
841 |
if group is not None and group["type"] == ELEMENTSGROUP: |
|
842 |
elements = [] |
|
843 |
if group.has_key("elements"): |
|
844 |
elements = group["elements"] |
|
845 |
elif group.has_key("choices"): |
|
846 |
elements = group["choices"] |
|
847 |
for element in elements: |
|
848 |
if element["name"] == parts[1]: |
|
849 |
return parts[1], parts[0] |
|
850 |
if not canbenone: |
|
851 |
raise ValueError("Unknown element \"%s\" for namespace \"%s\"!" % (name, namespace)) |
|
852 |
elif not canbenone: |
|
853 |
raise ValueError("Unknown namespace \"%s\"!" % namespace) |
|
854 |
return None, None |
|
855 |
||
856 |
def ExtractNodeAttrs(self, element_name, node, valid_attrs): |
|
857 |
attrs = {} |
|
858 |
for qualified_name, attr in node._attrs.items(): |
|
859 |
namespace, name = DecomposeQualifiedName(qualified_name) |
|
860 |
if name in valid_attrs: |
|
861 |
infos = self.GetQualifiedNameInfos(name, namespace) |
|
862 |
if infos["type"] != SYNTAXATTRIBUTE: |
|
863 |
raise ValueError("\"%s\" can't be a member attribute!" % name) |
|
864 |
elif name in attrs: |
|
865 |
raise ValueError("\"%s\" attribute has been twice!" % name) |
|
866 |
elif element_name in infos["extract"]: |
|
867 |
attrs[name] = infos["extract"][element_name](attr) |
|
868 |
else: |
|
869 |
attrs[name] = infos["extract"]["default"](attr) |
|
870 |
elif namespace == "xmlns": |
|
871 |
infos = self.GetQualifiedNameInfos("anyURI", self.SchemaNamespace) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
872 |
value = infos["extract"](attr) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
873 |
self.DefinedNamespaces[value] = name |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
874 |
self.NSMAP[name] = value |
814 | 875 |
else: |
876 |
raise ValueError("Invalid attribute \"%s\" for member \"%s\"!" % (qualified_name, node.nodeName)) |
|
877 |
for attr in valid_attrs: |
|
878 |
if attr not in attrs and \ |
|
879 |
self.Namespaces[self.SchemaNamespace].has_key(attr) and \ |
|
880 |
self.Namespaces[self.SchemaNamespace][attr].has_key("default"): |
|
881 |
if self.Namespaces[self.SchemaNamespace][attr]["default"].has_key(element_name): |
|
882 |
default = self.Namespaces[self.SchemaNamespace][attr]["default"][element_name] |
|
883 |
else: |
|
884 |
default = self.Namespaces[self.SchemaNamespace][attr]["default"]["default"] |
|
885 |
if default is not None: |
|
886 |
attrs[attr] = default |
|
887 |
return attrs |
|
888 |
||
889 |
def ReduceElements(self, elements, schema=False): |
|
890 |
result = [] |
|
891 |
for child_infos in elements: |
|
892 |
if child_infos is not None: |
|
893 |
if child_infos[1].has_key("name") and schema: |
|
894 |
self.CurrentCompilations.append(child_infos[1]["name"]) |
|
895 |
namespace, name = DecomposeQualifiedName(child_infos[0]) |
|
896 |
infos = self.GetQualifiedNameInfos(name, namespace) |
|
897 |
if infos["type"] != SYNTAXELEMENT: |
|
898 |
raise ValueError("\"%s\" can't be a member child!" % name) |
|
899 |
element = infos["reduce"](self, child_infos[1], child_infos[2]) |
|
900 |
if element is not None: |
|
901 |
result.append(element) |
|
902 |
if child_infos[1].has_key("name") and schema: |
|
903 |
self.CurrentCompilations.pop(-1) |
|
904 |
annotations = [] |
|
905 |
children = [] |
|
906 |
for element in result: |
|
907 |
if element["type"] == "annotation": |
|
908 |
annotations.append(element) |
|
909 |
else: |
|
910 |
children.append(element) |
|
911 |
return annotations, children |
|
912 |
||
913 |
def AddComplexType(self, typename, infos): |
|
914 |
if not self.XMLClassDefinitions.has_key(typename): |
|
915 |
self.XMLClassDefinitions[typename] = infos |
|
916 |
else: |
|
917 |
raise ValueError("\"%s\" class already defined. Choose another name!" % typename) |
|
918 |
||
919 |
def ParseSchema(self): |
|
920 |
pass |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
921 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
922 |
def AddEquivalentClass(self, name, base): |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
923 |
if name != base: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
924 |
equivalences = self.EquivalentClassesParent.setdefault(self.etreeNamespaceFormat % base, {}) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
925 |
equivalences[self.etreeNamespaceFormat % name] = True |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
926 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
927 |
def AddToLookupClass(self, name, parent, typeinfos): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
928 |
lookup_name = self.etreeNamespaceFormat % name |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
929 |
if isinstance(typeinfos, (StringType, UnicodeType)): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
930 |
self.AddEquivalentClass(name, typeinfos) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
931 |
typeinfos = self.etreeNamespaceFormat % typeinfos |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
932 |
lookup_classes = self.ComputedClassesLookUp.get(lookup_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
933 |
if lookup_classes is None: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
934 |
self.ComputedClassesLookUp[lookup_name] = (typeinfos, parent) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
935 |
elif isinstance(lookup_classes, DictType): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
936 |
lookup_classes[self.etreeNamespaceFormat % parent |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
937 |
if parent is not None else None] = typeinfos |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
938 |
else: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
939 |
lookup_classes = {self.etreeNamespaceFormat % lookup_classes[1] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
940 |
if lookup_classes[1] is not None else None: lookup_classes[0]} |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
941 |
lookup_classes[self.etreeNamespaceFormat % parent |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
942 |
if parent is not None else None] = typeinfos |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
943 |
self.ComputedClassesLookUp[lookup_name] = lookup_classes |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
944 |
|
814 | 945 |
def ExtractTypeInfos(self, name, parent, typeinfos): |
946 |
if isinstance(typeinfos, (StringType, UnicodeType)): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
947 |
namespace, type_name = DecomposeQualifiedName(typeinfos) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
948 |
infos = self.GetQualifiedNameInfos(type_name, namespace) |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
949 |
if name != "base": |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
950 |
if infos["type"] == SIMPLETYPE: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
951 |
self.AddToLookupClass(name, parent, DefaultElementClass) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
952 |
elif namespace == self.TargetNamespace: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
953 |
self.AddToLookupClass(name, parent, type_name) |
814 | 954 |
if infos["type"] == COMPLEXTYPE: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
955 |
type_name, parent = self.SplitQualifiedName(type_name, namespace) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
956 |
result = self.CreateClass(type_name, parent, infos) |
814 | 957 |
if result is not None and not isinstance(result, (UnicodeType, StringType)): |
958 |
self.Namespaces[self.TargetNamespace][result["name"]] = result |
|
959 |
return result |
|
960 |
elif infos["type"] == ELEMENT and infos["elmt_type"]["type"] == COMPLEXTYPE: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
961 |
type_name, parent = self.SplitQualifiedName(type_name, namespace) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
962 |
result = self.CreateClass(type_name, parent, infos["elmt_type"]) |
814 | 963 |
if result is not None and not isinstance(result, (UnicodeType, StringType)): |
964 |
self.Namespaces[self.TargetNamespace][result["name"]] = result |
|
965 |
return result |
|
966 |
else: |
|
967 |
return infos |
|
968 |
elif typeinfos["type"] == COMPLEXTYPE: |
|
969 |
return self.CreateClass(name, parent, typeinfos) |
|
970 |
elif typeinfos["type"] == SIMPLETYPE: |
|
971 |
return typeinfos |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
972 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
973 |
def GetEquivalentParents(self, parent): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
974 |
return reduce(lambda x, y: x + y, |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
975 |
[[p] + self.GetEquivalentParents(p) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
976 |
for p in self.EquivalentClassesParent.get(parent, {}).keys()], []) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
977 |
|
814 | 978 |
""" |
979 |
Methods that generates the classes |
|
980 |
""" |
|
981 |
def CreateClasses(self): |
|
982 |
self.ParseSchema() |
|
983 |
for name, infos in self.Namespaces[self.TargetNamespace].items(): |
|
984 |
if infos["type"] == ELEMENT: |
|
985 |
if not isinstance(infos["elmt_type"], (UnicodeType, StringType)) and \ |
|
986 |
infos["elmt_type"]["type"] == COMPLEXTYPE: |
|
987 |
self.ComputeAfter.append((name, None, infos["elmt_type"], True)) |
|
988 |
while len(self.ComputeAfter) > 0: |
|
989 |
result = self.CreateClass(*self.ComputeAfter.pop(0)) |
|
990 |
if result is not None and not isinstance(result, (UnicodeType, StringType)): |
|
991 |
self.Namespaces[self.TargetNamespace][result["name"]] = result |
|
992 |
elif infos["type"] == COMPLEXTYPE: |
|
993 |
self.ComputeAfter.append((name, None, infos)) |
|
994 |
while len(self.ComputeAfter) > 0: |
|
995 |
result = self.CreateClass(*self.ComputeAfter.pop(0)) |
|
996 |
if result is not None and \ |
|
997 |
not isinstance(result, (UnicodeType, StringType)): |
|
998 |
self.Namespaces[self.TargetNamespace][result["name"]] = result |
|
999 |
elif infos["type"] == ELEMENTSGROUP: |
|
1000 |
elements = [] |
|
1001 |
if infos.has_key("elements"): |
|
1002 |
elements = infos["elements"] |
|
1003 |
elif infos.has_key("choices"): |
|
1004 |
elements = infos["choices"] |
|
1005 |
for element in elements: |
|
1006 |
if not isinstance(element["elmt_type"], (UnicodeType, StringType)) and \ |
|
1007 |
element["elmt_type"]["type"] == COMPLEXTYPE: |
|
1008 |
self.ComputeAfter.append((element["name"], infos["name"], element["elmt_type"])) |
|
1009 |
while len(self.ComputeAfter) > 0: |
|
1010 |
result = self.CreateClass(*self.ComputeAfter.pop(0)) |
|
1011 |
if result is not None and \ |
|
1012 |
not isinstance(result, (UnicodeType, StringType)): |
|
1013 |
self.Namespaces[self.TargetNamespace][result["name"]] = result |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1014 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1015 |
for name, parents in self.ComputedClassesLookUp.iteritems(): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1016 |
if isinstance(parents, DictType): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1017 |
computed_classes = parents.items() |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1018 |
elif parents[1] is not None: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1019 |
computed_classes = [(self.etreeNamespaceFormat % parents[1], parents[0])] |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1020 |
else: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1021 |
computed_classes = [] |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1022 |
for parent, computed_class in computed_classes: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1023 |
for equivalent_parent in self.GetEquivalentParents(parent): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1024 |
if not isinstance(parents, DictType): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1025 |
parents = dict(computed_classes) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1026 |
self.ComputedClassesLookUp[name] = parents |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1027 |
parents[equivalent_parent] = computed_class |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1028 |
|
814 | 1029 |
return self.ComputedClasses |
1030 |
||
1031 |
def CreateClass(self, name, parent, classinfos, baseclass = False): |
|
1032 |
if parent is not None: |
|
1033 |
classname = "%s_%s" % (parent, name) |
|
1034 |
else: |
|
1035 |
classname = name |
|
1036 |
||
1037 |
# Checks that classe haven't been generated yet |
|
1038 |
if self.AlreadyComputed.get(classname, False): |
|
1039 |
if baseclass: |
|
1040 |
self.AlreadyComputed[classname].IsBaseClass = baseclass |
|
1041 |
return self.ComputedClassesInfos.get(classname, None) |
|
1042 |
||
1043 |
# If base classes haven't been generated |
|
1044 |
bases = [] |
|
1045 |
base_infos = classinfos.get("base", None) |
|
1046 |
if base_infos is not None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1047 |
namespace, base_name = DecomposeQualifiedName(base_infos) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1048 |
if namespace == self.TargetNamespace: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1049 |
self.AddEquivalentClass(name, base_name) |
814 | 1050 |
result = self.ExtractTypeInfos("base", name, base_infos) |
1051 |
if result is None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1052 |
namespace, base_name = DecomposeQualifiedName(base_infos) |
814 | 1053 |
if self.AlreadyComputed.get(base_name, False): |
1054 |
self.ComputeAfter.append((name, parent, classinfos)) |
|
1055 |
if self.TargetNamespace is not None: |
|
1056 |
return "%s:%s" % (self.TargetNamespace, classname) |
|
1057 |
else: |
|
1058 |
return classname |
|
1059 |
elif result is not None: |
|
1060 |
if self.FileName is not None: |
|
1061 |
classinfos["base"] = self.ComputedClasses[self.FileName].get(result["name"], None) |
|
1062 |
if classinfos["base"] is None: |
|
1063 |
for filename, classes in self.ComputedClasses.iteritems(): |
|
1064 |
if filename != self.FileName: |
|
1065 |
classinfos["base"] = classes.get(result["name"], None) |
|
1066 |
if classinfos["base"] is not None: |
|
1067 |
break |
|
1068 |
else: |
|
1069 |
classinfos["base"] = self.ComputedClasses.get(result["name"], None) |
|
1070 |
if classinfos["base"] is None: |
|
1071 |
raise ValueError("No class found for base type") |
|
1072 |
bases.append(classinfos["base"]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1073 |
bases.append(DefaultElementClass) |
814 | 1074 |
bases = tuple(bases) |
1075 |
classmembers = {"__doc__": classinfos.get("doc", ""), "IsBaseClass": baseclass} |
|
1076 |
||
1077 |
self.AlreadyComputed[classname] = True |
|
1078 |
||
1079 |
for attribute in classinfos["attributes"]: |
|
1080 |
infos = self.ExtractTypeInfos(attribute["name"], name, attribute["attr_type"]) |
|
1081 |
if infos is not None: |
|
1082 |
if infos["type"] != SIMPLETYPE: |
|
1083 |
raise ValueError("\"%s\" type is not a simple type!" % attribute["attr_type"]) |
|
1084 |
attrname = attribute["name"] |
|
1085 |
if attribute["use"] == "optional": |
|
1086 |
classmembers["add%s"%attrname] = generateAddMethod(attrname, self, attribute) |
|
1087 |
classmembers["delete%s"%attrname] = generateDeleteMethod(attrname) |
|
1088 |
classmembers["set%s"%attrname] = generateSetMethod(attrname) |
|
1089 |
classmembers["get%s"%attrname] = generateGetMethod(attrname) |
|
1090 |
else: |
|
1091 |
raise ValueError("\"%s\" type unrecognized!" % attribute["attr_type"]) |
|
1092 |
attribute["attr_type"] = infos |
|
1093 |
||
1094 |
for element in classinfos["elements"]: |
|
1095 |
if element["type"] == CHOICE: |
|
1096 |
elmtname = element["name"] |
|
1097 |
choices = ComputeContentChoices(self, name, element) |
|
1098 |
classmembers["get%schoices"%elmtname] = generateGetChoicesMethod(element["choices"]) |
|
1099 |
if element["maxOccurs"] == "unbounded" or element["maxOccurs"] > 1: |
|
1100 |
classmembers["append%sbytype" % elmtname] = generateAppendChoiceByTypeMethod(element["maxOccurs"], self, element["choices"]) |
|
1101 |
classmembers["insert%sbytype" % elmtname] = generateInsertChoiceByTypeMethod(element["maxOccurs"], self, element["choices"]) |
|
1102 |
else: |
|
1103 |
classmembers["set%sbytype" % elmtname] = generateSetChoiceByTypeMethod(self, element["choices"]) |
|
1104 |
infos = GenerateContentInfos(self, name, choices) |
|
1105 |
elif element["type"] == ANY: |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1106 |
elmtname = element["name"] = "anyText" |
814 | 1107 |
element["minOccurs"] = element["maxOccurs"] = 1 |
1108 |
infos = GenerateAnyInfos(element) |
|
1109 |
else: |
|
1110 |
elmtname = element["name"] |
|
1111 |
if element["elmt_type"] == "tag": |
|
1112 |
infos = GenerateTagInfos(element) |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1113 |
self.AddToLookupClass(element["name"], name, DefaultElementClass) |
814 | 1114 |
else: |
1115 |
infos = self.ExtractTypeInfos(element["name"], name, element["elmt_type"]) |
|
1116 |
if infos is not None: |
|
1117 |
element["elmt_type"] = infos |
|
1118 |
if element["maxOccurs"] == "unbounded" or element["maxOccurs"] > 1: |
|
1119 |
classmembers["append%s" % elmtname] = generateAppendMethod(elmtname, element["maxOccurs"], self, element) |
|
1120 |
classmembers["insert%s" % elmtname] = generateInsertMethod(elmtname, element["maxOccurs"], self, element) |
|
1121 |
classmembers["remove%s" % elmtname] = generateRemoveMethod(elmtname, element["minOccurs"]) |
|
1122 |
classmembers["count%s" % elmtname] = generateCountMethod(elmtname) |
|
1123 |
else: |
|
1124 |
if element["minOccurs"] == 0: |
|
1125 |
classmembers["add%s" % elmtname] = generateAddMethod(elmtname, self, element) |
|
1126 |
classmembers["delete%s" % elmtname] = generateDeleteMethod(elmtname) |
|
1127 |
classmembers["set%s" % elmtname] = generateSetMethod(elmtname) |
|
1128 |
classmembers["get%s" % elmtname] = generateGetMethod(elmtname) |
|
1129 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1130 |
classmembers["init"] = generateInitMethod(self, classinfos) |
814 | 1131 |
classmembers["getElementAttributes"] = generateGetElementAttributes(self, classinfos) |
1132 |
classmembers["getElementInfos"] = generateGetElementInfos(self, classinfos) |
|
1133 |
classmembers["setElementValue"] = generateSetElementValue(self, classinfos) |
|
1134 |
||
1135 |
class_definition = classobj(str(classname), bases, classmembers) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1136 |
setattr(class_definition, "__getattr__", generateGetattrMethod(self, class_definition, classinfos)) |
814 | 1137 |
setattr(class_definition, "__setattr__", generateSetattrMethod(self, class_definition, classinfos)) |
1138 |
class_infos = {"type": COMPILEDCOMPLEXTYPE, |
|
1139 |
"name": classname, |
|
1140 |
"initial": generateClassCreateFunction(class_definition), |
|
1303
908a5803c2cc
Removed obsolete functions for extracting values for xml dom tree and generating xml string
Laurent Bessard
parents:
1300
diff
changeset
|
1141 |
} |
814 | 1142 |
|
1143 |
if self.FileName is not None: |
|
1144 |
self.ComputedClasses[self.FileName][classname] = class_definition |
|
1145 |
else: |
|
1146 |
self.ComputedClasses[classname] = class_definition |
|
1147 |
self.ComputedClassesInfos[classname] = class_infos |
|
1148 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1149 |
self.AddToLookupClass(name, parent, class_definition) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1150 |
self.AddToLookupClass(classname, None, class_definition) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1151 |
|
814 | 1152 |
return class_infos |
1153 |
||
1154 |
""" |
|
1155 |
Methods that print the classes generated |
|
1156 |
""" |
|
1157 |
def PrintClasses(self): |
|
1158 |
items = self.ComputedClasses.items() |
|
1159 |
items.sort() |
|
1160 |
if self.FileName is not None: |
|
1161 |
for filename, classes in items: |
|
1162 |
print "File '%s':" % filename |
|
1163 |
class_items = classes.items() |
|
1164 |
class_items.sort() |
|
1165 |
for classname, xmlclass in class_items: |
|
1166 |
print "%s: %s" % (classname, str(xmlclass)) |
|
1167 |
else: |
|
1168 |
for classname, xmlclass in items: |
|
1169 |
print "%s: %s" % (classname, str(xmlclass)) |
|
1170 |
||
1171 |
def PrintClassNames(self): |
|
1172 |
classnames = self.XMLClassDefinitions.keys() |
|
1173 |
classnames.sort() |
|
1174 |
for classname in classnames: |
|
1175 |
print classname |
|
1176 |
||
1177 |
""" |
|
1178 |
Method that generate the method for creating a class instance |
|
1179 |
""" |
|
1180 |
def generateClassCreateFunction(class_definition): |
|
1181 |
def classCreatefunction(): |
|
1182 |
return class_definition() |
|
1183 |
return classCreatefunction |
|
1184 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1185 |
def generateGetattrMethod(factory, class_definition, classinfos): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1186 |
attributes = dict([(attr["name"], attr) for attr in classinfos["attributes"] if attr["use"] != "prohibited"]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1187 |
optional_attributes = dict([(attr["name"], True) for attr in classinfos["attributes"] if attr["use"] == "optional"]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1188 |
elements = dict([(element["name"], element) for element in classinfos["elements"]]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1189 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1190 |
def getattrMethod(self, name): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1191 |
if attributes.has_key(name): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1192 |
attribute_infos = attributes[name] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1193 |
attribute_infos["attr_type"] = FindTypeInfos(factory, attribute_infos["attr_type"]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1194 |
value = self.get(name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1195 |
if value is not None: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1196 |
return attribute_infos["attr_type"]["extract"](value, extract=False) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1197 |
elif attribute_infos.has_key("fixed"): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1198 |
return attribute_infos["attr_type"]["extract"](attribute_infos["fixed"], extract=False) |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1199 |
elif attribute_infos.has_key("default"): |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1200 |
return attribute_infos["attr_type"]["extract"](attribute_infos["default"], extract=False) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1201 |
return None |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1202 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1203 |
elif elements.has_key(name): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1204 |
element_infos = elements[name] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1205 |
element_infos["elmt_type"] = FindTypeInfos(factory, element_infos["elmt_type"]) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1206 |
if element_infos["type"] == CHOICE: |
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
1207 |
content = element_infos["elmt_type"]["choices_xpath"](self) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1208 |
if element_infos["maxOccurs"] == "unbounded" or element_infos["maxOccurs"] > 1: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1209 |
return content |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1210 |
elif len(content) > 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1211 |
return content[0] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1212 |
return None |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1213 |
elif element_infos["type"] == ANY: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1214 |
return element_infos["elmt_type"]["extract"](self) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1215 |
else: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1216 |
element_name = factory.etreeNamespaceFormat % name |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1217 |
if element_infos["maxOccurs"] == "unbounded" or element_infos["maxOccurs"] > 1: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1218 |
return self.findall(element_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1219 |
else: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1220 |
return self.find(element_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1221 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1222 |
elif classinfos.has_key("base"): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1223 |
return classinfos["base"].__getattr__(self, name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1224 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1225 |
return DefaultElementClass.__getattribute__(self, name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1226 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1227 |
return getattrMethod |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1228 |
|
814 | 1229 |
def generateSetattrMethod(factory, class_definition, classinfos): |
1230 |
attributes = dict([(attr["name"], attr) for attr in classinfos["attributes"] if attr["use"] != "prohibited"]) |
|
1231 |
optional_attributes = dict([(attr["name"], True) for attr in classinfos["attributes"] if attr["use"] == "optional"]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1232 |
elements = OrderedDict([(element["name"], element) for element in classinfos["elements"]]) |
814 | 1233 |
|
1234 |
def setattrMethod(self, name, value): |
|
1235 |
if attributes.has_key(name): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1236 |
attribute_infos = attributes[name] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1237 |
attribute_infos["attr_type"] = FindTypeInfos(factory, attribute_infos["attr_type"]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1238 |
if optional_attributes.get(name, False): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1239 |
default = attribute_infos.get("default", None) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1240 |
if value is None or value == default: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1241 |
self.attrib.pop(name, None) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1242 |
return |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1243 |
elif attribute_infos.has_key("fixed"): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1244 |
return |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1245 |
return self.set(name, attribute_infos["attr_type"]["generate"](value)) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1246 |
|
814 | 1247 |
elif elements.has_key(name): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1248 |
element_infos = elements[name] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1249 |
element_infos["elmt_type"] = FindTypeInfos(factory, element_infos["elmt_type"]) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1250 |
if element_infos["type"] == ANY: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1251 |
element_infos["elmt_type"]["generate"](self, value) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1252 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1253 |
else: |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1254 |
element_xpath = ("%s:%s" % (factory.TargetNamespace, name) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1255 |
if name != "content" |
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
1256 |
else elements["content"]["elmt_type"]["choices_xpath"].path) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1257 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1258 |
for element in self.xpath(element_xpath, namespaces=factory.NSMAP): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1259 |
self.remove(element) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1260 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1261 |
if value is not None: |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1262 |
element_idx = elements.keys().index(name) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1263 |
if element_idx > 0: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1264 |
previous_elements_xpath = "|".join(map( |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1265 |
lambda x: "%s:%s" % (factory.TargetNamespace, x) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1266 |
if x != "content" |
1305
714f1381a09a
Fixed xmlclass and plcopen using precompile xpath where possible
Laurent Bessard
parents:
1304
diff
changeset
|
1267 |
else elements["content"]["elmt_type"]["choices_xpath"].path, |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1268 |
elements.keys()[:element_idx])) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1269 |
|
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1270 |
insertion_point = len(self.xpath(previous_elements_xpath, namespaces=factory.NSMAP)) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1271 |
else: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1272 |
insertion_point = 0 |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1273 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1274 |
if not isinstance(value, ListType): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1275 |
value = [value] |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1276 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1277 |
for element in reversed(value): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1278 |
self.insert(insertion_point, element) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1279 |
|
814 | 1280 |
elif classinfos.has_key("base"): |
1281 |
return classinfos["base"].__setattr__(self, name, value) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1282 |
|
814 | 1283 |
else: |
1284 |
raise AttributeError("'%s' can't have an attribute '%s'." % (self.__class__.__name__, name)) |
|
1285 |
||
1286 |
return setattrMethod |
|
1287 |
||
1288 |
def gettypeinfos(name, facets): |
|
1289 |
if facets.has_key("enumeration") and facets["enumeration"][0] is not None: |
|
1290 |
return facets["enumeration"][0] |
|
1291 |
elif facets.has_key("maxInclusive"): |
|
1292 |
limits = {"max" : None, "min" : None} |
|
1293 |
if facets["maxInclusive"][0] is not None: |
|
1294 |
limits["max"] = facets["maxInclusive"][0] |
|
1295 |
elif facets["maxExclusive"][0] is not None: |
|
1296 |
limits["max"] = facets["maxExclusive"][0] - 1 |
|
1297 |
if facets["minInclusive"][0] is not None: |
|
1298 |
limits["min"] = facets["minInclusive"][0] |
|
1299 |
elif facets["minExclusive"][0] is not None: |
|
1300 |
limits["min"] = facets["minExclusive"][0] + 1 |
|
1301 |
if limits["max"] is not None or limits["min"] is not None: |
|
1302 |
return limits |
|
1303 |
return name |
|
1304 |
||
1305 |
def generateGetElementAttributes(factory, classinfos): |
|
1306 |
def getElementAttributes(self): |
|
1307 |
attr_list = [] |
|
1308 |
if classinfos.has_key("base"): |
|
1309 |
attr_list.extend(classinfos["base"].getElementAttributes(self)) |
|
1310 |
for attr in classinfos["attributes"]: |
|
1311 |
if attr["use"] != "prohibited": |
|
1312 |
attr_params = {"name" : attr["name"], "use" : attr["use"], |
|
1313 |
"type" : gettypeinfos(attr["attr_type"]["basename"], attr["attr_type"]["facets"]), |
|
1314 |
"value" : getattr(self, attr["name"], "")} |
|
1315 |
attr_list.append(attr_params) |
|
1316 |
return attr_list |
|
1317 |
return getElementAttributes |
|
1318 |
||
1319 |
def generateGetElementInfos(factory, classinfos): |
|
1320 |
attributes = dict([(attr["name"], attr) for attr in classinfos["attributes"] if attr["use"] != "prohibited"]) |
|
1321 |
elements = dict([(element["name"], element) for element in classinfos["elements"]]) |
|
1322 |
||
1323 |
def getElementInfos(self, name, path=None, derived=False): |
|
1324 |
attr_type = "element" |
|
1325 |
value = None |
|
1326 |
use = "required" |
|
1327 |
children = [] |
|
1328 |
if path is not None: |
|
1329 |
parts = path.split(".", 1) |
|
1330 |
if attributes.has_key(parts[0]): |
|
1179
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1331 |
if len(parts) != 1: |
814 | 1332 |
raise ValueError("Wrong path!") |
1333 |
attr_type = gettypeinfos(attributes[parts[0]]["attr_type"]["basename"], |
|
1334 |
attributes[parts[0]]["attr_type"]["facets"]) |
|
1335 |
value = getattr(self, parts[0], "") |
|
1336 |
elif elements.has_key(parts[0]): |
|
1337 |
if elements[parts[0]]["elmt_type"]["type"] == SIMPLETYPE: |
|
1179
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1338 |
if len(parts) != 1: |
814 | 1339 |
raise ValueError("Wrong path!") |
1340 |
attr_type = gettypeinfos(elements[parts[0]]["elmt_type"]["basename"], |
|
1341 |
elements[parts[0]]["elmt_type"]["facets"]) |
|
1342 |
value = getattr(self, parts[0], "") |
|
1343 |
elif parts[0] == "content": |
|
1344 |
return self.content["value"].getElementInfos(self.content["name"], path) |
|
1345 |
else: |
|
1346 |
attr = getattr(self, parts[0], None) |
|
1347 |
if attr is None: |
|
1348 |
raise ValueError("Wrong path!") |
|
1349 |
if len(parts) == 1: |
|
1350 |
return attr.getElementInfos(parts[0]) |
|
1351 |
else: |
|
1352 |
return attr.getElementInfos(parts[0], parts[1]) |
|
1179
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1353 |
elif elements.has_key("content"): |
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1354 |
if len(parts) > 0: |
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1355 |
return self.content["value"].getElementInfos(name, path) |
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1356 |
elif classinfos.has_key("base"): |
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1124
diff
changeset
|
1357 |
classinfos["base"].getElementInfos(name, path) |
814 | 1358 |
else: |
1359 |
raise ValueError("Wrong path!") |
|
1360 |
else: |
|
1361 |
if not derived: |
|
1362 |
children.extend(self.getElementAttributes()) |
|
1363 |
if classinfos.has_key("base"): |
|
1364 |
children.extend(classinfos["base"].getElementInfos(self, name, derived=True)["children"]) |
|
1365 |
for element_name, element in elements.items(): |
|
1366 |
if element["minOccurs"] == 0: |
|
1367 |
use = "optional" |
|
1368 |
if element_name == "content" and element["type"] == CHOICE: |
|
1369 |
attr_type = [(choice["name"], None) for choice in element["choices"]] |
|
1370 |
if self.content is None: |
|
1371 |
value = "" |
|
1372 |
else: |
|
1373 |
value = self.content["name"] |
|
1374 |
if self.content["value"] is not None: |
|
1375 |
if self.content["name"] == "sequence": |
|
1376 |
choices_dict = dict([(choice["name"], choice) for choice in element["choices"]]) |
|
1377 |
sequence_infos = choices_dict.get("sequence", None) |
|
1378 |
if sequence_infos is not None: |
|
1379 |
children.extend([item.getElementInfos(infos["name"]) for item, infos in zip(self.content["value"], sequence_infos["elements"])]) |
|
1380 |
else: |
|
1381 |
children.extend(self.content["value"].getElementInfos(self.content["name"])["children"]) |
|
1382 |
elif element["elmt_type"]["type"] == SIMPLETYPE: |
|
1383 |
children.append({"name": element_name, "require": element["minOccurs"] != 0, |
|
1384 |
"type": gettypeinfos(element["elmt_type"]["basename"], |
|
1385 |
element["elmt_type"]["facets"]), |
|
1386 |
"value": getattr(self, element_name, None)}) |
|
1387 |
else: |
|
1388 |
instance = getattr(self, element_name, None) |
|
1389 |
if instance is None: |
|
1390 |
instance = element["elmt_type"]["initial"]() |
|
1391 |
children.append(instance.getElementInfos(element_name)) |
|
1392 |
return {"name": name, "type": attr_type, "value": value, "use": use, "children": children} |
|
1393 |
return getElementInfos |
|
1394 |
||
1395 |
def generateSetElementValue(factory, classinfos): |
|
1396 |
attributes = dict([(attr["name"], attr) for attr in classinfos["attributes"] if attr["use"] != "prohibited"]) |
|
1397 |
elements = dict([(element["name"], element) for element in classinfos["elements"]]) |
|
1398 |
||
1399 |
def setElementValue(self, path, value): |
|
1400 |
if path is not None: |
|
1401 |
parts = path.split(".", 1) |
|
1402 |
if attributes.has_key(parts[0]): |
|
1403 |
if len(parts) != 1: |
|
1404 |
raise ValueError("Wrong path!") |
|
1405 |
if attributes[parts[0]]["attr_type"]["basename"] == "boolean": |
|
1406 |
setattr(self, parts[0], value) |
|
1017
2925d6e49893
Fixed bug when setting empty value to optional non-string parameters
Laurent Bessard
parents:
814
diff
changeset
|
1407 |
elif attributes[parts[0]]["use"] == "optional" and value == "": |
1022
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1408 |
if attributes[parts[0]].has_key("default"): |
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1409 |
setattr(self, parts[0], |
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1410 |
attributes[parts[0]]["attr_type"]["extract"]( |
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1411 |
attributes[parts[0]]["default"], False)) |
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1412 |
else: |
ec30c12b1d67
Fixed bug when connecting and URI_location is empty
Laurent Bessard
parents:
1017
diff
changeset
|
1413 |
setattr(self, parts[0], None) |
814 | 1414 |
else: |
1415 |
setattr(self, parts[0], attributes[parts[0]]["attr_type"]["extract"](value, False)) |
|
1416 |
elif elements.has_key(parts[0]): |
|
1417 |
if elements[parts[0]]["elmt_type"]["type"] == SIMPLETYPE: |
|
1418 |
if len(parts) != 1: |
|
1419 |
raise ValueError("Wrong path!") |
|
1420 |
if elements[parts[0]]["elmt_type"]["basename"] == "boolean": |
|
1421 |
setattr(self, parts[0], value) |
|
1017
2925d6e49893
Fixed bug when setting empty value to optional non-string parameters
Laurent Bessard
parents:
814
diff
changeset
|
1422 |
elif attributes[parts[0]]["minOccurs"] == 0 and value == "": |
2925d6e49893
Fixed bug when setting empty value to optional non-string parameters
Laurent Bessard
parents:
814
diff
changeset
|
1423 |
setattr(self, parts[0], None) |
814 | 1424 |
else: |
1425 |
setattr(self, parts[0], elements[parts[0]]["elmt_type"]["extract"](value, False)) |
|
1426 |
else: |
|
1427 |
instance = getattr(self, parts[0], None) |
|
1428 |
if instance is None and elements[parts[0]]["minOccurs"] == 0: |
|
1429 |
instance = elements[parts[0]]["elmt_type"]["initial"]() |
|
1430 |
setattr(self, parts[0], instance) |
|
1431 |
if instance != None: |
|
1432 |
if len(parts) > 1: |
|
1433 |
instance.setElementValue(parts[1], value) |
|
1434 |
else: |
|
1435 |
instance.setElementValue(None, value) |
|
1436 |
elif elements.has_key("content"): |
|
1437 |
if len(parts) > 0: |
|
1438 |
self.content["value"].setElementValue(path, value) |
|
1439 |
elif classinfos.has_key("base"): |
|
1440 |
classinfos["base"].setElementValue(self, path, value) |
|
1441 |
elif elements.has_key("content"): |
|
1442 |
if value == "": |
|
1443 |
if elements["content"]["minOccurs"] == 0: |
|
1444 |
self.setcontent(None) |
|
1445 |
else: |
|
1446 |
raise ValueError("\"content\" element is required!") |
|
1447 |
else: |
|
1448 |
self.setcontentbytype(value) |
|
1449 |
return setElementValue |
|
1450 |
||
1451 |
""" |
|
1452 |
Methods that generates the different methods for setting and getting the attributes |
|
1453 |
""" |
|
1454 |
def generateInitMethod(factory, classinfos): |
|
1455 |
def initMethod(self): |
|
1456 |
if classinfos.has_key("base"): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1457 |
classinfos["base"].init(self) |
814 | 1458 |
for attribute in classinfos["attributes"]: |
1459 |
attribute["attr_type"] = FindTypeInfos(factory, attribute["attr_type"]) |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1460 |
if attribute["use"] == "required": |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1461 |
self.set(attribute["name"], attribute["attr_type"]["generate"](attribute["attr_type"]["initial"]())) |
814 | 1462 |
for element in classinfos["elements"]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1463 |
if element["type"] != CHOICE: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1464 |
element_name = ( |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1465 |
etree.QName(factory.NSMAP["xhtml"], "p") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1466 |
if element["type"] == ANY |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1467 |
else factory.etreeNamespaceFormat % element["name"]) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1468 |
initial = GetElementInitialValue(factory, element) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1469 |
if initial is not None: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1470 |
map(self.append, initial) |
814 | 1471 |
return initMethod |
1472 |
||
1473 |
def generateSetMethod(attr): |
|
1474 |
def setMethod(self, value): |
|
1475 |
setattr(self, attr, value) |
|
1476 |
return setMethod |
|
1477 |
||
1478 |
def generateGetMethod(attr): |
|
1479 |
def getMethod(self): |
|
1480 |
return getattr(self, attr, None) |
|
1481 |
return getMethod |
|
1482 |
||
1483 |
def generateAddMethod(attr, factory, infos): |
|
1484 |
def addMethod(self): |
|
1485 |
if infos["type"] == ATTRIBUTE: |
|
1486 |
infos["attr_type"] = FindTypeInfos(factory, infos["attr_type"]) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1487 |
if not infos.has_key("default"): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1488 |
setattr(self, attr, infos["attr_type"]["initial"]()) |
814 | 1489 |
elif infos["type"] == ELEMENT: |
1490 |
infos["elmt_type"] = FindTypeInfos(factory, infos["elmt_type"]) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1491 |
value = infos["elmt_type"]["initial"]() |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1492 |
DefaultElementClass.__setattr__(value, "tag", factory.etreeNamespaceFormat % attr) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1493 |
setattr(self, attr, value) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1494 |
value.init() |
814 | 1495 |
else: |
1496 |
raise ValueError("Invalid class attribute!") |
|
1497 |
return addMethod |
|
1498 |
||
1499 |
def generateDeleteMethod(attr): |
|
1500 |
def deleteMethod(self): |
|
1501 |
setattr(self, attr, None) |
|
1502 |
return deleteMethod |
|
1503 |
||
1504 |
def generateAppendMethod(attr, maxOccurs, factory, infos): |
|
1505 |
def appendMethod(self, value): |
|
1506 |
infos["elmt_type"] = FindTypeInfos(factory, infos["elmt_type"]) |
|
1507 |
attr_list = getattr(self, attr) |
|
1508 |
if maxOccurs == "unbounded" or len(attr_list) < maxOccurs: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1509 |
if len(attr_list) == 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1510 |
setattr(self, attr, [value]) |
814 | 1511 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1512 |
attr_list[-1].addnext(value) |
814 | 1513 |
else: |
1514 |
raise ValueError("There can't be more than %d values in \"%s\"!" % (maxOccurs, attr)) |
|
1515 |
return appendMethod |
|
1516 |
||
1517 |
def generateInsertMethod(attr, maxOccurs, factory, infos): |
|
1518 |
def insertMethod(self, index, value): |
|
1519 |
infos["elmt_type"] = FindTypeInfos(factory, infos["elmt_type"]) |
|
1520 |
attr_list = getattr(self, attr) |
|
1521 |
if maxOccurs == "unbounded" or len(attr_list) < maxOccurs: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1522 |
if len(attr_list) == 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1523 |
setattr(self, attr, [value]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1524 |
elif index == 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1525 |
attr_list[0].addprevious(value) |
814 | 1526 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1527 |
attr_list[min(index - 1, len(attr_list) - 1)].addnext(value) |
814 | 1528 |
else: |
1529 |
raise ValueError("There can't be more than %d values in \"%s\"!" % (maxOccurs, attr)) |
|
1530 |
return insertMethod |
|
1531 |
||
1532 |
def generateGetChoicesMethod(choice_types): |
|
1533 |
def getChoicesMethod(self): |
|
1534 |
return [choice["name"] for choice in choice_types] |
|
1535 |
return getChoicesMethod |
|
1536 |
||
1537 |
def generateSetChoiceByTypeMethod(factory, choice_types): |
|
1538 |
choices = dict([(choice["name"], choice) for choice in choice_types]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1539 |
def setChoiceMethod(self, content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1540 |
if not choices.has_key(content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1541 |
raise ValueError("Unknown \"%s\" choice type for \"content\"!" % content_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1542 |
choices[content_type]["elmt_type"] = FindTypeInfos(factory, choices[content_type]["elmt_type"]) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1543 |
new_content = choices[content_type]["elmt_type"]["initial"]() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1544 |
self.content = new_content |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1545 |
return new_content |
814 | 1546 |
return setChoiceMethod |
1547 |
||
1548 |
def generateAppendChoiceByTypeMethod(maxOccurs, factory, choice_types): |
|
1549 |
choices = dict([(choice["name"], choice) for choice in choice_types]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1550 |
def appendChoiceMethod(self, content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1551 |
if not choices.has_key(content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1552 |
raise ValueError("Unknown \"%s\" choice type for \"content\"!" % content_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1553 |
choices[content_type]["elmt_type"] = FindTypeInfos(factory, choices[content_type]["elmt_type"]) |
814 | 1554 |
if maxOccurs == "unbounded" or len(self.content) < maxOccurs: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1555 |
new_element = choices[content_type]["elmt_type"]["initial"]() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1556 |
self.appendcontent(new_element) |
814 | 1557 |
return new_element |
1558 |
else: |
|
1559 |
raise ValueError("There can't be more than %d values in \"content\"!" % maxOccurs) |
|
1560 |
return appendChoiceMethod |
|
1561 |
||
1562 |
def generateInsertChoiceByTypeMethod(maxOccurs, factory, choice_types): |
|
1563 |
choices = dict([(choice["name"], choice) for choice in choice_types]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1564 |
def insertChoiceMethod(self, index, content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1565 |
if not choices.has_key(content_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1566 |
raise ValueError("Unknown \"%s\" choice type for \"content\"!" % content_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1567 |
choices[type]["elmt_type"] = FindTypeInfos(factory, choices[content_type]["elmt_type"]) |
814 | 1568 |
if maxOccurs == "unbounded" or len(self.content) < maxOccurs: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1569 |
new_element = choices[content_type]["elmt_type"]["initial"]() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1570 |
self.insertcontent(index, new_element) |
814 | 1571 |
return new_element |
1572 |
else: |
|
1573 |
raise ValueError("There can't be more than %d values in \"content\"!" % maxOccurs) |
|
1574 |
return insertChoiceMethod |
|
1575 |
||
1576 |
def generateRemoveMethod(attr, minOccurs): |
|
1577 |
def removeMethod(self, index): |
|
1578 |
attr_list = getattr(self, attr) |
|
1579 |
if len(attr_list) > minOccurs: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1580 |
self.remove(attr_list[index]) |
814 | 1581 |
else: |
1582 |
raise ValueError("There can't be less than %d values in \"%s\"!" % (minOccurs, attr)) |
|
1583 |
return removeMethod |
|
1584 |
||
1585 |
def generateCountMethod(attr): |
|
1586 |
def countMethod(self): |
|
1587 |
return len(getattr(self, attr)) |
|
1588 |
return countMethod |
|
1589 |
||
1590 |
""" |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1591 |
This function generate a xml parser from a class factory |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1592 |
""" |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1593 |
|
1300
8e1ee07bdff8
Removed namespaces declaration in subtree elements xml description when copy/paste
Laurent Bessard
parents:
1294
diff
changeset
|
1594 |
NAMESPACE_PATTERN = re.compile("xmlns(?:\:[^\=]*)?=\"[^\"]*\" ") |
8e1ee07bdff8
Removed namespaces declaration in subtree elements xml description when copy/paste
Laurent Bessard
parents:
1294
diff
changeset
|
1595 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1596 |
class DefaultElementClass(etree.ElementBase): |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1597 |
|
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1598 |
def init(self): |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1599 |
pass |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1600 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1601 |
def getLocalTag(self): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1602 |
return etree.QName(self.tag).localname |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1603 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1604 |
def tostring(self): |
1300
8e1ee07bdff8
Removed namespaces declaration in subtree elements xml description when copy/paste
Laurent Bessard
parents:
1294
diff
changeset
|
1605 |
return NAMESPACE_PATTERN.sub("", etree.tostring(self, pretty_print=True)) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1606 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1607 |
class XMLElementClassLookUp(etree.PythonElementClassLookup): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1608 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1609 |
def __init__(self, classes, *args, **kwargs): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1610 |
etree.PythonElementClassLookup.__init__(self, *args, **kwargs) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1611 |
self.LookUpClasses = classes |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1612 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1613 |
def GetElementClass(self, element_tag, parent_tag=None, default=DefaultElementClass): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1614 |
element_class = self.LookUpClasses.get(element_tag, (default, None)) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1615 |
if not isinstance(element_class, DictType): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1616 |
if isinstance(element_class[0], (StringType, UnicodeType)): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1617 |
return self.GetElementClass(element_class[0], default=default) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1618 |
return element_class[0] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1619 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1620 |
element_with_parent_class = element_class.get(parent_tag, default) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1621 |
if isinstance(element_with_parent_class, (StringType, UnicodeType)): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1622 |
return self.GetElementClass(element_with_parent_class, default=default) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1623 |
return element_with_parent_class |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1624 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1625 |
def lookup(self, document, element): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1626 |
parent = element.getparent() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1627 |
return self.GetElementClass(element.tag, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1628 |
parent.tag if parent is not None else None) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1629 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1630 |
class XMLClassParser(etree.XMLParser): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1631 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1632 |
def __init__(self, namespaces, default_namespace_format, base_class, *args, **kwargs): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1633 |
etree.XMLParser.__init__(self, *args, **kwargs) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1634 |
self.DefaultNamespaceFormat = default_namespace_format |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1635 |
self.NSMAP = namespaces |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1636 |
targetNamespace = etree.QName(default_namespace_format % "d").namespace |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1637 |
if targetNamespace is not None: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1638 |
self.RootNSMAP = { |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1639 |
name if targetNamespace != uri else None: uri |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1640 |
for name, uri in namespaces.iteritems()} |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1641 |
else: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1642 |
self.RootNSMAP = namespaces |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1643 |
self.BaseClass = base_class |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1644 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1645 |
def set_element_class_lookup(self, class_lookup): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1646 |
etree.XMLParser.set_element_class_lookup(self, class_lookup) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1647 |
self.ClassLookup = class_lookup |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1648 |
|
1304 | 1649 |
def Dumps(self, xml_obj): |
1650 |
return etree.tostring(xml_obj) |
|
1651 |
||
1652 |
def Loads(self, xml_string): |
|
1653 |
return etree.fromstring(xml_string, self) |
|
1654 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1655 |
def CreateRoot(self): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1656 |
if self.BaseClass is not None: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1657 |
root = self.makeelement( |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1658 |
self.DefaultNamespaceFormat % self.BaseClass[0], |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1659 |
nsmap=self.RootNSMAP) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1660 |
root.init() |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1661 |
return root |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1662 |
return None |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1663 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1664 |
def GetElementClass(self, element_tag, parent_tag=None): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1665 |
return self.ClassLookup.GetElementClass( |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1666 |
self.DefaultNamespaceFormat % element_tag, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1667 |
self.DefaultNamespaceFormat % parent_tag |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1668 |
if parent_tag is not None else parent_tag, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1669 |
None) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1670 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1671 |
def CreateElement(self, element_tag, parent_tag=None): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1672 |
new_element = self.GetElementClass(element_tag, parent_tag)() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1673 |
DefaultElementClass.__setattr__(new_element, "tag", self.DefaultNamespaceFormat % element_tag) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1674 |
new_element.init() |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1675 |
return new_element |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1676 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1677 |
def GenerateParser(factory, xsdstring): |
814 | 1678 |
ComputedClasses = factory.CreateClasses() |
1679 |
if factory.FileName is not None and len(ComputedClasses) == 1: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1680 |
ComputedClasses = ComputedClasses[factory.FileName] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1681 |
BaseClass = [(name, XSDclass) for name, XSDclass in ComputedClasses.items() if XSDclass.IsBaseClass] |
814 | 1682 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1683 |
BaseClass = [] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1684 |
UpdateXMLClassGlobals(ComputedClasses) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1685 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1686 |
parser = XMLClassParser( |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1687 |
factory.NSMAP, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1688 |
factory.etreeNamespaceFormat, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1689 |
BaseClass[0] if len(BaseClass) == 1 else None, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1690 |
schema = etree.XMLSchema(etree.fromstring(xsdstring)), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1691 |
strip_cdata = False, remove_blank_text=True) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1692 |
class_lookup = XMLElementClassLookUp(factory.ComputedClassesLookUp) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1693 |
parser.set_element_class_lookup(class_lookup) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1694 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1695 |
return parser |
814 | 1696 |
|
1124
b1705000eba1
Fixed support for defining python runtime code using sections like in c_ext
Laurent Bessard
parents:
1022
diff
changeset
|
1697 |
def UpdateXMLClassGlobals(classes): |
b1705000eba1
Fixed support for defining python runtime code using sections like in c_ext
Laurent Bessard
parents:
1022
diff
changeset
|
1698 |
globals().update(classes) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
1699 |