view m-toolbox/classes/@LTPDAworkbench/explore.m @ 40:977eb37f31cb database-connection-manager

User friendlier errors from utils.mysql.connect
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 18:04:03 +0100
parents f0afece42f48
children
line wrap: on
line source

% EXPLORE explore the outputs of the currently selected blocks.
%
% CALL: wb.explore
%
% M Hewitson 13-11-08
%
% $Id: explore.m,v 1.5 2010/08/06 19:10:49 ingo Exp $
%
function explore(varargin)
  
  wb = varargin{1};
  
  % Get all selected blocks
  sbs = awtinvoke(wb.mp, 'getSelectedBlocks');
  
  outvars = {};
  for ii=0:sbs.size()-1
    block = sbs.get(ii);
    
    % if this is a MElementWithPorts
    if isa(block, 'mpipeline.canvas.MElementWithPorts')
      
      % loop over all outputs
      outports = block.getOutputs();
      for kk=0:outports.size()-1
        op = outports.get(kk);
        % get variable name
        outvar = LTPDAworkbench.getWS_VarName(wb.UUID, block, op.getNumber);
        outvars = [outvars {outvar}];
      end
    end
  end
  
  % Check if each var exists in the workspace, and then launch in
  % ltpda_explorer
  
  cmd = 'ltpda_explorer({';
  for kk=1:numel(outvars)
    cmd = [cmd outvars{kk} ','];
  end
  
  if cmd(end)==','
    cmd = cmd(1:end-1);
  end
  cmd = [cmd '})'];
  try
    evalin('base', cmd);
  catch
    utils.helper.errorDlg('Unable to explore selected objects. Has the pipeline been executed?', 'Explore block outputs error');
  end
  
  
end