forked from fh9g12/WT_control
-
Notifications
You must be signed in to change notification settings - Fork 1
/
modify_sandbox_path.m
111 lines (95 loc) · 3.5 KB
/
modify_sandbox_path.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
function modify_sandbox_path(folders,option,ignore)
%modify_sandbox_path Add/remove sandbox folders from the MATLAB path.
%
% Original code taken from the Mathworks Toolbox Tools File Exchange code:
% https://www.mathworks.com/matlabcentral/fileexchange/60070-toolbox-tools
%
% Copyright 2016 The Mathworks, Inc.
%
% Edits by Christopher Szczyglowski, University of Bristol, 2020
% Edits by Fintan Healy, University of Bristol, 2022
% - Refactored to add option to ignore certain folders in tbx and examples
assert(isstring(folders), ['Expected the folders to be provided ', ...
'as an array of strings.']); %#ok<ISCLSTR>
option = validatestring(option, {'add', 'remove'});
if ~exist('ignore','var')
ignore = [];
else
assert(isstring(ignore), ['Expected the folders to be provided ', ...
'as an array of strings.']); %#ok<ISCLSTR>
end
%Construct full file paths
tbx_folders = ["tbx","Examples"];
package_directory = fileparts(mfilename('fullpath'));
idx = logical(ones(size(folders)));
for i = 1:length(tbx_folders)
idx = idx & ~contains(folders,tbx_folders(i),'IgnoreCase',true);
end
package_sub_directories = fullfile(package_directory, reshape(folders(idx),[],1));
%Include all subdirectories in the 'tbx' and 'Examples' folder.
sub_directories = [];
for i = 1:length(tbx_folders)
this_folder = fullfile(package_directory,tbx_folders(i));
if isfolder(this_folder)
sub_directories = [sub_directories;...
this_folder;...
get_sub_folders(fullfile(package_directory,tbx_folders(i)),ignore)];
end
end
folder_path = [package_sub_directories ; sub_directories];
% Capture path
oldPathList = path();
% Add toolbox directory to saved path
userPathList = userpath();
if isempty( userPathList )
userPathCell = cell( [0 1] );
else
userPathCell = textscan( userPathList, '%s', 'Delimiter', ';' );
userPathCell = userPathCell{:};
end
savedPathList = pathdef();
savedPathCell = textscan( savedPathList, '%s', 'Delimiter', ';' );
savedPathCell = savedPathCell{:};
savedPathCell = setdiff( savedPathCell, userPathCell, 'stable' );
switch option
case 'add'
savedPathCell = [folder_path; savedPathCell];
path_fcn = @addpath;
case 'remove'
savedPathCell = setdiff( savedPathCell, folder_path, 'stable' );
path_fcn = @rmpath;
end
path( sprintf( '%s;', userPathCell{:}, savedPathCell{:} ) )
savepath()
% Restore path plus toolbox directory
path( oldPathList )
path_fcn( sprintf( '%s;', folder_path{:} ) )
end
function folders = get_sub_folders(folderpath,ignore)
% find all files in the directory
files = dir(fullfile(folderpath,'**'));
% extract all unique folders not in a namespace convention
if strcmp(filesep,'\')
sep = ['\\'];
else
sep = filesep;
end
folders = arrayfun(@(x)string(strsplit(x.folder,[sep,'+'])),...
files,'UniformOutput',false);
folders = unique(cellfun(@(x)x(1),folders));
% remove origanal fold from results
folders = folders(~strcmp(folders,folderpath));
%remove private folders from the path
[~,folderName,~] = fileparts(folders);
idx = ~strcmp(folderName,'private');
% remove any class or package folders from path
idx = idx & ~startsWith(folderName,'@');
idx = idx & ~startsWith(folderName,'+');
% apply ignores
for i = ignore
idx = idx & ~contains(folders,strcat(filesep,i,filesep));
idx = idx & ~endsWith(folders,strcat(filesep,i));
end
% apply filter
folders = folders(idx);
end