Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_directory.h"
#include "fx_utility.h"
#include "fx_directory_exFAT.h"
...
...
_fx_directory_search(FX_MEDIA *, CHAR *, FX_DIR_ENTRY *, FX_DIR_ENTRY *, CHAR **)
Files
loading...
SourceVuSTM32 Libraries and Samplesfilexcommon/src/fx_directory_search.c
 
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** FileX Component */ /** */ /** Directory */ /** */... /**************************************************************************/ /**************************************************************************/ #define FX_SOURCE_CODE /* Include necessary system files. */ #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 /* FX_ENABLE_EXFAT */ #ifndef FX_NO_LOCAL_PATH FX_LOCAL_PATH_SETUP #endif ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _fx_directory_search PORTABLE C */ /* 6.1.10 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function searches the media for the supplied name. The search */ /* routine will find files as well as directory names. */ /* */ /* INPUT */ /* */ /* media_ptr Media control block pointer */ /* name_ptr Name pointer */ /* entry_ptr Pointer to directory entry */ /* record */ /* last_dir_ptr Pointer to destination for */ /* the last directory entry */ /* last_name_ptr Pointer to the last name */ /* token that was searched for */ /* */ /* OUTPUT */ /* */ /* return status */ /* */ /* CALLS */ /* */ /* _fx_directory_name_extract Extract directory name from */ /* input string */ /* _fx_directory_entry_read Read entries from root dir */ /* _fx_utility_exFAT_name_hash_get Get name hash */ /* _fx_utility_FAT_entry_read Read FAT entries to calculate */ /* the sub-directory size */ /* */ /* CALLED BY */ /* */ /* FileX System Functions */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 William E. Lamie Modified comment(s), and */ /* added conditional to */ /* disable media search cache, */ /* resulting in version 6.1 */ /* 06-02-2021 Bhupendra Naphade Modified comment(s), and */ /* added check for */ /* volume label, */ /* resulting in version 6.1.7 */ /* 01-31-2022 William E. Lamie Modified comment(s), and */ /* fixed path compare, */ /* resulting in version 6.1.10 */ /* */... /**************************************************************************/ UINT _fx_directory_search(FX_MEDIA *media_ptr, CHAR *name_ptr, FX_DIR_ENTRY *entry_ptr, FX_DIR_ENTRY *last_dir_ptr, CHAR **last_name_ptr) { ULONG i, n; UINT found; UINT status; #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE UINT v, j; #endif /* FX_MEDIA_DISABLE_SEARCH_CACHE */ ULONG cluster, next_cluster = 0; ULONG64 directory_size; CHAR *dir_name_ptr; CHAR *work_ptr; CHAR *source_name_ptr; CHAR *destination_name_ptr; FX_DIR_ENTRY search_dir; FX_DIR_ENTRY *search_dir_ptr; CHAR *name, alpha, name_alpha; #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE UINT index; CHAR *path_ptr = FX_NULL; CHAR *original_name = name_ptr;/* ... */ #endif #ifdef FX_ENABLE_EXFAT USHORT hash = 0; #endif /* FX_ENABLE_EXFAT */ #ifndef FX_MEDIA_STATISTICS_DISABLE /* Increment the number of directory search requests. */ media_ptr -> fx_media_directory_searches++;/* ... */ #endif /* Setup pointer to media name buffer. */ name = media_ptr -> fx_media_name_buffer; /* Setup the last directory, if required. */ if (last_dir_ptr) { /* Set the first character of the directory entry to NULL to indicate root or no directory. *//* ... */ last_dir_ptr -> fx_dir_entry_name[0] = 0; }if (last_dir_ptr) { ... } /* Determine if the file name has a full directory path. */ if ((*name_ptr == '\\') || (*name_ptr == '/')) { /* Directory name has full path, set the search pointer to NULL. */ search_dir_ptr = FX_NULL; }if ((*name_ptr == '\\') || (*name_ptr == '/')) { ... } else { /* Set the initial search directory to the current working directory - if there is one. *//* ... */ /* First check for a local path pointer stored in the thread control block. This is only available in ThreadX Version 4 and above. *//* ... */ #ifndef FX_NO_LOCAL_PATH if (_tx_thread_current_ptr -> tx_thread_filex_ptr) { /* Determine if the local directory is not the root directory. */ if (((FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_directory.fx_dir_entry_name[0]) { /* Start at the current working directory of the media. */ search_dir = ((FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_directory; #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE /* Setup pointer to the path. */ path_ptr = ((FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_string;/* ... */ #endif /* Set the internal pointer to the search directory as well. */ search_dir_ptr = &search_dir; }if (((FX_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_directory.fx_dir_entry_name[0]) { ... } else { /* We are searching in the root directory. */ 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]) { /* Start at the current working directory of the media. */ search_dir = media_ptr -> fx_media_default_path.fx_path_directory; #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE /* Setup pointer to the path. */ path_ptr = media_ptr -> fx_media_default_path.fx_path_string;/* ... */ #endif /* Set the internal pointer to the search directory as well. */ search_dir_ptr = &search_dir; }else if (media_ptr -> fx_media_default_path.fx_path_directory.fx_dir_entry_name[0]) { ... } else { /* The current default directory is the root so just set the search directory pointer to NULL. *//* ... */ search_dir_ptr = FX_NULL; }else { ... } }else { ... } #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE /* Determine if there is a previously found directory entry. */ if (media_ptr -> fx_media_last_found_name[0]) { UINT match; CHAR *temp_ptr, beta; /* Yes, there is a previously found directory in our cache. */ /* Initialize the index. */ v = 0; /* Determine if there is a full path. */ if ((*name_ptr == '\\') || (*name_ptr == '/')) { /* Yes, the full path is in the name buffer. Simply compare with what is in the last search buffer. *//* ... */ while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (name_ptr[v])) { /* Pickup the respective name characters. */ alpha = name_ptr[v]; beta = media_ptr -> fx_media_last_found_name[v]; /* Ensure directory markers are the same. */ if (alpha == '\\') { alpha = '/'; }if (alpha == '\\') { ... } if (beta == '\\') { beta = '/'; }if (beta == '\\') { ... } /* Is the name the same? */ if (alpha != beta) { /* Break out of loop! */ break; }if (alpha != beta) { ... } /* Move to next character. */ v++; }while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (name_ptr[v])) { ... } /* Determine if we have a match. */ if (name_ptr[v] != media_ptr -> fx_media_last_found_name[v]) { match = FX_FALSE; }if (name_ptr[v] != media_ptr -> fx_media_last_found_name[v]) { ... } else { match = FX_TRUE; }else { ... } }if ((*name_ptr == '\\') || (*name_ptr == '/')) { ... } else { /* Default to found. */ match = FX_TRUE; /* Determine if there is a default path to compare with. */ if (path_ptr) { /* Yes, compare the current path with what is contained in the last found buffer. Note that the last found name must have at least one path separator as well as room for at least one character for a name. *//* ... */ while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (path_ptr[v])) { /* Pickup the respective name characters. */ alpha = media_ptr -> fx_media_last_found_name[v]; beta = path_ptr[v]; /* Ensure directory markers are the same. */ if (alpha == '\\') { alpha = '/'; }if (alpha == '\\') { ... } if (beta == '\\') { beta = '/'; }if (beta == '\\') { ... } /* Is the name the same? */ if (alpha != beta) { /* Break out of loop! */ break; }if (alpha != beta) { ... } /* Move to next character. */ v++; }while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (path_ptr[v])) { ... } /* Determine if we don't have a match... The relative path must be exhausted. */ if (path_ptr[v]) { match = FX_FALSE; }if (path_ptr[v]) { ... } }if (path_ptr) { ... } /* Determine if we still have a match. */ if (match) { /* Now examine the rest of the last name and the newly supplied input name. *//* ... */ /* Determine if a valid directory separator is present. */ if ((media_ptr -> fx_media_last_found_name[v] != '\\') && (media_ptr -> fx_media_last_found_name[v] != '/')) { /* Set match to false - invalid directory path separator. */ match = FX_FALSE; }if ((media_ptr -> fx_media_last_found_name[v] != '\\') && (media_ptr -> fx_media_last_found_name[v] != '/')) { ... } else { /* Position past the next directory separator in the last name string. *//* ... */ v++; }else { ... } /* Yes, the full path is in the name buffer. Simply compare with what is in the last search buffer. *//* ... */ j = 0; while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (name_ptr[j]) && (match)) { /* Pickup the respective name characters. */ alpha = name_ptr[j]; beta = media_ptr -> fx_media_last_found_name[v]; /* Ensure directory markers are the same. */ if (alpha == '\\') { alpha = '/'; }if (alpha == '\\') { ... } if (beta == '\\') { beta = '/'; }if (beta == '\\') { ... } /* Is the name the same? */ if (alpha != beta) { /* Break out of loop! */ break; }if (alpha != beta) { ... } /* Move to next character. */ v++; j++; }while ((v < (FX_MAX_LAST_NAME_LEN - 1)) && (name_ptr[j]) && (match)) { ... } /* Avoid accessing fx_media_last_found_name out of bounds. */ if (v >= 256) { match = FX_FALSE; }if (v >= 256) { ... } else if ((match) && (name_ptr[j] != media_ptr -> fx_media_last_found_name[v])) { /* We don't have a match. */ match = FX_FALSE; }else if ((match) && (name_ptr[j] != media_ptr -> fx_media_last_found_name[v])) { ... } }if (match) { ... } }else { ... } /* Now determine if we actually found a match. */ if (match) { /* Save the directory entry name pointer. */ temp_ptr = entry_ptr -> fx_dir_entry_name; /* Copy the saved directory entry. */ *entry_ptr = media_ptr -> fx_media_last_found_entry; /* Restore the directory entry name pointer. */ entry_ptr -> fx_dir_entry_name = temp_ptr; /* Copy the directory name into the destination directory name. */ for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++) { /* Copy character into the destination. */ temp_ptr[index] = media_ptr -> fx_media_last_found_file_name[index]; /* See if we have copied the NULL termination character. */ if (temp_ptr[index] == (CHAR)FX_NULL) { /* Determine if we should break here or at the top of the loop. */ if (index < (FX_MAX_LONG_NAME_LEN - 1)) { /* Yes, break out of the loop early. */ break; }if (index < (FX_MAX_LONG_NAME_LEN - 1)) { ... } }if (temp_ptr[index] == (CHAR)FX_NULL) { ... } }for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++) { ... } /* Determine if there is a search directory to copy. */ if ((last_dir_ptr) && (media_ptr -> fx_media_last_found_directory_valid)) { /* Yes, there was a search directory... and one is requested in this request as well. Simply copy it into the destination. *//* ... */ /* First, save the name pointer from the list directory pointer. */ destination_name_ptr = last_dir_ptr -> fx_dir_entry_name; /* Copy the entire directory entry structure. */ *last_dir_ptr = media_ptr -> fx_media_last_found_directory; /* Restore the original name buffer pointer. */ last_dir_ptr -> fx_dir_entry_name = destination_name_ptr; /* Pickup pointer to name to copy. */ source_name_ptr = media_ptr -> fx_media_last_found_directory.fx_dir_entry_name; /* Loop to copy the name into the last directory name buffer. */ for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { /* Copy a character. */ destination_name_ptr[n] = source_name_ptr[n]; /* See if we have copied the NULL termination character. */ if (source_name_ptr[n] == (CHAR)FX_NULL) { /* Determine if we should break here or at the top of the loop. */ if (n < (FX_MAX_LONG_NAME_LEN - 1)) { /* Yes, break out of the loop early. */ break; }if (n < (FX_MAX_LONG_NAME_LEN - 1)) { ... } }if (source_name_ptr[n] == (CHAR)FX_NULL) { ... } }for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { ... } }if ((last_dir_ptr) && (media_ptr -> fx_media_last_found_directory_valid)) { ... } /* Return the last name pointer, if required. */ if (last_name_ptr) { /* Just set the last name to initial name string. */ *last_name_ptr = temp_ptr; }if (last_name_ptr) { ... } #ifndef FX_MEDIA_STATISTICS_DISABLE /* Increment the number of directory search cache hits. */ media_ptr -> fx_media_directory_search_cache_hits++;/* ... */ #endif /* Return success. */ return(FX_SUCCESS); }if (match) { ... } }if (media_ptr -> fx_media_last_found_name[0]) { ... } /* Not a sequential search, invalidate the saved information. */ media_ptr -> fx_media_last_found_name[0] = FX_NULL; #ifndef FX_MEDIA_STATISTICS_DISABLE /* If trace is enabled, insert this event into the trace buffer. */ FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_DIR_CACHE_MISS, media_ptr, media_ptr -> fx_media_directory_searches - media_ptr -> fx_media_directory_search_cache_hits, 0, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0)/* ... */ #else /* If trace is enabled, insert this event into the trace buffer. */ FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_DIR_CACHE_MISS, media_ptr, 0, 0, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0)/* ... */ #endif/* ... */ #endif /* Loop to traverse the directory paths to find the specified file. */ do { /* Remember the last name pointer, if required. */ if (last_name_ptr) { /* Just set the last name to initial name string. */ *last_name_ptr = name_ptr; }if (last_name_ptr) { ... } /* Extract file name. */ name_ptr = _fx_directory_name_extract(name_ptr, name); /* Calculate the directory size. */ 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 /* FX_ENABLE_EXFAT */ /* Ensure that the search directory's last search cluster is cleared. */ search_dir_ptr -> fx_dir_entry_last_search_cluster = 0; /* Calculate the directory size by counting the allocated clusters for it. *//* ... */ i = 0; cluster = search_dir_ptr -> fx_dir_entry_cluster; while (cluster < media_ptr -> fx_media_fat_reserved) { /* Increment the cluster count. */ i++; /* Read the next FAT entry. */ status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster); /* Check the return status. */ if (status != FX_SUCCESS) { /* Return the bad status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Check for error situation. */ if ((cluster < FX_FAT_ENTRY_START) || (cluster == next_cluster) || (i > media_ptr -> fx_media_total_clusters)) { /* Return the bad status. */ 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) { ... } /* Now we can calculate the directory size. */ directory_size = (((ULONG64) media_ptr -> fx_media_bytes_per_sector) * ((ULONG64) media_ptr -> fx_media_sectors_per_cluster) * i) / (ULONG64) FX_DIR_ENTRY_SIZE; /* Also save this in the directory entry so we don't have to calculate it later. *//* ... */ search_dir_ptr -> fx_dir_entry_file_size = directory_size; #ifdef FX_ENABLE_EXFAT }else { ... } #endif /* FX_ENABLE_EXFAT */ /* If required, copy the last search directory entry into the destination. *//* ... */ if (last_dir_ptr) { /* Copy the last search directory into the destination. */ /* First, save the name pointer from the list directory pointer. */ destination_name_ptr = last_dir_ptr -> fx_dir_entry_name; /* Copy the entire directory entry structure. */ *last_dir_ptr = *search_dir_ptr; /* Restore the original name buffer pointer. */ last_dir_ptr -> fx_dir_entry_name = destination_name_ptr; /* Pickup pointer to name to copy. */ source_name_ptr = search_dir_ptr -> fx_dir_entry_name; /* Loop to copy the name into the last directory name buffer. */ for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { /* Copy a character. */ destination_name_ptr[n] = source_name_ptr[n]; /* See if we have copied the NULL termination character. */ if (source_name_ptr[n] == (CHAR) FX_NULL) { /* Determine if we should break here or at the top of the loop. */ if (n < (FX_MAX_LONG_NAME_LEN - 1)) { /* Yes, break out of the loop early. */ break; }if (n < (FX_MAX_LONG_NAME_LEN - 1)) { ... } }if (source_name_ptr[n] == (CHAR) FX_NULL) { ... } }for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { ... } }if (last_dir_ptr) { ... } }if (search_dir_ptr) { ... } else { /* Directory size is the number of entries in the root directory. */ directory_size = (ULONG)media_ptr -> fx_media_root_directory_entries; }else { ... } /* Loop through entries in the directory. Yes, this is a linear search! *//* ... */ i = 0; found = FX_FALSE; #ifdef FX_ENABLE_EXFAT if (media_ptr -> fx_media_FAT_type == FX_exFAT) { /* Get name hash. */ hash = _fx_utility_exFAT_name_hash_get(name); }if (media_ptr -> fx_media_FAT_type == FX_exFAT) { ... } /* ... */#endif /* FX_ENABLE_EXFAT */ do { /* Read an entry from the directory. */ #ifdef FX_ENABLE_EXFAT status = _fx_directory_entry_read_ex(media_ptr, search_dir_ptr, &i, entry_ptr, hash); #else status = _fx_directory_entry_read(media_ptr, search_dir_ptr, &i, entry_ptr); #endif /* FX_ENABLE_EXFAT */ i++; /* Check for error status. */ if (status != FX_SUCCESS) { return(status); }if (status != FX_SUCCESS) { ... } /* Determine if this is the last directory entry. */ #ifdef FX_ENABLE_EXFAT if (entry_ptr -> fx_dir_entry_type == FX_EXFAT_DIR_ENTRY_TYPE_END_MARKER) #else if ((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_DONE) #endif /* FX_ENABLE_EXFAT */ { break; ...} /* Determine if the entry is a volume label entry */ if ((entry_ptr -> fx_dir_entry_attributes & FX_VOLUME)) { continue; }if ((entry_ptr -> fx_dir_entry_attributes & FX_VOLUME)) { ... } /* Determine if this is an empty entry. */ #ifdef FX_ENABLE_EXFAT if (entry_ptr -> fx_dir_entry_type != FX_EXFAT_DIR_ENTRY_TYPE_FILE_DIRECTORY) #else if (((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) && (entry_ptr -> fx_dir_entry_short_name[0] == 0)) #endif /* FX_ENABLE_EXFAT */ { continue; ...} /* Compare the input name and extension with the directory entry. *//* ... */ work_ptr = &name[0]; dir_name_ptr = &(entry_ptr -> fx_dir_entry_name[0]); /* Loop to compare names. */ do { /* Pickup character of directory name. */ alpha = *dir_name_ptr; /* Pickup character of name. */ name_alpha = *work_ptr; /* Determine if its case needs to be changed. */ if ((alpha >= 'a') && (alpha <= 'z')) { /* Yes, make upper case. */ alpha = (CHAR)((INT)alpha - 0x20); }if ((alpha >= 'a') && (alpha <= 'z')) { ... } /* Determine if its case needs to be changed. */ if ((name_alpha >= 'a') && (name_alpha <= 'z')) { /* Yes, make upper case. */ name_alpha = (CHAR)((INT)name_alpha - 0x20); }if ((name_alpha >= 'a') && (name_alpha <= 'z')) { ... } /* Compare name with directory name. */ if (alpha != name_alpha) { /* The names don't match, get out of the loop. */ break; }if (alpha != name_alpha) { ... } /* Otherwise, increment the name pointers. */ work_ptr++; dir_name_ptr++; ...} while (*dir_name_ptr); /* Determine if the requested name has been found. If so, return success to the caller. *//* ... */ if ((*dir_name_ptr == 0) && (*work_ptr == *dir_name_ptr)) { /* Yes, the name was located. All pertinent directory information is in the directory entry field. *//* ... */ found = FX_TRUE; }if ((*dir_name_ptr == 0) && (*work_ptr == *dir_name_ptr)) { ... } /* Determine if there is a short name to check. */ #ifdef FX_ENABLE_EXFAT else if ((media_ptr -> fx_media_FAT_type != FX_exFAT) && (entry_ptr -> fx_dir_entry_short_name[0] != 0))/* ... */ #else else if (entry_ptr -> fx_dir_entry_short_name[0] != 0) #endif /* FX_ENABLE_EXFAT */ { /* Yes, check for the short part of the name. */ /* Compare the input name and extension with the directory entry. */ work_ptr = &name[0]; dir_name_ptr = &(entry_ptr -> fx_dir_entry_short_name[0]); /* Loop to compare names. */ do { /* Pickup character of directory name. */ alpha = *dir_name_ptr; /* Pickup character of name. */ name_alpha = *work_ptr; /* Determine if its case needs to be changed. */ if ((name_alpha >= 'a') && (name_alpha <= 'z')) { /* Yes, make upper case. */ name_alpha = (CHAR)((INT)name_alpha - 0x20); }if ((name_alpha >= 'a') && (name_alpha <= 'z')) { ... } /* Compare name with directory name. */ if (alpha != name_alpha) { /* The names don't match, get out of the loop. */ break; }if (alpha != name_alpha) { ... } /* Otherwise, move the name pointers and increment the count. *//* ... */ work_ptr++; dir_name_ptr++; ...} while (*dir_name_ptr); /* Determine if the names match. */ if ((*dir_name_ptr == 0) && (*work_ptr == *dir_name_ptr)) { /* Yes, the name was located. All pertinent directory information is in the directory entry field. *//* ... */ found = FX_TRUE; }if ((*dir_name_ptr == 0) && (*work_ptr == *dir_name_ptr)) { ... } ...} ...} while ((i < directory_size) && (!found)); /* Now determine if we have a match. */ if (!found) { /* Return a "not found" status to the caller. */ return(FX_NOT_FOUND); }if (!found) { ... } /* Determine if the found entry is indeed a sub-directory. */ if (entry_ptr -> fx_dir_entry_attributes & FX_DIRECTORY) { /* Move the directory search pointer to this entry. */ search_dir = *entry_ptr; search_dir_ptr = &search_dir; /* Ensure that the search directory's last search cluster is cleared. */ search_dir_ptr -> fx_dir_entry_last_search_cluster = 0; /* Now determine if the new search directory is the root directory. *//* ... */ #ifdef FX_ENABLE_EXFAT if ((!search_dir_ptr -> fx_dir_entry_cluster) && (media_ptr -> fx_media_FAT_type != FX_exFAT))/* ... */ #else if (!search_dir_ptr -> fx_dir_entry_cluster) #endif /* FX_ENABLE_EXFAT */ { /* This is a backward link to the root directory. Make sure this is indicated in the search directory information. *//* ... */ search_dir_ptr -> fx_dir_entry_name[0] = 0; /* Determine if we need to remember this in the last directory searched return area. *//* ... */ if (last_dir_ptr) { /* Yes, return this value to the caller. */ /* First, save the name pointer from the list directory pointer. */ destination_name_ptr = last_dir_ptr -> fx_dir_entry_name; /* Copy the entire directory entry structure. */ *last_dir_ptr = *search_dir_ptr; /* Restore the original name buffer pointer. */ last_dir_ptr -> fx_dir_entry_name = destination_name_ptr; /* Pickup pointer to name to copy. */ source_name_ptr = search_dir_ptr -> fx_dir_entry_name; /* Loop to copy the name into the last directory name buffer. */ for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { /* Copy a character. */ destination_name_ptr[n] = source_name_ptr[n]; }for (n = 0; n < FX_MAX_LONG_NAME_LEN; n++) { ... } }if (last_dir_ptr) { ... } /* Set the search directory pointer to NULL to indicate we are at the root directory. *//* ... */ search_dir_ptr = FX_NULL; ...} }if (entry_ptr -> fx_dir_entry_attributes & FX_DIRECTORY) { ... } else { /* This is not a directory, we better return not found since we can't continue the search. *//* ... */ if (name_ptr) { /* Return not-found status to caller. */ return(FX_NOT_FOUND); }if (name_ptr) { ... } }else { ... } ...} while (name_ptr); /* If you reach this point, the directory is found absolutely, since !found will return directly in the loop above. */ #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE /* At this point, cache the found information. If a subsequent search for the same name is done, it will return immediately. *//* ... */ /* Set the index of the saved name string. */ v= 0; /* First, build the full path and name. */ if ((*original_name != '\\') && (*original_name != '/') && (path_ptr)) { /* Copy the path into the destination. */ while ((v< (FX_MAX_LAST_NAME_LEN - 1)) && (path_ptr[v])) { /* Copy one character. */ media_ptr -> fx_media_last_found_name[v] = path_ptr[v]; /* Move to next character. */ v++; }while ((v< (FX_MAX_LAST_NAME_LEN - 1)) && (path_ptr[v])) { ... } }if ((*original_name != '\\') && (*original_name != '/') && (path_ptr)) { ... } /* Now see if there is no directory path symbol in the name itself. */ if ((*original_name != '\\') && (*original_name != '/')) { /* If there is room, place a directory separator character. */ if (v < (FX_MAX_LAST_NAME_LEN - 1)) { media_ptr -> fx_media_last_found_name[v++] = '/'; }if (v < (FX_MAX_LAST_NAME_LEN - 1)) { ... } }if ((*original_name != '\\') && (*original_name != '/')) { ... } /* Now append the name to the path. */ j = 0; while ((v < FX_MAX_LAST_NAME_LEN) && (original_name[j])) { /* Copy one character. */ media_ptr -> fx_media_last_found_name[v] = original_name[j]; /* Move to next character. */ v++; j++; }while ((v < FX_MAX_LAST_NAME_LEN) && (original_name[j])) { ... } /* Null terminate the last name string. */ if (v< FX_MAX_LAST_NAME_LEN) { /* Null terminate. */ media_ptr -> fx_media_last_found_name[v] = FX_NULL; }if (v< FX_MAX_LAST_NAME_LEN) { ... } else { /* The string is too big, NULL the string so it won't be used in searching. */ media_ptr -> fx_media_last_found_name[0] = FX_NULL; }else { ... } /* Determine if there is a search pointer. */ if (search_dir_ptr) { /* Yes, there is a search directory pointer so save it! */ media_ptr -> fx_media_last_found_directory = *search_dir_ptr; /* Indicate the search directory is valid. */ media_ptr -> fx_media_last_found_directory_valid = FX_TRUE; }if (search_dir_ptr) { ... } else { /* Indicate the search directory is not valid. */ media_ptr -> fx_media_last_found_directory_valid = FX_FALSE; }else { ... } /* Copy the directory entry. */ media_ptr -> fx_media_last_found_entry = *entry_ptr; /* Setup the directory entry for the last found internal file name. */ media_ptr -> fx_media_last_found_entry.fx_dir_entry_name = media_ptr -> fx_media_last_found_file_name; /* Copy the actual directory name into the cached directory name. */ for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++) { /* Copy character into the cached directory name. */ media_ptr -> fx_media_last_found_file_name[index] = entry_ptr -> fx_dir_entry_name[index]; /* See if we have copied the NULL termination character. */ if (entry_ptr -> fx_dir_entry_name[index] == (CHAR)FX_NULL) { /* Check to see if we use the break to get out of the loop. */ if (index < (FX_MAX_LONG_NAME_LEN - 1)) { /* Yes, not at the end of the string, break. */ break; }if (index < (FX_MAX_LONG_NAME_LEN - 1)) { ... } }if (entry_ptr -> fx_dir_entry_name[index] == (CHAR)FX_NULL) { ... } }for (index = 0; index < FX_MAX_LONG_NAME_LEN; index++) { ... } /* ... */#endif return(FX_SUCCESS); }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.