Ignore:
Timestamp:
Feb 17, 2016, 12:52:48 PM (8 years ago)
Author:
sommeria
Message:

xmltree updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/@xmltree/flush.m

    r723 r925  
    55% uid       - array of UID's of subtrees to be cleared
    66%             Default is root
    7 %_______________________________________________________________________
     7%__________________________________________________________________________
    88%
    99% Clear a subtree given its UID (remove all the leaves of the tree)
    1010% The tree parameter must be in input AND in output
    11 %_______________________________________________________________________
    12 % @(#)flush.m                  Guillaume Flandin               02/04/10
     11%__________________________________________________________________________
     12% Copyright (C) 2002-2011  http://www.artefact.tk/
    1313
    14 error(nargchk(1,2,nargin));
     14% Guillaume Flandin
     15% $Id: flush.m 4460 2011-09-05 14:52:16Z guillaume $
     16
     17
     18%error(nargchk(1,2,nargin));
    1519
    1620if nargin == 1,
    17         uid = root(tree);
     21    uid = root(tree);
    1822end
    1923
    2024uid = uid(:);
    2125for i=1:length(uid)
    22         tree = sub_flush(tree,uid(i));
     26    tree = sub_flush(tree,uid(i));
    2327end
    2428
    25 %=======================================================================
     29%==========================================================================
    2630function tree = sub_flush(tree,uid)
    27         if isfield(tree.tree{uid},'contents')
    28                 % contents is parsed in reverse order because each child is
    29                 % deleted and the contents vector is then eventually reduced
    30                 for i=length(tree.tree{uid}.contents):-1:1
    31                         tree = sub_flush(tree,tree.tree{uid}.contents(i));
    32                 end
    33         end
    34         if strcmp(tree.tree{uid}.type,'chardata') |...
    35                 strcmp(tree.tree{uid}.type,'pi') |...
    36                 strcmp(tree.tree{uid}.type,'cdata') |...
    37                 strcmp(tree.tree{uid}.type,'comment')
    38                 tree = delete(tree,uid);
    39         end
     31    if isfield(tree.tree{uid},'contents')
     32        % contents is parsed in reverse order because each child is
     33        % deleted and the contents vector is then eventually reduced
     34        for i=length(tree.tree{uid}.contents):-1:1
     35            tree = sub_flush(tree,tree.tree{uid}.contents(i));
     36        end
     37    end
     38    if strcmp(tree.tree{uid}.type,'chardata') ||...
     39        strcmp(tree.tree{uid}.type,'pi') ||...
     40        strcmp(tree.tree{uid}.type,'cdata') ||...
     41        strcmp(tree.tree{uid}.type,'comment')
     42        tree = delete(tree,uid);
     43    end
Note: See TracChangeset for help on using the changeset viewer.