| 1 | |
|---|
| 2 | %'browse_data': function for scanning directories in a campaign |
|---|
| 3 | %------------------------------------------------------------------------ |
|---|
| 4 | % function varargout = series(varargin) |
|---|
| 5 | % associated with the GUI browse_data.fig |
|---|
| 6 | |
|---|
| 7 | %======================================================================= |
|---|
| 8 | % Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France |
|---|
| 9 | % http://www.legi.grenoble-inp.fr |
|---|
| 10 | % Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr |
|---|
| 11 | % |
|---|
| 12 | % This file is part of the toolbox UVMAT. |
|---|
| 13 | % |
|---|
| 14 | % UVMAT is free software; you can redistribute it and/or modify |
|---|
| 15 | % it under the terms of the GNU General Public License as published |
|---|
| 16 | % by the Free Software Foundation; either version 2 of the license, |
|---|
| 17 | % or (at your option) any later version. |
|---|
| 18 | % |
|---|
| 19 | % UVMAT is distributed in the hope that it will be useful, |
|---|
| 20 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 21 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 22 | % GNU General Public License (see LICENSE.txt) for more details. |
|---|
| 23 | %======================================================================= |
|---|
| 24 | |
|---|
| 25 | function varargout = browse_data(varargin) |
|---|
| 26 | |
|---|
| 27 | % Last Modified by GUIDE v2.5 11-Jul-2019 18:52:06 |
|---|
| 28 | |
|---|
| 29 | % Begin initialization code - DO NOT EDIT |
|---|
| 30 | gui_Singleton = 1; |
|---|
| 31 | gui_State = struct('gui_Name', mfilename, ... |
|---|
| 32 | 'gui_Singleton', gui_Singleton, ... |
|---|
| 33 | 'gui_OpeningFcn', @browse_data_OpeningFcn, ... |
|---|
| 34 | 'gui_OutputFcn', @browse_data_OutputFcn, ... |
|---|
| 35 | 'gui_LayoutFcn', [] , ... |
|---|
| 36 | 'gui_Callback', []); |
|---|
| 37 | if nargin && ischar(varargin{1}) |
|---|
| 38 | gui_State.gui_Callback = str2func(varargin{1}); |
|---|
| 39 | end |
|---|
| 40 | |
|---|
| 41 | if nargout |
|---|
| 42 | [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); |
|---|
| 43 | else |
|---|
| 44 | gui_mainfcn(gui_State, varargin{:}); |
|---|
| 45 | end |
|---|
| 46 | % End initialization code - DO NOT EDIT |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | %------------------------------------------------------------------------ |
|---|
| 50 | % --- Executes just before browse_data is made visible. |
|---|
| 51 | function browse_data_OpeningFcn(hObject, eventdata, handles, InputDir,EnableMirror,MultiDevices) |
|---|
| 52 | %------------------------------------------------------------------------ |
|---|
| 53 | |
|---|
| 54 | %% Choose default command line output for browse_data |
|---|
| 55 | handles.output =hObject;% 'Cancel'; |
|---|
| 56 | |
|---|
| 57 | %% Update handles structure |
|---|
| 58 | guidata(hObject, handles); |
|---|
| 59 | set(hObject,'WindowButtonDownFcn',{'mouse_down'}) % allows mouse action with right button (zoom for uicontrol display) |
|---|
| 60 | set(hObject,'DeleteFcn',{@closefcn})% |
|---|
| 61 | |
|---|
| 62 | %% Determine the position of the dialog - centered on the screen |
|---|
| 63 | FigPos=get(0,'DefaultFigurePosition'); |
|---|
| 64 | OldUnits = get(hObject, 'Units'); |
|---|
| 65 | set(hObject, 'Units', 'pixels'); |
|---|
| 66 | OldPos = get(hObject,'Position'); |
|---|
| 67 | FigWidth = OldPos(3); |
|---|
| 68 | FigHeight = OldPos(4); |
|---|
| 69 | ScreenUnits=get(0,'Units'); |
|---|
| 70 | set(0,'Units','pixels'); |
|---|
| 71 | ScreenSize=get(0,'ScreenSize'); |
|---|
| 72 | set(0,'Units',ScreenUnits); |
|---|
| 73 | FigPos(1)=1/2*(ScreenSize(3)-FigWidth); |
|---|
| 74 | FigPos(2)=2/3*(ScreenSize(4)-FigHeight); |
|---|
| 75 | FigPos(3:4)=[FigWidth FigHeight]; |
|---|
| 76 | set(hObject, 'Position', FigPos); |
|---|
| 77 | set(hObject, 'Units', OldUnits); |
|---|
| 78 | if exist('EnableMirror','var') && strcmp(EnableMirror,'on') |
|---|
| 79 | set(handles.CreateMirror,'Visible','on') |
|---|
| 80 | set(handles.mirror_txt,'Visible','on') |
|---|
| 81 | else |
|---|
| 82 | set(handles.CreateMirror,'Visible','off') |
|---|
| 83 | set(handles.mirror_txt,'Visible','off') |
|---|
| 84 | end |
|---|
| 85 | |
|---|
| 86 | %% initialize the GUI |
|---|
| 87 | if isempty(regexp(InputDir,'^http:'))&& ~(exist('InputDir','var') && ischar(InputDir) && exist(InputDir,'dir')) |
|---|
| 88 | InputDir=pwd;% current dir is the starting data series by default |
|---|
| 89 | end |
|---|
| 90 | if ischar(InputDir),InputDir={InputDir};end |
|---|
| 91 | for ilist=1:numel(InputDir) |
|---|
| 92 | [ExpWithPath,DataSeries{ilist},Ext]=fileparts(InputDir{ilist}); |
|---|
| 93 | DataSeries{ilist}=['+/' DataSeries{ilist} Ext]; |
|---|
| 94 | [Experiment{ilist},Device{ilist},Ext]=fileparts(ExpWithPath); |
|---|
| 95 | Device{ilist}=['+/' Device{ilist} Ext]; |
|---|
| 96 | [SourceDir{ilist},Experiment{ilist},Ext]=fileparts(Experiment{ilist}); |
|---|
| 97 | Experiment{ilist}=['+/' Experiment{ilist} Ext]; |
|---|
| 98 | if ~strcmp(SourceDir{ilist},SourceDir{1})||~strcmp(Experiment{ilist},Experiment{1}) |
|---|
| 99 | msgbox_uvmat('ERROR','replicate cannot be used with multiple root folders') |
|---|
| 100 | return |
|---|
| 101 | end |
|---|
| 102 | if ~strcmp(DataSeries{ilist},DataSeries{1}) |
|---|
| 103 | set(handles.DataSeries,'enable','off') |
|---|
| 104 | end |
|---|
| 105 | if ~strcmp(Device{ilist},Device{1}) |
|---|
| 106 | set(handles.ListDevices,'enable','off') |
|---|
| 107 | end |
|---|
| 108 | end |
|---|
| 109 | s=[]; |
|---|
| 110 | if isempty(s) %a source dir has been opened |
|---|
| 111 | set(handles.SourceDir,'String',SourceDir{1}); |
|---|
| 112 | set(handles.MirrorDir,'Visible','off');% no mirror dir display |
|---|
| 113 | set(handles.CreateMirror,'String','create_mirror') |
|---|
| 114 | end |
|---|
| 115 | set(handles.DataSeries,'String',DataSeries); |
|---|
| 116 | set(handles.DataSeries,'Value',(1:numel(DataSeries))); |
|---|
| 117 | set(handles.ListDevices,'String',Device); |
|---|
| 118 | set(handles.ListDevices,'Value',(1:numel(Device))); |
|---|
| 119 | errormsg=scan_campaign(handles,SourceDir{1},Experiment{1}); |
|---|
| 120 | if ~isempty(errormsg) |
|---|
| 121 | msgbox_uvmat('ERROR',errormsg) |
|---|
| 122 | return |
|---|
| 123 | end |
|---|
| 124 | |
|---|
| 125 | set(hObject,'Visible','on') |
|---|
| 126 | drawnow |
|---|
| 127 | |
|---|
| 128 | %------------------------------------------------------------------------ |
|---|
| 129 | % --- Outputs from this function are returned to the command line. |
|---|
| 130 | function varargout = browse_data_OutputFcn(hObject, eventdata, handles) |
|---|
| 131 | %------------------------------------------------------------------------ |
|---|
| 132 | % Get default command line output from handles structure |
|---|
| 133 | varargout{1} = handles.output; |
|---|
| 134 | %%%%%%%%%%%%%%%%%%delete(handles.browse_data) |
|---|
| 135 | |
|---|
| 136 | %------------------------------------------------------------------------ |
|---|
| 137 | % --- Executes on button press in SourceDir. |
|---|
| 138 | function SourceDir_Callback(hObject, eventdata, handles) |
|---|
| 139 | SourceDir=get(handles.SourceDir,'String'); |
|---|
| 140 | ListExp=get(handles.ListExperiments,'String'); |
|---|
| 141 | ListExp=ListExp(get(handles.ListExperiments,'Value')); |
|---|
| 142 | errormsg=scan_campaign(handles,SourceDir,ListExp); |
|---|
| 143 | if ~isempty(errormsg) |
|---|
| 144 | msgbox_uvmat('ERROR',errormsg) |
|---|
| 145 | return |
|---|
| 146 | end |
|---|
| 147 | %------------------------------------------------------------------------ |
|---|
| 148 | |
|---|
| 149 | %------------------------------------------------------------------------ |
|---|
| 150 | % --- Executes on button press in CreateMirror. |
|---|
| 151 | function CreateMirror_Callback(hObject, eventdata, handles) |
|---|
| 152 | %------------------------------------------------------------------------ |
|---|
| 153 | set(handles.SourceDir,'BackgroundColor',[1 1 0])% indicate action of button by yellow color |
|---|
| 154 | drawnow |
|---|
| 155 | SourcePath=get(handles.SourceDir,'String'); |
|---|
| 156 | if ~isempty(regexp(SourcePath,'^http')) |
|---|
| 157 | SourcePath=pwd; |
|---|
| 158 | SourcePath=regexprep(SourcePath,'^\/.fsnet','/fsnet'); |
|---|
| 159 | end |
|---|
| 160 | |
|---|
| 161 | |
|---|
| 162 | ProjectList=get(handles.ListExperiments,'String'); |
|---|
| 163 | ProjectName=ProjectList{get(handles.ListExperiments,'Value')}; |
|---|
| 164 | ProjectName=regexprep(ProjectName,'^\+/',''); |
|---|
| 165 | if strcmp(get(handles.MirrorDir,'Visible'),'on') |
|---|
| 166 | MirrorDir=get(handles.MirrorDir,'String');% name of the mirror folder |
|---|
| 167 | else% create the mirror folder if it does not exist |
|---|
| 168 | MirrorRoot=uigetfile_uvmat('select the folder which must contain the mirror directory:',SourcePath,'uigetdir'); |
|---|
| 169 | if isempty(MirrorRoot) |
|---|
| 170 | return |
|---|
| 171 | elseif strcmp(MirrorRoot,SourcePath) |
|---|
| 172 | msgbox_uvmat('ERROR','The mirror folder must be different from the source') |
|---|
| 173 | return |
|---|
| 174 | else |
|---|
| 175 | MirrorDir=fullfile(MirrorRoot,ProjectName); |
|---|
| 176 | end |
|---|
| 177 | if exist(MirrorDir,'dir') |
|---|
| 178 | msgbox_uvmat('ERROR',['The folder ' MirrorDir ' chosen as new mirror campaign already exists']) |
|---|
| 179 | return |
|---|
| 180 | else |
|---|
| 181 | [s,errormsg]=mkdir(MirrorDir);% create the mirror dir |
|---|
| 182 | if s~=1 |
|---|
| 183 | msgbox_uvmat('ERROR',['error in creating ' MirrorDir ': ' errormsg]) |
|---|
| 184 | return |
|---|
| 185 | end |
|---|
| 186 | end |
|---|
| 187 | SourceDir=fullfile(SourcePath,ProjectName); |
|---|
| 188 | MirrorDoc.SourceDir=SourceDir; |
|---|
| 189 | t=struct2xml(MirrorDoc); |
|---|
| 190 | set(t,1,'name','DataTree'); |
|---|
| 191 | save(t,fullfile(MirrorDir,[ProjectName '.xml']))% create an xml file in the mirror folder to indicate its source folder |
|---|
| 192 | set(handles.MirrorDir,'String',MirrorDir) |
|---|
| 193 | set(handles.MirrorDir,'Visible','on') |
|---|
| 194 | set(handles.CreateMirror,'String','update_mirror') |
|---|
| 195 | end |
|---|
| 196 | ExpName={''}; |
|---|
| 197 | |
|---|
| 198 | %% update the mirror from the source dir |
|---|
| 199 | if exist(SourceDir,'dir') |
|---|
| 200 | hdir=dir(SourceDir); %list files and dirs |
|---|
| 201 | idir=0; |
|---|
| 202 | for ilist=1:length(hdir) |
|---|
| 203 | if hdir(ilist).isdir% scan all subfolders |
|---|
| 204 | dirname=hdir(ilist).name;% |
|---|
| 205 | if ~isequal(dirname(1),'.')&&~isequal(dirname(1),'0')%skip subfolder beginning by '0' |
|---|
| 206 | idir=idir+1; |
|---|
| 207 | mirror=fullfile(MirrorDir,hdir(ilist).name);% corresponding name in the mirror |
|---|
| 208 | if ~exist(mirror,'dir') |
|---|
| 209 | mkdir(mirror)% create the mirror folder if it does not exist |
|---|
| 210 | end |
|---|
| 211 | ExpName{idir}=['+/' hdir(ilist).name];% insert '+/' in the list to show that it is a folder |
|---|
| 212 | end |
|---|
| 213 | % look for the list of 'devices' |
|---|
| 214 | else |
|---|
| 215 | %warning for isolated files |
|---|
| 216 | end |
|---|
| 217 | end |
|---|
| 218 | set(handles.ListExperiments,'String',[{'*'};ExpName']) |
|---|
| 219 | set(handles.ListExperiments,'Value',1) |
|---|
| 220 | update_experiments(handles,[{'*'};ExpName'],SourceDir,MirrorDir) |
|---|
| 221 | % ListExperiments_Callback(hObject, eventdata, handles) % list the content of the experiment |
|---|
| 222 | else |
|---|
| 223 | msgbox_uvmat('ERROR',['The input ' SourceDir ' is not a directory']) |
|---|
| 224 | end |
|---|
| 225 | set(handles.SourceDir,'BackgroundColor',[1 1 1]) |
|---|
| 226 | |
|---|
| 227 | %------------------------------------------------------------------------ |
|---|
| 228 | % List the experiments in a campaign, filling the menu ListExperiments |
|---|
| 229 | %------------------------------------------------------------------------ |
|---|
| 230 | function errormsg=scan_campaign(handles,SourceDir,Experiment) |
|---|
| 231 | %------------------------------------------------------------------------ |
|---|
| 232 | errormsg=''; |
|---|
| 233 | if ~isempty(regexp(SourceDir,'^http'))|| exist(SourceDir,'dir') |
|---|
| 234 | ListStruct=dir_uvmat(SourceDir); %list files and dirs, extende to OpenDAP case |
|---|
| 235 | if numel(ListStruct)>1000% A campaign folder must contain maily a list of 'experiment' sub-folders |
|---|
| 236 | errormsg=[SourceDir ' contains too many items (>1000) to be a Project folder']; |
|---|
| 237 | return |
|---|
| 238 | end |
|---|
| 239 | [ListFiles,index]=list_dir_1(SourceDir,Experiment); |
|---|
| 240 | set(handles.ListExperiments,'String',ListFiles) |
|---|
| 241 | set(handles.ListExperiments,'Value',index)% initialise the menu selection with the folder defined by the input |
|---|
| 242 | ListExperiments_Callback([],[], handles) |
|---|
| 243 | else |
|---|
| 244 | msgbox_uvmat('ERROR',['The input ' Campaign ' is not a directory']) |
|---|
| 245 | end |
|---|
| 246 | |
|---|
| 247 | %------------------------------------------------------------------------ |
|---|
| 248 | % --- Executes on selection change in ListExperiments. |
|---|
| 249 | %------------------------------------------------------------------------ |
|---|
| 250 | function ListExperiments_Callback(hObject, eventdata, handles) |
|---|
| 251 | |
|---|
| 252 | if strcmp(get(handles.MirrorDir,'Visible'),'on') |
|---|
| 253 | SourceDir=get(handles.MirrorDir,'String'); |
|---|
| 254 | else |
|---|
| 255 | SourceDir=get(handles.SourceDir,'String'); |
|---|
| 256 | end |
|---|
| 257 | ListExperiments=get(handles.ListExperiments,'String'); |
|---|
| 258 | list_val=get(handles.ListExperiments,'Value'); |
|---|
| 259 | ListExperiments=ListExperiments(list_val);%choose the selected experiments |
|---|
| 260 | ListDevices=get(handles.ListDevices,'String');% list of devices |
|---|
| 261 | list_val=get(handles.ListDevices,'Value');% currently selected devices |
|---|
| 262 | Device=''; |
|---|
| 263 | if numel(ListDevices)>=list_val |
|---|
| 264 | Device=ListDevices(list_val);%choose selected devices |
|---|
| 265 | end |
|---|
| 266 | check_fix=strcmp(get(handles.ListDevices,'enable'),'off'); |
|---|
| 267 | [ListFiles,indices]=list_dir_2(SourceDir,ListExperiments,Device,check_fix); |
|---|
| 268 | set(handles.ListDevices,'String',ListFiles) |
|---|
| 269 | set(handles.ListDevices,'Value',indices)% initialise the menu selection with the folder defined by the input |
|---|
| 270 | ListDevices_Callback([],[], handles) |
|---|
| 271 | |
|---|
| 272 | %------------------------------------------------------------------------ |
|---|
| 273 | % --- Executes on selection change in ListExperiments. |
|---|
| 274 | %------------------------------------------------------------------------ |
|---|
| 275 | function ListDevices_Callback(hObject, eventdata, handles) |
|---|
| 276 | |
|---|
| 277 | ListDevices=get(handles.ListDevices,'String');% list of devices |
|---|
| 278 | list_val=get(handles.ListDevices,'Value');% currently selected devices |
|---|
| 279 | ListDevices=ListDevices(list_val);%choose selected devices |
|---|
| 280 | if strcmp(get(handles.MirrorDir,'Visible'),'on') |
|---|
| 281 | SourceDir=get(handles.MirrorDir,'String'); |
|---|
| 282 | else |
|---|
| 283 | SourceDir=get(handles.SourceDir,'String'); |
|---|
| 284 | end |
|---|
| 285 | ListExperiments=get(handles.ListExperiments,'String'); |
|---|
| 286 | list_val=get(handles.ListExperiments,'Value'); |
|---|
| 287 | ListExperiments=ListExperiments(list_val);%choose the selected experiments |
|---|
| 288 | |
|---|
| 289 | DataSeries=get(handles.DataSeries,'String'); |
|---|
| 290 | list_val=get(handles.DataSeries,'Value'); |
|---|
| 291 | if numel(DataSeries)>=list_val |
|---|
| 292 | DataSeries=DataSeries(list_val); |
|---|
| 293 | else |
|---|
| 294 | DataSeries=[]; |
|---|
| 295 | end |
|---|
| 296 | check_fix=strcmp(get(handles.DataSeries,'enable'),'off'); |
|---|
| 297 | [ListFiles,indices]=list_dir_3(SourceDir,ListExperiments,ListDevices,DataSeries,check_fix); |
|---|
| 298 | set(handles.DataSeries,'String',ListFiles) |
|---|
| 299 | set(handles.DataSeries,'Value',indices)% initialise the menu selection with the folder defined by the input |
|---|
| 300 | |
|---|
| 301 | %------------------------------------------------------------------------ |
|---|
| 302 | % --- List the DataSeries when a set of experiments is selected |
|---|
| 303 | %------------------------------------------------------------------------ |
|---|
| 304 | % function list_dataseries(handles,ListExperiments,MirrorPath) |
|---|
| 305 | % |
|---|
| 306 | % DataSeries={}; |
|---|
| 307 | % for iexp=1:numel(ListExperiments) |
|---|
| 308 | % if strcmp(ListExperiments{iexp}(1),'+')% if the item is a directory |
|---|
| 309 | % ListExperiments{iexp}(1)=[];%remove the first char '+' used to mark folders |
|---|
| 310 | % ListStruct=dir(fullfile(MirrorPath,ListExperiments{iexp})); %list files and dir in the source experiment directory |
|---|
| 311 | % ListCells=struct2cell(ListStruct);%transform dir struct to a cell arrray |
|---|
| 312 | % ListFiles=ListCells(1,:);%list of dir and file names |
|---|
| 313 | % cell_remove=regexp(ListFiles,'^(-|\.|\+/\.)');% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 314 | % cell_remove_tild=regexp(ListFiles,'~$');% detect tild the end of file nqme (do not list) |
|---|
| 315 | % check_keep=cellfun('isempty', cell_remove) & cellfun('isempty', cell_remove_tild); |
|---|
| 316 | % check_dir=cell2mat(ListCells(4,:));% =1 for directories, =0 for files |
|---|
| 317 | % for ilist=1:numel(ListFiles) |
|---|
| 318 | % if check_keep(ilist)% loop on eligible DataSeries folders |
|---|
| 319 | % mirror=fullfile(MirrorPath,ListExperiments{iexp},ListFiles{ilist});%source folder |
|---|
| 320 | % if ~exist(mirror,'file') && ~exist(mirror,'dir')% if the name is a broken link |
|---|
| 321 | % delete(mirror)% delete broken link |
|---|
| 322 | % else %update the list of dataSeries |
|---|
| 323 | % [tild,msg]=fileattrib(mirror); |
|---|
| 324 | % if check_dir(ilist) |
|---|
| 325 | % ListFiles{ilist}=['+/' ListFiles{ilist}];%mark dir by '+' in the list |
|---|
| 326 | % end |
|---|
| 327 | % if isempty(find(strcmp(ListFiles{ilist},DataSeries), 1))% if the item is not already in DataSeries |
|---|
| 328 | % DataSeries=[DataSeries;ListFiles{ilist}]; %append the item to the list |
|---|
| 329 | % end |
|---|
| 330 | % end |
|---|
| 331 | % end |
|---|
| 332 | % end |
|---|
| 333 | % end |
|---|
| 334 | % end |
|---|
| 335 | % if get(handles.CheckDevices,'Value') |
|---|
| 336 | % set(handles.ListDevices,'Value',1) |
|---|
| 337 | % set(handles.ListDevices,'String',sort(DataSeries)) |
|---|
| 338 | % CheckDevices_Callback([],[], handles) |
|---|
| 339 | % else |
|---|
| 340 | % set(handles.DataSeries,'Value',1) |
|---|
| 341 | % set(handles.DataSeries,'String',sort(DataSeries)) |
|---|
| 342 | % end |
|---|
| 343 | |
|---|
| 344 | %------------------------------------------------------------------------ |
|---|
| 345 | % Provide a list to display |
|---|
| 346 | %------------------------------------------------------------------------ |
|---|
| 347 | function [ListFiles,indices]=list_dir_1(SourceDir,ListSub) |
|---|
| 348 | |
|---|
| 349 | ListStruct=dir_uvmat(SourceDir); %list files and dirs, extende to OpenDAP case |
|---|
| 350 | ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray |
|---|
| 351 | ListFiles=ListCells(1,:); |
|---|
| 352 | index_isdir=find(strcmp('isdir',fieldnames(ListStruct))); |
|---|
| 353 | check_dir=cell2mat(ListCells(index_isdir,:));% =1 for directories, =0 for files |
|---|
| 354 | ListFiles(check_dir)=regexprep(ListFiles(check_dir),'^.+','+/$0');% put '+/' in front of dir name display |
|---|
| 355 | cell_remove=regexp(ListFiles,'^(-|\.|\+/\.)');% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 356 | check_keep=cellfun('isempty', cell_remove); |
|---|
| 357 | ListFiles=sort((ListFiles(check_keep))'); |
|---|
| 358 | |
|---|
| 359 | if ischar(ListSub) |
|---|
| 360 | indices=find(strcmp(ListSub,ListFiles)); |
|---|
| 361 | else |
|---|
| 362 | indices=[]; |
|---|
| 363 | for ilist=1:numel(ListSub) |
|---|
| 364 | index=find(strcmp(ListSub{ilist},ListFiles)); |
|---|
| 365 | indices=[indices index]; |
|---|
| 366 | end |
|---|
| 367 | end |
|---|
| 368 | if isempty(indices), indices=1; end |
|---|
| 369 | |
|---|
| 370 | %------------------------------------------------------------------------ |
|---|
| 371 | % Provide a list to display |
|---|
| 372 | %------------------------------------------------------------------------ |
|---|
| 373 | function [ListFilesTot,indices]=list_dir_2(SourceDir,ListDir,ListSub,check_fix) |
|---|
| 374 | ListFilesTot={}; |
|---|
| 375 | for ilist=1:numel(ListDir) |
|---|
| 376 | if ~isempty(regexp(ListDir{ilist},'^\+/')) |
|---|
| 377 | ListDir{ilist}=regexprep(ListDir{ilist},'^\+/',''); |
|---|
| 378 | ListStruct=dir_uvmat(fullfile(SourceDir,ListDir{ilist})); %list files and dirs, extende to OpenDAP case |
|---|
| 379 | ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray |
|---|
| 380 | ListFiles=ListCells(1,:); |
|---|
| 381 | index_isdir=find(strcmp('isdir',fieldnames(ListStruct))); |
|---|
| 382 | check_dir=cell2mat(ListCells(index_isdir,:));% =1 for directories, =0 for files |
|---|
| 383 | ListFiles(check_dir)=regexprep(ListFiles(check_dir),'^.+','+/$0');% put '+/' in front of dir name display |
|---|
| 384 | cell_remove=regexp(ListFiles,'^(-|\.|\+/\.)');% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 385 | check_keep=cellfun('isempty', cell_remove); |
|---|
| 386 | ListFilesTot=[ListFilesTot (ListFiles(check_keep))]; |
|---|
| 387 | end |
|---|
| 388 | end |
|---|
| 389 | ListFilesTot=unique(ListFilesTot); |
|---|
| 390 | if ischar(ListSub) |
|---|
| 391 | indices=find(strcmp(ListSub,ListFilesTot)); |
|---|
| 392 | else |
|---|
| 393 | indices=[]; |
|---|
| 394 | for ilist=1:numel(ListSub) |
|---|
| 395 | index=find(strcmp(ListSub{ilist},ListFilesTot)); |
|---|
| 396 | indices=[indices index]; |
|---|
| 397 | end |
|---|
| 398 | if check_fix |
|---|
| 399 | index_init=1:numel(ListFilesTot); |
|---|
| 400 | %indices=sort(indices) |
|---|
| 401 | index_init(indices)=[]; |
|---|
| 402 | ListFilesTot=ListFilesTot([indices index_init]); |
|---|
| 403 | indices=1:numel(indices); |
|---|
| 404 | end |
|---|
| 405 | end |
|---|
| 406 | if isempty(indices), indices=1; end |
|---|
| 407 | |
|---|
| 408 | |
|---|
| 409 | %------------------------------------------------------------------------ |
|---|
| 410 | % Provide the list (ListFilesTot) to display in DataSeries with the selected indices |
|---|
| 411 | %------------------------------------------------------------------------ |
|---|
| 412 | function [ListFilesTot,indices]=list_dir_3(SourceDir,ListDir,ListSub,ListSubSub,check_fix) |
|---|
| 413 | % INPUT: |
|---|
| 414 | %SourceDir: path to the displayed directories |
|---|
| 415 | %ListDir: list of file and folder names under SourceDir (column 'Experiments') |
|---|
| 416 | %ListSub: list of file and folder in the second column 'Devices') |
|---|
| 417 | %ListSubSub: prvious list of file and folder in the third column 'DataSeries', used to mark the selected indices |
|---|
| 418 | ListFilesTot={}; |
|---|
| 419 | for ilist=1:numel(ListDir) |
|---|
| 420 | if ~isempty(regexp(ListDir{ilist},'^\+/')) |
|---|
| 421 | ListDir{ilist}=regexprep(ListDir{ilist},'^\+/',''); |
|---|
| 422 | for isub=1:numel(ListSub) |
|---|
| 423 | if ~isempty(regexp(ListSub{isub},'^\+/')) |
|---|
| 424 | ListSub{isub}=regexprep(ListSub{isub},'^\+/',''); |
|---|
| 425 | ListStruct=dir_uvmat(fullfile(SourceDir,ListDir{ilist},ListSub{isub})); %list files and dirs, extende to OpenDAP case |
|---|
| 426 | ListCells=struct2cell(ListStruct);% transform dir struct to a cell arrray |
|---|
| 427 | ListFiles=ListCells(1,:); |
|---|
| 428 | check_xml=~cellfun('isempty',regexp(ListFiles,'\.xml$'));% detect xml files |
|---|
| 429 | check_tild=~cellfun('isempty',regexp(ListFiles,'~$'));% detect ~ files |
|---|
| 430 | index_isdir=find(strcmp('isdir',fieldnames(ListStruct))); |
|---|
| 431 | check_dir=cell2mat(ListCells(index_isdir,:));% =1 for directories, =0 for files |
|---|
| 432 | nbfiles=numel(find(~check_xml & ~check_dir & ~check_tild));% number of non xml files |
|---|
| 433 | check_dir=check_dir & cellfun('isempty', regexp(ListFiles,'^(-|\.|\+/\.)'));% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 434 | ListFiles(check_dir)=regexprep(ListFiles(check_dir),'^.+','+/$0');% put '+/' in front of dir name display |
|---|
| 435 | %cell_remove=regexp(ListFiles,'^(-|\.|\+/\.)');% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 436 | ListFiles=ListFiles(check_dir | check_xml); |
|---|
| 437 | ListFilesTot=[ListFilesTot ListFiles]; |
|---|
| 438 | if nbfiles>0 |
|---|
| 439 | ListFilesTot=[ListFilesTot {[num2str(nbfiles) ' files']}]; |
|---|
| 440 | end |
|---|
| 441 | end |
|---|
| 442 | end |
|---|
| 443 | end |
|---|
| 444 | end |
|---|
| 445 | ListFilesTot=unique(ListFilesTot); |
|---|
| 446 | if ischar(ListSubSub) |
|---|
| 447 | indices=find(strcmp(ListSubSub,ListFilesTot)); |
|---|
| 448 | else |
|---|
| 449 | indices=[]; |
|---|
| 450 | for ilist=1:numel(ListSubSub) |
|---|
| 451 | index=find(strcmp(ListSubSub{ilist},ListFilesTot)); |
|---|
| 452 | if check_fix && isempty(index) |
|---|
| 453 | ListFilesTot=[ListFilesTot {['---' ListSubSub{ilist}]}]; |
|---|
| 454 | index=numel(ListFilesTot); |
|---|
| 455 | end |
|---|
| 456 | indices=[indices index]; |
|---|
| 457 | end |
|---|
| 458 | if check_fix |
|---|
| 459 | index_init=1:numel(ListFilesTot); |
|---|
| 460 | index_init(indices)=[]; |
|---|
| 461 | ListFilesTot=ListFilesTot([indices index_init]); |
|---|
| 462 | indices=1:numel(indices); |
|---|
| 463 | end |
|---|
| 464 | end |
|---|
| 465 | if isempty(indices), indices=1; end |
|---|
| 466 | |
|---|
| 467 | |
|---|
| 468 | %------------------------------------------------------------------------ |
|---|
| 469 | % --- Executes when the mirror is created or updated |
|---|
| 470 | %------------------------------------------------------------------------ |
|---|
| 471 | function update_experiments(handles,ListExperiments,CampaignPath,MirrorPath) |
|---|
| 472 | |
|---|
| 473 | DataSeries={}; |
|---|
| 474 | for iexp=1:numel(ListExperiments) |
|---|
| 475 | if strcmp(ListExperiments{iexp}(1),'+')% if the item is a directory |
|---|
| 476 | ListExperiments{iexp}(1)=[]; |
|---|
| 477 | ListStruct=dir(fullfile(CampaignPath,ListExperiments{iexp})); %list files and dir in the source experiment directory |
|---|
| 478 | ListCells=struct2cell(ListStruct);%transform dir struct to a cell arrray |
|---|
| 479 | ListFiles=ListCells(1,:);%list of dir and file names |
|---|
| 480 | cell_remove=regexp(ListFiles,'^((-|\.|\+/\.))');% detect strings beginning by '-' ,'.' or '+/.'(dir beginning by . ) |
|---|
| 481 | check_keep=cellfun('isempty', cell_remove); |
|---|
| 482 | index_isdir=find(strcmp('isdir',fieldnames(ListStruct))); |
|---|
| 483 | check_dir=cell2mat(ListCells(index_isdir,:));% =1 for directories, =0 for files |
|---|
| 484 | for ilist=1:numel(ListFiles) |
|---|
| 485 | if check_keep(ilist)% loop on eligible DataSeries folders |
|---|
| 486 | DataSeries=fullfile(CampaignPath,ListExperiments{iexp},ListFiles{ilist});%source folder |
|---|
| 487 | if ~isempty(MirrorPath) |
|---|
| 488 | mirror=fullfile(MirrorPath,ListExperiments{iexp},ListFiles{ilist}); |
|---|
| 489 | if exist(mirror,'file')% if mirror already exists as a file or folder |
|---|
| 490 | [tild,msg]=fileattrib(mirror); |
|---|
| 491 | if strcmp(msg.Name,mirror)%if the mirror name already exists as a local file or dir |
|---|
| 492 | if msg.directory% case of a folder |
|---|
| 493 | answer=msgbox_uvmat('INPUT_Y-N',['replace local folder ' msg.Name ' by a link to the source dir']); |
|---|
| 494 | if strcmp(answer,'Yes') |
|---|
| 495 | [ss,msg]=rmdir(mirror); |
|---|
| 496 | if ss==1 |
|---|
| 497 | system(['ln -s ' DataSeries ' ' mirror]); % create the link to the source folder |
|---|
| 498 | else |
|---|
| 499 | msgbox_uvmat('ERROR',['enable to delete local folder: ' msg]); |
|---|
| 500 | end |
|---|
| 501 | end |
|---|
| 502 | else % case of an existing mirror file |
|---|
| 503 | answer=msgbox_uvmat('INPUT_Y-N',['replace local file ' msg.Name ' by a link to the source file']); |
|---|
| 504 | if strcmp(answer,'Yes') |
|---|
| 505 | delete(mirror); |
|---|
| 506 | system(['ln -s ' DataSeries ' ' mirror]); % create the link to the source folder |
|---|
| 507 | end |
|---|
| 508 | end |
|---|
| 509 | end |
|---|
| 510 | else% create mirror to the data series if needed |
|---|
| 511 | system(['ln -s ' DataSeries ' ' mirror]); % create the link to the source folder |
|---|
| 512 | end |
|---|
| 513 | if isempty(find(strcmp(ListFiles{ilist},DataSeries), 1))% if the item is not already in DataSeries |
|---|
| 514 | if check_dir(ilist) |
|---|
| 515 | ListFiles{ilist}=['+/' ListFiles{ilist}];%mark dir by '+' in the list |
|---|
| 516 | end |
|---|
| 517 | DataSeries=[DataSeries;ListFiles{ilist}]; %append the item to the list |
|---|
| 518 | end |
|---|
| 519 | end |
|---|
| 520 | end |
|---|
| 521 | end |
|---|
| 522 | end |
|---|
| 523 | end |
|---|
| 524 | set(handles.DataSeries,'String',sort(DataSeries)) |
|---|
| 525 | |
|---|
| 526 | %------------------------------------------------------------------------ |
|---|
| 527 | % --- Executes on button press in CampaignDoc. |
|---|
| 528 | function CampaignDoc_Callback(hObject, eventdata, handles) |
|---|
| 529 | %------------------------------------------------------------------------ |
|---|
| 530 | answer=msgbox_uvmat('INPUT_Y-N','This function will update the global xml rpresentation of the data set and the Heading of each xml file'); |
|---|
| 531 | if ~isequal(answer{1},'OK') |
|---|
| 532 | return |
|---|
| 533 | end |
|---|
| 534 | set(handles.ListExperiments,'Value',1) |
|---|
| 535 | ListExperiments_Callback(hObject, eventdata, handles)%update the overview of the experiment directories |
|---|
| 536 | DataviewData=get(handles.browse_data,'UserData'); |
|---|
| 537 | List=DataviewData.List; |
|---|
| 538 | Currentpath=get(handles.SourceDir,'String'); |
|---|
| 539 | [Currentpath,Campaign,DirExt]=fileparts(Currentpath); |
|---|
| 540 | Campaign=[Campaign DirExt]; |
|---|
| 541 | t=xmltree; |
|---|
| 542 | t=set(t,1,'name','CampaignDoc'); |
|---|
| 543 | t = attributes(t,'add',1,'source','directory'); |
|---|
| 544 | SubCampaignTest=get(handles.SubCampaignTest,'Value'); |
|---|
| 545 | root_uid=1; |
|---|
| 546 | if SubCampaignTest |
|---|
| 547 | %TO DO open an exoiting xml doc |
|---|
| 548 | [t,root_uid]=add(t,1,'element','SubCampaign'); |
|---|
| 549 | t =attributes(t,'add',root_uid,'DirName',Campaign); |
|---|
| 550 | end |
|---|
| 551 | for iexp=1:length(List.Experiment) |
|---|
| 552 | set(handles.ListExperiments,'Value',iexp+1) |
|---|
| 553 | drawnow |
|---|
| 554 | test_mod=0; |
|---|
| 555 | [t,uid_exp]=add(t,root_uid,'element','Experiment'); |
|---|
| 556 | t = attributes(t,'add',uid_exp,'i',num2str(iexp)); |
|---|
| 557 | ExpName=List.Experiment{iexp}.name; |
|---|
| 558 | t = attributes(t,'add',uid_exp,'DirName',List.Experiment{iexp}.name); |
|---|
| 559 | |
|---|
| 560 | if isfield(List.Experiment{iexp},'Device') |
|---|
| 561 | for idevice=1:length(List.Experiment{iexp}.Device) |
|---|
| 562 | [t,uid_device]=add(t,uid_exp,'element','Device'); |
|---|
| 563 | DeviceName=List.Experiment{iexp}.Device{idevice}.name; |
|---|
| 564 | t = attributes(t,'add',uid_device,'DirName',List.Experiment{iexp}.Device{idevice}.name); |
|---|
| 565 | if isfield(List.Experiment{iexp}.Device{idevice},'xmlfile') |
|---|
| 566 | for ixml=1:length(List.Experiment{iexp}.Device{idevice}.xmlfile) |
|---|
| 567 | FileName=List.Experiment{iexp}.Device{idevice}.xmlfile{ixml}; |
|---|
| 568 | [Title,test]=check_heading(Currentpath,Campaign,ExpName,DeviceName,[],FileName,SubCampaignTest); |
|---|
| 569 | if test |
|---|
| 570 | disp([List.Experiment{iexp}.Device{idevice}.xmlfile{ixml} ' , Heading updated']) |
|---|
| 571 | end |
|---|
| 572 | if isequal(Title,'ImaDoc') |
|---|
| 573 | [t,uid_xml]=add(t,uid_device,'element','ImaDoc'); |
|---|
| 574 | t = attributes(t,'add',uid_xml,'source','file'); |
|---|
| 575 | [t]=add(t,uid_xml,'chardata',List.Experiment{iexp}.Device{idevice}.xmlfile{ixml}); |
|---|
| 576 | end |
|---|
| 577 | end |
|---|
| 578 | elseif isfield(List.Experiment{iexp}.Device{idevice},'Record') |
|---|
| 579 | for irecord=1:length(List.Experiment{iexp}.Device{idevice}.Record) |
|---|
| 580 | RecordName=List.Experiment{iexp}.Device{idevice}.Record{irecord}.name; |
|---|
| 581 | [t,uid_record]=add(t,uid_device,'element','Record'); |
|---|
| 582 | t = attributes(t,'add',uid_record,'DirName',RecordName); |
|---|
| 583 | if isfield(List.Experiment{iexp}.Device{idevice}.Record{irecord},'xmlfile') |
|---|
| 584 | for ixml=1:length(List.Experiment{iexp}.Device{idevice}.Record{irecord}.xmlfile) |
|---|
| 585 | FileName=List.Experiment{iexp}.Device{idevice}.Record{irecord}.xmlfile{ixml}; |
|---|
| 586 | [Title,test]=check_heading(Currentpath,Campaign,ExpName,DeviceName,RecordName,FileName,SubCampaignTest); |
|---|
| 587 | if test |
|---|
| 588 | disp([FileName ' , Heading updated']) |
|---|
| 589 | end |
|---|
| 590 | [t,uid_xml]=add(t,uid_record,'element','ImaDoc'); |
|---|
| 591 | t = attributes(t,'add',uid_xml,'source','file'); |
|---|
| 592 | [t]=add(t,uid_xml,'chardata',FileName); |
|---|
| 593 | end |
|---|
| 594 | end |
|---|
| 595 | end |
|---|
| 596 | end |
|---|
| 597 | end |
|---|
| 598 | end |
|---|
| 599 | end |
|---|
| 600 | set(handles.ListExperiments,'Value',1) |
|---|
| 601 | outputdir=get(handles.SourceDir,'String'); |
|---|
| 602 | [path,dirname]=fileparts(outputdir); |
|---|
| 603 | outputfile=fullfile(outputdir,[dirname '.xml']); |
|---|
| 604 | %campaigndoc(t); |
|---|
| 605 | save(t,outputfile) |
|---|
| 606 | |
|---|
| 607 | |
|---|
| 608 | |
|---|
| 609 | % %------------------------------------------------------------------------ |
|---|
| 610 | % % --- Executes on button press in OK. |
|---|
| 611 | % %------------------------------------------------------------------------ |
|---|
| 612 | % function OK_Callback(hObject, eventdata, handles) |
|---|
| 613 | % |
|---|
| 614 | % if strcmp(get(handles.MirrorDir,'Visible'),'on') |
|---|
| 615 | % Campaign=get(handles.MirrorDir,'String'); |
|---|
| 616 | % else |
|---|
| 617 | % Campaign=get(handles.SourceDir,'String'); |
|---|
| 618 | % end |
|---|
| 619 | % handles.output=[]; |
|---|
| 620 | % handles.output.Campaign=Campaign; |
|---|
| 621 | % Experiment=get(handles.ListExperiments,'String'); |
|---|
| 622 | % IndicesExp=get(handles.ListExperiments,'Value'); |
|---|
| 623 | % if ~isequal(IndicesExp,1)% if first element ('*') selected all the experiments are selected |
|---|
| 624 | % Experiment=Experiment(IndicesExp);% use the selection of the list of experiments |
|---|
| 625 | % end |
|---|
| 626 | % Experiment=regexprep(Experiment,'^\+/','');% remove the +/ used to mark dir |
|---|
| 627 | % Device=get(handles.DataSeries,'String'); |
|---|
| 628 | % Value=get(handles.DataSeries,'Value'); |
|---|
| 629 | % Device=Device(Value); |
|---|
| 630 | % Device=regexprep(Device,'^\+/','');% remove the +/ used to mark dir |
|---|
| 631 | % Device=regexprep(Device,'^~','');% remove the ~ used to mark symbolic link |
|---|
| 632 | % handles.output.Experiment=Experiment; |
|---|
| 633 | % handles.output.DataSeries=Device; |
|---|
| 634 | % guidata(hObject, handles);% Update handles structure |
|---|
| 635 | % uiresume(handles.browse_data); |
|---|
| 636 | % drawnow |
|---|
| 637 | |
|---|
| 638 | %------------------------------------------------------------------------ |
|---|
| 639 | % --- Executes on button press in HELP. |
|---|
| 640 | function HELP_Callback(hObject, eventdata, handles) |
|---|
| 641 | path_to_uvmat=which ('uvmat');% check the path of uvmat |
|---|
| 642 | pathelp=fileparts(path_to_uvmat); |
|---|
| 643 | helpfile=fullfile(pathelp,'UVMAT_DOC','uvmat_doc.html'); |
|---|
| 644 | if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the directory UVMAT/UVMAT_DOC') |
|---|
| 645 | else |
|---|
| 646 | web([helpfile '#dataview']) |
|---|
| 647 | end |
|---|
| 648 | |
|---|
| 649 | %------------------------------------------------------------------------ |
|---|
| 650 | % --- Executes when user attempts to close browse_data. |
|---|
| 651 | %------------------------------------------------------------------------ |
|---|
| 652 | function closefcn(gcbo, eventdata) |
|---|
| 653 | |
|---|
| 654 | hseries=findobj(allchild(0),'Tag','series'); |
|---|
| 655 | if ~isempty(hseries) |
|---|
| 656 | hreplicate=findobj(hseries,'Tag','Replicate'); |
|---|
| 657 | set(hreplicate,'Value',0) |
|---|
| 658 | end |
|---|
| 659 | hcalib=findobj(allchild(0),'Tag','geometry_calib'); |
|---|
| 660 | if ~isempty(hcalib) |
|---|
| 661 | hreplicate=findobj(hcalib,'Tag','Replicate'); |
|---|
| 662 | set(hreplicate,'Value',0) |
|---|
| 663 | end |
|---|
| 664 | |
|---|
| 665 | % %------------------------------------------------------------------------ |
|---|
| 666 | % % --- Executes on key press over figure1 with no controls selected. |
|---|
| 667 | % %------------------------------------------------------------------------ |
|---|
| 668 | % function browse_data_KeyPressFcn(hObject, eventdata, handles) |
|---|
| 669 | |
|---|
| 670 | % % Check for "enter" or "escape" |
|---|
| 671 | % if isequal(get(hObject,'CurrentKey'),'escape') |
|---|
| 672 | % % User said no by hitting escape |
|---|
| 673 | % handles.output = 'Cancel'; |
|---|
| 674 | % |
|---|
| 675 | % % Update handles structure |
|---|
| 676 | % guidata(hObject, handles); |
|---|
| 677 | % |
|---|
| 678 | % uiresume(handles.browse_data); |
|---|
| 679 | % end |
|---|
| 680 | % if isequal(get(hObject,'CurrentKey'),'return') |
|---|
| 681 | % uiresume(handles.browse_data); |
|---|
| 682 | % end |
|---|
| 683 | |
|---|
| 684 | |
|---|
| 685 | % --- Executes on button press in Up. |
|---|
| 686 | function Down_Callback(hObject, eventdata, handles) |
|---|
| 687 | SourceDir=get(handles.SourceDir,'String'); |
|---|
| 688 | ListExperiments=get(handles.ListExperiments,'String'); |
|---|
| 689 | list_val=get(handles.ListExperiments,'Value'); |
|---|
| 690 | if ischar(ListExperiments) |
|---|
| 691 | Exp=ListExperiments; |
|---|
| 692 | else |
|---|
| 693 | Exp=ListExperiments{list_val(1)}; |
|---|
| 694 | end |
|---|
| 695 | Exp=regexprep(Exp,'^\+/',''); |
|---|
| 696 | SourceDirNew=fullfile(SourceDir,Exp); |
|---|
| 697 | set(handles.SourceDir,'String',SourceDirNew);% New SourceDir |
|---|
| 698 | ListDevices=get(handles.ListDevices,'String'); |
|---|
| 699 | DeviceIndices=get(handles.ListDevices,'Value'); |
|---|
| 700 | set(handles.ListExperiments,'String',ListDevices);%replace Experiments by Devices |
|---|
| 701 | set(handles.ListExperiments,'Value',DeviceIndices);%replace Experiments by Devices |
|---|
| 702 | DataSeries=get(handles.DataSeries,'String'); |
|---|
| 703 | list_val=get(handles.DataSeries,'Value'); |
|---|
| 704 | set(handles.ListDevices,'String',DataSeries);%replace Devices by DataSeries |
|---|
| 705 | set(handles.ListDevices,'Value',list_val);%replace Devices by DataSeries |
|---|
| 706 | |
|---|
| 707 | [ListFiles,indices]=list_dir_3(SourceDirNew,ListDevices(DeviceIndices),DataSeries(list_val),[],0); |
|---|
| 708 | set(handles.DataSeries,'String',ListFiles) |
|---|
| 709 | set(handles.DataSeries,'Value',indices)% initialise the menu selection with the folder defined by the input |
|---|
| 710 | |
|---|
| 711 | |
|---|
| 712 | % --- Executes on button press in Down. |
|---|
| 713 | function Up_Callback(hObject, eventdata, handles) |
|---|
| 714 | SourceDir=get(handles.SourceDir,'String'); |
|---|
| 715 | [SourceDir,Exp]=fileparts(SourceDir); |
|---|
| 716 | set(handles.SourceDir,'String',SourceDir) |
|---|
| 717 | |
|---|
| 718 | % set(handles.ListExperiments,'Value',indices) |
|---|
| 719 | %[ListFiles,indices]=list_dir_1(SourceDir,Exp); |
|---|
| 720 | % set(handles.ListExperiments,'String',ListFiles) |
|---|
| 721 | % set(handles.ListExperiments,'Value',indices) |
|---|
| 722 | ListDevices=get(handles.ListDevices,'String'); |
|---|
| 723 | DeviceIndices=get(handles.ListDevices,'Value'); |
|---|
| 724 | set(handles.DataSeries,'String',ListDevices);%transfer list of devices to DataSeries |
|---|
| 725 | set(handles.DataSeries,'Value',DeviceIndices); |
|---|
| 726 | |
|---|
| 727 | ListExperiments=get(handles.ListExperiments,'String'); |
|---|
| 728 | ExpIndices=get(handles.ListExperiments,'Value'); |
|---|
| 729 | set(handles.ListDevices,'String',ListExperiments);%transfer list of experiments to devices |
|---|
| 730 | set(handles.ListDevices,'Value',ExpIndices); |
|---|
| 731 | |
|---|
| 732 | set(handles.ListExperiments,'String',{['+/' Exp]}) |
|---|
| 733 | set(handles.ListExperiments,'Value',1) |
|---|
| 734 | |
|---|
| 735 | % ListExperiments=get(handles.ListExperiments,'String'); |
|---|
| 736 | % list_val=get(handles.ListExperiments,'Value'); |
|---|
| 737 | % SourceFolder=regexprep(ListExperiments{list_val(1)},'+',''); |
|---|
| 738 | % set(handles.SourceDir,'String',fullfile(SourceDir,SourceFolder)) |
|---|
| 739 | % DataSeries=get(handles.DataSeries,'String'); |
|---|
| 740 | % ValueDevice=get(handles.DataSeries,'Value'); |
|---|
| 741 | % set(handles.ListExperiments,'String',DataSeries) |
|---|
| 742 | % set(handles.ListExperiments,'Value',ValueDevice) |
|---|
| 743 | ListExperiments_Callback(hObject, [], handles) |
|---|
| 744 | SourceDir_Callback(hObject, [], handles) |
|---|
| 745 | |
|---|
| 746 | |
|---|
| 747 | % --- Executes when user attempts to close browse_data. |
|---|
| 748 | function browse_data_CloseRequestFcn(hObject, eventdata, handles) |
|---|
| 749 | % hObject handle to browse_data (see GCBO) |
|---|
| 750 | % eventdata reserved - to be defined in a future version of MATLAB |
|---|
| 751 | % handles structure with handles and user data (see GUIDATA) |
|---|
| 752 | |
|---|
| 753 | % Hint: delete(hObject) closes the figure |
|---|
| 754 | delete(hObject); |
|---|