xmlclass/xmlclass.py
author lbessard
Mon, 10 Sep 2007 09:00:50 +0200
changeset 88 bac6435df86f
parent 87 ce2607713931
child 90 2245e8776086
permissions -rw-r--r--
Bug on optional attributes generation fixed
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     1
#!/usr/bin/env python
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     3
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     5
#based on the plcopen standard. 
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     6
#
58
39cd981ff242 Changing file headers
lbessard
parents: 24
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     8
#
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
     9
#See COPYING file for copyrights details.
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    10
#
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    12
#modify it under the terms of the GNU General Public
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    15
#
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
58
39cd981ff242 Changing file headers
lbessard
parents: 24
diff changeset
    19
#General Public License for more details.
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    20
#
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    21
#You should have received a copy of the GNU General Public
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    24
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    25
from xml.dom import minidom
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    26
import sys,re
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    27
from types import *
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    28
from datetime import *
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
    29
from new import classobj
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    30
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    31
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    32
Time and date definitions
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    33
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    34
TimeType = time(0,0,0).__class__
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    35
DateType = date(1,1,1).__class__
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    36
DateTimeType = datetime(1,1,1,0,0,0).__class__
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    37
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    38
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    39
Regular expression models for extracting dates and times from a string
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    40
"""
24
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
    41
time_model = re.compile('([0-9]{2}):([0-9]{2}):([0-9]{2}(?:.[0-9]*)?)')
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    42
date_model = re.compile('([0-9]{4})-([0-9]{2})-([0-9]{2})')
24
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
    43
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]*)?)')
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    44
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    45
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    46
This function calculates the number of whitespace for indentation
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    47
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    48
def getIndent(indent, balise):
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    49
    first = indent * 2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    50
    second = first + len(balise) + 1
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    51
    return "\t".expandtabs(first), "\t".expandtabs(second)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    52
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    53
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    54
Function that extracts data from a node
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    55
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    56
def GetAttributeValue(attr):
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    57
    if len(attr.childNodes) == 1:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    58
        return attr.childNodes[0].data.encode()
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    59
    else:
67
3a1b0afdaf84 Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents: 58
diff changeset
    60
        text = ""
3a1b0afdaf84 Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents: 58
diff changeset
    61
        for node in attr.childNodes:
3a1b0afdaf84 Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents: 58
diff changeset
    62
            if node.nodeName != "#text":
3a1b0afdaf84 Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents: 58
diff changeset
    63
                text += node.data.encode()
3a1b0afdaf84 Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents: 58
diff changeset
    64
        return text
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    65
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    66
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    67
Function that computes value from a python type (Only Boolean are critical because
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    68
there is no uppercase in plcopen)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    69
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    70
def ComputeValue(value):
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    71
    if type(value) == BooleanType:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    72
        if value:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    73
            return "true"
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    74
        else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    75
            return "false"
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    76
    else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    77
        return str(value)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    78
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    79
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    80
Function that extracts a value from a string following the xsd type given
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    81
"""
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    82
def GetComputedValue(attr_type, value):
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    83
    type_compute = attr_type[4:].replace("[]", "")
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    84
    if type_compute == "boolean":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    85
         if value == "true":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    86
             return True
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    87
         elif value == "false":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    88
             return False
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    89
         else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    90
            raise ValueError, "\"%s\" is not a valid boolean!"%value
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
    91
    elif type_compute in ["unsignedLong","long","integer"]:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    92
        return int(value)
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
    93
    elif type_compute == "decimal":
86
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
    94
        computed_value = float(value)
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
    95
        if computed_value % 1 == 0:
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
    96
            return int(computed_value)
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
    97
        return computed_value
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    98
    elif type_compute in ["string","anyURI","NMTOKEN","language"]:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
    99
        return value
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   100
    elif type_compute == "time":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   101
        result = time_model.match(value)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   102
        if result:
24
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   103
            values = result.groups()
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   104
            time_values = [int(v) for v in values[:2]]
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   105
            seconds = float(values[2])
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   106
            time_values.extend([int(seconds), int((seconds % 1) * 1000000)])
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   107
            return time(*time_values)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   108
        else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   109
            raise ValueError, "\"%s\" is not a valid time!"%value
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   110
    elif type_compute == "date":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   111
        result = date_model.match(value)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   112
        if result:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   113
            date_values = [int(v) for v in result.groups()]
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   114
            return date(*date_values)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   115
        else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   116
            raise ValueError, "\"%s\" is not a valid date!"%value
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   117
    elif type_compute == "dateTime":
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   118
        result = datetime_model.match(value)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   119
        if result:
24
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   120
            values = result.groups()
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   121
            datetime_values = [int(v) for v in values[:5]]
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   122
            seconds = float(values[5])
364320323b4d Adding support for date and time data types
lbessard
parents: 2
diff changeset
   123
            datetime_values.extend([int(seconds), int((seconds % 1) * 1000000)])
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   124
            return datetime(*datetime_values)
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   125
        else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   126
            raise ValueError, "\"%s\" is not a valid datetime!"%value
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   127
    else:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   128
        print "Can't affect: %s"%type_compute
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   129
        return None
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   130
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   131
def GetInitialValueFunction(value):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   132
    def GetInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   133
        return value
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   134
    return GetInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   135
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   136
"""
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   137
Class that generate class from an XML Tree 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   138
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   139
class ClassFactory:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   140
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   141
    def __init__(self, xsd_tree):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   142
        self.XML_Tree = xsd_tree
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   143
        
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   144
        # Dictionary for stocking Classes and Types definitions created from the XML tree
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   145
        self.XMLClassDefinitions = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   146
        
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   147
        # Dictionaries for stocking Classes and Types generated
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   148
        self.ComputedClasses = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   149
        self.ComputedTypes = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   150
        self.AlreadyComputed = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   151
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   152
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   153
    This function recursively creates a definition of the classes and their attributes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   154
    for plcopen from the xsd file of plcopen opened in a DOM model
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   155
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   156
    def GenerateXSDClasses(self, tree, parent, sequence = False):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   157
        attributes = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   158
        inheritance = []
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   159
        if sequence:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   160
            order = []
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   161
        # The lists of attributes and inheritance of the node are generated from the childrens 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   162
        for node in tree.childNodes:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   163
            # We make fun of #text elements and all other tags that don't are xsd tags
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   164
            if node.nodeName != "#text" and node.nodeName.startswith("xsd:"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   165
                recursion = False
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   166
                name = node.nodeName[4:].encode()
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   167
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   168
                # This tags defines an attribute of the class
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   169
                if name in ["element", "attribute"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   170
                    nodename = GetAttributeValue(node._attrs["name"])
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   171
                    default = None
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   172
                    if "type" in node._attrs:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   173
                        nodetype = GetAttributeValue(node._attrs["type"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   174
                        if nodetype.startswith("xsd"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   175
                            nodetype = nodetype.replace("xsd", "bse")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   176
                        elif nodetype.startswith("ppx"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   177
                            nodetype = nodetype.replace("ppx", "cls")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   178
                    else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   179
                        # The type of attribute is defines in the child tree so we generate a new class
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   180
                        # No name is defined so we create one from nodename and parent class name
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   181
                        # (because some different nodes can have the same name)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   182
                        if parent:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   183
                            classname = "%s_%s"%(parent, nodename)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   184
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   185
                            classname = nodename
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   186
                        self.GenerateXSDClasses(node, classname)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   187
                        nodetype = "cls:%s"%classname
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   188
                    if name == "attribute":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   189
                        if "use" in node._attrs:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   190
                            use = GetAttributeValue(node._attrs["use"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   191
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   192
                            use = "optional"
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   193
                        if "default" in node._attrs:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   194
                            default = GetAttributeValue(node._attrs["default"])
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   195
                    elif name == "element":
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   196
                        # If a tag can be written more than one time we define a list attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   197
                        if "maxOccurs" in node._attrs and GetAttributeValue(node._attrs["maxOccurs"]) == "unbounded":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   198
                            nodetype = "%s[]"%nodetype
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   199
                        if "minOccurs" in node._attrs and GetAttributeValue(node._attrs["minOccurs"]) == "0":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   200
                            use = "optional"
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   201
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   202
                            use = "required"
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   203
                    attributes[nodename] = (nodetype, name, use, default)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   204
                    if sequence:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   205
                        order.append(nodename)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   206
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   207
                # This tag defines a new class
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   208
                elif name == "complexType" or name == "simpleType":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   209
                    if "name" in node._attrs:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   210
                        classname = GetAttributeValue(node._attrs["name"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   211
                        super, attrs = self.GenerateXSDClasses(node, classname)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   212
                    else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   213
                        classname = parent
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   214
                        super, attrs = self.GenerateXSDClasses(node, classname.split("_")[-1])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   215
                    # When all attributes and inheritances have been extracted, the
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   216
                    # values are added in the list of classes to create
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   217
                    if self.XMLClassDefinitions.get(classname, None) == None:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   218
                        self.XMLClassDefinitions[classname] = (super, attrs)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   219
                    elif self.XMLClassDefinitions[classname] != (super, attrs):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   220
                        print "A different class has already got %s for name"%classname
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   221
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   222
                # This tag defines an attribute that can have different types
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   223
                elif name == "choice":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   224
                    super, attrs = self.GenerateXSDClasses(node, parent)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   225
                    
84
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   226
                    choices = {}
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   227
                    for attr, values in attrs.items():
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   228
                        if attr == "ref":
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   229
                            choices[attr] = values
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   230
                        else:
0369ad49e67f Bug on choice element in xmlclass fixed
jon
parents: 83
diff changeset
   231
                            choices[attr] = values[0]
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   232
                    if "maxOccurs" in node._attrs and GetAttributeValue(node._attrs["maxOccurs"]) == "unbounded":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   233
                        attributes["multichoice_content"] = choices
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   234
                        if sequence:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   235
                            order.append("multichoice_content")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   236
                    else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   237
                        attributes["choice_content"] = choices
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   238
                        if sequence:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   239
                            order.append("choice_content")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   240
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   241
                # This tag defines the order in which class attributes must be written
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   242
                # in plcopen xml file. We have to store this order like an attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   243
                elif name in "sequence":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   244
                    super, attrs, order = self.GenerateXSDClasses(node, parent, True)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   245
                    if "maxOccurs" in node._attrs and GetAttributeValue(node._attrs["maxOccurs"]) == "unbounded":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   246
                        for attr, (attr_type, xml_type, write_type, default) in attrs.items():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   247
                            attrs[attr] = ("%s[]"%attr_type, xml_type, write_type, default)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   248
                    if "minOccurs" in node._attrs and GetAttributeValue(node._attrs["minOccurs"]) == "0":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   249
                        for attr, (attr_type, xml_type, write_type, default) in attrs.items():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   250
                            attrs[attr] = (attr_type, xml_type, "optional", default)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   251
                    inheritance.extend(super)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   252
                    attributes.update(attrs)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   253
                    attributes["order"] = order
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   254
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   255
                # This tag defines of types
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   256
                elif name == "group":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   257
                    if "name" in node._attrs:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   258
                        nodename = GetAttributeValue(node._attrs["name"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   259
                        super, attrs = self.GenerateXSDClasses(node, None)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   260
                        self.XMLClassDefinitions[nodename] = (super, {"group":attrs["choice_content"]})
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   261
                    elif "ref" in node._attrs:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   262
                        if "ref" not in attributes:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   263
                            attributes["ref"] = [GetAttributeValue(node._attrs["ref"])]
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   264
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   265
                            attributes["ref"].append(GetAttributeValue(node._attrs["ref"]))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   266
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   267
                # This tag define a base class for the node
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   268
                elif name == "extension":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   269
                    super = GetAttributeValue(node._attrs["base"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   270
                    if super.startswith("xsd"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   271
                        super = super.replace("xsd", "bse")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   272
                    elif super.startswith("ppx"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   273
                        super = super.replace("ppx", "cls")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   274
                    inheritance.append(super[4:])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   275
                    recursion = True
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   276
                    
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   277
                # This tag defines a restriction on the type of attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   278
                elif name == "restriction":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   279
                    basetype = GetAttributeValue(node._attrs["base"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   280
                    if basetype.startswith("xsd"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   281
                        basetype = basetype.replace("xsd", "bse")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   282
                    elif basetype.startswith("ppx"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   283
                        basetype = basetype.replace("ppx", "cls")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   284
                    attributes["basetype"] = basetype
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   285
                    recursion = True
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   286
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   287
                # This tag defines an enumerated type
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   288
                elif name == "enumeration":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   289
                    if "enum" not in attributes:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   290
                        attributes["enum"] = [GetAttributeValue(node._attrs["value"])]
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   291
                    else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   292
                        attributes["enum"].append(GetAttributeValue(node._attrs["value"]))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   293
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   294
                # This tags defines a restriction on a numerical value
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   295
                elif name in ["minInclusive","maxInclusive"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   296
                    if "limit" not in attributes:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   297
                        attributes["limit"] = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   298
                    if name == "minInclusive":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   299
                        attributes["limit"]["min"] = eval(GetAttributeValue(node._attrs["value"]))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   300
                    elif name == "maxInclusive":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   301
                        attributes["limit"]["max"] = eval(GetAttributeValue(node._attrs["value"]))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   302
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   303
                # This tag are not important but their childrens are. The childrens are then parsed. 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   304
                elif name in ["complexContent", "schema"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   305
                    recursion = True
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   306
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   307
                # We make fun of xsd documentation
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   308
                elif name in ["annotation"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   309
                    pass
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   310
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   311
                else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   312
                    # Unable this line to print XSD element that is not yet supported 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   313
                    #print name
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   314
                    self.GenerateXSDClasses(node, parent)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   315
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   316
                # Parse the childrens of node
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   317
                if recursion:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   318
                    super, attrs = self.GenerateXSDClasses(node, parent)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   319
                    inheritance.extend(super)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   320
                    attributes.update(attrs)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   321
        
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   322
        # if sequence tag have been found, order is returned
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   323
        if sequence:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   324
            return inheritance, attributes, order
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   325
        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   326
            return inheritance, attributes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   327
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   328
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   329
    Funtion that returns the Python type and default value for a given type
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   330
    """
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   331
    def GetTypeInitialValue(self, attr_type, default = None):
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   332
        type_compute = attr_type[4:].replace("[]", "")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   333
        if attr_type.startswith("bse:"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   334
            if type_compute == "boolean":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   335
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   336
                    def GetBooleanInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   337
                        return default == "true"
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   338
                    return BooleanType, GetBooleanInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   339
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   340
                    return BooleanType, lambda:False
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   341
            elif type_compute in ["unsignedLong","long","integer"]:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   342
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   343
                    def GetIntegerInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   344
                        return int(default)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   345
                    return IntType, GetIntegerInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   346
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   347
                    return IntType, lambda:0
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   348
            elif type_compute == "decimal":
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   349
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   350
                    def GetFloatInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   351
                        return float(default)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   352
                    return FloatType, GetFloatInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   353
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   354
                    return FloatType, lambda:0.
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   355
            elif type_compute in ["string","anyURI","NMTOKEN"]:
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   356
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   357
                    def GetStringInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   358
                        return default
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   359
                    return StringType, GetStringInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   360
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   361
                    return StringType, lambda:""
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   362
            elif type_compute == "time":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   363
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   364
                    def GetTimeInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   365
                        result = time_model.match(value)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   366
                        if result:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   367
                            values = result.groups()
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   368
                            time_values = [int(v) for v in values[:2]]
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   369
                            seconds = float(values[2])
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   370
                            time_values.extend([int(seconds), int((seconds % 1) * 1000000)])
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   371
                            return time(*time_values)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   372
                        return time(0,0,0,0)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   373
                    return TimeType, GetTimeInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   374
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   375
                    return TimeType, lambda:time(0,0,0,0)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   376
            elif type_compute == "date":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   377
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   378
                    def GetDateInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   379
                        result = date_model.match(value)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   380
                        if result:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   381
                            date_values = [int(v) for v in result.groups()]
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   382
                            return date(*date_values)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   383
                        return date(1,1,1)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   384
                    return DateType, GetDateInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   385
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   386
                    return DateType, lambda:date(1,1,1)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   387
            elif type_compute == "dateTime":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   388
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   389
                    def GetDateTimeInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   390
                        result = datetime_model.match(value)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   391
                        if result:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   392
                            values = result.groups()
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   393
                            datetime_values = [int(v) for v in values[:5]]
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   394
                            seconds = float(values[5])
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   395
                            datetime_values.extend([int(seconds), int((seconds % 1) * 1000000)])
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   396
                            return datetime(*datetime_values)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   397
                        return datetime(1,1,1,0,0,0,0)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   398
                    return DateTimeType, GetDateTimeInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   399
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   400
                    return DateTimeType, lambda:datetime(1,1,1,0,0,0,0)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   401
            elif type_compute == "language":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   402
                if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   403
                    def GetStringInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   404
                        return default
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   405
                    return StringType, GetStringInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   406
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   407
                    return StringType, lambda:"en-US"
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   408
            else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   409
                print "Can't affect: %s"%type_compute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   410
        elif attr_type.startswith("cls:"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   411
            if self.XMLClassDefinitions.get(type_compute, None) != None:
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   412
                def GetClassInitialValue():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   413
                    if self.XMLClassDefinitions.get(type_compute, None) != None:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   414
                        obj = self.ComputedClasses[type_compute]()
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   415
                        if default:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   416
                            obj.setValue(default)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   417
                        return obj
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   418
                    return None
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   419
                return self.XMLClassDefinitions[type_compute], GetClassInitialValue
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   420
        return None, lambda:None
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   421
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   422
    """
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   423
    Funtion that returns the Python type and default value for a given type
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   424
    """
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   425
    def GetInitialValues(self, value_types):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   426
        initial_values = {}
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   427
        for name, value_type in value_types.items():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   428
            result = self.GetTypeInitialValue(value_type)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   429
            if result:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   430
                initial_values[name] = result[1]
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   431
        return initial_values
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   432
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   433
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   434
    Methods that generate the classes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   435
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   436
    def CreateClasses(self):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   437
        self.GenerateXSDClasses(self.XML_Tree, None)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   438
        for classname in self.XMLClassDefinitions.keys():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   439
            self.CreateClass(classname)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   440
        for classname in self.XMLClassDefinitions.keys():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   441
            self.MarkUsedClasses(classname)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   442
        return self.ComputedClasses, self.ComputedTypes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   443
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   444
    def CreateClass(self, classname):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   445
        # Checks that classe haven't been generated yet
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   446
        if not self.AlreadyComputed.get(classname, False) and classname in self.XMLClassDefinitions:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   447
            self.AlreadyComputed[classname] = True
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   448
            inheritance, attributes = self.XMLClassDefinitions[classname]
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   449
            #print classname, inheritance, attributes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   450
            members = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   451
            bases = []
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   452
            
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   453
            # If inheritance classes haven't been generated
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   454
            for base in inheritance:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   455
                self.CreateClass(base)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   456
                bases.append(self.ComputedClasses[base])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   457
            
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   458
            # Checks that all attribute types are available 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   459
            for attribute, type_attribute in attributes.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   460
                if attribute == "group":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   461
                    self.ComputedTypes[classname] = type_attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   462
                elif attribute in ["choice_content","multichoice_content"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   463
                    element_types = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   464
                    for attr, value in type_attribute.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   465
                        if attr == "ref":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   466
                            for ref in value:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   467
                                self.CreateClass(ref[4:])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   468
                                element_types.update(self.ComputedTypes[ref[4:]])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   469
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   470
                            element_types[attr] = value
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   471
                    members[attribute] = element_types
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   472
                else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   473
                    members[attribute] = type_attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   474
                    if attribute == "enum":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   475
                        self.ComputedTypes["%s_enum"%classname] = type_attribute
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   476
                    elif attribute not in ["limit", "order"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   477
                        if type_attribute[0].startswith("cls:"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   478
                            type_compute = type_attribute[0][4:].replace("[]","")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   479
                            self.CreateClass(type_compute)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   480
            if "group" not in attributes:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   481
                bases = tuple(bases)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   482
                classmembers = {"IsBaseClass" : True}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   483
                initialValues = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   484
                for attr, values in members.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   485
                    if attr in ["order", "basetype"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   486
                        pass
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   487
                    
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   488
                    # Class is a enumerated type
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   489
                    elif attr == "enum":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   490
                        value_type, initial = self.GetTypeInitialValue(members["basetype"])
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   491
                        initialValues["value"] = GetInitialValueFunction(values[0])
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   492
                        classmembers["value"] = values[0]
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   493
                        classmembers["setValue"] = generateSetEnumMethod(values, value_type)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   494
                        classmembers["getValue"] = generateGetMethod("value")
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   495
                        classmembers["getValidValues"] = generateGetChoicesMethod(values)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   496
                    
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   497
                    # Class is a limited type
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   498
                    elif attr == "limit":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   499
                        value_type, initial = self.GetTypeInitialValue(members["basetype"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   500
                        if "min" in values:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   501
                            initial = max(initial, values["min"])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   502
                        if "max" in values:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   503
                            initial = min(initial, values["max"])
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   504
                        initialValues["value"] = GetInitialValueFunction(initial)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   505
                        classmembers["value"] = initial
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   506
                        classmembers["setValue"] = generateSetLimitMethod(values, value_type)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   507
                        classmembers["getValue"] = generateGetMethod("value")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   508
                    
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   509
                    # Class has an attribute that can have different value types
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   510
                    elif attr == "choice_content":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   511
                        classmembers["content"] = None
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   512
                        initialValues["content"] = lambda:None
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   513
                        classmembers["deleteContent"] = generateDeleteMethod("content")
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   514
                        classmembers["addContent"] = generateAddChoiceMethod(values, self.GetInitialValues(values))
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   515
                        classmembers["setContent"] = generateSetChoiceMethod(values)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   516
                        classmembers["getContent"] = generateGetMethod("content")
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   517
                        classmembers["getChoices"] = generateGetChoicesMethod(values)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   518
                    elif attr == "multichoice_content":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   519
                        classmembers["content"] = []
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   520
                        initialValues["content"] = lambda:[]
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   521
                        classmembers["appendContent"] = generateAppendChoiceMethod(values)
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   522
                        classmembers["appendContentByType"] = generateAppendChoiceByTypeMethod(values, self.GetInitialValues(values))
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   523
                        classmembers["insertContent"] = generateInsertChoiceMethod(values)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   524
                        classmembers["removeContent"] = generateRemoveMethod("content")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   525
                        classmembers["countContent"] = generateCountMethod("content")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   526
                        classmembers["setContent"] = generateSetMethod("content", ListType)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   527
                        classmembers["getContent"] = generateGetMethod("content")
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   528
                        classmembers["getChoices"] = generateGetChoicesMethod(values)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   529
                    
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   530
                    # It's an attribute of the class
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   531
                    else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   532
                        attrname = attr[0].upper()+attr[1:]
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   533
                        attr_type, xml_type, write_type, default = values
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   534
                        value_type, initial = self.GetTypeInitialValue(attr_type, default)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   535
                        # Value of the attribute is a list
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   536
                        if attr_type.endswith("[]"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   537
                            classmembers[attr] = []
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   538
                            initialValues[attr] = lambda:[]
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   539
                            classmembers["append"+attrname] = generateAppendMethod(attr, value_type)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   540
                            classmembers["insert"+attrname] = generateInsertMethod(attr, value_type)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   541
                            classmembers["remove"+attrname] = generateRemoveMethod(attr)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   542
                            classmembers["count"+attrname] = generateCountMethod(attr)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   543
                            classmembers["set"+attrname] = generateSetMethod(attr, ListType)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   544
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   545
                            if write_type == "optional":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   546
                                classmembers[attr] = None
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   547
                                initialValues[attr] = lambda:None
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   548
                                classmembers["add"+attrname] = generateAddMethod(attr, initial)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   549
                                classmembers["delete"+attrname] = generateDeleteMethod(attr)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   550
                            else:
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   551
                                classmembers[attr] = initial()
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   552
                                initialValues[attr] = initial
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   553
                            classmembers["set"+attrname] = generateSetMethod(attr, value_type)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   554
                        classmembers["get"+attrname] = generateGetMethod(attr)
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   555
                classmembers["__init__"] = generateInitMethod(bases, initialValues)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   556
                classmembers["loadXMLTree"] = generateLoadXMLTree(bases, members, self.ComputedClasses)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   557
                classmembers["generateXMLText"] = generateGenerateXMLText(bases, members)
85
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   558
                classmembers["getElementAttributes"] = generateGetElementAttributes(members, self.ComputedClasses)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   559
                classmembers["getElementInfos"] = generateGetElementInfos(members, self.ComputedClasses)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   560
                classmembers["setElementValue"] = generateSetElementValue(members)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   561
                classmembers["singleLineAttributes"] = True
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   562
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   563
                self.ComputedClasses[classname] = classobj(classname, bases, classmembers)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   564
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   565
    def MarkUsedClasses(self, classname):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   566
        # Checks that classe haven't been generated yet
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   567
        if classname in self.XMLClassDefinitions:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   568
            inheritance, attributes = self.XMLClassDefinitions[classname]
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   569
            
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   570
            # If inheritance classes haven't been generated
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   571
            for base in inheritance:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   572
                if base in self.ComputedClasses:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   573
                    self.ComputedClasses[base].IsBaseClass = False
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   574
                
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   575
            # Checks that all attribute types are available 
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   576
            for attribute, type_attribute in attributes.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   577
                if attribute in ["choice_content","multichoice_content"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   578
                    element_types = {}
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   579
                    for attr, value in type_attribute.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   580
                        if attr == "ref":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   581
                            for ref in value:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   582
                                element_types.update(self.ComputedTypes[ref[4:]])
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   583
                        else:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   584
                            element_types[attr] = value
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   585
                    for type_name in element_types.values():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   586
                        type_compute = type_name[4:].replace("[]","")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   587
                        if type_compute in self.ComputedClasses:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   588
                            self.ComputedClasses[type_compute].IsBaseClass = False
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   589
                elif attribute != "group":
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   590
                    if attribute not in ["enum", "limit", "order"]:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   591
                        if type_attribute[0].startswith("cls:"):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   592
                            type_compute = type_attribute[0][4:].replace("[]","")
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   593
                            if type_compute in self.ComputedClasses:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   594
                                self.ComputedClasses[type_compute].IsBaseClass = False
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   595
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   596
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   597
    Methods that print the classes generated
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   598
    """
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   599
    def PrintClasses(self):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   600
        for classname, xmlclass in self.ComputedClasses.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   601
            print "%s : %s"%(classname, str(xmlclass))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   602
        
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   603
    def PrintClassNames(self):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   604
        classnames = self.XMLClassDefinitions.keys()
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   605
        classnames.sort()
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   606
        for classname in classnames:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   607
            print classname
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   608
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   609
"""
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   610
Method that generate the method for loading an xml tree by following the
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   611
attributes list defined
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   612
"""
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   613
def generateLoadXMLTree(bases, members, classes):
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   614
    def loadXMLTreeMethod(self, tree):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   615
        # If class is derived, values of inheritance classes are loaded
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   616
        for base in bases:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   617
            base.loadXMLTree(self, tree)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   618
        # Class is a enumerated or limited value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   619
        if "enum" in members.keys() or "limit" in members.keys():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   620
            attr_value = GetAttributeValue(tree)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   621
            attr_type = members["basetype"]
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   622
            val = GetComputedValue(attr_type, attr_value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   623
            self.setValue(val)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   624
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   625
            
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   626
            # Load the node attributes if they are defined in the list
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   627
            for attrname, attr in tree._attrs.items():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   628
                if attrname in members.keys():
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   629
                    attr_type, xml_type, write_type, default = members[attrname]
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   630
                    attr_value = GetAttributeValue(attr)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   631
                    if write_type != "optional" or attr_value != "":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   632
                        # Extracts the value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   633
                        if attr_type.startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   634
                            val = GetComputedValue(attr_type, attr_value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   635
                        elif attr_type.startswith("cls:"):
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   636
                            val = classes[attr_type[4:]]()
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   637
                            val.loadXMLTree(attr)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   638
                        setattr(self, attrname, val)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   639
            
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   640
            # Load the node childs if they are defined in the list
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   641
            for node in tree.childNodes:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   642
                name = node.nodeName
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   643
                # We make fun of #text elements
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   644
                if name != "#text":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   645
                    
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   646
                    # Class has an attribute that can have different value types
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   647
                    if "choice_content" in members.keys() and name in members["choice_content"].keys():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   648
                        attr_type = members["choice_content"][name]
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   649
                        # Extracts the value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   650
                        if attr_type.startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   651
                            attr_value = GetAttributeValue(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   652
                            if write_type != "optional" or attr_value != "":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   653
                                val = GetComputedValue(attr_type.replace("[]",""), attr_value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   654
                            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   655
                                val = None
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   656
                        elif attr_type.startswith("cls:"):
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   657
                            val = classes[attr_type[4:].replace("[]","")]()
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   658
                            val.loadXMLTree(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   659
                        # Stock value in content attribute
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   660
                        if val:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   661
                            if attr_type.endswith("[]"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   662
                                if self.content:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   663
                                    self.content["value"].append(val)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   664
                                else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   665
                                    self.content = {"name":name,"value":[val]}
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   666
                            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   667
                                self.content = {"name":name,"value":val}
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   668
                    
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   669
                    # Class has a list of attributes that can have different value types
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   670
                    elif "multichoice_content" in members.keys() and name in members["multichoice_content"].keys():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   671
                        attr_type = members["multichoice_content"][name]
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   672
                        # Extracts the value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   673
                        if attr_type.startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   674
                            attr_value = GetAttributeValue(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   675
                            if write_type != "optional" or attr_value != "":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   676
                                val = GetComputedValue(attr_type, attr_value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   677
                            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   678
                                val = None
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   679
                        elif attr_type.startswith("cls:"):
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   680
                            val = classes[attr_type[4:]]()
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   681
                            val.loadXMLTree(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   682
                        # Add to content attribute list
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   683
                        if val:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   684
                            self.content.append({"name":name,"value":val})
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   685
                    
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   686
                    # The node child is defined in the list
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   687
                    elif name in members.keys():
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   688
                        attr_type, xml_type, write_type, default = members[name]
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   689
                        # Extracts the value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   690
                        if attr_type.startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   691
                            attr_value = GetAttributeValue(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   692
                            if write_type != "optional" or attr_value != "":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   693
                                val = GetComputedValue(attr_type.replace("[]",""), attr_value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   694
                            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   695
                                val = None
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   696
                        elif attr_type.startswith("cls:"):
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
   697
                            val = classes[attr_type[4:].replace("[]","")]()
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   698
                            val.loadXMLTree(node)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   699
                        # Stock value in attribute
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   700
                        if val:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   701
                            if attr_type.endswith("[]"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   702
                                getattr(self, name).append(val)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   703
                            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   704
                                setattr(self, name, val)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   705
    return loadXMLTreeMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   706
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   707
"""
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   708
Method that generates the method for generating an xml text by following the
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   709
attributes list defined
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   710
"""
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   711
def generateGenerateXMLText(bases, members):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   712
    def generateXMLTextMethod(self, name, indent, extras = {}, derived = False):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   713
        ind1, ind2 = getIndent(indent, name)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   714
        if not derived:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   715
            text = ind1 + "<%s"%name
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   716
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   717
            text = ""
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   718
        if len(bases) > 0:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   719
            base_extras = {}
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   720
        if "order" in members.keys():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   721
            order = members["order"]
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   722
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   723
            order = []
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   724
        for attr, values in members.items():
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   725
            if attr != "order" and (attr in ("choice_content", "multichoice_content") or values[1] != "attribute"):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   726
                if attr not in order:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   727
                    order.append(attr)
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   728
        size = 0
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   729
        first = True
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   730
        for attr, value in extras.items():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   731
            if not first and not self.singleLineAttributes:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   732
                text += "\n%s"%(ind2)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   733
            text += " %s=\"%s\""%(attr, ComputeValue(value))
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   734
            first = False
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   735
        for attr, values in members.items():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   736
            if attr in ["order","choice_content","multichoice_content"]:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   737
                pass
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   738
            elif attr in ["enum","limit"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   739
                if not derived:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   740
                    text += ">%s</%s>\n"%(ComputeValue(self.value),name)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   741
                else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   742
                    text += ComputeValue(self.value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   743
                return text
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   744
            elif values[1] == "attribute":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   745
                value = getattr(self, attr, None)
86
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   746
                if value != None:
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   747
                    if values[0].startswith("cls"):
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   748
                        value = value.getValue()
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   749
                    computed_value = ComputeValue(value)
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   750
                else:
4f1dbdb0bed2 Bug on xmlclass XML file attributes generation fixed
lbessard
parents: 85
diff changeset
   751
                    computed_value = None
88
bac6435df86f Bug on optional attributes generation fixed
lbessard
parents: 87
diff changeset
   752
                if values[2] != "optional" or (value != None and computed_value != values[3]):
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   753
                    if len(bases) > 0:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   754
                        base_extras[attr] = value
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   755
                    else:
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   756
                        if not first and not self.singleLineAttributes:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   757
                            text += "\n%s"%(ind2)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   758
                        text += " %s=\"%s\""%(attr, computed_value)
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   759
                    first = False
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   760
        if len(bases) > 0:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   761
            first, new_text = bases[0].generateXMLText(self, name, indent, base_extras, True)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   762
            text += new_text
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   763
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   764
            first = True
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   765
        ind3, ind4 = getIndent(indent + 1, name)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   766
        for attr in order:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   767
            value = getattr(self, attr, None)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   768
            if attr == "choice_content":
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   769
                if self.content:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   770
                    if first:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   771
                        text += ">\n"
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   772
                        first = False
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   773
                    value_type = members[attr][self.content["name"]]
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   774
                    if value_type.startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   775
                        if value_type.endswith("[]"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   776
                            for content in self.content["value"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   777
                                text += ind1 + "<%s>%s</%s>\n"%(self.content["name"], ComputeValue(content), self.content["name"])
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   778
                        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   779
                            text += ind1 + "<%s>%s</%s>\n"%(self.content["name"], ComputeValue(self.content["value"]), self.content["name"])
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   780
                    elif value_type.endswith("[]"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   781
                        for content in self.content["value"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   782
                            text += content.generateXMLText(self.content["name"], indent + 1)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   783
                    else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   784
                        text += self.content["value"].generateXMLText(self.content["name"], indent + 1)
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   785
            elif attr == "multichoice_content":
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   786
                if len(self.content) > 0:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   787
                    for element in self.content:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   788
                        if first:
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   789
                            text += ">\n"
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   790
                            first = False
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   791
                        value_type = members[attr][element["name"]]
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   792
                        if value_type.startswith("bse:"):
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   793
                            text += ind1 + "<%s>%s</%s>\n"%(element["name"], ComputeValue(element["value"]), element["name"])
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   794
                        else:
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   795
                            text += element["value"].generateXMLText(element["name"], indent + 1)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   796
            elif members[attr][2] != "optional" or value != None:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   797
                if members[attr][0].endswith("[]"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   798
                    if first and len(value) > 0:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   799
                        text += ">\n"
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   800
                        first = False
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   801
                    for element in value:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   802
                        if members[attr][0].startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   803
                            text += ind3 + "<%s>%s</%s>\n"%(attr, ComputeValue(element), attr)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   804
                        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   805
                            text += element.generateXMLText(attr, indent + 1)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   806
                else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   807
                    if first:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   808
                        text += ">\n"
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   809
                        first = False
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   810
                    if members[attr][0].startswith("bse:"):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   811
                        text += ind3 + "<%s>%s</%s>\n"%(attr, ComputeValue(value), attr)
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents:
diff changeset
   812
                    else:
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   813
                        text += getattr(self, attr).generateXMLText(attr, indent + 1)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   814
        if not derived:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   815
            if first:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   816
                text += "/>\n"
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   817
            else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   818
                text += ind1 + "</%s>\n"%(name)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   819
            return text
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   820
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   821
            return first, text
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   822
    return generateXMLTextMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   823
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   824
85
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   825
def generateGetElementAttributes(members, classes):
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   826
    def getElementAttributes(self):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   827
        attr_list = []
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   828
        for attr, values in members.items():
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   829
            if attr in ["order","choice_content","multichoice_content"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   830
                pass
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   831
            elif values[1] == "attribute":
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   832
                attr_params = {"name": attr, "require": values[2] == "required"}
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   833
                if values[0].startswith("cls:"):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   834
                    attr_value = getattr(self, attr, None)
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   835
                    if attr_value:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   836
                        attr_params["value"] = attr_value.getValue()
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   837
                    else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   838
                        attr_params["value"] = ""
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   839
                    attr_params["type"] = classes[values[0][4:]]().getValidValues()
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   840
                else:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   841
                    attr_params["value"] = getattr(self, attr, "")
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   842
                    attr_params["type"] = values[0][4:]
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   843
                attr_list.append(attr_params)
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   844
        return attr_list
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   845
    return getElementAttributes
85
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   846
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   847
def generateGetElementInfos(members, classes):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   848
    def getElementInfos(self, name, path = None):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   849
        attr_type = "element"
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   850
        value = None
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   851
        children = []
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   852
        if "enum" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   853
            attr_type = self.getValidValues()
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   854
            value = self.value
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   855
        elif "limit" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   856
            attr_type = {"min" : None, "max" : None}
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   857
            if "min" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   858
                attr_type["min"] = members["min"]
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   859
            if "max" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   860
                attr_type["max"] = members["max"]
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   861
            value = self.value
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   862
        elif path:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   863
            if "choice_content" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   864
                return self.content["value"].getElementInfos(self.content["name"], path)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   865
            elif "multichoice_content" not in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   866
                parts = path.split(".", 1)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   867
                if parts[0] in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   868
                    values = members[parts[0]]
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   869
                    if values[1] == "attribute" and len(parts) == 1:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   870
                        attr = getattr(self, parts[0], None)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   871
                        if attr != None:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   872
                            if values[0].startswith("cls:"):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   873
                                return attr.getElementInfos(parts[0])
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   874
                            else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   875
                                attr_type = values[0][4:]
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   876
                                value = getattr(self, attr, "")
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   877
                    elif values[1] == "element":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   878
                        attr = getattr(self, parts[0], None)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   879
                        if attr != None:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   880
                            if len(parts) == 1:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   881
                                return attr.getElementInfos(parts[0])
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   882
                            else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   883
                                return attr.getElementInfos(parts[0], parts[1])
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   884
        else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   885
            for attr, values in members.items():
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   886
                if attr == "order":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   887
                    pass
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   888
                elif attr == "choice_content":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   889
                    attr_type = self.getChoices().items()
87
ce2607713931 *** empty log message ***
etisserant
parents: 86
diff changeset
   890
                    if self.content:
ce2607713931 *** empty log message ***
etisserant
parents: 86
diff changeset
   891
                        value = self.content["name"]
ce2607713931 *** empty log message ***
etisserant
parents: 86
diff changeset
   892
                        children.extend(self.content["value"].getElementInfos(self.content["name"])["children"])
85
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   893
                elif attr == "multichoice_content":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   894
                    for element_infos in self.content:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   895
                        children.append(element_infos["value"].getElementInfos(element_infos["name"]))
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   896
                elif values[1] == "attribute" and not values[0].startswith("cls:"):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   897
                    children.append({"name" : attr, "value" : getattr(self, attr, ""), "type" : values[0][4:], "children" : []})
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   898
                else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   899
                    element = getattr(self, attr, None)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   900
                    if not element:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   901
                        element = classes[values[0][4:]]()
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   902
                    children.append(element.getElementInfos(attr))
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   903
        return {"name" : name, "type" : attr_type, "value" : value, "children" : children}
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   904
    return getElementInfos
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   905
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   906
def generateSetElementValue(members):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   907
    def setElementValue(self, path, value):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   908
        if "enum" in members or "limit" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   909
            if not path:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   910
                self.setValue(value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   911
        elif "choice_content" in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   912
            if path:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   913
                self.content["value"].setElementValue(path, value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   914
            else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   915
                self.addContent(value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   916
        else: 
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   917
            parts = path.split(".", 1)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   918
            if parts[0] in members:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   919
                values = members[parts[0]]
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   920
                if values[1] == "attribute" and len(parts) == 1:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   921
                    attr = getattr(self, parts[0], None)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   922
                    if attr != None:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   923
                        if values[0].startswith("cls:"):
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   924
                            attr.setElementValue(None, value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   925
                        elif values[0][4:] == "boolean":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   926
                            setattr(self, parts[0], value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   927
                        else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   928
                            setattr(self, parts[0], GetComputedValue(values[0], value))
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   929
                elif values[1] == "element":
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   930
                    attr = getattr(self, parts[0], None)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   931
                    if attr != None:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   932
                        if len(parts) == 1:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   933
                            attr.setElementValue(None, value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   934
                        else:
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   935
                            attr.setElementValue(parts[1], value)
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   936
    return setElementValue
fd17b0e0fd7e Adding members to classes for automatically generate infos and set the value of an element with its path
lbessard
parents: 84
diff changeset
   937
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   938
"""
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   939
Methods that generates the different methods for setting and getting the attributes
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   940
"""
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   941
def generateInitMethod(bases, members):
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   942
    def initMethod(self):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   943
        for base in bases:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   944
            base.__init__(self)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   945
        for attr, initial in members.items():
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   946
            setattr(self, attr, initial())
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   947
    return initMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   948
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   949
def generateSetMethod(attr, attr_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   950
    def setMethod(self, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   951
        setattr(self, attr, value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   952
    return setMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   953
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   954
def generateAddChoiceMethod(choice_type, initial_values):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   955
    def addChoiceMethod(self, name):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   956
        if name in choice_type:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   957
            self.content = {"name" : name, "value" : initial_values[name]()}
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   958
    return addChoiceMethod
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   959
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   960
def generateSetChoiceMethod(choice_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   961
    def setChoiceMethod(self, name, value):
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   962
        self.content = {"name" : name, "value" : value}
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   963
    return setChoiceMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   964
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   965
def generateGetChoicesMethod(choice_type):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   966
    def getChoicesMethod(self):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   967
        return choice_type
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   968
    return getChoicesMethod
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   969
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   970
def generateSetEnumMethod(enum, attr_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   971
    def setEnumMethod(self, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   972
        if value in enum:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   973
            self.value = value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   974
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   975
            raise ValueError, "%s is not a valid value. Must be in %s"%(value, str(enum))
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   976
    return setEnumMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   977
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   978
def generateSetLimitMethod(limit, attr_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   979
    def setMethod(self, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   980
        if "min" in limit and value < limit["min"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   981
            raise ValueError, "%s is not a valid value. Must be greater than %d"%(value, limit["min"])
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   982
        elif "max" in limit and value > limit["max"]:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   983
            raise ValueError, "%s is not a valid value. Must be smaller than %d"%(value, limit["max"])
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   984
        else:
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   985
            self.value = value
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   986
    return setMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   987
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   988
def generateGetMethod(attr):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   989
    def getMethod(self):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   990
        return getattr(self, attr, None)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   991
    return getMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   992
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   993
def generateAddMethod(attr, initial):
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   994
    def addMethod(self):
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
   995
        setattr(self, attr, initial())
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   996
    return addMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   997
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   998
def generateDeleteMethod(attr):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
   999
    def deleteMethod(self):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1000
        setattr(self, attr, None)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1001
    return deleteMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1002
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1003
def generateAppendMethod(attr, attr_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1004
    def appendMethod(self, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1005
        getattr(self, attr).append(value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1006
    return appendMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1007
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1008
def generateInsertMethod(attr, attr_type):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1009
    def insertMethod(self, index, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1010
        getattr(self, attr).insert(index, value)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1011
    return insertMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1012
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1013
def generateAppendChoiceByTypeMethod(choice_type, initial_values):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1014
    def addChoiceMethod(self, name):
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1015
        if name in choice_type:
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1016
            self.content.append({"name" : name, "value" : initial_values[name]()})
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1017
    return addChoiceMethod
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1018
75
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1019
def generateAppendChoiceMethod(choice_types):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1020
    def appendMethod(self, name, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1021
        self.content.append({"name":name,"value":value})
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1022
    return appendMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1023
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1024
def generateInsertChoiceMethod(choice_types):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1025
    def insertMethod(self, index, name, value):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1026
        self.content.insert(index, {"name":name,"value":value})
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1027
    return insertMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1028
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1029
def generateRemoveMethod(attr):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1030
    def removeMethod(self, index):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1031
        getattr(self, attr).pop(index)
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1032
    return removeMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1033
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1034
def generateCountMethod(attr):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1035
    def countMethod(self):
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1036
        return len(getattr(self, attr))
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1037
    return countMethod
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1038
82d371634f15 Changed the way class are generated, using classobj from "new" module, instead of type inheritence.
etisserant
parents: 67
diff changeset
  1039
"""
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1040
This function generate the classes from a class factory
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1041
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1042
def GenerateClasses(factory, declare = False):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1043
    ComputedClasses, ComputedTypes = factory.CreateClasses()
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1044
    if declare:
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1045
        for ClassName, Class in pluginClasses.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1046
            sys._getframe(1).f_locals[ClassName] = Class
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1047
        for TypeName, Type in pluginTypes.items():
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1048
            sys._getframe(1).f_locals[TypeName] = Type
83
180e4a0160b2 Adding support for default values
lbessard
parents: 76
diff changeset
  1049
    globals().update(ComputedClasses)
76
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1050
    return ComputedClasses, ComputedTypes
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1051
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1052
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1053
This function opens the xsd file and generate the classes from the xml tree
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1054
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1055
def GenerateClassesFromXSD(filename, declare = False):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1056
    xsdfile = open(filename, 'r')
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1057
    factory = ClassFactory(minidom.parse(xsdfile))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1058
    xsdfile.close()
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1059
    return GenerateClasses(factory, declare)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1060
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1061
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1062
This function generate the classes from the xsd given as a string
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1063
"""
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1064
def GenerateClassesFromXSDstring(xsdstring, declare = False):
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1065
    factory = ClassFactory(minidom.parseString(xsdstring))
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1066
    return GenerateClasses(factory, declare)
5bac3213fea1 xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents: 75
diff changeset
  1067