58
58
options.AdditionalFiles {mustBeText }
59
59
options.AutoDetectFiles (1 ,1 ) {mustBeNumericOrLogical } = true
60
60
end
61
+ % check for anonymous function
62
+ fs = functions(startfun );
63
+ if fs .type == " anonymous"
64
+ error(" opentelemetry:autoinstrument:AutoTrace:AnonymousFunction" , ...
65
+ " Anonymous functions are not supported." );
66
+ end
61
67
obj.StartFunction = startfun ;
62
68
startfunname = func2str(startfun );
63
- processFileInput(startfunname ); % validate startfun
69
+ startfunname = processFileInput(startfunname ); % validate startfun
64
70
if options .AutoDetectFiles
65
71
if isdeployed
66
72
% matlab.codetools.requiredFilesAndProducts is not
76
82
end
77
83
else
78
84
% only include the input file, not its dependencies
79
- files = string(which( startfunname )) ;
85
+ files = startfunname ;
80
86
end
81
87
% add extra files, this is intended for files
82
88
% matlab.codetools.requiredFilesAndProducts somehow missed
83
89
if isfield(options , " AdditionalFiles" )
84
- incfiles = string(options .AdditionalFiles );
85
- for i = 1 : numel(incfiles )
86
- incfiles(i ) = which(incfiles(i )); % get the full path
87
- processFileInput(incfiles(i )); % validate additional file
90
+ incinput = string(options .AdditionalFiles );
91
+ incfiles = [];
92
+ for i = 1 : numel(incinput )
93
+ % validate additional file
94
+ incfiles = [incfiles ; processFileOrFolderInput(incinput(i ))]; % #ok<AGROW>
88
95
end
89
96
files = union(files , incfiles );
90
97
end
94
101
95
102
% filter out excluded files
96
103
if isfield(options , " ExcludeFiles" )
97
- excfiles = string(options .ExcludeFiles );
98
- for i = 1 : numel(excfiles )
99
- excfiles(i ) = which(excfiles(i )); % get the full path
104
+ excinput = string(options .ExcludeFiles );
105
+ excfiles = [];
106
+ for i = 1 : numel(excinput )
107
+ % validate exclude file
108
+ excfiles = [excfiles ; processFileOrFolderInput(excinput(i ))]; % #ok<AGROW>
100
109
end
101
110
files = setdiff(files , excfiles );
102
111
end
@@ -155,15 +164,13 @@ function handleError(obj, ME)
155
164
end
156
165
157
166
% check input file is valid
158
- function processFileInput(f )
167
+ function f = processFileInput(f )
159
168
f = string(f ); % force into a string
160
- if startsWith(f , ' @' ) % check for anonymous function
161
- error(" opentelemetry:autoinstrument:AutoTrace:AnonymousFunction" , ...
162
- replace(f , " \" , " \\" ) + " is an anonymous function and is not supported." );
163
- end
164
169
[~ ,~ ,fext ] = fileparts(f ); % check file extension
165
170
filetype = exist(f , " file" ); % check file type
166
- if ~(filetype == 2 && ismember(fext , [" " " .m" " .mlx" ]))
171
+ if filetype == 2 && ismember(fext , [" " " .m" " .mlx" ])
172
+ f = string(which(f ));
173
+ else
167
174
if exist(f , " builtin" )
168
175
error(" opentelemetry:autoinstrument:AutoTrace:BuiltinFunction" , ...
169
176
replace(f , " \" , " \\" ) + " is a builtin function and is not supported." );
@@ -172,4 +179,20 @@ function processFileInput(f)
172
179
replace(f , " \" , " \\" ) + " is not found or is not a valid MATLAB file with a .m or .mlx extension." );
173
180
end
174
181
end
182
+ end
183
+
184
+ % check input file or folder is valid
185
+ function f = processFileOrFolderInput(f )
186
+ f = string(f ); % force into a string
187
+ if isfolder(f )
188
+ % expand the directory
189
+ mfileinfo = dir(fullfile(f , " *.m" ));
190
+ mfiles = fullfile(string({mfileinfo .folder }), string({mfileinfo .name }));
191
+ mlxfileinfo = dir(fullfile(f , " *.mlx" ));
192
+ mlxfiles = fullfile(string({mlxfileinfo .folder }), string({mlxfileinfo .name }));
193
+ f = [mfiles ; mlxfiles ];
194
+ else
195
+ % file
196
+ f = processFileInput(f );
197
+ end
175
198
end
0 commit comments