forked from sccn/mobilab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dataSourceXDF.m
687 lines (632 loc) · 46.8 KB
/
dataSourceXDF.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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
% Definition of the class dataSourceXDF. This class imports into MoBILAB files
% recorder by the Lab Streaming Layer (LSL) library saved in xdf or xdfz format.
%
% See more details about LSL here: https://code.google.com/p/labstreaminglayer/
%
% Author: Alejandro Ojeda, SCCN, INC, UCSD, Oct-2012
classdef dataSourceXDF < dataSource
methods
function obj = dataSourceXDF(varargin)
% Creates a dataSourceXDF object.
%
% Input arguments:
% file: xdf or xdfz file recorded by LSL
% mobiDataDirectory: path to the directory where the collection of
% files are or will be stored.
%
% Output arguments:
% obj: dataSource object (handle)
%
% Usage:
% % file: xdf or xdfz file recorded by LSL
% % mobiDataDirectory: path to the directory where the collection of
% % files are or will be stored.
%
% obj = dataSourceXDF( file, mobiDataDirectory);
if nargin==1, varargin = varargin{1};end
if length(varargin) < 2, error('Not enough input arguments.');end
sourceFileName = varargin{1};
mobiDataDirectory = varargin{2};
mismatchFlag = false;
[~,~,ext] = fileparts(sourceFileName);
if ~any(ismember({'.xdf','.xdfz'},ext))
error('MoBILAB:isNotXDF',['dataSourceXDF cannot read ''' ext ''' format.']);
end
uuid = generateUUID;
obj@dataSource(mobiDataDirectory,uuid);
obj.listenerHandle.Enabled = false;
obj.checkThisFolder(mobiDataDirectory);
logFile = [obj.mobiDataDirectory filesep 'logfile.txt'];
fLog = fopen(logFile,'w');
seeLogFile = false;
parentCommand.commandName = 'dataSourceXDF';
parentCommand.varargin{1} = sourceFileName;
parentCommand.varargin{2} = mobiDataDirectory;
try
obj.container.lockGui('Reading...');
streams = load_xdf(sourceFileName,'OnChunk',@subsampleChunk);
obj.container.lockGui;
rmThis = false(length(streams),1);
for stream_count=1:length(streams)
if isempty(streams{stream_count}.time_stamps)
msg = ['Stream ' streams{stream_count}.info.name ' has no time stamps. It cannot be imported.'];
warning('MoBILAB:noData',msg);
fprintf(fLog,'%s\n',msg);
rmThis(stream_count) = true;
seeLogFile = true;
end
end
for stream_count=1:length(streams)
try %#ok
disp([num2str(stream_count) '-> Stream ' streams{stream_count}.info.name ':']);
disp([' uuid: ' streams{stream_count}.info.uid]);
disp([' host: ' streams{stream_count}.info.hostname]);
disp([' type: ' streams{stream_count}.info.type]);
disp([' session id: ' streams{stream_count}.info.session_id]);
disp([' created at: ' streams{stream_count}.info.created_at]);
disp([' samples: ' streams{stream_count}.info.sample_count]);
disp([' channels: ' num2str(size(streams{stream_count}.time_series,1))]);
end
if isempty(streams{stream_count}.time_stamps)
msg = ['Stream ' streams{stream_count}.info.name ' has no time stamps. It cannot be imported.'];
warning('MoBILAB:noData',msg);
fprintf(fLog,'%s\n',msg);
rmThis(stream_count) = true;
seeLogFile = true;
end
end
uuid_list = cell(length(streams),1);
tmp_names = cell(length(streams),1);
for stream_count=1:length(streams)
uuid_list{stream_count} = char(streams{stream_count}.info.uid);
tmp_names{stream_count} = lower(streams{stream_count}.info.name);
end
[~,loc1,~] = intersect(uuid_list,unique(uuid_list));
rep_streams = setdiff(1:length(streams),loc1);
if ~isempty(rep_streams)
warning('MoBILAB:repeatedStream',['Streams ' num2str(rep_streams) ' are repeated, their first instance will be ignored. This probably happened because there are LSL streams of the same name running in the background.']);
rmThis(rep_streams) = 1;
end
if any(rmThis)
tmp = streams(rmThis);
for k=1:length(tmp), if isfield(tmp{k},'tmpfile') && exist(tmp{k}.tmpfile,'file'), java.io.File(tmp{k}.tmpfile).delete();end;end
streams(rmThis) = [];
end
tmp_names = cell(length(streams),1);
for stream_count=1:length(streams), tmp_names{stream_count} = lower(streams{stream_count}.info.name);end
[~,loc] = sort(tmp_names);
streams = streams(loc);
stack = dbstack;
if ~any(~cellfun(@isempty,strfind({stack.name},'dataSourceFromFolder')))
t0 = inf(length(streams),1);
for stream_count=1:length(streams), t0(stream_count) = streams{stream_count}.time_stamps(1);end
t0 = min(t0);
else
t0 = 0;
end
% mapping to mobilab's representation
namePool = {};
obj.container.initStatusbar(1,length(streams),'Loading streams...');
for stream_count=1:length(streams)
try
name = lower(streams{stream_count}.info.name);
if strcmpi(name,'phasespace'), name = 'mocapPhasespace';end
if strcmpi(name,'biosemi'), name = 'eeg';end
name(name == ' ') = '_';
name = [name '_' streams{stream_count}.info.hostname]; %#ok
I = strfind(namePool,name);
I = find(~cellfun(@isempty,I));
if ~isempty(I), name = [name num2str(length(I))];end %#ok
namePool{end+1} = name; %#ok
type = lower(streams{stream_count}.info.type);
numberOfChannels = str2double(streams{stream_count}.info.channel_count);
samplingRate = str2double(streams{stream_count}.info.nominal_srate);
% precision = streams{stream_count}.info.channel_format;
precision = 'double';
uuid = streams{stream_count}.info.uid;
if ~ischar(uuid), uuid = char(uuid);end
uuid = lower(uuid);
if isempty(streams{stream_count}.time_stamps), timeStamp = 0;
else timeStamp = streams{stream_count}.time_stamps(:)'-t0;
end
if samplingRate == 0 && length(timeStamp)
samplingRate = median(1./(diff(timeStamp)));
end
labels = cell(numberOfChannels,1);
channelType = cell(numberOfChannels,1);
unit = cell(numberOfChannels,1);
for it=1:numberOfChannels
try
if isfield(streams{stream_count}.info.desc,'channels')
if isfield(streams{stream_count}.info.desc.channels,'channel') && numberOfChannels == 1 && isfield(streams{stream_count}.info.desc.channels.channel,'label')
labels{it} = streams{stream_count}.info.desc.channels.channel.label;
if isfield(streams{stream_count}.info.desc.channels.channel,'unit')
unit{it} = streams{stream_count}.info.desc.channels.channel.unit;
else unit{it} = 'unknown';
end
elseif isfield(streams{stream_count}.info.desc.channels,'channel') && isfield(streams{stream_count}.info.desc.channels.channel{it},'label')
labels{it} = streams{stream_count}.info.desc.channels.channel{it}.label;
if isfield(streams{stream_count}.info.desc.channels.channel{it},'unit')
unit{it} = streams{stream_count}.info.desc.channels.channel{it}.unit;
else unit{it} = 'unknown';
end
elseif isfield(streams{stream_count}.info.desc.channels,'channel') && isfield(streams{stream_count}.info.desc.channels.channel{it},'name')
labels{it} = streams{stream_count}.info.desc.channels.channel{it}.name;
if isfield(streams{stream_count}.info.desc.channels.channel{it},'unit')
unit{it} = streams{stream_count}.info.desc.channels.channel{it}.unit;
else unit{it} = 'unknown';
end
elseif numberOfChannels > 1 && isfield(streams{stream_count}.info.desc.channels{it},'name')
labels{it} = streams{stream_count}.info.desc.channels{it}.name;
unit{it} = streams{stream_count}.info.desc.channels{it}.unit;
elseif numberOfChannels == 1 && isfield(streams{stream_count}.info.desc.channels,'name')
labels{it} = streams{stream_count}.info.desc.channels.name;
unit{it} = streams{stream_count}.info.desc.channels.unit;
else
labels{it} = ['Unknown' num2str(it)];
unit{it} = 'unknown';
end
if isfield(streams{stream_count}.info.desc.channels,'channel') && numberOfChannels == 1 && isfield(streams{stream_count}.info.desc.channels.channel,'type')
channelType{it} = streams{stream_count}.info.desc.channels.channel.type;
elseif isfield(streams{stream_count}.info.desc.channels,'channel') && numberOfChannels == 1 && ~isfield(streams{stream_count}.info.desc.channels.channel,'type')
channelType{it} = type;
elseif isfield(streams{stream_count}.info.desc.channels,'channel') && isfield(streams{stream_count}.info.desc.channels.channel{it},'type')
channelType{it} = streams{stream_count}.info.desc.channels.channel{it}.type;
elseif numberOfChannels > 1 && isfield(streams{stream_count}.info.desc,'channels') && isfield(streams{stream_count}.info.desc.channels{it},'type')
channelType{it} = streams{stream_count}.info.desc.channels{it}.type;
elseif numberOfChannels == 1 && isfield(streams{stream_count}.info.desc,'channels') && isfield(streams{stream_count}.info.desc.channels,'type')
channelType{it} = streams{stream_count}.info.desc.channels{it}.type;
else
channelType{it} = type;
end
else
labels{it} = ['Unknown' num2str(it)];
channelType{it} = type;
unit{it} = 'unknown';
end
catch ME
if ~mismatchFlag
warning(ME.identifier,ME.message);
msg = ['Wrong structure or missing fields in stream "' name '".'];
warning('MoBILAB:mismatch',msg)
fprintf(fLog,'%s\n',msg);
disp('Doing my best to fix this...');
mismatchFlag = true;
seeLogFile = true;
end
labels{it} = ['Unknown' num2str(it)];
channelType{it} = type;
unit{it} = 'unknown';
end
end
hardwareMetaDataObj = streams{stream_count}.info;
clear metadata
eventStruct = event;
metadata = struct('binFile','','header','','name',name,'timeStamp',timeStamp,'numberOfChannels',numberOfChannels,'precision',precision,...
'uuid',uuid,'sessionUUID',obj.sessionUUID,'writable',false,'unit',[],'owner',struct('name',obj.container.preferences.username,...
'organization',obj.container.preferences.organization,'email',obj.container.preferences.email),'hardwareMetaData',hardwareMetaDataObj,...
'parentCommand',parentCommand,'label',[],'event',eventStruct.saveobj,'notes','','artifactMask',sparse(length(timeStamp),...
numberOfChannels),'samplingRate',samplingRate);
metadata.unit = unit;
metadata.label = labels;
% eeg
if strcmpi(streams{stream_count}.info.type,'eeg')
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
channelSpace = nan(numberOfChannels,3);
for ch=1:numberOfChannels
try %#ok
channelSpace(ch,:) = [str2double(streams{stream_count}.info.desc.channels.channel{ch}.location.X) ...
str2double(streams{stream_count}.info.desc.channels.channel{ch}.location.Y) ...
str2double(streams{stream_count}.info.desc.channels.channel{ch}.location.Z)];
end
end
eegChannels = ismember(lower(channelType),'eeg');
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [length(eegChannels) length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
if any(~eegChannels)
auxChannel.label = labels(~eegChannels);
% auxChannel.data = mmfObj.Data.x(~eegChannels,:)';
auxChannel.data = eval([precision '( streams{stream_count}.time_series(~eegChannels,:))'])';
%streams{stream_count}.time_series(~eegChannels,:) = [];
else
auxChannel.label = {};
auxChannel.data = [];
end
labels(~eegChannels) = [];
channelSpace(~eegChannels,:) = [];
unit(~eegChannels) = [];
noLoc = find(isnan(channelSpace(:,1)));
channels2write = find(eegChannels);
if length(noLoc) < length(channels2write)
channels2write(noLoc) = [];
labels(noLoc) = [];
channelSpace(noLoc,:) = [];
if ~isempty(noLoc) && length(noLoc) ~= numberOfChannels
msg = sprintf('In %s the following sensors have no location: %s.\n',name,num2str(noLoc(:)'));
msg = sprintf('%sMoBILAB will not import them, contact the support team for more information.\n',msg);
fprintf(fLog,'%s',msg);
seeLogFile = true;
warning(msg); %#ok
end
end
numberOfChannels = length(labels);
for ch=1:numberOfChannels, if isempty(labels{ch}), labels{ch} = ['Unknown' num2str(ch)];end;end
reference = [];
isReferenced = false;
try reference = find(ismember(labels,streams{stream_count}.info.desc.reference.label));end %#ok
try isReferenced = ~strcmpi(streams{stream_count}.info.desc.reference.subtracted,'no');end %#ok
try
Nfch = length(streams{stream_count}.info.desc.fiducials.fiducial);
for fch=1:Nfch
if ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'fidnz')) || ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'nasion'))
fiducials.nasion = [str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.X) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Y) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Z)];
elseif ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'fidt9')) || ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'lpa'))
fiducials.lpa = [str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.X) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Y) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Z)];
elseif ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'fidt10')) || ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'rpa'))
fiducials.rpa = [str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.X) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Y) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Z)];
elseif ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'fidt11')) || ~isempty(strfind(streams{stream_count}.info.desc.fiducials.fiducial{fch}.label,'vertex'))
fiducials.vertex = [str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.X) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Y) ...
str2double(streams{stream_count}.info.desc.fiducials.fiducial{fch}.location.Z)];
end
end
catch
fiducials = [];
end
fid = fopen(binFile,'w');
%for ch=1:length(channels2write), fwrite(fid,mmfObj.Data.x(channels2write(ch),:)',precision);end
fwrite(fid,streams{stream_count}.time_series(channels2write,:)',precision);
fclose(fid);
%clear mmfObj
metadata.numberOfChannels = numberOfChannels;
metadata.label = labels;
metadata.binFile = binFile;
metadata.hardwareMetaData = hardwareMetaDataObj;
metadata.channelSpace = channelSpace;
metadata.reference = reference;
metadata.isReferenced = isReferenced;
metadata.fiducials = fiducials;
metadata.auxChannel = auxChannel;
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.unit = unit;
metadata.class = 'eeg';
header = metadata2headerFile(metadata);
% mocap
elseif any(ismember({'mocap' 'control'},lower(streams{stream_count}.info.type))) && isempty(strfind(lower(streams{stream_count}.info.name),'wii'))
class = 'mocap'; % default mocap class
if (~isempty(strfind(lower(streams{stream_count}.info.name),'phasespace'))) && ~isempty(channelType)
class = 'mocapPhasespace'; % phasespace mocap class
indPosition = ~cellfun(@isempty,strfind(channelType,'Position')); % find channels with position value
indOrientation = ~cellfun(@isempty,strfind(channelType,'Orientation')); % find channels with orientation value
ind = indPosition + indOrientation;
ind(ind > 1) = 1; % just in case a channel name contains both strings
elseif ~isempty(channelType)
ind = ~cellfun(@isempty,strfind(channelType,'Position'));
else ind = true(numberOfChannels,1);
end
channels2write = 1:numberOfChannels;
unit(~ind) = [];
channels2write(~ind) = [];
% artifactMask(:,1:3:numberOfChannels) = A;
% artifactMask(:,2:3:numberOfChannels) = A;
% artifactMask(:,3:3:numberOfChannels) = A;
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [length(ind) length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
auxChannel.label = metadata.label(~ind);
% auxChannel.data = mmfObj.Data.x(~ind,:)';
auxChannel.data = streams{stream_count}.time_series(~ind,:)';
fid = fopen(binFile,'w');
% for ch=1:length(channels2write), fwrite(fid,mmfObj.Data.x(channels2write(ch),:)',precision);end
fwrite(fid,streams{stream_count}.time_series(channels2write,:)',precision);
fclose(fid);
% clear mmfObj
metadata.label(~ind) = [];
numberOfChannels = length(metadata.label);
metadata.numberOfChannels = numberOfChannels;
metadata.label = labels(channels2write);
metadata.binFile = binFile;
metadata.animationParameters = struct('limits',[],'conn',[],'bodymodel',[]);
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.unit = unit;
metadata.class = class;
metadata.auxChannel = auxChannel;
header = metadata2headerFile(metadata);
% rigidBody
elseif ~isempty(strfind(lower(streams{stream_count}.info.type),'rigidbody'))
class = 'mocapRigidBody'; % mocap class with rigidbodies with position and orientation
indPosition = ~cellfun(@isempty,strfind(lower(channelType),'pos')); % find channels with position value
if sum(indPosition)==0; warning('No position channels found (must contain ''pos'' in the channel types)!'); end
indOrientation = ~cellfun(@isempty,strfind(lower(channelType),'ori')) | ~cellfun(@isempty,strfind(lower(channelType),'quat')); % find channels with orientation value
if sum(indOrientation)==0; warning('No orientation channels found (must contain ''ori'' or ''quat'' in the channel types)!'); end
ind = logical(indPosition + indOrientation); % channels with position or orientation
numberOfChannels = sum(ind);
unit(~ind) = [];
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
fid = fopen(binFile,'w');
fwrite(fid,streams{stream_count}.time_series(ind,:)',precision);
fclose(fid);
auxChannel.label = labels(~ind);
auxChannel.data = streams{stream_count}.time_series(~ind,:)';
metadata.numberOfChannels = numberOfChannels;
metadata.label = labels(ind);
metadata.binFile = binFile;
metadata.animationParameters = struct('limits',[],'conn',[],'bodymodel',[]);
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.unit = unit;
metadata.class = class;
metadata.auxChannel = auxChannel;
header = metadata2headerFile(metadata);
% eye tracking
elseif ~isempty(strfind(lower(streams{stream_count}.info.type),'eyetracking')) ||...
~isempty(strfind(lower(streams{stream_count}.info.type),'gazetracking')) ||...
~isempty(strfind(lower(streams{stream_count}.info.type),'eyegaze')) ||...
~isempty(strfind(lower(streams{stream_count}.info.type),'eye')) ||...
~isempty(strfind(lower(streams{stream_count}.info.type),'gaze'))
class = 'eyeTracking'; % eye tracking class
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
fid = fopen(binFile,'w');
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
numberOfChannels = length(metadata.label);
metadata.numberOfChannels = numberOfChannels;
metadata.label = labels;
metadata.binFile = binFile;
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.unit = unit;
metadata.class = class;
metadata.auxChannel = auxChannel;
header = metadata2headerFile(metadata);
% audiocontrol
elseif ~isempty(strfind(lower(streams{stream_count}.info.type),'audiocontrol'))
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
metadata.writable = true;
metadata.numberOfChannels = 1;
metadata.label = {'audiocontrol'};
fid2 = fopen(binFile,'w');
fwrite(fid2,zeros(length(streams{stream_count}.time_stamps),1),'int16');
fclose(fid2);
Ntags = length(streams{stream_count}.time_series);
hedTag = cell(Ntags,1);
enable = {'onset','offset'};
for tag=1:Ntags
if str2double(streams{stream_count}.time_series{8,tag})
hedTag{tag} = ['Stimulus/Auditory/File/' streams{stream_count}.time_series{1,tag} ',Stimulus/Auditory/' enable{str2double(streams{stream_count}.time_series{2,tag})} ',Stimulus/Auditory/Volume/'...
streams{stream_count}.time_series{3,tag} ',Stimulus/Auditory/Azimuth/' streams{stream_count}.time_series{4,tag} '-degrees,Stimulus/Auditory/Elevation/' streams{stream_count}.time_series{5,tag}...
'-degrees,Stimulus/Auditory/Spread/' streams{stream_count}.time_series{6,tag} '-degrees,Stimulus/Auditory/Speed/' streams{stream_count}.time_series{7,tag} ',Stimulus/Auditory/Looping'];
else
hedTag{tag} = ['Stimulus/Auditory/File/' streams{stream_count}.time_series{1,tag} ',Stimulus/Auditory/' enable{str2double(streams{stream_count}.time_series{2,tag})} ',Stimulus/Auditory/Volume/'...
streams{stream_count}.time_series{3,tag} ',Stimulus/Auditory/Azimuth/' streams{stream_count}.time_series{4,tag} '-degrees,Stimulus/Auditory/Elevation/' streams{stream_count}.time_series{5,tag}...
'-degrees,Stimulus/Auditory/Spread/' streams{stream_count}.time_series{6,tag} '-degrees,Stimulus/Auditory/Speed/' streams{stream_count}.time_series{7,tag}];
end
end
eventObj = event;
eventObj = eventObj.addEvent(1:length(streams{stream_count}.time_stamps),hedTag);
metadata.binFile = binFile;
metadata.precision = 'int16';
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.event = eventObj.saveobj;
metadata.class = 'markerStream';
header = metadata2headerFile(metadata);
% markers
elseif ~isempty(strfind(lower(streams{stream_count}.info.type),'marker')) ...
|| ~isempty(strfind(lower(streams{stream_count}.info.type),'markers'))...
|| ~isempty(strfind(lower(streams{stream_count}.info.type),'event'))...
|| ~isempty(strfind(lower(streams{stream_count}.info.type),'events'))
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% markerItems = getItemIndexFromItemNameSimilarTo(obj,'marker');
% name = ['markers' num2str(length(markerItems)+1)];
metadata.writable = true;
fid2 = fopen(binFile,'w');
fwrite(fid2,zeros(length(streams{stream_count}.time_stamps),1),'int16');
fclose(fid2);
% fid3 = fopen(streams{stream_count}.tmpfile,'r');
% lines = {};
% while ~feof(fid3), lines{end+1} = fgets(fid3);end %#ok
% fclose(fid3);
eventObj = event;
eventObj = eventObj.addEvent(1:length(streams{stream_count}.time_stamps),streams{stream_count}.time_series);
metadata.binFile = binFile;
metadata.precision = 'int16';
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.event = eventObj.saveobj;
metadata.class = 'markerStream';
header = metadata2headerFile(metadata);
% video
elseif ~isempty(strfind(lower(streams{stream_count}.info.type),'videostream'))
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [numberOfChannels length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
fid = fopen(binFile,'w');
% fwrite(fid,mmfObj.Data.x',precision);
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
% clear mmfObj
metadata.binFile = binFile;
metadata.videoFile = '';
metadata.unit = 'none';
metadata.artifactMask = sparse(length(metadata.timeStamp),metadata.numberOfChannels);
metadata.class = 'videoStream';
header = metadata2headerFile(metadata);
% scene
elseif strfind(lower(streams{stream_count}.info.type),'scenestream')
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [numberOfChannels length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
fid = fopen(binFile,'w');
% for ch=1:numberOfChannels, fwrite(fid,mmfObj.Data.x(ch,:)',precision);end
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
% clear mmfObj
metadata.binFile = binFile;
metadata.class = 'sceneStream';
header = metadata2headerFile(metadata);
% audio
elseif strfind(lower(streams{stream_count}.info.type),'audio')
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [numberOfChannels length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
fid = fopen(binFile,'w');
% sr = metadata.samplingRate;
% if sr > 20e3
% metadata.samplingRate = fix(sr/2);
% metadata.timeStamp = metadata.timeStamp(1:2:end);
% b = fir1(sr, 0.9*sr/sr, 'low', hann(sr+1), 'scale');
% for ch=1:numberOfChannels
% data = filtfilt_fast(b,1,mmfObj.Data.x(ch,1:2:end)');
% fwrite(fid,data(:),precision);
% end
% else for ch=1:numberOfChannels, fwrite(fid,mmfObj.Data.x(ch,:)',precision);end
% end
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
% clear mmfObj
metadata.artifactMask = sparse(length(metadata.timeStamp),numberOfChannels);
metadata.binFile = binFile;
metadata.class = 'audioStream';
header = metadata2headerFile(metadata);
% hotspot
elseif strfind(lower(streams{stream_count}.info.type),'hotspotdata')
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [numberOfChannels length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
fid = fopen(binFile,'w');
% for ch=1:numberOfChannels, fwrite(fid,mmfObj.Data.x(ch,:)',precision);end
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
% clear mmfObj
metadata.binFile = binFile;
metadata.class = 'gazeStream';
header = metadata2headerFile(metadata);
else
binFile = [obj.mobiDataDirectory filesep name '_' uuid '_' obj.sessionUUID '.bin'];
% mmfObj = memmapfile(streams{stream_count}.tmpfile,'Format',{streams{stream_count}.precision...
% [numberOfChannels length(streams{stream_count}.time_stamps)] 'x'},'Writable',false);
fid = fopen(binFile,'w');
% for ch=1:numberOfChannels, fwrite(fid,mmfObj.Data.x(ch,:)',precision);end
fwrite(fid,streams{stream_count}.time_series',precision);
fclose(fid);
% clear mmfObj
metadata.binFile = binFile;
metadata.class = 'dataStream';
header = metadata2headerFile(metadata);
end
obj.addItem(header);
if isfield(streams{stream_count},'tmpfile'), java.io.File(streams{stream_count}.tmpfile).delete();end
streams{stream_count}.time_series = [];
streams{stream_count}.time_stamps = [];
mismatchFlag = false;
catch ME
fprintf(fLog,'%s. \n',ME.message);
seeLogFile = true;
warning(ME.message);
end
obj.container.statusbar(stream_count);
end
catch ME
fprintf(fLog,'%s\n.',ME.message);
seeLogFile = true;
obj.container.lockGui;
obj.disconnect;
for k=1:length(streams), if isfield(streams{k},'tmpfile') && exist(streams{k}.tmpfile,'file'), java.io.File(streams{k}.tmpfile).delete();end;end
if seeLogFile, disp(['Logs were saved in: ' logFile]);end
ME.rethrow;
end
for k=1:length(streams), if isfield(streams{k},'tmpfile') && exist(streams{k}.tmpfile,'file'), java.io.File(streams{k}.tmpfile).delete();end;end
obj.listenerHandle.Enabled = true;
obj.connect;
obj.updateLogicalStructure;
% stack = dbstack;
% if ~any(~cellfun(@isempty,strfind({stack.name},'dataSourceFromFolder')))
% markerIndices = obj.getItemIndexFromItemClass('markerStream');
% if length(markerIndices) > 1, obj.makeMultiMarkerStreamObject;end
% end
if seeLogFile, disp(['Logs were saved in: ' logFile]);end
end
end
methods(Static)
function obj = merge(obj,dsourceObjs)
parentCommand.commandName = 'dataSourceFromFolder';
parentCommand.varargin = {fileparts(dsourceObjs{1}.item{1}.parentCommand.varargin{1}),obj.mobiDataDirectory};
Nf = length(dsourceObjs);
for folder=1:Nf
for it=1:length(dsourceObjs{folder}.item)
try
sourceId = dsourceObjs{folder}.item{it}.hardwareMetaData.source_id;
if ~ischar(sourceId), sourceId = '';end
hostname = dsourceObjs{folder}.item{it}.hardwareMetaData.hostname;
if ~ischar(hostname), hostname = '';end
index = obj.findItem(dsourceObjs{folder}.item{it}.uuid);
ind = intersect(obj.getItemIndexFromSourceId(sourceId), obj.getItemIndexFromHostname(hostname));
if isempty(ind), ind = 0;end
if index
fid = fopen(obj.item{index}.binFile,'a');
fwrite(fid,dsourceObjs{folder}.item{it}.data(:),obj.item{index}.precision);
fclose(fid);
if ~isempty(dsourceObjs{folder}.item{it}.event.latencyInFrame)
latency = dsourceObjs{folder}.item{it}.event.latencyInFrame;
latency = length(obj.item{index}.timeStamp) + latency;
hedTag = dsourceObjs{folder}.item{it}.event.hedTag;
obj.item{index}.event = obj.item{index}.event.addEvent(latency,hedTag);
end
obj.item{index}.event = obj.item{index}.event.addEvent(length(obj.item{index}.timeStamp),'boundary');
saveProperty(obj.item{index},'timeStamp',[obj.item{index}.timeStamp dsourceObjs{folder}.item{it}.timeStamp]);
saveProperty(obj.item{index},'artifactMask',[obj.item{index}.artifactMask; dsourceObjs{folder}.item{it}.artifactMask]);
header = obj.item{index}.header;
constructorHandle = eval(['@' class(obj.item{index})]);
delete(obj.item{index});
obj.item{index} = constructorHandle(header);
obj.item{index}.container = obj;
elseif ind
fid = fopen(obj.item{ind}.binFile,'a');
fwrite(fid,dsourceObjs{folder}.item{it}.data(:),obj.item{ind}.precision);
fclose(fid);
if ~isempty(dsourceObjs{folder}.item{it}.event.latencyInFrame)
latency = dsourceObjs{folder}.item{it}.event.latencyInFrame;
latency = length(obj.item{ind}.timeStamp) + latency;
hedTag = dsourceObjs{folder}.item{it}.event.hedTag;
obj.item{ind}.event = obj.item{ind}.event.addEvent(latency,hedTag);
end
obj.item{ind}.event = obj.item{ind}.event.addEvent(length(obj.item{ind}.timeStamp),'boundary');
saveProperty(obj.item{ind},'timeStamp',[obj.item{ind}.timeStamp dsourceObjs{folder}.item{it}.timeStamp]);
saveProperty(obj.item{ind},'artifactMask',[obj.item{ind}.artifactMask; dsourceObjs{folder}.item{it}.artifactMask]);
header = obj.item{ind}.header;
constructorHandle = eval(['@' class(obj.item{ind})]);
delete(obj.item{ind});
obj.item{ind} = constructorHandle(header);
obj.item{ind}.container = obj;
else
metadata = saveobj(dsourceObjs{folder}.item{it});
binFile = fullfile(obj.mobiDataDirectory, [metadata.name '_' metadata.uuid '_' obj.sessionUUID '.bin']);
copyfile(dsourceObjs{folder}.item{it}.binFile,binFile);
metadata.binFile = binFile;
metadata.sessionUUID = obj.sessionUUID;
metadata.parentCommand = parentCommand;
header = metadata2headerFile(metadata);
obj.addItem(header);
end
catch ME
binFile = metadata.binFile;
header = [binFile(1:end-3) 'hdr'];
if xor(exist(binFile,'file'),exist(binFile,'file'))
try delete(binFile);end %#ok
try delete(header); end %#ok
end
warning(ME.message)
end
end
end
N = length(obj.item);
t0 = inf(N,1);
for it=1:N, t0(it) = obj.item{it}.timeStamp(1);end
t0 = min(t0);
for it=1:N, obj.item{it}.correctTimeStampDefects(obj.item{it}.timeStamp - t0);end
end
end
end