forked from ltfat/ltfat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathltfatarghelper.m
289 lines (255 loc) · 8.74 KB
/
ltfatarghelper.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
function [flags,keyvals,varargout] = ltfatarghelper(posdepnames,definput,arglist,callfun)
%LTFATARGHELPER Parse arguments for LTFAT
% Usage: [flags,varargout] = ltfatarghelper(posdepnames,definput,arglist,callfun);
%
% Input parameters:
% posdepnames : Names of the position dependant parameters.
% definput : Struct to define the allowed input
% arglist : Commandline of the calling function (varargin)
% callfun : Name of calling function (optional)
%
% Output parameters:
% flags : Struct with information about flags.
% keyvals : Struct with key / values.
% varargout : The position dependant pars. properly initialized
%
% `[flags,keyvals]=ltfatarghelper(posdepnames,definput,arglist)` assists in
% parsing input parameters for a function in LTFAT. Parameters come in
% four categories:
%
% * Position dependant parameters. These must not be strings. These are
% the first parameters passed to a function, and they are really just a
% short way of specifying key/value pairs. See below.
%
% * Flags. These are single string appearing after the position dependant
% parameters.
%
% * Key/value pairs. The key is always a string followed by the value,
% which can be anything.
%
% * Expansions. These appear as flags, that expand into a pre-defined list
% of parameters. This is a short-hand way of specifying standard sets of
% flags and key/value pairs.
%
% The parameters are parsed in order, so parameters appearing later in
% varargin will override previously set values.
%
% The following example for calling `ltfatarghelper` is taken from |dgt|::
%
% definput.keyvals.L=[];
% definput.flags.phase={'freqinv','timeinv'};
% [flags,kv]=ltfatarghelper({'L'},definput,varargin);
%
% The first line defines a key/value pair with the key `'L'` having an
% initial value of `[]` (the empty matrix).
%
% The second line defines a group of flags by the name of `phase`. The
% group `phase` contains the flags `'freqinv'` and `'timeinv'`, which can
% both be specified on the command line by the user. The group-name
% `phase` is just for internal use, and does not appear to the user. The
% flag mentioned first in the list will be selected by default, and only
% one flag in a group can be selected at any time. A group can contain as
% many flags as desired.
%
% The third line is the actual call to `ltfatarghelper` which defines the
% output `flags` and `kv`. The input `{'L'}` indicates that the value of
% the parameter `'L'` can also be given as the very first value in
% varargin.
%
% The output struct `kv` contains the key/value pairs, so the value
% associated to `'L'` is stored in `kv.L`.
%
% The output struct `flags` contains information about the flags choosen
% by the user. The value of `flags.phase` will be set to the selected flag
% in the group `phase` and additionally, the value of `flags.do_timeinv`
% will be 1 if `'timeinv'` was selected and 0 otherwise, and similarly for
% `'freqinv'`. This allows for easy checking of selected flags.
%
% Advanced usage
% --------------
%
% Expansion `import` was introduced in order to allow sharing common
% flags and key/value pairs between functions.
%
% The following example is taken from |plotdgt| and |tfplot|::
%
% definput.import={'ltfattranslate','tfplot'};
% [flags,kv,fs]=ltfatarghelper({'fs','dynrange'},definput,varargin);
%
% This code instructs `ltfatarghelper` to run functions
% `arg_ltfattranslate` and `arg_tfplot` which define the flags and
% the key/value pairs. The `arg_` functions must have the following signature::
%
% function definput=arg_name(definput)
%
% Moreover, a special flag `'argimport'` is used to pass the flags
% and the key/value pairs from |plotdgt| to |tfplot|::
%
% coef=tfplot(...,'argimport',flags,kv);
%
% See also: ltfatgetdefaults, ltfatsetdefaults
persistent TF_CONF;
if isempty(TF_CONF)
% basepath=which('ltfatarghelper');
% % Kill the function name and comp from the path.
% basepath=basepath(1:end-22);
% % add the base path
% addpath(basepath);
% ltfatstart;
TF_CONF.fundefs = struct;
end;
if ischar(posdepnames)
% Special interface needed for ltfatsetdefaults and ltfatgetdefaults,
% activated when first argument is a string.
% First input argument, posdepnames, is a string, one of the options
% in the "switch" section below
% Second input argument, definput, is a function name to get or set
% Third input argument, arglist , is a cell-array with options to set.
switch(lower(posdepnames))
case 'get'
if isfield(TF_CONF.fundefs,definput)
flags=TF_CONF.fundefs.(definput);
else
flags={};
end;
case 'set'
TF_CONF.fundefs.(definput)=arglist;
case 'all'
flags=TF_CONF.fundefs;
case 'clearall'
TF_CONF.fundefs=struct;
end;
return
end;
if nargin<4
f=dbstack;
callfun=f(2).name;
end;
nposdep=numel(posdepnames);
% Resolve import specifications BEFORE adding our own specifications.
if isfield(definput,'import')
for imp = definput.import;
definput=feval(['arg_',imp{1}],definput);
end;
end;
if isfield(definput,'flags')
defflags=definput.flags;
else
defflags=struct;
end;
if isfield(definput,'keyvals')
defkeyvals=definput.keyvals;
else
defkeyvals=struct;
end;
if isfield(definput,'groups')
groups=definput.groups;
else
groups=struct;
end;
total_args = numel(arglist);
% Determine the position of the first optional argument.
% If no optional argument is given, return nposdep+1
first_str_pos = 1;
while first_str_pos<=total_args && ~ischar(arglist{first_str_pos})
first_str_pos = first_str_pos +1;
end;
% If more than nposdep arguments are given, the first additional one must
% be a string
if (first_str_pos>nposdep+1)
error('%s: Too many input arguments',upper(callfun));
end;
n_first_args=min(nposdep,first_str_pos-1);
keyvals=defkeyvals;
% Copy the given first arguments
for ii=1:n_first_args
keyvals.(posdepnames{ii})=arglist{ii};
end;
% Initialize the position independent parameters.
% and create reverse mapping of flag -> group
flagnames=fieldnames(defflags);
flags=struct;
% In order for flags to start with a number, it is necessary to add
% 'x_' before the flag when the flags are used a field names in
% flagreverse. Externally, flags are never used a field names in
% structs, so this is an internal problem in ltfatarghelper that is
% fixed this way.
flagsreverse=struct;
for ii=1:numel(flagnames)
name=flagnames{ii};
flaggroup=defflags.(name);
flags.(name)=flaggroup{1};
for jj=1:numel(flaggroup)
flagsreverse.(['x_', flaggroup{jj}])=name;
flags.(['do_',flaggroup{jj}])=0;
end;
flags.(['do_',flaggroup{1}])=1;
end;
%Get the rest of the arguments
restlist = arglist(first_str_pos:end);
%Check for default arguments
if isfield(TF_CONF.fundefs,callfun)
s=TF_CONF.fundefs.(callfun);
restlist=[s,restlist];
end;
% Check for import defaults
if isfield(definput,'importdefaults')
% Add the importdefaults before the user specified arguments.
restlist=[definput.importdefaults,restlist];
end;
while ~isempty(restlist)
argname=restlist{1};
restlist=restlist(2:end); % pop
found=0;
% Is this name a flag? If so, set it
if isfield(flagsreverse,['x_',argname])
% Unset all other flags in this group
flaggroup=defflags.(flagsreverse.(['x_',argname]));
for jj=1:numel(flaggroup)
flags.(['do_',flaggroup{jj}])=0;
end;
flags.(flagsreverse.(['x_',argname]))=argname;
flags.(['do_',argname])=1;
found=1;
end;
% Is this name the key of a key/value pair? If so, set the value.
if isfield(defkeyvals,argname)
keyvals.(argname)=restlist{1};
restlist=restlist(2:end);
found=1;
end;
% Is this name a group definition? If so, put the group in front of the parameters
if isfield(groups,argname)
s=groups.(argname);
restlist=[s,restlist];
found=1;
end;
% Is the name == 'argimport'
if strcmp('argimport',argname)
fieldnames_flags= fieldnames(restlist{1});
fieldnames_kvs = fieldnames(restlist{2});
for ii=1:numel(fieldnames_flags)
importname=fieldnames_flags{ii};
flags.(importname)=restlist{1}.(importname);
end;
for ii=1:numel(fieldnames_kvs)
importname=fieldnames_kvs{ii};
keyvals.(importname)=restlist{2}.(importname);
end;
restlist=restlist(3:end);
found=1;
end;
if found==0
if ischar(argname)
error('%s: Unknown parameter: %s',upper(callfun),argname);
else
error('%s: Parameter is not a string, it is of class %s',upper(callfun),class(argname));
end;
end;
%ii=ii+1;
end;
% Fill varargout
varargout=cell(1,nposdep);
for ii=1:nposdep
varargout(ii)={keyvals.(posdepnames{ii})};
end;