1
10
13
14
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
112
113
114
117
118
119
120
121
124
125
126
127
128
129
130
131
132
133
135
136
137
138
144
145
146
147
148
149
150
151
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
170
171
172
173
174
175
182
183
184
185
186
188
189
190
191
192
193
194
195
198
199
200
201
202
203
204
205
206
207
208
209
211
212
213
214
215
216
217
218
219
220
224
225
226
227
228
229
235
236
237
238
239
240
241
242
243
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
299
300
301
302
303
304
305
306
307
308
309
315
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
358
359
360
361
362
363
364
365
366
367
368
369
370
376
377
378
379
380
381
387
388
389
395
396
397
403
404
405
411
412
413
419
420
421
427
428
429
435
436
437
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
496
502
503
504
505
506
507
508
509
510
511
512
513
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
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
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_directory.h"
#include "fx_utility.h"
#ifdef FX_ENABLE_EXFAT
#include "fx_directory_exFAT.h"
#endif
#ifndef FX_NO_LOCAL_PATH
FX_LOCAL_PATH_SETUP
#endif
...
...
UINT _fx_directory_next_full_entry_find(FX_MEDIA *media_ptr,
CHAR *directory_name, UINT *attributes, ULONG *size,
UINT *year, UINT *month, UINT *day, UINT *hour, UINT *minute, UINT *second)
{
ULONG i;
UINT status;
UINT temp_status;
ULONG cluster, next_cluster = 0;
ULONG64 directory_size;
FX_DIR_ENTRY entry;
FX_DIR_ENTRY *search_dir_ptr;
FX_PATH *path_ptr;
#ifndef FX_MEDIA_DISABLE_SEARCH_CACHE
UINT index;
CHAR *path_string_ptr = FX_NULL;/* ... */
#endif
#ifdef FX_ENABLE_EXFAT
UCHAR unicode_name[FX_MAX_LONG_NAME_LEN * 2];
UINT unicode_len = 0;/* ... */
#endif
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_directory_next_full_entry_finds++;/* ... */
#endif
entry.fx_dir_entry_name = media_ptr -> fx_media_name_buffer + FX_MAX_LONG_NAME_LEN;
entry.fx_dir_entry_short_name[0] = 0;
#ifdef FX_ENABLE_EXFAT
entry.fx_dir_entry_secondary_count = 0;/* ... */
#endif
if (media_ptr -> fx_media_id != FX_MEDIA_ID)
{
return(FX_MEDIA_NOT_OPEN);
}if (media_ptr -> fx_media_id != FX_MEDIA_ID) { ... }
FX_TRACE_IN_LINE_INSERT(FX_TRACE_DIRECTORY_NEXT_FULL_ENTRY_FIND, media_ptr, directory_name, 0, 0, FX_TRACE_DIRECTORY_EVENTS, 0, 0)
FX_PROTECT
/* ... */
#ifndef FX_NO_LOCAL_PATH
if (_tx_thread_current_ptr -> tx_thread_filex_ptr)
{
path_ptr = (FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr;
if (path_ptr -> fx_path_directory.fx_dir_entry_name[0])
{
#ifndef FX_MEDIA_DISABLE_SEARCH_CACHE
path_string_ptr = ((FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_string;/* ... */
#endif
search_dir_ptr = &path_ptr -> fx_path_directory;
}if (path_ptr -> fx_path_directory.fx_dir_entry_name[0]) { ... }
else
{
/* ... */
search_dir_ptr = FX_NULL;
}else { ... }
}if (_tx_thread_current_ptr -> tx_thread_filex_ptr) { ... }
else/* ... */
#endif
/* ... */
if (media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name[0])
{
path_ptr = &media_ptr -> fx_media_default_path;
#ifndef FX_MEDIA_DISABLE_SEARCH_CACHE
path_string_ptr = media_ptr -> fx_media_default_path.fx_path_string;/* ... */
#endif
search_dir_ptr = &path_ptr -> fx_path_directory;
}else if (media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name[0]) { ... }
else
{
path_ptr = &media_ptr -> fx_media_default_path;
/* ... */
search_dir_ptr = FX_NULL;
}else { ... }
if (search_dir_ptr)
{
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_exFAT)
{
directory_size = search_dir_ptr -> fx_dir_entry_file_size / FX_DIR_ENTRY_SIZE;
}if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... }
else
{
#endif
if (path_ptr -> fx_path_current_entry != 0)
{
directory_size = search_dir_ptr -> fx_dir_entry_file_size;
}if (path_ptr -> fx_path_current_entry != 0) { ... }
else
{
search_dir_ptr -> fx_dir_entry_last_search_cluster = 0;
/* ... */
i = 0;
cluster = search_dir_ptr -> fx_dir_entry_cluster;
while (cluster < media_ptr -> fx_media_fat_reserved)
{
i++;
status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster);
if (status != FX_SUCCESS)
{
FX_UNPROTECT
return(status);
}if (status != FX_SUCCESS) { ... }
if ((cluster < FX_FAT_ENTRY_START) || (cluster == next_cluster) || (i > media_ptr -> fx_media_total_clusters))
{
FX_UNPROTECT
return(FX_FAT_READ_ERROR);
}if ((cluster < FX_FAT_ENTRY_START) || (cluster == next_cluster) || (i > media_ptr -> fx_media_total_clusters)) { ... }
cluster = next_cluster;
}while (cluster < media_ptr -> fx_media_fat_reserved) { ... }
directory_size = (((ULONG64) media_ptr -> fx_media_bytes_per_sector) *
((ULONG64) media_ptr -> fx_media_sectors_per_cluster) * i)
/ (ULONG64) FX_DIR_ENTRY_SIZE;
search_dir_ptr -> fx_dir_entry_file_size = directory_size;
}else { ... }
#ifdef FX_ENABLE_EXFAT
}else { ... }
#endif
}if (search_dir_ptr) { ... }
else
{
directory_size = (ULONG)media_ptr -> fx_media_root_directory_entries;
}else { ... }
status = FX_NO_MORE_ENTRIES;
while (path_ptr -> fx_path_current_entry < directory_size)
{
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_exFAT)
{
temp_status = _fx_directory_exFAT_entry_read(media_ptr, search_dir_ptr,
&(path_ptr -> fx_path_current_entry), &entry,
0, FX_FALSE, unicode_name, &unicode_len);
}if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... }
else
{
#endif
temp_status = _fx_directory_entry_read(media_ptr, search_dir_ptr,
&(path_ptr -> fx_path_current_entry), &entry);
#ifdef FX_ENABLE_EXFAT
}else { ... }
#endif
if (temp_status != FX_SUCCESS)
{
FX_UNPROTECT
return(temp_status);
}if (temp_status != FX_SUCCESS) { ... }
#ifdef FX_ENABLE_EXFAT
if (entry.fx_dir_entry_type == FX_EXFAT_DIR_ENTRY_TYPE_END_MARKER)
{
status = FX_NO_MORE_ENTRIES;
break;
}if (entry.fx_dir_entry_type == FX_EXFAT_DIR_ENTRY_TYPE_END_MARKER) { ... }
/* ... */#endif
#ifdef FX_ENABLE_EXFAT
else if (entry.fx_dir_entry_type != FX_EXFAT_DIR_ENTRY_TYPE_FILE_DIRECTORY)
#else
if (((UCHAR)entry.fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) && (entry.fx_dir_entry_short_name[0] == 0))
#endif
{
path_ptr -> fx_path_current_entry++;
continue;
...}
#ifdef FX_ENABLE_EXFAT
else
#else
else if ((UCHAR)entry.fx_dir_entry_name[0] != (UCHAR)FX_DIR_ENTRY_DONE)
#endif
{
for (i = 0; entry.fx_dir_entry_name[i]; i++)
{
*directory_name = entry.fx_dir_entry_name[i];
directory_name++;
}for (i = 0; entry.fx_dir_entry_name[i]; i++) { ... }
*directory_name = (CHAR)0;
if (attributes)
{
*attributes = entry.fx_dir_entry_attributes;
}if (attributes) { ... }
if (size)
{
*size = (ULONG)entry.fx_dir_entry_file_size;
}if (size) { ... }
if (year)
{
*year = ((entry.fx_dir_entry_date >> FX_YEAR_SHIFT) & FX_YEAR_MASK) + FX_BASE_YEAR;
}if (year) { ... }
if (month)
{
*month = (entry.fx_dir_entry_date >> FX_MONTH_SHIFT) & FX_MONTH_MASK;
}if (month) { ... }
if (day)
{
*day = entry.fx_dir_entry_date & FX_DAY_MASK;
}if (day) { ... }
if (hour)
{
*hour = (entry.fx_dir_entry_time >> FX_HOUR_SHIFT) & FX_HOUR_MASK;
}if (hour) { ... }
if (minute)
{
*minute = (entry.fx_dir_entry_time >> FX_MINUTE_SHIFT) & FX_MINUTE_MASK;
}if (minute) { ... }
if (second)
{
*second = (entry.fx_dir_entry_time & FX_SECOND_MASK) * 2;
}if (second) { ... }
path_ptr -> fx_path_current_entry++;
#ifndef FX_MEDIA_DISABLE_SEARCH_CACHE
{
UINT v, j;
v = 0;
if (path_string_ptr)
{
while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (path_string_ptr[v]))
{
media_ptr -> fx_media_last_found_name[v] = path_string_ptr[v];
v++;
}while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (path_string_ptr[v])) { ... }
}if (path_string_ptr) { ... }
media_ptr -> fx_media_last_found_name[v++] = '/';
j = 0;
while ((v < FX_MAX_LAST_NAME_LEN) && (entry.fx_dir_entry_name[j]))
{
media_ptr -> fx_media_last_found_name[v] = entry.fx_dir_entry_name[j];
v++;
j++;
}while ((v < FX_MAX_LAST_NAME_LEN) && (entry.fx_dir_entry_name[j])) { ... }
if (v < FX_MAX_LAST_NAME_LEN)
{
media_ptr -> fx_media_last_found_name[v] = FX_NULL;
}if (v < FX_MAX_LAST_NAME_LEN) { ... }
else
{
media_ptr -> fx_media_last_found_name[0] = FX_NULL;
}else { ... }
if (search_dir_ptr)
{
media_ptr -> fx_media_last_found_directory = *search_dir_ptr;
media_ptr -> fx_media_last_found_directory_valid = FX_TRUE;
}if (search_dir_ptr) { ... }
else
{
media_ptr -> fx_media_last_found_directory_valid = FX_FALSE;
}else { ... }
media_ptr -> fx_media_last_found_entry = entry;
media_ptr -> fx_media_last_found_entry.fx_dir_entry_name = media_ptr -> fx_media_last_found_file_name;
for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++)
{
media_ptr -> fx_media_last_found_file_name[index] = entry.fx_dir_entry_name[index];
if (entry.fx_dir_entry_name[index] == (CHAR)FX_NULL)
{
if (v < (FX_MAX_LONG_NAME_LEN - 1))
{
break;
}if (v < (FX_MAX_LONG_NAME_LEN - 1)) { ... }
}if (entry.fx_dir_entry_name[index] == (CHAR)FX_NULL) { ... }
}for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++) { ... }
...}/* ... */
#endif
status = FX_SUCCESS;
break;
...}
#ifndef FX_ENABLE_EXFAT
else
{
status = FX_NO_MORE_ENTRIES;
break;
}else { ... }
/* ... */#endif
}while (path_ptr -> fx_path_current_entry < directory_size) { ... }
FX_UNPROTECT
return(status);
}{ ... }