-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFuncRegClass.m
423 lines (360 loc) · 14.5 KB
/
FuncRegClass.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
classdef FuncRegClass < matlab.mixin.Copyable
properties
userfuncdir
userfuncfiles
entries
type
typeNameIdx
config
logger
end
methods
% ----------------------------------------------------------------------------------
function obj = FuncRegClass(varargin)
%
% Syntax:
% obj = FuncRegClass(type);
% obj = FuncRegClass(obj2);
%
% Description:
% Generates a list of FuncRegEntryClass objects of type
% 'run', 'subj', or 'group' for any hmr* user files it finds
% in the folder <Rootdir>/FuncRegistry/UserFunctions.
% <Rootdir> is relative to the location of this file,
% FuncRegClass.m
%
% Example:
% Generate array of registry entries for all run-level users
% functions
%
% freg = FuncRegClass('run')
%
% ===> FuncRegClass with properties:
%
% userfuncdir: 'c:/jdubb/workspaces/homer3/FuncRegistry/UserFunctions/'
% userfuncfiles: {1x10 cell}
% entries: [1x10 FuncRegEntryClass]
% type: 'run'
%
% freg.entries(1)
%
% ===> FuncRegEntryClass with properties:
%
% name: 'hmrR_BandpassFilt'
% uiname: 'Bandpass_Filter'
% usageoptions: {'Bandpass_Filter' 'dod = hmrR_BandpassFilt( dod, t, hpf, lpf )' 'hmrR_BandpassFilt dod (dod,t hpf %0.3f 0.010 lpf %0.3f 0.500'}
% params: {2x2 cell}
% help: [1x1 FuncHelpClass]
%
global logger
logger = InitLogger(logger);
obj.logger = logger;
obj.entries = FuncRegEntryClass().empty();
if nargin==0
return;
end
obj.typeNameIdx = 1;
if isa(varargin{1}, 'FuncRegClass')
obj.Copy(varargin{1});
return;
end
obj.type = varargin{1};
if nargin > 1
obj.typeNameIdx = varargin{2};
end
% Get the parameter items from config file relevant to this class
obj.userfuncdir = FindUserFuncDir(obj);
obj.userfuncfiles = [];
obj.Load();
end
% ----------------------------------------------------------------------------------
function Load(obj)
heading = sprintf('Registry loading %s-level user functions:', [upper(obj.type(1)), obj.type(2:end)]);
fprintf('%s\n', heading);
files = cell(length(obj.userfuncdir),1);
for jj = 1:length(obj.userfuncdir)
expr = sprintf('%shmr%s_*.m', obj.userfuncdir{jj}, upper(obj.type(obj.typeNameIdx)));
files{jj} = dir(expr);
for iF = 1:length(files{jj})
files{jj}(iF).folder = obj.userfuncdir{jj};
end
fprintf('User functions folder %s\n', obj.userfuncdir{jj});
end
h = waitbar(0, heading);
kk = 1;
for jj = 1:length(files)
N = length(files{jj});
for ii = 1:N
if strfind(files{jj}(ii).name, '_result.m')
continue;
end
progressmsg = sprintf('Parsing %s', files{jj}(ii).name);
obj.logger.Write('%s\n', progressmsg);
waitbar_improved(kk/N, h, sprintf(progressmsg));
obj.AddEntry(files{jj}(ii).name, jj);
kk = kk+1;
end
end
close(h)
fprintf('\n');
end
% -------------------------------------------------------------------------------
function err = AddEntry(obj, funcname, jj)
err = 0;
if nargin<3
jj = 1;
end
idx = obj.GetIdx(funcname);
if ~isempty(idx)
q = menu('Function entry already exists in registry. Do you want to reload it?', 'YES','NO');
if q==2
return;
end
end
tmp = FuncRegEntryClass(funcname);
if tmp.IsValid()
idx = length(obj.entries)+1;
obj.entries(idx) = FuncRegEntryClass(tmp);
obj.userfuncfiles{idx} = [obj.userfuncdir{jj}, funcname];
else
fprintf(' Discarding %s. Function is not valid registry entry.\n', tmp.name)
end
end
% -------------------------------------------------------------------------------
function err = ReloadEntry(obj, funcname)
err = 0;
idx = obj.GetIdx(funcname);
obj.entries(idx) = FuncRegEntryClass(funcname);
end
% ----------------------------------------------------------------------------------
function Copy(obj, obj2)
obj.userfuncdir = obj2.userfuncdir;
obj.userfuncfiles = obj2.userfuncfiles;
obj.type = obj2.type;
obj.config = obj2.config;
for ii=1:length(obj2.entries)
obj.entries(ii) = FuncRegEntryClass(obj2.entries(ii));
end
end
% ----------------------------------------------------------------------------------
function b = IsEmpty(obj)
b = true;
if isempty(obj)
return
end
if isempty(obj.userfuncdir)
return;
end
if isempty(obj.userfuncfiles)
return;
end
if isempty(obj.entries)
return;
end
b = false;
end
% ------------------------------------------------------
function idx = GetIdx(obj, key)
idx = [];
if ~exist('key','var') || isempty(key)
key = 1;
end
if ischar(key)
k = [];
for ii=1:length(obj.entries)
if strcmp(obj.entries(ii).GetName(), key)
k = ii;
break;
end
end
if isempty(k)
return
end
key = k(1);
end
if ~iswholenum(key) || key<1 || key>length(obj.entries)
return;
end
idx = key;
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods to retrieve all or multiple entries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods
% ----------------------------------------------------------------------------------
function usagestrs = GetUsageStrs(obj, addnewline)
if ~exist('addnewline','var')
addnewline = 0;
end
if addnewline
nl = sprintf('\n');
else
nl = '';
end
usagestrs = cell(2*length(obj.entries), 1);
kk = 1;
for ii=1:length(obj.entries)
for jj=1:obj.entries(ii).GetOptionsNum()
usagestrs{kk} = sprintf('@ %s%s', obj.entries(ii).GetUsageStr(jj), nl);
kk=kk+1;
end
end
% Remove extra empty cells
usagestrs = usagestrs(~cellfun('isempty',usagestrs));
end
% ----------------------------------------------------------------------------------
function names = GetFuncNames(obj)
names = cell(length(obj.entries), 1);
for ii=1:length(obj.entries)
names{ii} = obj.entries(ii).GetName();
end
end
% ----------------------------------------------------------------------------------
function fcallsstr = GetFuncCallsEncoded(obj, procStream)
fcallsstr = {};
if ~isa(fcall,'FuncCallClass')
return
end
if isempty(procStream)
return;
end
fcalls = procStream.fcalls;
kk=1;
for iFcall=1:length(fcalls)
idx = obj.GetIdx(fcall(iFcall).GetName());
if isempty(idx)
continue;
end
str = obj.entries(idx).GetFuncCallsEncoded(fcall(iFcall));
if ~isempty(str)
fcallsstr{kk} = str;
kk=kk+1;
end
end
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Methods to retrieve individual entries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods
% ----------------------------------------------------------------------------------
function [name, idx] = GetFuncName(obj, key)
idx = obj.GetIdx(key);
if isempty(idx)
return;
end
name = obj.entries(idx).GetName();
end
% ----------------------------------------------------------------------------------
function helpstr = GetFuncHelp(obj, key)
helpstr = '';
idx = obj.GetIdx(key);
if isempty(idx)
return;
end
helpstr = obj.entries(idx).GetHelpStr();
end
% ----------------------------------------------------------------------------------
function fcallstr = GetFuncCallStrDecoded(obj, key, usagename)
fcallstr = '';
idx = obj.GetIdx(key);
if isempty(idx)
return;
end
fcallstr = obj.entries(idx).GetFuncCallStrDecoded(usagename);
end
% ----------------------------------------------------------------------------------
function fcall = GetFuncCallDecoded(obj, key, usagename)
fcall = FuncCallClass().empty();
idx = obj.GetIdx(key);
if isempty(idx)
return;
end
fcall = obj.entries(idx).GetFuncCallDecoded(usagename);
end
% ----------------------------------------------------------------------------------
function fcall = FindClosestMatch(obj, fcall0)
fcall = FuncCallClass().empty();
if isempty(obj)
return;
end
if nargin<2
return;
end
for ii=1:length(obj.entries)
fcall = obj.entries(ii).FindClosestMatch(fcall0);
if ~isempty(fcall)
break
end
end
end
% ----------------------------------------------------------------------------------
function paramtxt = GetParamText(obj, key)
paramtxt = '';
idx = obj.GetIdx(key);
if isempty(idx)
return;
end
paramtxt = obj.entries(idx).GetParamText();
end
% ----------------------------------------------------------------------------------
function usagename = GetUsageName(obj, fcall)
usagename = '';
if ~isa(fcall,'FuncCallClass')
return
end
idx = obj.GetIdx(fcall.GetName());
if isempty(idx)
return;
end
usagename = obj.entries(idx).GetUsageName(fcall);
end
% ----------------------------------------------------------------------------------
function usagenames = GetUsageNames(obj, funcname)
usagenames = {};
idx = obj.GetIdx(funcname);
if isempty(idx)
return;
end
usagenames = obj.entries(idx).GetUsageNames();
end
% ----------------------------------------------------------------------------------
function n = GetNumUsages(obj, funcname)
n = length(obj.GetUsageNames(funcname));
end
% ----------------------------------------------------------------------------------
function usagestr = GetUsageStrDecorated(obj, funcname, usageparam)
usagestr = '';
if ~exist('funcname','var')
return;
end
if ~exist('usageparam','var')
usageparam='';
end
idx = obj.GetIdx(funcname);
if isempty(idx)
return;
end
usagestr = obj.entries(idx).GetUsageStrDecorated(usageparam);
end
% ----------------------------------------------------------------------------------
function lastdt = DateLastModified(obj)
try
lastdt = 0;
for jj = 1:length(obj.userfuncdir)
files = dir([obj.userfuncdir{jj}, '*.m']);
for ii = 1:length(files)
if ~isempty(files(ii))
if files(ii).datenum > lastdt
lastdt = files(ii).datenum;
end
end
end
end
catch
lastdt = -1;
end
end
end
end