-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmlParser.m
153 lines (133 loc) · 4.08 KB
/
xmlParser.m
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
function xmlParser()
clc;
filename = 'twolinkman.xml';
theStruct = XMLparse(filename);
names = {theStruct.Children.Name};
childrn = {theStruct.Children.Children};
wbIndx = strfind(names, 'worldbody');
wbIndx = find(not(cellfun('isempty', wbIndx)));
WB = childrn{wbIndx};
WBnames = {WB.Name};
WBchild = {WB.Children};
nRbts = strfind(WBnames, 'body');
nRbts = find(not(cellfun('isempty', nRbts)));
for r = 1:length(nRbts) %number of robots
lnks = []; jnts = [];
jIndx = strfind({WBchild{nRbts(r)}.Name}, 'joint');
jIndx = find(not(cellfun('isempty', jIndx)));
gIndx = strfind({WBchild{nRbts(r)}.Name}, 'geom');
gIndx = find(not(cellfun('isempty', gIndx)));
bIndx = strfind({WBchild{nRbts(r)}.Name}, 'body');
bIndx = find(not(cellfun('isempty', bIndx)));
childrn = {WBchild{nRbts(r)}.Children};
attrib = {WBchild{nRbts(r)}.Attributes};
if(~isempty(jIndx))
rj = attrib{jIndx}; %root joint of each robot
end
if(~isempty(gIndx))
rl = attrib{gIndx}; %root link of each robot
end
lnks(1).l = rl;
jnts(1).j = rj;
for l = 1:length(bIndx) %get all sublinks
[sbLnks, sbJnts] = getAllSubMems(childrn{bIndx(l)});
for i = 1:length(sbJnts)
jnts(i+l).j = sbJnts(i).sj;
end
for i = 1:length(sbLnks)
lnks(i+l).l = sbLnks(i).sl;
end
end
rbts(r).lnks = lnks;
rbts(r).jnts = jnts;
end
end
function [sbLnks,sbJnts] = getAllSubMems(body)
finish = 0; cntJ = 1; cntL = 1;
while(~finish)
jIndx = strfind({body.Name}, 'joint');
jIndx = find(not(cellfun('isempty', jIndx)));
gIndx = strfind({body.Name}, 'geom');
gIndx = find(not(cellfun('isempty', gIndx)));
bIndx = strfind({body.Name}, 'body');
bIndx = find(not(cellfun('isempty', bIndx)));
childrn = {body.Children};
attrib = {body.Attributes};
if(~isempty(jIndx))
sbJnts(cntJ).sj = attrib{jIndx}; %root joint of each robot
cntJ = cntJ+1;
end
if(~isempty(gIndx))
sbLnks(cntL).sl = attrib{gIndx}; %root link of each robot
cntL = cntL + 1;
end
if(isempty(bIndx))
finish = 1;
else
body = {childrn{bIndx}.Children};
end
end
end
function theStruct = XMLparse(filename)
% PARSEXML Convert XML file to a MATLAB structure.
try
tree = xmlread(filename);
catch
error('Failed to read XML file %s.',filename);
end
% Recurse over child nodes. This could run into problems
% with very deeply nested trees.
try
theStruct = parseChildNodes(tree);
catch
error('Unable to parse XML file %s.',filename);
end
end
% ----- Local function PARSECHILDNODES -----
function children = parseChildNodes(theNode)
% Recurse over node children.
children = [];
if theNode.hasChildNodes
childNodes = theNode.getChildNodes;
numChildNodes = childNodes.getLength;
allocCell = cell(1, numChildNodes);
children = struct( ...
'Name', allocCell, 'Attributes', allocCell, ...
'Data', allocCell, 'Children', allocCell);
for count = 1:numChildNodes
theChild = childNodes.item(count-1);
children(count) = makeStructFromNode(theChild);
end
end
end
% ----- Local function MAKESTRUCTFROMNODE -----
function nodeStruct = makeStructFromNode(theNode)
% Create structure of node info.
nodeStruct = struct( ...
'Name', char(theNode.getNodeName), ...
'Attributes', parseAttributes(theNode), ...
'Data', '', ...
'Children', parseChildNodes(theNode));
if any(strcmp(methods(theNode), 'getData'))
nodeStruct.Data = char(theNode.getData);
else
nodeStruct.Data = '';
end
end
% ----- Local function PARSEATTRIBUTES -----
function attributes = parseAttributes(theNode)
% Create attributes structure.
attributes = [];
if theNode.hasAttributes
theAttributes = theNode.getAttributes;
numAttributes = theAttributes.getLength;
allocCell = cell(1, numAttributes);
attributes = struct('Name', allocCell, 'Value', ...
allocCell);
for count = 1:numAttributes
attrib = theAttributes.item(count-1);
attributes(count).Name = char(attrib.getName);
attributes(count).Value = char(attrib.getValue);
end
end
end