forked from ltfat/ltfat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ltfatstop.m
86 lines (71 loc) · 2.4 KB
/
ltfatstop.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
function ltfatstop(varargin)
%LTFATSTOP Stops the LTFAT toolbox
% Usage: ltfatstop;
%
% `ltfatstop` removes all LTFAT subdirectories from the path.
%
% See also: ltfatstart
% AUTHOR : Peter L. Søndergaard, Zdenek Prusa
%% PKG_DEL: ltfatstop('notbasepath')
do_removebp = ~any(strcmpi('notbasepath',varargin));
dirlist = {};
jarsubpath = ['blockproc', filesep(), 'java', filesep(), 'blockproc.jar'];
% Old versions of Matlab does not have "mfilename('fullpath')"
pkg_folder = which(mfilename);
% Kill the function name from the path. -3 for .m and /
pkg_folder=pkg_folder(1:end-numel(mfilename)-3);
d= dir(pkg_folder);
% Take only valid directories
d= {d(arrayfun(@(dEl) dEl.isdir && ~strcmp(dEl.name(1),'.'),d))};
basedir = {filesep()};
while ~isempty(d)
for ii=1:numel(d{1})
name = d{1}(ii).name;
dtmp = dir([pkg_folder basedir{1},name]);
dtmp = dtmp(arrayfun(@(dEl) dEl.isdir && ~strcmp(dEl.name(1),'.'),dtmp));
if ~isempty(dtmp)
d{end+1} = dtmp;
basedir{end+1} = [basedir{1},name,filesep];
end
if exist([pkg_folder,basedir{1},name,filesep(),lower(name),'init.m'],'file')
dirtmp = [pkg_folder,basedir{1},name];
pathCell = regexp(path, pathsep, 'split');
if ispc % Windows is not case-sensitive
onPath = any(strcmpi(dirtmp, pathCell));
else
onPath = any(strcmp(dirtmp, pathCell));
end
% Add to the list only if it is already in path
if onPath
dirlist{end+1} = [basedir{1},name];
end
end
end
basedir(1) = [];
d(1) = [];
end
% Remove directories from the path
cellfun(@(dEl) rmpath([pkg_folder,dEl]),dirlist);
% Remove the root dir
pathCell = regexp(path, pathsep, 'split');
if ispc % Windows is not case-sensitive
onPath = any(strcmpi(pkg_folder, pathCell));
else
onPath = any(strcmp(pkg_folder, pathCell));
end
% This can actually remove user hardcoded path to LTFAT's root.
if onPath && do_removebp
rmpath(pkg_folder);
end
% Clean the classpath
if ~isempty(which('javaclasspath'))
try
jp = javaclasspath();
if any(strcmp([pkg_folder filesep() jarsubpath],jp))
javarmpath([pkg_folder, filesep(), jarsubpath]);
end
catch
% Do nothing. At this point, user is most probably aware that
% there is something wrong with the JAVA support.
end
end