summaryrefslogtreecommitdiff
path: root/blocks/Xcos/XmlParser.py
blob: f148ef37e4301a63fa4c5290ab44963bbad3ffc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
#!/usr/bin/env python

import datetime
import os
import re
import sys
import traceback
import xml.etree.ElementTree as ET
import defusedxml.ElementTree as goodET
import uuid

from xcosblocks import num2str, style_to_object
from xcosblocks import addtolinklist
from xcosblocks import create_mxCell, create_mxCell_edge, create_mxCell_port, checkModelTag, checkXcosDiagramTag, check_point_on_array, checkRootTag
from xcosblocks import getComponentGeometry, getlinkdetails, getLinkStyle, getNextAttribId, getPinGeometry, getSplitPoints, getWaypoints
from xcosblocks import identify_segment, initLinks, mergeLinks, portType1, portType2, portType3, remove_hyphen_number


if len(sys.argv) != 2:
    print("Usage: %s filename.xml" % sys.argv[0])
    sys.exit(101)

filename = sys.argv[1]
(basename, ext) = os.path.splitext(filename)

if ext != '.xml':
    print("Usage: %s filename.xml" % sys.argv[0])
    sys.exit(101)

tree = goodET.parse(filename)

diagram = tree.getroot()
checkXcosDiagramTag(diagram)

model = diagram.find('mxGraphModel')
checkModelTag(model)

for root in model:
    checkRootTag(root)

    IDLIST = {}
    nodeList = {}
    nextattribid = 1
    cells = list(root)
    remainingcells = []
    cellslength = len(cells)
    oldcellslength = 0
    blkgeometry = {}
    rootattribid = '0:1:0'
    parentattribid = '0:2:0'
    key1 = {}
    graph_link = {}
    removable_link = {}
    split_point = None
    edgeDict = {}

    print('cellslength=', cellslength)
    while cellslength > 0 and cellslength != oldcellslength:
        for i, cell in enumerate(cells):
            try:
                if i <= 1 and oldcellslength == 0:
                    continue

                attrib = cell.attrib
                if 'id' not in attrib:
                    continue
                attribid = attrib['id']
                nextattribid = getNextAttribId(attribid, nextattribid)

                cell_type = attrib['CellType']
                nodeList[attribid] = cell
                mxGeometry = cell.find('mxGeometry')

                if cell_type == 'Component':

                    componentGeometry = getComponentGeometry(mxGeometry)

                    IDLIST[attribid] = cell_type
                    blkgeometry[attribid] = componentGeometry

                elif cell_type == 'Pin':

                    geometry = getPinGeometry(mxGeometry, componentGeometry)

                    style = attrib['style']
                    stylename = style_to_object(style)['default']
                    IDLIST[attribid] = stylename
                    blkgeometry[attribid] = geometry

                    initLinks(attribid, [], [], key1, graph_link, removable_link)

                elif 'edge' in attrib:

                    waypoints = getWaypoints(mxGeometry)

                    sourceVertex = attrib['sourceVertex']
                    targetVertex = attrib['targetVertex']
                    if sourceVertex not in IDLIST or targetVertex not in IDLIST:
                        remainingcells.append(cell)
                        continue
                    sourceType = IDLIST[sourceVertex]
                    targetType = IDLIST[targetVertex]

                    (sourceVertex, sourceType, targetVertex, targetType, switch_split, style, addSplit, waypoints) = getLinkStyle(attribid, sourceVertex, sourceType, targetVertex, targetType, waypoints)

                    split_point, split_point2 = getSplitPoints(attrib, switch_split, blkgeometry, sourceVertex, targetVertex, waypoints)

                    IDLIST[attribid] = style

                    link_data = (attribid, sourceVertex, targetVertex, sourceType, targetType, style, waypoints, addSplit, split_point, split_point2)
                    edgeDict[attribid] = link_data

                    initLinks(attribid, [attribid], [attribid] if addSplit else [], key1, graph_link, removable_link)
                    mergeLinks(attribid, sourceVertex, key1, graph_link, removable_link)
                    mergeLinks(attribid, targetVertex, key1, graph_link, removable_link)

            except Exception:
                traceback.print_exc()
                sys.exit(103)

        oldcellslength = cellslength
        cells = remainingcells
        cellslength = len(remainingcells)
        remainingcells = []
        print('cellslength=', cellslength, ', oldcellslength=', oldcellslength)


linklist = []
return_value = 0
LINKTOLINK = {}
for k, r_link in removable_link.items():
    try:
        if len(r_link) == 0:
            continue
        link = graph_link[k]

        return_value += len(r_link) - 1
        r_link_0 = r_link[0]
        node = nodeList[r_link_0]
        link_data = edgeDict[r_link_0]  # small removed link

        sourceVertex = link_data[1]  # small link
        targetVertex = link_data[2]  # small link

        if sourceVertex in link:
            node2 = nodeList[sourceVertex]
            link_data2 = edgeDict[sourceVertex]  # big removed link

            thisVertex = sourceVertex
            thisx = link_data[8]['x']
            thisy = link_data[8]['y']

            otherVertex = targetVertex
            otherx = link_data[9]['x']
            othery = link_data[9]['y']

            split_point = link_data[8]

        elif targetVertex in link:
            node2 = nodeList[targetVertex]
            link_data2 = edgeDict[targetVertex]  # big removed link

            thisVertex = targetVertex
            thisx = link_data[9]['x']
            thisy = link_data[9]['y']

            otherVertex = sourceVertex
            otherx = link_data[8]['x']
            othery = link_data[8]['y']

            split_point = link_data[9]

        sourceVertex2 = link_data2[1]  # big link
        targetVertex2 = link_data2[2]  # big link

        tarx = link_data2[8]['x']
        tary = link_data2[8]['y']

        tar2x = link_data2[9]['x']
        tar2y = link_data2[9]['y']

        root.remove(node)
        root.remove(node2)

        sType = IDLIST[thisVertex]
        tType = IDLIST[otherVertex]
        sType2 = IDLIST[sourceVertex2]
        tType2 = IDLIST[targetVertex2]
        height = '7.0'
        width = '7.0'
        waypoints = link_data[6]    # small link
        waypoints2 = link_data2[6]  # big link
        # split_point = link_data[9]
        biglinkid = link_data2[0]
        smalllinkid = link_data[0]
        result, left_array, right_array = check_point_on_array(waypoints2, split_point)
        array3 = waypoints

        port1 = portType1(sType, sType2, tType2)
        port2 = portType2(sType, sType2, tType2)
        port3 = portType3(sType, tType)

        ports = [port1, port2, port3]
        portcount = {
            "explicitInputPort": 0,
            "explicitOutputPort": 0,
            "implicitInputPort": 0,
            "implicitOutputPort": 0,
            "controlPort": 0,
            "commandPort": 0
        }

        # Count ports
        for port in ports:
            portcount[port] += 1

        explicitInputPorts = portcount["explicitInputPort"]
        explicitOutputPorts = portcount["explicitOutputPort"]
        implicitInputPorts = portcount["implicitInputPort"]
        implicitOutputPorts = portcount["implicitOutputPort"]
        controlPorts = portcount["controlPort"]
        commandPorts = portcount["commandPort"]

        # add splitblock
        geometry = (thisx, thisy, width, height)
        block_id = str(nextattribid)
        xml_output = create_mxCell(
            style="SplitBlock",
            id=block_id,
            explicitInputPorts=explicitInputPorts,
            implicitInputPorts=implicitInputPorts,
            explicitOutputPorts=explicitOutputPorts,
            implicitOutputPorts=implicitOutputPorts,
            controlPorts=controlPorts,
            commandPorts=commandPorts,
            simulationFunction="split",
            tarx="0",
            tary="0",
            geometry=geometry
        )

        splitblockid = nextattribid
        nextattribid += 1

        root.append(xml_output)

        # add splitblock port
        ordering_counters = {
            "ExplicitInputPort": 0,
            "ImplicitInputPort": 0,
            "ExplicitOutputPort": 0,
            "ImplicitOutputPort": 0,
            "ControlPort": 0,
            "CommandPort": 0
        }
        p_width = "8"
        p_height = "8"
        count_of_ports = 3
        port_geometry = ("1", "0.5", p_width, p_height)
        for port in range(count_of_ports):
            port_index = 0
            portx = 0
            porty = 0
            port_index, portx, porty, waypoints, linkid = getlinkdetails(port, sourceVertex2, targetVertex2, otherVertex, tarx, tary, tar2x, tar2y, otherx, othery,
                                                                         left_array, right_array, array3, biglinkid, smalllinkid)

            port_id = nextattribid

            port_type, link_type = addtolinklist(port, explicitInputPorts, explicitOutputPorts, implicitInputPorts, implicitOutputPorts, controlPorts, commandPorts,
                                                 port_id, thisx, thisy, port_index, portx, porty, waypoints, linkid, linklist)

            ordering_counters[port_type] += 1
            ordering = ordering_counters[port_type]

            xml_output_port = create_mxCell_port(
                style=port_type,
                id=port_id,
                ordering=str(ordering),
                parentComponent=str(splitblockid),
                sourceVertex="0",
                targetVertex="0",
                tarx="0",
                tary="0",
                geometry=port_geometry
            )

            nextattribid += 1

            root.append(xml_output_port)

    except Exception:
        traceback.print_exc()
        sys.exit(103)

# add splitblock edges

LINKWAYPOINTS = {}

for edge_index, (link_type, source_vertex, sourcex, sourcey, target_vertex, targetx, targety, waypoints, linkid) in enumerate(linklist):
    edge_id = nextattribid

    if linkid not in LINKTOLINK:
        LINKTOLINK[linkid] = [edge_id]
        LINKWAYPOINTS[linkid] = [waypoints]
    else:
        LINKTOLINK[linkid].append(edge_id)
        LINKWAYPOINTS[linkid].append(waypoints)

    # LINKTOLINK update

    xml_output_edge = create_mxCell_edge(
        id=edge_id,
        edge="1",
        sourceVertex=source_vertex,
        targetVertex=target_vertex,
        tarx=sourcex,
        tary=sourcey,
        tar2x=targetx,
        tar2y=targety,
        source_point=(sourcex, sourcey),
        target_point=(targetx, targety),
        waypoints=waypoints
    )

    nextattribid += 1

    root.append(xml_output_edge)

cells = list(root)
# secondary link
for i, cell in enumerate(cells):
    try:
        attrib = cell.attrib
        attribid = attrib['id']
    except KeyError:
        continue

    cell_type = attrib['CellType']

    if i < 2 or cell_type in ['Component', 'Pin'] or 'edge' not in attrib:
        continue

    try:
        sourceVertex = attrib['sourceVertex']
        targetVertex = attrib['targetVertex']
    except KeyError:
        continue

    if sourceVertex not in LINKTOLINK and targetVertex not in LINKTOLINK:
        continue

    try:
        point = {'x': nodeList[sourceVertex].attrib['tarx'], 'y': nodeList[sourceVertex].attrib['tary']}
        result, i, left_array, right_array = identify_segment(LINKWAYPOINTS[sourceVertex], point)
        sourceVertex = str(LINKTOLINK[sourceVertex][i])
    except KeyError:
        pass

    try:
        point = {'x': nodeList[targetVertex].attrib['tar2x'], 'y': nodeList[targetVertex].attrib['tar2y']}
        result, i, left_array, right_array = identify_segment(LINKWAYPOINTS[targetVertex], point)

        targetVertex = str(LINKTOLINK[targetVertex][i])
    except KeyError:
        pass

    cell.set('sourceVertex', sourceVertex)
    cell.set('targetVertex', targetVertex)


# Save the modified XML
output_path = f'{remove_hyphen_number(basename)}-{return_value}.xml'
tree.write(output_path)

sys.exit(return_value)