source: trunk/src/xml2struct.m @ 664

Last change on this file since 664 was 663, checked in by sommeria, 11 years ago

bug corrected again in xml2struct, PLOT and copy of points improved in geometry_calib

File size: 3.0 KB
RevLine 
[356]1% 'xml2struct': read an xml file as a Matlab structure, converts numeric character strings into numbers
2%-----------------------------------------------------------------------
3% function s=xml2struct(filename)
4%
5% OUTPUT:
6% s= Matlab structure corresponding to the input xml file
7%
8% INPUT:
9% filename: name of the xml file
[560]10% varargin: optional list of strings to restrict the reading to a selection of subtrees, for instance 'GeometryCalib' (save time)
[356]11
[560]12function [s,Heading]=xml2struct(filename,varargin)
[320]13t=xmltree(filename);
[565]14iline=0;
15Heading='';
16while isempty(Heading)
17    iline=iline+1;
18    if strcmp(get(t,iline,'type'),'element')
19        Heading=get(t,iline,'name');
20    end
21end
[560]22if nargin>1
23    for isub=1:nargin-1
24        uid_sub=find(t,['/' Heading '/' varargin{isub}]);
[565]25        if isempty(uid_sub)
26            s.(varargin{isub})=[];
27        else
[560]28        tsub=branch(t,uid_sub);
29        ss=convert(tsub);
30        s.(varargin{isub})=convert_string(ss);
[565]31        end
[560]32    end
33else
34    ss=convert(t);
35    s=convert_string(ss);
36end
[320]37
38
[450]39function out=convert_string(ss)
40info=whos('ss');
[320]41switch info.class
42    case 'struct'
[471]43        out=[];%default
[450]44        names = fieldnames(ss);
[320]45        for k=1:length(names)
[450]46            out.(names{k})=convert_string(ss.(names{k}));
[320]47        end
[663]48    case 'char'
49        out=ss; %reproduce the input string
50        if ~strcmp(ss,'image')% bug with Matlab str2num('image')-> child face
51            out=str2num(ss);
52            %if isempty(regexp(ss,'^(-*\d+\.*\d*\ *)+$'))% if the string does not contain a set of numbers (with possible sign and decimal) separated by blanks
53            if isempty(out)
54                sep_ind=regexp(ss,'\s&\s');% check for separator ' & ' which indicates column separation in tables
55                if ~isempty(sep_ind)
56                    sep_ind=[-2 sep_ind length(ss)+1];
57                    for icolumn=1:length(sep_ind)-1
58                        out{1,icolumn}=ss(sep_ind(icolumn)+3:sep_ind(icolumn+1)-1);
59                    end
60                else
61                    out=ss; %reproduce the input string
[450]62                end
63            end
[320]64        end
[379]65    case 'cell'
[471]66        out=[];%default
[477]67        check_numeric=zeros(size(ss));
68        for ilist=1:numel(ss)
[663]69            if ~strcmp(ss{ilist},'image') && ~isempty(str2num(ss{ilist}))
[477]70                out{ilist,1}=str2num(ss{ilist});
71                check_numeric(ilist)=1;
72            else
[472]73                sep_ind=regexp(ss{ilist},'\s&\s');% check for separator ' & ' which indicates column separation in tables
74                if ~isempty(sep_ind)
75                    sep_ind=[-2 sep_ind length(ss{ilist})+1];
76                    for icolumn=1:length(sep_ind)-1
77                        out{ilist,icolumn}=ss{ilist}(sep_ind(icolumn)+3:sep_ind(icolumn+1)-1);
78                    end
79                else
80                    out{ilist,1}=ss{ilist}; %reproduce the input string
81                end
[453]82            end
[379]83        end
[477]84        if isequal(check_numeric,ones(size(ss)))
85            out=cell2mat(out);
86        end
[320]87    otherwise
[450]88        out=ss;
[320]89end
90
91   
Note: See TracBrowser for help on using the repository browser.