[327] | 1 | %'fileparts_uvmat': Splits a file name and recognize file naming convention
|
---|
[318] | 2 | %--------------------------------------------------------------------
|
---|
[327] | 3 | %[RootPath,SubDir,RootFile,i1,i2,j1,j2,Ext,NomType]=fileparts_uvmat(FileInput)
|
---|
[318] | 4 | %
|
---|
| 5 | %OUTPUT:
|
---|
[334] | 6 | %RootPath: path to the base file
|
---|
| 7 | %SubDir: name of the SubDirectory for netcdf files (NomTypes with index pairs 1-2 or ab )
|
---|
[327] | 8 | %RootFile: FileName without appendix
|
---|
| 9 | %i1: first number i
|
---|
| 10 | %i2: second number i (only for .nc files)
|
---|
| 11 | %j1: first number j
|
---|
| 12 | %j2: second number j (only for .nc files)
|
---|
[334] | 13 | %FileExt: file Extension
|
---|
[327] | 14 | %NomType: char chain characterizing the file nomenclature: with values
|
---|
[334] | 15 | % NomType='': constant name [filebase FileExt] (default output if 'NomType' is undefined)
|
---|
[327] | 16 | % NomType='*':constant name for a file representing a series (e.g. avi movie)
|
---|
| 17 | % NomType='1','01',or '001'...': series of files with a single index i without separator(e.g. 'aa045.png').
|
---|
| 18 | % NomType='1a','1A','01a','01A','1_a','01_A',... with a numerical index and an index letter(e.g.'aa45b.png') (lower or upper case)
|
---|
| 19 | % NomType='1_1','01_1',...: matrix of files with two indices i and j separated by '_'(e.g. 'aa45_2.png')
|
---|
| 20 | % NomType='1-1': from pairs from a single index (e.g. 'aa_45-47.nc')
|
---|
[334] | 21 | % NomType='1_1-2': pairs of j indices (e.g. 'aa_45_2-3.nc')
|
---|
| 22 | % NomType='1-2_1': pairs of i indices (e.g. 'aa_45-46_2.nc')
|
---|
| 23 | % NomType='1_ab','01_ab','01ab'..., from pairs of '#' images (e.g.'aa045bc.nc'), FileExt='.nc'
|
---|
[327] | 24 | %SubDir: name of the SubDirectory for netcdf files
|
---|
[318] | 25 | %
|
---|
| 26 | %INPUT:
|
---|
[327] | 27 | %FileInput: complete name of the file, including path
|
---|
[318] | 28 |
|
---|
[334] | 29 | function [RootPath,SubDir,RootFile,i1,i2,j1,j2,FileExt,NomType]=fileparts_uvmat(FileInput)
|
---|
| 30 | RootPath='';
|
---|
| 31 | SubDir='';
|
---|
| 32 | RootFile='';
|
---|
[327] | 33 | i1=[];
|
---|
[318] | 34 | i2=[];
|
---|
| 35 | j1=[];
|
---|
| 36 | j2=[];
|
---|
[334] | 37 | FileExt='';
|
---|
[327] | 38 | NomType='';
|
---|
[318] | 39 |
|
---|
[334] | 40 | %% display help and test function in the absence of input arument
|
---|
[327] | 41 | if ~exist('FileInput','var')
|
---|
| 42 | help fileparts_uvmat;
|
---|
| 43 | test();
|
---|
| 44 | return
|
---|
| 45 | end
|
---|
[318] | 46 |
|
---|
[339] | 47 | %% default root name output
|
---|
[334] | 48 | [RootPath,FileName,FileExt]=fileparts(FileInput);
|
---|
[339] | 49 | RootFile=FileName;
|
---|
[327] | 50 |
|
---|
[339] | 51 | %% case of input file name which is a pure number
|
---|
[334] | 52 | if ~isnan(str2double(FileName))
|
---|
| 53 | RootFile='';
|
---|
| 54 | i1=str2double(FileName);
|
---|
| 55 | return
|
---|
| 56 | end
|
---|
[339] | 57 |
|
---|
| 58 | %% recursive test on FileName starting from the end
|
---|
[327] | 59 | % test whether FileName ends with a number or not
|
---|
[334] | 60 | r=regexp(FileName,'.*\D(?<num1>\d+)$','names');% \D = not a digit, \d =digit
|
---|
[318] | 61 |
|
---|
[327] | 62 | if ~isempty(r)% FileName end matches num1
|
---|
[318] | 63 | num1=r.num1;
|
---|
[334] | 64 | r=regexp(FileName,['.*\D(?<num2>\d+)(?<delim1>[-_])' num1 '$'],'names');
|
---|
[327] | 65 | if ~isempty(r)% FileName end matches num2+delim1+num1
|
---|
[318] | 66 | delim1=r.delim1;
|
---|
| 67 | num2=r.num2;
|
---|
[352] | 68 | switch delim1
|
---|
| 69 | case '_'
|
---|
| 70 | delim2_to_match='-';
|
---|
| 71 | case '-'
|
---|
| 72 | delim2_to_match='_';
|
---|
| 73 | end
|
---|
| 74 | r=regexp(FileName,['.*\D(?<num3>\d+)(?<delim2>' delim2_to_match ')' num2 delim1 num1 '$'],'names');
|
---|
[346] | 75 | if ~isempty(r) % FileName end matches num3 delim2 num2 delim1 num1
|
---|
[318] | 76 | delim2=r.delim2;
|
---|
| 77 | num3=r.num3;
|
---|
| 78 | switch delim1
|
---|
| 79 | case '_'
|
---|
[327] | 80 | j1=str2double(num1);
|
---|
[318] | 81 | switch delim2
|
---|
| 82 | case '-'
|
---|
[327] | 83 | i1=str2double(num3);
|
---|
| 84 | i2=str2double(num2);
|
---|
[318] | 85 | end
|
---|
| 86 | case '-'
|
---|
[327] | 87 | j1=str2double(num2);
|
---|
| 88 | j2=str2double(num1);
|
---|
[318] | 89 | switch delim2
|
---|
| 90 | case '_'
|
---|
[327] | 91 | i1=str2double(num3);
|
---|
[318] | 92 | end
|
---|
| 93 | end
|
---|
[327] | 94 | NomType=[get_type(num3) delim2 get_type(num2) delim1 get_type(num1)];
|
---|
| 95 | RootFile=regexprep(FileName,[num3 delim2 num2 delim1 num1],'');
|
---|
[318] | 96 | else
|
---|
| 97 | switch delim1
|
---|
| 98 | case '_'
|
---|
[327] | 99 | i1=str2double(num2);
|
---|
| 100 | j1=str2double(num1);
|
---|
[318] | 101 | case '-'
|
---|
[327] | 102 | i1=str2double(num2);
|
---|
| 103 | i2=str2double(num1);
|
---|
[318] | 104 | end
|
---|
[327] | 105 | NomType=[get_type(num2) delim1 get_type(num1)];
|
---|
[379] | 106 | RootFile=regexprep(FileName,[num2 delim1 num1 '$'],'');
|
---|
[318] | 107 | end
|
---|
[334] | 108 | NomType=regexprep(NomType,'-1','-2'); %set 1-2 instead of 1-1
|
---|
[318] | 109 | else% only one number at the end
|
---|
[327] | 110 | i1=str2double(num1);
|
---|
| 111 | NomType=get_type(num1);
|
---|
| 112 | RootFile=regexprep(FileName,num1,'');
|
---|
[318] | 113 | end
|
---|
[327] | 114 | else% FileName ends with a letter
|
---|
[334] | 115 | %r=regexp(FileName,'.*[^a^b^A^B](?<end_string>ab|AB|[abAB])\>','names');
|
---|
| 116 | NomType='';
|
---|
| 117 | r=regexp(RootFile,'\D(?<num1>\d+)(?<end_string>[a-z]|[A-Z]|[a-z][a-z]|[A-Z][A-Z])$','names');
|
---|
[318] | 118 | if ~isempty(r)
|
---|
[334] | 119 | NomType=get_type(r.end_string);
|
---|
| 120 | RootFile=regexprep(RootFile,[r.num1 r.end_string '$'],'');
|
---|
| 121 | else % case with separator '_'
|
---|
| 122 | r=regexp(RootFile,'\D(?<num1>\d+)_(?<end_string>[a-z]|[A-Z]|[a-z][a-z]|[A-Z][A-Z])$','names');
|
---|
[318] | 123 | if ~isempty(r)
|
---|
[334] | 124 | NomType=['_' get_type(r.end_string)];
|
---|
| 125 | RootFile=regexprep(RootFile,[r.num1 '_' r.end_string '$'],'');
|
---|
| 126 | end
|
---|
[318] | 127 | end
|
---|
[334] | 128 | if ~isempty(NomType)
|
---|
| 129 | [j1,j2]=get_value(r.end_string);
|
---|
| 130 | i1=str2double(r.num1);
|
---|
| 131 | NomType=[get_type(r.num1) NomType];
|
---|
| 132 | end
|
---|
[318] | 133 | end
|
---|
| 134 |
|
---|
[334] | 135 | %% suppress '_' at the end of RootFile, put it on NomType
|
---|
| 136 | if strcmp(RootFile(end),'_')
|
---|
| 137 | RootFile(end)=[];
|
---|
| 138 | NomType=['_' NomType];
|
---|
[333] | 139 | end
|
---|
[318] | 140 |
|
---|
[339] | 141 | %% extract subdirectory for pairs i1-i2 or j1-j2 (or ab, AB)
|
---|
| 142 | if ~isempty(i2) || ~isempty(j2)
|
---|
| 143 | r=regexp(RootPath,'\<(?<newrootpath>.+)(\\|/)(?<subdir>[^\\^/]+)(\\|/)*\>','names');
|
---|
| 144 | if ~isempty(r)
|
---|
| 145 | SubDir=r.subdir;
|
---|
| 146 | RootPath=r.newrootpath;
|
---|
| 147 | end
|
---|
| 148 | end
|
---|
| 149 |
|
---|
[334] | 150 | % if ~isempty(regexp(NomType,'-|ab|AB'))
|
---|
| 151 | % r=regexp(RootPath,'\<(?<newrootpath>.+)(\\|/)(?<subdir>[^\\^/]+)(\\|/)*\>','names');
|
---|
| 152 | % if ~isempty(r)
|
---|
| 153 | % SubDir=r.subdir;
|
---|
| 154 | % RootPath=r.newrootpath;
|
---|
| 155 | % end
|
---|
| 156 | % end
|
---|
[318] | 157 |
|
---|
| 158 |
|
---|
| 159 | function type=get_type(s)
|
---|
| 160 | % returns the type of a label string:
|
---|
| 161 | % for numbers, whether filled with 0 or not.
|
---|
[334] | 162 | type='';%default
|
---|
[318] | 163 |
|
---|
[334] | 164 | if ~isempty(regexp(s,'\<\d+\>','ONCE'))
|
---|
| 165 | type=num2str(1,['%0' num2str(length(s)) 'd']);
|
---|
| 166 | else
|
---|
| 167 | code=double(s); % ascii code of the input string
|
---|
| 168 | if code >= 65 & code <= 90 % test on ascii code for capital letters
|
---|
| 169 | if length(s)==1
|
---|
| 170 | type='A';
|
---|
| 171 | elseif length(s)==2
|
---|
| 172 | type='AB';
|
---|
[318] | 173 | end
|
---|
[334] | 174 | elseif code >= 97 & code <= 122 % test on ascii code for small letters
|
---|
| 175 | if length(s)==1
|
---|
| 176 | type='a';
|
---|
| 177 | elseif length(s)==2
|
---|
| 178 | type='ab';
|
---|
| 179 | end
|
---|
| 180 | end
|
---|
[318] | 181 | end
|
---|
| 182 |
|
---|
| 183 |
|
---|
[334] | 184 |
|
---|
[318] | 185 | function [j1,j2]=get_value(s)
|
---|
[334] | 186 | % returns the value of a label string:
|
---|
[318] | 187 | % for numbers, whether filled with 0 or not.
|
---|
| 188 | % for letters, either a, A or ab, AB.
|
---|
| 189 | j1=[];
|
---|
| 190 | j2=[];
|
---|
[334] | 191 | code=double(s); % ascii code of the input string
|
---|
| 192 | if code >= 65 & code <= 90 % test on ascii code for capital letters
|
---|
| 193 | index=double(s)-64; %change capital letters to corresponding number in the alphabet
|
---|
| 194 | elseif code >= 97 & code <= 122 % test on ascii code for small letters
|
---|
| 195 | index=double(s)-96; %change small letters to corresponding number in the alphabet
|
---|
| 196 | else
|
---|
| 197 | index=str2num(s);
|
---|
[318] | 198 | end
|
---|
[334] | 199 | if ~isempty(index)
|
---|
| 200 | j1=index(1);
|
---|
| 201 | if length(index)==2
|
---|
| 202 | j2=index(2);
|
---|
| 203 | end
|
---|
| 204 | end
|
---|
[318] | 205 |
|
---|
| 206 |
|
---|
[327] | 207 | function test(name)
|
---|
| 208 | fprintf([...
|
---|
| 209 | '######################################################\n'...
|
---|
| 210 | ' Test for fileparts_uvmat \n'...
|
---|
| 211 | '######################################################\n'...
|
---|
| 212 | ]);
|
---|
| 213 |
|
---|
| 214 | if exist('name','var')
|
---|
| 215 | FileName_list={name};
|
---|
| 216 | else
|
---|
| 217 | FileName_list={...
|
---|
| 218 | 'Image1a.png'...
|
---|
| 219 | 'toto'...
|
---|
| 220 | 'B011_1.png'...
|
---|
| 221 | 'B001.png'...
|
---|
| 222 | 'B55a.tif'...
|
---|
| 223 | 'B002B.tiff'...
|
---|
| 224 | 'B_001.png'...
|
---|
| 225 | 'B_3331AB.png'...
|
---|
| 226 | 'aa45_2.png'...
|
---|
| 227 | 'B005.png'...
|
---|
| 228 | 'Image_3.jpg'...
|
---|
| 229 | 'Image_3-4.jpg'...
|
---|
| 230 | 'Image_3-4_2.jpg'...
|
---|
| 231 | 'Image_5_3-4.jpg'...
|
---|
| 232 | 'Image_3_ab.jpg'...
|
---|
[334] | 233 | 'Image005AD.jpg'...
|
---|
| 234 | 'Image_3_ac.jpg'...
|
---|
[327] | 235 | 'Image_3a-b.jpg'...
|
---|
| 236 | 'Image3_a.jpg'...
|
---|
| 237 | 'movie57.avi'...
|
---|
[346] | 238 | 'merged_20_12_1.png'...
|
---|
[327] | 239 | };
|
---|
| 240 | end
|
---|
| 241 |
|
---|
| 242 | for FileName=FileName_list
|
---|
[334] | 243 | % [RootPath,RootFile,i1,i2,str_a,str_b,FileExt,NomType,SubDir]=name2display(FileName{1});
|
---|
[353] | 244 | [tild,SubDir,RootFile,i1,i2,j1,j2,tild,NomType]=...
|
---|
[327] | 245 | fileparts_uvmat(FileName{1});
|
---|
| 246 | fprintf([...
|
---|
| 247 | 'File name : ' FileName{1} '\n'...
|
---|
[333] | 248 | ' NomType : ' NomType '\n'...
|
---|
| 249 | ' RootFile : ' RootFile '\n'...
|
---|
| 250 | ' i1 / i2 : ' num2str(i1) ' / ' num2str(i2) '\n'...
|
---|
| 251 | ' j1 / j2 : ' num2str(j1) ' / ' num2str(j2) '\n'...
|
---|
[327] | 252 | ]);
|
---|
| 253 | end
|
---|
| 254 |
|
---|
| 255 |
|
---|