-
Notifications
You must be signed in to change notification settings - Fork 16
/
mff_createmff.m
49 lines (42 loc) · 1.9 KB
/
mff_createmff.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
% mff_createmff - create empty MFF file/folder
%
% Usage:
% mff_createmff(mffFile);
%
% Inputs:
% 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 events = mff_createmff(mffURI)
mff_path;
% Test script for matlab binding of Java based MFF file access library.
% The MFFFactory class is used to access all resources contained in a
% MFF package file. This example loads an event track from the example file
% and writes out information about events in that file.
% create a factory
mfffactorydelegate = javaObject('com.egi.services.mff.api.LocalMFFFactoryDelegate');
mfffactory = javaObject('com.egi.services.mff.api.MFFFactory', mfffactorydelegate); %MFFResourceType.MFFResourceTypes.
mffFileResourceType = javaObject('com.egi.services.mff.api.MFFResourceType', javaMethod('valueOf', 'com.egi.services.mff.api.MFFResourceType$MFFResourceTypes', 'kMFF_RT_MFFFile'));
if mfffactory.resourceExistsAtURI(mffURI, mffFileResourceType)
disp('The resource already exists');
else
disp('The resource does not exist');
if mfffactory.createResourceAtURI(mffURI, mffFileResourceType)
disp('Success creating MFF file.');
else
disp('An error occured creating the MFF file.');
end
end