Exemple #1
0
    def EA_XMLUtil(self,root,namespaces,PROJECT_DIR,_dmoName):
        # NITIN : TODO : Change parsing after correcting assumptions about the XML structure
        definition = root.find('xmi_namespace:Extension', namespaces)   
        elements = definition.find("elements")
        if elements is not None : elements = elements.findall("element")

        dmo = DomainModel(_dmoName)
        

        # ZHIYUN: adding elements into model
        elem={}
        for element in elements:
            # ZHIYUN : extract element if it's a definition of a class
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemId = element.get(self.xmiPrefixAppender('idref', namespaces["xmi_namespace"] ))
                elemName = element.get('name').strip()
                dmo.declareElement( elemName , elemId)
                elem[elemId]=elemName
      

        # ZHIYUN: adding attributes to element
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemName = element.get('name').strip()
                elemAttributes = element.find('attributes')
                if elemAttributes is not None:
                    for elemAttribute in elemAttributes:
                        elemAttributeName = elemAttribute.get('name')
                        elemAttributeType = elemAttribute.find('properties').get('type')

                        # ZHIYUN: add complex attributes
                        if elemAttributeType in elem.values():
                            AttributeTypeSetter=dt.ComplexType(elemAttributeType)
                            dmo.defineComplexAttribute(elemName,elemAttributeName, elemAttributeType, AttributeTypeSetter) 
                      
                        #s ZHIYUN: add simple attributes
                        else:
                            elemAttributeTypeSetter=dt.SimpleType(elemAttributeType)
                            dmo.defineSimpleAttribute(elemName, elemAttributeName, elemAttributeTypeSetter)
                            
                        # NITIN : TODO : extract other features like upper and lower bounds, scope,

                # Bo: Check if the element has any operations defined and aadd them, implement operations on domain model
                elemOperations = element.find('operations')
                if elemOperations is not None:
                    for elemOperation in elemOperations:
                        elemOperationName = elemOperation.get('name')
                        dmo.defineOperation(elemName, elemOperationName)
                        # Bo: TODO: check the return value and parameters


        # ZHIYUN: iterate all upper value of relation                
        connectors=definition.find('connectors').findall('connector')
        upperValues={}
        for connector in connectors:
            relationId=connector.get(self.xmiPrefixAppender('idref', namespaces["xmi_namespace"] ))
            startUpperValue=connector.find('source').find('type').get('multiplicity')
            endUpperValue=connector.find('target').find('type').get('multiplicity')
            upperValues[relationId]=[startUpperValue,endUpperValue]


        # ZHIYUN: adding relations to elemnents
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemRelations = element.find('links')
                if elemRelations is None : continue
                for elemRelation in elemRelations: 
                    # ZHIYUN: ignore relations to class not existing in the domain
                    if not (elem.has_key(str(elemRelation.get('start'))) and elem.has_key(str(elemRelation.get('end')))): continue;


                    relationId = elemRelation.get(self.xmiPrefixAppender('id',namespaces["xmi_namespace"]))

                    if(elemRelation.tag=='Generalization'):
                        dmo.defineRelation(relationId, str(elemRelation.get('start')), str(elemRelation.get('end')), str(elemRelation.tag))
                    else:
                        # ZHIYUN: add upper value to relation
                        startUpperValue='unknown'  
                        endUpperValue='unknown'
                        if upperValues.has_key(relationId): 
                            startUpperValue=upperValues[relationId][0]
                            endUpperValue=upperValues[relationId][1]
                        dmo.defineRelation(relationId, str(elemRelation.get('start')), str(elemRelation.get('end')) , str(elemRelation.tag), startUpperValue, endUpperValue)

        #edm_utils.copyDirLink('code_templates/node_modules', PROJECT_DIR + "/" +'node_modules')
        json_file = open(PROJECT_DIR + "/" + _dmoName + ".json", "w")

        json_file.write(dmo.toJson())
        json_file.close()

        return dmo.toJson()
Exemple #2
0
    def VP_XMLUtil(self,root,namespaces,PROJECT_DIR,_dmoName):
        elements = root.findall("packagedElement")
        dmo = DomainModel(_dmoName)


        # ZHIYUN: store all mapping of attribute id to its name
        elemType={}
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:DataType":
                typeId=element.get(self.xmiPrefixAppender('id', namespaces["xmi_namespace"] ))
                elemType[typeId]=element.get("name")
        
        # ZHIYUN: adding elements into model
        elem={}
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemId = element.get(self.xmiPrefixAppender('id', namespaces["xmi_namespace"] ))
                elemName = element.get('name').strip()
                dmo.declareElement(elemName , elemId)
                elem[elemId]=elemName
 
                
        # ZHIYUN: adding attributes to element
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemName = element.get('name').strip()
                elemAttributes = element.findall('ownedAttribute')
                if elemAttributes is not None:
                    for elemAttribute in elemAttributes:
                        AttributeName = elemAttribute.get('name')
                        AttributeId = elemAttribute.get('type')
                        
                        # ZHIYUN: add simple attributes
                        if elemType.has_key(AttributeId):
                            AttributeType = elemType[AttributeId]      
                            AttributeTypeSetter=dt.SimpleType(AttributeType) 
                            dmo.defineSimpleAttribute(elemName, AttributeName, AttributeTypeSetter)

                        # ZHIYUN: add complex attribute
                        elif elem.has_key(AttributeId):
                            AttributeElemName = elem[AttributeId]
                            AttributeTypeSetter=dt.ComplexType(AttributeElemName)
                            dmo.defineComplexAttribute(elemName,AttributeName, AttributeElemName, AttributeTypeSetter)

        # ZHIYUN: adding relations to elemnents 
                
        # ZHIYUN: add generalization relations
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Class":
                elemId = element.get(self.xmiPrefixAppender('id', namespaces["xmi_namespace"] ))
                elemRelations = element.findall('generalization')
                if elemRelations is None : continue
                for elemRelation in elemRelations:
                    relationId = elemRelation.get(self.xmiPrefixAppender('id',namespaces["xmi_namespace"]))                  
                   

                    dmo.defineRelation(relationId, str(elemId), str(elemRelation.get('general')) , str("Generalization"))


        # ZHIYUN: add other relations
        for element in elements:
            if element.get(self.xmiPrefixAppender('type', namespaces["xmi_namespace"] )) == "uml:Association":
                relationId = element.get(self.xmiPrefixAppender('id', namespaces["xmi_namespace"]))
                ownedEnds=element.findall('ownedEnd')
                start=ownedEnds[1]
                end=ownedEnds[0]

                # ZHIYUN: add upper value of start and end class to relation
                startUpperVaule="unknown"
                endUpperValue='unknown'
                if(start.find('upperValue') is not None): startUpperVaule=start.find('upperValue').get('value')
                if(end.find('upperValue') is not None): endUpperValue=end.find('upperValue').get('value')
                # ZHIYUN: add relations      
                if start.get('aggregation')=="shared":                 
                    dmo.defineRelation(relationId, str(start.get('type')), str(end.get('type')),str("Aggregation"), startUpperVaule,endUpperValue)
                elif start.get('aggregation')=="composite":
                    dmo.defineRelation(relationId,  str(start.get('type')), str(end.get('type')) , str("Composition"),startUpperVaule,endUpperValue)
                else:
                    dmo.defineRelation(relationId,  str(start.get('type')), str(end.get('type')) , str("Association"),startUpperVaule,endUpperValue)


  
        #edm_utils.copyDirLink('code_templates/node_modules', PROJECT_DIR + "/" +'node_modules')
        json_file = open(PROJECT_DIR + "/" + _dmoName + ".json", "w")

        json_file.write(dmo.toJson())
        json_file.close()

        return dmo.toJson()