-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParams.m
543 lines (475 loc) · 19 KB
/
Params.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
classdef Params < handle
% This class alows youto load, edit and save .p files.
% Additionally it provides a mechanism to set the variabless
% in the .p file prior to running the experiment.
properties(SetAccess = private)
xFile;
% keep track of variables
variableMap;
end
properties
% name of pfile - not including extension
name;
% TODO: Make setter check dim
stimuli;
% for matrix commands
numRow = 0;
numCol = 0;
% can be one of {'regular', 'adapt', 'sequence', 'updown'}
experimentType = 'regular';
% Minimum amount of time that must pass after showing a stimulus
% before showing the next one (to allow data acquisition hosts to
% save data). If all hosts are bidirectional then this can be 0.
% (In seconds)
minimumWait = 0.0;
% Dead time - amount of time between StimStart being sent to dat
% hosts and StimStart being sent to stim server.
deadTime = 0.0;
% Old format, if it had ADAPT/PRIMING keyword before stim instead
% of after on load.
oldExperimentFlag = false;
% Delay between the last BlockEnd and ExpEnd to e.g. allow data
% acquisition of a post stimulus baseline period
expEndDelay = 0;
end
properties(Dependent = true)
numStim;
numParam;
end
properties(Constant = true)
validExperiementTypes = {'regular', 'adapt', 'priming', 'sequence', 'updown'};
experimentTypeLabels = {'Regular', 'Adaptation', 'Priming', 'Sequence', 'Up/Down'};
repNumMagic = int64(2^62); % repeat num flag is a "special" int64 value
end
events
variableMapChanged;
stimsChanged;
experimentPropertiesChanged;
end
methods
% Given 1 arg:
% create a new Params object from an xfile (with no stimuli)
% Given 2 args:
% create a new Params object from a pfile path and a path to the
% directory of xfiles.
function self = Params(varargin)
if nargin == 1
self.xFile = XFile(varargin{1});
self.addDefaultStim();
self.variableMap = self.createEmptyVarMap();
elseif nargin == 2 % load from file
pfilePath = varargin{1};
xFileDir = varargin{2};
% set name
[~,fname,~] = fileparts(pfilePath);
self.name = fname;
self.loadFromFile(pfilePath, xFileDir);
else
error('Wrong number of arguments.');
end
end
function loadFromFile(self, pfilePath, xFileDir)
[fid message] = fopen(pfilePath);
if fid == -1
error(['Error on opening pfile "' filepath '" : ' message]);
end
% xfile name should be on first line of file
xFileName = fgetl(fid);
xFilePath = fullfile(xFileDir, xFileName);
try
self.xFile = XFile(xFilePath);
catch e
error('Unable to find or open xfile');
end
% second line can be experiment type, try to read it
lcells = textscan(fgetl(fid) ,'%s');
if iscell(lcells{1}) && isvarname(lcells{1}{1})
flag = lcells{1}{1};
% set experiment flag
switch lower(flag)
case {'regular', 'priming', 'adapt', 'sequence', 'updown'}
self.experimentType = lower(flag);
self.oldExperimentFlag = true;
otherwise
error('Error opening pfile, unknown experiment type');
end
else
% otherwise "unread" line
frewind(fid);
fgetl(fid)
end
% now lets load up first two "setup" lines and check
% everything is consistent
setupLines = textscan(fid, '%d %d %d', 2);
specifiedNumStim = setupLines{1}(1);
specifiedNumParam = setupLines{2}(1);
self.numRow = setupLines{2}(2);
self.numCol = setupLines{3}(2);
if specifiedNumParam ~= self.xFile.numParams
error(['Number of params in pfile does not ' ...
'match number of params in xfile.']);
end
lineFormatString = repmat('%s ', 1, specifiedNumParam);
lineFormatString = lineFormatString(1:end-1);
stimuliLines = textscan(fid, lineFormatString, specifiedNumStim);
if length(stimuliLines{1}) ~= specifiedNumStim
error('specified number of simuli does not match actual number');
end
% put into resonably shaped cell array
self.stimuli = cell(specifiedNumStim, specifiedNumParam);
for i = 1:specifiedNumParam
for j = 1:specifiedNumStim
self.stimuli{j,i} = stimuliLines{i}{j};
end
end
if ~self.checkUnrenderedStimuliValid();
error('Not all stimuli params valid for xfile.')
end
self.variableMap = self.createEmptyVarMap();
% read optional experiment type/timing info (not supported in
% zpep)
line = [];
if ~feof(fid)
line = fgetl(fid);
end
if ~feof(fid) && isempty(line)
line = fgetl(fid);
end
if ~isempty(line)
% lcells = textscan(line ,'%s %s %f %s %f %s %f');
flag = regexp(line, '^\w+', 'match', 'once');
% set experiment flag
switch lower(flag)
case {'regular', 'priming', 'adapt', 'sequence', 'updown'}
if strcmpi(flag, 'priming')
flag = 'adapt';
end
self.experimentType = lower(flag);
otherwise
error('Error opening pfile, unknown experiment type');
end
minwait = regexpi(line, 'MINWAIT ([0-9\.])+\s+([0-9\.])*', 'tokens', 'once');
minwait = str2double(minwait(~cellfun(@isempty, minwait)));
if numel(minwait) >= 1
self.minimumWait = minwait;
end
deadtime = str2double(regexpi(line, 'DEADTIME ([0-9\.])+', 'tokens', 'once'));
if numel(deadtime) > 0
self.deadTime = deadtime;
end
expenddelay = str2double(regexpi(line, 'EXPENDD?ELAY ([0-9\.])+', 'tokens', 'once'));
if numel(expenddelay) > 0
self.expEndDelay = expenddelay;
end
end
fclose(fid);
Logger.singleton.pfileOpened(pfilePath);
end
% Check if a string is valid for a certain parameter
% Either it parses into an int that is in range
% or it has to be a valid variable name.
function r = checkStringValid(self, paramIndex, string)
if isvarname(string) || strcmp(string, '#')
r = true;
return;
end
i = str2double(string);
if ~isreal(i) || isnan(i)
r = false;
return;
end
r = self.xFile.paramValid(paramIndex, i);
end
function [r i j] = checkUnrenderedStimuliValid(self)
i = 0;
j = 0;
r = true;
for i = 1:self.numStim
for j = 1:self.xFile.numParams
if ~self.checkStringValid(j, self.stimuli{i,j})
r = false;
return;
end
end
end
end
function r = getDefaultStim(self)
r = arrayfun(@num2str, self.xFile.paramDefaults, 'UniformOutput', false);
end
function addDefaultStim(self)
newRow = self.getDefaultStim();
self.stimuli = [self.stimuli; newRow];
end
function addDefaultStimTop(self)
newRow = self.getDefaultStim();
self.stimuli = [newRow; self.stimuli];
end
% add a default stimulus at index
function insertDefaultStim(self, index)
newRow = self.getDefaultStim();
top = self.stimuli(1:index-1, 1:end);
bottom = self.stimuli(index:end, 1:end);
self.stimuli = [top; newRow; bottom];
end
function insertAt(self, index, stimList)
top = self.stimuli(1:index-1, 1:end);
bottom = self.stimuli(index:end, 1:end);
self.stimuli = [top; stimList; bottom];
end
function removeStim(self, stimNum)
self.stimuli = self.stimuli([1:stimNum-1 stimNum+1:end], 1:end);
self.updateVarMap();
self.notify('stimsChanged', StimChangeEvent(-stimNum, 1:self.numParam));
if self.numStim-1 < (self.numRow*self.numCol)
self.numRow = 1; self.numCol = 1;
end
end
function r = get.numStim(self)
r = size(self.stimuli, 1);
end
function r = get.numParam(self)
r = size(self.stimuli, 2);
end
function set.experimentType(self, type)
type = lower(type);
if ~strcmp(type, self.experimentType) &&...
ismember(type, Params.validExperiementTypes)
self.experimentType = type;
self.notify('experimentPropertiesChanged');
end
end
function set.numRow(self, n)
changed = self.numRow ~= n;
if changed
self.numRow = n;
self.notify('experimentPropertiesChanged');
end
end
function set.numCol(self, n)
changed = self.numCol ~= n;
if changed
self.numCol = n;
self.notify('experimentPropertiesChanged');
end
end
function set.minimumWait(self, t)
changed = ~isequal(self.minimumWait, t);
if changed
self.minimumWait = t;
self.notify('experimentPropertiesChanged');
end
end
function set.deadTime(self, t)
changed = self.deadTime ~= t;
if changed
self.deadTime = t;
self.notify('experimentPropertiesChanged');
end
end
function t = get.expEndDelay(self)
if isempty(self.expEndDelay)
t = 0; % default value of zero
else
t = self.expEndDelay;
end
end
function set.expEndDelay(self, t)
changed = self.expEndDelay ~= t;
if changed
self.expEndDelay = t;
self.notify('experimentPropertiesChanged');
end
end
function map = createEmptyVarMap(self)
map = containers.Map();
for i = 1:self.numStim
for j = 1:self.xFile.numParams
if isvarname(self.stimuli{i,j})
map(self.stimuli{i,j})= [];
end
end
end
end
function clearVarMap(self)
self.variableMap = self.createEmptyVarMap();
self.notify('variableMapChanged');
end
function updateVarMap(self)
% create a new map
map = createEmptyVarMap(self);
% copy over old set values into new map
vars = map.keys();
for i = 1:length(vars)
k = vars{i};
if self.variableMap.isKey(k)
map(vars{i}) = self.variableMap(vars{i});
end
end
self.variableMap = map;
self.notify('variableMapChanged');
end
function setValue(self, stim, param, str)
if self.checkStringValid(param, str) &&...
~(stim == 1 && strcmp(str, '#')) % disallow rep num in test
% prune extra 0s
if ~isvarname(str) && ~strcmp(str, '#')
str = num2str(str2double(str));
end
changed = ~strcmp(self.stimuli{stim,param}, str);
self.stimuli{stim,param} = str;
if changed
self.notify('stimsChanged', StimChangeEvent(stim, param));
end
self.updateVarMap();
else
error('mpep:badvalue', 'Invalid value');
end
end
function setParamCol(self, param, values)
for i = 1:self.numStim
if ~self.checkStringValid(param, values{i})
error(['Invalid value at stimulus ' num2str(i) '.']);
end
% prune extra 0s
if ~isvarname(values{i}) && ~strcmp(values{i},'#')
values{i} = num2str(str2double(values{i}));
end
end
self.stimuli(1:end,param) = values;
evt = StimChangeEvent(1:self.numStim, param);
self.notify('stimsChanged', evt);
self.updateVarMap();
end
function r = getVariableNames(self)
r = self.variableMap.keys;
end
function setVariable(self, name, value)
if int64(value) ~= value
error('Variables must be set to scalar integer values')
end
if self.variableMap.isKey(name)
self.variableMap(name) = value;
else
error('invalid name');
end
self.notify('variableMapChanged');
end
% create a rendered params from this object
% if any entry is out of the bounds defined in xfile r = 0,
% then i j = index of erroneous entry.
% otherwise r is a RenderedParams
function [r i j] = render(self)
mat = self.renderStimuliRaw();
[r i j] = checkRenderedStimuliValid(self, mat);
if ~r
r = [];
return;
end
r = RenderedParams(self.name, self.xFile, mat, self.numRow, self.numCol, ...
keys(self.variableMap), values(self.variableMap), self.experimentType,...
self.minimumWait, self.deadTime, self.expEndDelay);
end
% render a subset of the stimuli
function [r i j] = renderSubset(self, indices)
allStim = self.stimuli;
originalVar = self.variableMap;
try
self.stimuli = self.stimuli(indices', :);
self.updateVarMap(); % prune uneeded vars
[r i j] = render(self);
catch e
self.stimuli = allStim;
rethrow(e);
end
self.stimuli = allStim;
self.variableMap = originalVar;
end
% Find variables which are needed to render a given subset of stimuli.
function vars = requiredVariables(self, indices)
allStim = self.stimuli;
originalVar = self.variableMap;
try
self.stimuli = self.stimuli(indices', :);
self.updateVarMap(); % prune uneeded vars
vars = self.variableMap.keys();
catch e
self.stimuli = allStim;
self.variableMap = originalVar;
rethrow(e);
end
self.stimuli = allStim;
self.variableMap = originalVar;
end
% Write this object to a file, so we can load it with the
% constructor - Params(path, xFilePath);
% Will throw any file related errors
% Discards variable assignments
function writeToFile(self, path)
fid = fopen(path, 'wt');
[s, p] = size(self.stimuli);
fprintf(fid, [self.xFile.name '.x\n']);
fprintf(fid, '%d %d %d\n', s, p, 0);
fprintf(fid, '%d %d %d\n', 0, self.numRow, self.numCol); % find out what 0 is
for i = 1:s
for j = 1:p
if j ~= p
fwrite(fid, [self.stimuli{i,j} ' ']);
else
fwrite(fid, self.stimuli{i,j});
end
end
fprintf(fid, '\n');
end
fprintf(fid, [upper(self.experimentType) ...
' MINWAIT ' num2str(self.minimumWait, '%g ') ...
' DEADTIME ' num2str(self.deadTime) ...
' EXPENDDELAY ' num2str(self.expEndDelay) '\n']);
fclose(fid);
end
end
methods (Access = private)
% render params - no error checking - produces an int matrix
function r = renderStimuliRaw(self)
if length(cell2mat(self.variableMap.values)) ~= self.variableMap.length
error('Not all variables set!');
end
r = cellfun(@(str) stringToValue(self, str), self.stimuli, 'UniformOutput', false);
r = cell2mat(r);
% convert to int64 and make sure NaNs go to Params.repNumMagic
rDoubles = r;
r = int64(r);
r(isnan(rDoubles)) = Params.repNumMagic;
end
% check if the givien stimuliMatrix has all its parameters in the
% bounds defined by the xfile.
% returns true if all in bounds
% [true stimNum paramNum] if out of bounds value found
function [r badStimNum badStimParam] = checkRenderedStimuliValid(self, stimuliMatrix)
[numStim numParam] = size(stimuliMatrix);
badStimNum = -1;
badStimParam = -1;
r = true;
for i = 1:numStim
for j = 1:numParam
if stimuliMatrix(i, j) ~= Params.repNumMagic...
&& ~self.xFile.paramValid(j, stimuliMatrix(i, j))
r = false;
badStimNum = i;
badStimParam = j;
return;
end
end
end
end
%
function r = stringToValue(self, string)
if self.variableMap.isKey(string)
r = self.variableMap(string);
elseif strcmp(string, '#')
r = NaN;
else
r = sscanf(string, '%d', 1);
end
end
end
end