-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml2struct.m
66 lines (56 loc) · 1.99 KB
/
xml2struct.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
function theStruct = xml2struct(filename)
% XML2STRUCT Convert an XML file into a MATLAB structure.
% Copyright 2003-2007 The MathWorks, Inc.
% Based on an idea by Douglas M. Schwarz, Eastman Kodak Company
try
tree = xmlread(filename);
catch
error(message('bioinfo:xml2struct:FileReadError', filename));
end
% Recurse over child nodes
% This could run into problems with very deeply nested trees...
try
theStruct = parseChildNodes(tree);
catch
error(message('bioinfo:xml2struct:XMLParseError', filename));
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function nodeStruct = makeStructFromNode(theNode)
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function attributes = parseAttributes(theNode)
% Create attributes struct
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
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