diff m-toolbox/classes/@ltpda_uoh/rebuild.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/classes/@ltpda_uoh/rebuild.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,93 @@
+% REBUILD rebuilds the input objects using the history.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% DESCRIPTION: REBUILD rebuilds the input objects using the history.
+%
+% CALL:        out = rebuild(as)
+%
+% INPUTS:      as  - array of ltpda_uoh objects of the same kind
+%
+% OUTPUTS:     out - array of rebuilt objects.
+%
+% <a href="matlab:utils.helper.displayMethodInfo('ltpda_uoh', 'rebuild')">Parameters Description</a>
+%
+% VERSION:     $Id: rebuild.m,v 1.14 2011/11/16 08:26:35 mauro Exp $
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function varargout = rebuild(varargin)
+  
+  import utils.const.*
+  
+  % Check if this is a call for parameters
+  if utils.helper.isinfocall(varargin{:})
+    varargout{1} = getInfo(varargin{3});
+    return
+  end
+  
+  utils.helper.msg(msg.PROC3, 'running %s/%s', mfilename('class'), mfilename);
+  
+  if nargout == 0
+    error('### rebuild cannot be used as a modifier. Please give an output variable.');
+  end
+  
+  % Collect input variable names
+  in_names = cell(size(varargin));
+  for ii = 1:nargin,in_names{ii} = inputname(ii);end
+  
+  % Collect all AOs and plists
+  [as, ao_invars, rest] = utils.helper.collect_objects(varargin(:), 'ltpda_uoh', in_names);
+  [pl, pl_invars, rest] = utils.helper.collect_objects(rest, 'plist', in_names);
+  
+  % Combine plists
+  pl = combine(pl, getDefaultPlist);
+  
+  % Go through each input AO
+  bs = [];
+  for jj = 1:numel(as)
+    
+    if isempty(as(jj).hist)
+      error('### Can not rebuild the object because the object have no history.');
+    end
+    
+    % Rebuild the object and add to outputs
+    bs = [bs rebuild(as(jj).hist);];
+    
+  end % End object loop
+  
+  % Set output
+  varargout = utils.helper.setoutputs(nargout, bs);
+  
+end
+
+%--------------------------------------------------------------------------
+% Get Info Object
+%--------------------------------------------------------------------------
+function ii = getInfo(varargin)
+  if nargin == 1 && strcmpi(varargin{1}, 'None')
+    sets = {};
+    pl   = [];
+  else
+    sets = {'Default'};
+    pl   = getDefaultPlist;
+  end
+  % Build info object
+  ii = minfo(mfilename, 'ltpda_uoh', 'ltpda', utils.const.categories.constructor, '$Id: rebuild.m,v 1.14 2011/11/16 08:26:35 mauro Exp $', sets, pl);
+  ii.setModifier(false);
+end
+
+%--------------------------------------------------------------------------
+% Get Default Plist
+%--------------------------------------------------------------------------
+function plout = getDefaultPlist()
+  persistent pl;
+  if ~exist('pl', 'var') || isempty(pl)
+    pl = buildplist();
+  end
+  plout = pl;
+end
+
+function pl = buildplist()
+  pl = plist.EMPTY_PLIST;
+end
+