-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDiffSetFormat.txt
41 lines (38 loc) · 1.09 KB
/
DiffSetFormat.txt
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
NodeChange:
* Status [String; one of "added", "removed", "changed"]
* InstanceGuid: [String]
* Type: [String; omitted if status is "removed"]
* Location: [Location; omitted if status is "removed"]
* MetaData [MetaData; just the inspect portion, omitted if status is "removed"]
PortChange:
* Status [String; one of "added", "removed", "changed"]
* InstanceGuid: [String]
* ParentGuid: [String]
* MetaData [MetaData; just the inspect portion, omitted if status is "removed"]
EdgeChange:
* Status [String; one of "added", "removed"]
* InstanceGuid: [String]
* SrcGuid: [String; omitted if status is "removed"]
* DstGuid: [String; omitted if status is "removed"]
<DiffSet>
<NodeChange Status="" InstanceGuid="" Type="">
<Location>
<X>34</X>
<Y>11</Y>
</Location>
<MetaData>
<Inspect>...</Inspect>
</MetaData>
</NodeChange>
<PortChange Status="" ParentGuid="" InstanceGuid="">
<MetaData>
<Inspect>...</Inspect>
</MetaData>
</PortChange>
<EdgeChange Status="" InstanceGuid="" SrcGuid="" DstGuid="">
</EdgeChange>
...
<MetaData>
<Inspect>...</Inspect>
</MetaData>
</DiffSet>