-
Notifications
You must be signed in to change notification settings - Fork 16
/
mff_exportinfo.m
46 lines (41 loc) · 1.78 KB
/
mff_exportinfo.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
% mff_exportinfo - export MFF 'info.xml' file from EEGLAB structure
%
% Usage:
% mff_exportinfo(EEG, mffFile);
%
% Inputs:
% EEG - EEGLAB structure
% mffFile - filename/foldername for the MFF file (MFF file/folder must
% already exist)
% This file is part of mffmatlabio.
%
% mffmatlabio is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% mffmatlabio is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with mffmatlabio. If not, see <https://www.gnu.org/licenses/>.
function EEG = mff_exportinfo(EEG, mffFile)
mff_path;
mfffactorydelegate = javaObject('com.egi.services.mff.api.LocalMFFFactoryDelegate');
mfffactory = javaObject('com.egi.services.mff.api.MFFFactory', mfffactorydelegate);
infoType = javaObject('com.egi.services.mff.api.MFFResourceType', javaMethod('valueOf', 'com.egi.services.mff.api.MFFResourceType$MFFResourceTypes', 'kMFF_RT_Info'));
if mfffactory.createResourceAtURI(fullfile(mffFile, 'info.xml'), infoType)
fprintf('Info.xml file created successfully\n');
else
fprintf('Info.xml ressource already exist, overwriting\n');
end
info = mfffactory.openResourceAtURI( fullfile(mffFile, 'info.xml'), infoType);
info.setMFFVersion(3);
if ~isfield(EEG.etc, 'recordingtime')
error('Unknow record time');
end
begTime = mff_encodetime(EEG.etc.recordingtime, EEG.etc.timezone);
info.setRecordTime(begTime);
info.saveResource();