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_fault_tolerant.h"
...
...
_fx_directory_entry_write(FX_MEDIA *, FX_DIR_ENTRY *)
Files
loading...
SourceVuSTM32 Libraries and Samplesfilexcommon/src/fx_directory_entry_write.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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* 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_FAULT_TOLERANT #include "fx_fault_tolerant.h" #endif /* FX_ENABLE_FAULT_TOLERANT */ ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _fx_directory_entry_write PORTABLE C */ /* 6.1.5 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function writes the supplied directory entry to the specified */ /* logical sector and offset. */ /* */ /* INPUT */ /* */ /* media_ptr Media control block pointer */ /* entry_ptr Pointer to directory entry */ /* */ /* OUTPUT */ /* */ /* return status */ /* */ /* CALLS */ /* */ /* _fx_utility_FAT_entry_read Read a new FAT entry */ /* _fx_utility_logical_sector_read Read directory sector */ /* _fx_utility_logical_sector_write Write directory sector */ /* _fx_utility_16_unsigned_write Write a UINT from memory */ /* _fx_utility_32_unsigned_write Write a ULONG from memory */ /* _fx_fault_tolerant_add_dir_log Add directory redo log */ /* */ /* 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), */ /* resulting in version 6.1 */ /* 03-02-2021 William E. Lamie Modified comment(s), */ /* resulting in version 6.1.5 */ /* */... /**************************************************************************/ UINT _fx_directory_entry_write(FX_MEDIA *media_ptr, FX_DIR_ENTRY *entry_ptr) { UCHAR *work_ptr, *sector_base_ptr; UINT status, temp, entry, delete_flag; UINT i, j, k, l, card, len, dotfound, dotpos, match; UCHAR checksum, eof_marker; CHAR alpha; CHAR shortname[FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE + 1]; ULONG logical_sector, relative_sector; ULONG byte_offset; ULONG cluster, next_cluster; #ifdef FX_ENABLE_FAULT_TOLERANT UCHAR *changed_ptr; UINT changed_size; ULONG changed_offset;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ #ifndef FX_MEDIA_STATISTICS_DISABLE /* Increment the number of directory entry write requests. */ media_ptr -> fx_media_directory_entry_writes++;/* ... */ #endif /* Extended port-specific processing macro, which is by default defined to white space. */ FX_DIRECTORY_ENTRY_WRITE_EXTENSION /* If trace is enabled, insert this event into the trace buffer. */ FX_TRACE_IN_LINE_INSERT(FX_TRACE_INTERNAL_DIR_ENTRY_WRITE, media_ptr, 0, 0, 0, FX_TRACE_INTERNAL_EVENTS, 0, 0) /* Determine if this is entry is being deleted. */ if (((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) && ((UCHAR)entry_ptr -> fx_dir_entry_short_name[0] == (UCHAR)FX_DIR_ENTRY_FREE)) { /* Yes, this is a request to delete the entry. Set the flag to remember this. */ delete_flag = FX_TRUE; /* Null the short file name. */ entry_ptr -> fx_dir_entry_short_name[0] = 0; }if (((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) && ((UCHAR)entry_ptr -> fx_dir_entry_short_name[0] == (UCHAR)FX_DIR_ENTRY_FREE)) { ... } else { /* Not a deleted entry. Set the flag to false. */ delete_flag = FX_FALSE; }else { ... } /* Pickup the byte offset of the entry. */ byte_offset = entry_ptr -> fx_dir_entry_byte_offset; /* Pickup the logical sector of the entry. */ logical_sector = (ULONG)entry_ptr -> fx_dir_entry_log_sector; /* Figure out where what cluster we are in. */ if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { /* Calculate the cluster that this logical sector is in. */ cluster = (logical_sector - media_ptr -> fx_media_data_sector_start) / (media_ptr -> fx_media_sectors_per_cluster) + FX_FAT_ENTRY_START; /* Calculate the relative cluster. */ relative_sector = logical_sector - (((ULONG)media_ptr -> fx_media_data_sector_start) + (((ULONG)cluster - FX_FAT_ENTRY_START) * ((ULONG)media_ptr -> fx_media_sectors_per_cluster))); }if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { ... } else { /* Clear the cluster and the relative sector. */ cluster = 0; relative_sector = 0; }else { ... } /* Read the logical directory sector. */ status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) entry_ptr -> fx_dir_entry_log_sector, media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR); /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Setup a pointer into the buffer. */ sector_base_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer; work_ptr = sector_base_ptr + (UINT)entry_ptr -> fx_dir_entry_byte_offset; #ifdef FX_ENABLE_FAULT_TOLERANT /* Initialize data for fault tolerant. */ changed_ptr = work_ptr; changed_size = 0; changed_offset = entry_ptr -> fx_dir_entry_byte_offset;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if a long file name is present. */ if (entry_ptr -> fx_dir_entry_long_name_present) { /* Yes, long name is present - prepare short name and write out this name. */ for (len = 0, i = 0, dotpos = 0, dotfound = 0; entry_ptr -> fx_dir_entry_name[len]; len++) { /* Check for a dot. */ if (entry_ptr -> fx_dir_entry_name[len] == '.') { /* Check for leading dot. */ if (len == 0) { /* Yes, this is a leading dot. */ continue; }if (len == 0) { ... } /* Yes, a dot is present. From this position the extension will be written. *//* ... */ dotfound = i; dotpos = len + 1; continue; }if (entry_ptr -> fx_dir_entry_name[len] == '.') { ... } /* Check for non-space and within the short file name length. */ if ((entry_ptr -> fx_dir_entry_name[len] != ' ') && (i < 8)) { /* Copy characters into the short file name area. */ shortname[i] = entry_ptr -> fx_dir_entry_name[len]; i++; }if ((entry_ptr -> fx_dir_entry_name[len] != ' ') && (i < 8)) { ... } }for (len = 0, i = 0, dotpos = 0, dotfound = 0; entry_ptr -> fx_dir_entry_name[len]; len++) { ... } /* Fill remaining short file name with spaces. */ for (j = i; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; j++) { shortname[j] = ' '; }for (j = i; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; j++) { ... } /* Determine if a dot was encountered. */ if (dotpos) { /* Process relative to the dot position. */ if (entry_ptr -> fx_dir_entry_name[dotpos]) { shortname[8] = entry_ptr -> fx_dir_entry_name[dotpos++]; }if (entry_ptr -> fx_dir_entry_name[dotpos]) { ... } if (entry_ptr -> fx_dir_entry_name[dotpos]) { shortname[9] = entry_ptr -> fx_dir_entry_name[dotpos++]; }if (entry_ptr -> fx_dir_entry_name[dotpos]) { ... } if (entry_ptr -> fx_dir_entry_name[dotpos]) { shortname[10] = entry_ptr -> fx_dir_entry_name[dotpos++]; }if (entry_ptr -> fx_dir_entry_name[dotpos]) { ... } /* Determine if additional spaces are needed. */ i = dotfound; for (; dotfound <= 7; dotfound++) { /* Add space... */ shortname[dotfound] = ' '; }for (; dotfound <= 7; dotfound++) { ... } }if (dotpos) { ... } /* Each entry contains 13 unicode entries. Calculate the remainder. */ if (len % 13 == 0) { card = len / 13; }if (len % 13 == 0) { ... } else { card = len / 13 + 1; }else { ... } /* Default the name match to true. */ match = FX_TRUE; /* Loop through the newly derived short name and the original name and look for a non-matching character. *//* ... */ l = 0; k = 0; while (k < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE) { /* Determine if a space is detected in the short name. If so, advance to the extension index. *//* ... */ if (shortname[k] == ' ') { /* The first pad space was detected. First, check for a name without an extension. *//* ... */ if (entry_ptr -> fx_dir_entry_name[l] == FX_NULL) { /* All is okay, get out of the loop! */ break; }if (entry_ptr -> fx_dir_entry_name[l] == FX_NULL) { ... } /* Now check for a period in the long name... if not, there is a non-match! */ if (entry_ptr -> fx_dir_entry_name[l] != '.') { /* Set the match flag to false and exit the loop. */ match = FX_FALSE; break; }if (entry_ptr -> fx_dir_entry_name[l] != '.') { ... } /* Otherwise move short file name index to the extension area and increment the long file name index. *//* ... */ k = 8; l++; /* Restart the loop at the top. */ continue; }if (shortname[k] == ' ') { ... } /* Check for the dot for the 8.3 match... it is no longer in the shortname but possibly still present in the long name. *//* ... */ if ((k == 8) && (entry_ptr -> fx_dir_entry_name[l] == '.')) { /* Yes, handle the implicit dot in the shortname by positioning past it in the long name. *//* ... */ l++; }if ((k == 8) && (entry_ptr -> fx_dir_entry_name[l] == '.')) { ... } /* Do the names match? */ if (shortname[k] != entry_ptr -> fx_dir_entry_name[l]) { /* No, the names do not match, set the match flag to false and exit the loop. *//* ... */ match = FX_FALSE; break; }if (shortname[k] != entry_ptr -> fx_dir_entry_name[l]) { ... } /* Move the indices forward. */ k++; l++; }while (k < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE) { ... } /* Check if there is a dot in the name, but no extension in the short name. In this case, we should create a mangled short name. *//* ... */ if ((dotpos) && (shortname[8] == ' ')) { /* Something left.. the names do not match! */ match = FX_FALSE; }if ((dotpos) && (shortname[8] == ' ')) { ... } /* One final check to make sure there is nothing left on the long file name. */ if (entry_ptr -> fx_dir_entry_name[l]) { /* Something left.. the names do not match! */ match = FX_FALSE; }if (entry_ptr -> fx_dir_entry_name[l]) { ... } /* Determine if the derived short name matches exactly the long file name. If so we don't need to mangle the name with a numeric value based on its entry. *//* ... */ if (match == FX_FALSE) { /* Name does not match, create a mangled name. */ /* Generate short file name from LFN. */ entry = entry_ptr -> fx_dir_entry_number; /* Name suffice is between 000 and FFFF in hex, calculate this short file name's numeric component. *//* ... */ entry = entry % 0x10000; /* Build short name of the format xxx~NNNN.ext. */ if (i > 3) { i = 3; }if (i > 3) { ... } shortname[i++] = '~'; /* Loop to build the numeric part of the name. */ for (l = 0; l < 4; l++) { /* Shift down the entry number based on the numeric position. */ if (l == 0) { temp = ((entry >> 12) & 0xf); }if (l == 0) { ... } else if (l == 1) { temp = ((entry >> 8) & 0xf); }else if (l == 1) { ... } else if (l == 2) { temp = ((entry >> 4) & 0xf); }else if (l == 2) { ... } else { temp = ((entry) & 0xf); }else { ... } /* Now build hex value. */ if (temp > 9) shortname[i++] = (CHAR)('A' + (temp - 10)); else shortname[i++] = (CHAR)('0' + temp); }for (l = 0; l < 4; l++) { ... } }if (match == FX_FALSE) { ... } /* Set end of short string to NULL. */ shortname[11] = 0; /* Determine if the first character of the short file name is the directory free value. If so, it must be changed. *//* ... */ if (((UCHAR)shortname[0] == (UCHAR)FX_DIR_ENTRY_FREE) && (delete_flag == FX_FALSE)) { /* Change to 0x8F to be compatible with what DOS does. */ shortname[0] = (CHAR)0x8F; }if (((UCHAR)shortname[0] == (UCHAR)FX_DIR_ENTRY_FREE) && (delete_flag == FX_FALSE)) { ... } /* Loop to convert the new short file name to upper case. */ for (i = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++) { /* Pickup shortname character. */ alpha = shortname[i]; /* Determine if character is lower case. */ if ((alpha >= 'a') && (alpha <= 'z')) { /* Store the character - converted to upper case. */ alpha = (CHAR)(alpha - ((CHAR)0x20)); }if ((alpha >= 'a') && (alpha <= 'z')) { ... } /* Now store the short name character. */ shortname[i] = alpha; }for (i = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++) { ... } /* Determine if there already is a short name and we are not deleting the entry. */ if (entry_ptr -> fx_dir_entry_short_name[0] != 0) { /* Yes, override the calculated shortname with the original 8.3 name. */ /* Clear the short file name area. */ for (i = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { shortname[i] = ' '; }for (i = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { ... } /* Loop to copy the original short file name. */ for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { /* Check for end of copy conditions. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == '.') { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == '.') { ... } if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { ... } /* Pickup the character. */ alpha = entry_ptr -> fx_dir_entry_short_name[i]; /* Copy file name character. */ shortname[j] = alpha; }for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { ... } /* Determine if there is anything left in the short file name. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] != 0) { /* Pickup remaining characters. */ for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { /* If NULL is encountered, stop the copying. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { ... } /* Pickup the character. */ alpha = entry_ptr -> fx_dir_entry_short_name[i]; /* Copy file name character. */ shortname[j] = alpha; }for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { ... } }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] != 0) { ... } /* Loop to make sure the short name is upper case. */ for (j = 0; j < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); j++) { /* Pickup the character. */ alpha = shortname[j]; /* Determine if character is lower case. */ if ((alpha >= 'a') && (alpha <= 'z')) { /* Store the character - converted to upper case. */ alpha = (CHAR)(alpha - ((CHAR)0x20)); }if ((alpha >= 'a') && (alpha <= 'z')) { ... } /* Copy file name character. */ shortname[j] = alpha; }for (j = 0; j < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); j++) { ... } /* Determine if the first character of the short file name is the directory free value. If so, it must be changed. *//* ... */ if (((UCHAR)shortname[0]) == ((UCHAR)FX_DIR_ENTRY_FREE)) { /* Change to 0x8F to be compatible with what DOS does. */ shortname[0] = (CHAR)0x8F; }if (((UCHAR)shortname[0]) == ((UCHAR)FX_DIR_ENTRY_FREE)) { ... } }if (entry_ptr -> fx_dir_entry_short_name[0] != 0) { ... } /* Loop to calculate the checksum. */ for (i = checksum = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { /* Calculate the checksum. */ checksum = (UCHAR)((UCHAR)(((checksum & 1) << 7) | ((checksum & (UCHAR)0xfe) >> 1)) + shortname[i]); }for (i = checksum = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { ... } /* Set the last entry mark. */ work_ptr[0] = (UCHAR)(0x40 | card); /* Loop to process remainder of long file name entry. */ while (card > 0) { /* Clear eof marker. */ eof_marker = 0; /* Determine if the entry is free. */ if ((UCHAR)shortname[0] == (UCHAR)FX_DIR_ENTRY_FREE) { /* Yes, place delete marker. */ work_ptr[0] = (UCHAR)FX_DIR_ENTRY_FREE; }if ((UCHAR)shortname[0] == (UCHAR)FX_DIR_ENTRY_FREE) { ... } /* Setup various long file name fields. */ work_ptr[11] = FX_LONG_NAME; work_ptr[12] = 0; work_ptr[13] = checksum; work_ptr[26] = 0; work_ptr[27] = 0; /* Loop through file name fields. */ for (i = 1, j = 13 * (card - 1); i < FX_DIR_ENTRY_SIZE; i += 2) { /* Process relative to specific fields. */ if ((i == 11) || (i == 26)) { continue; }if ((i == 11) || (i == 26)) { ... } if (i == 13) { i = 12; continue; }if (i == 13) { ... } /* Determine if the EOF marker is present. */ if (eof_marker) { work_ptr[i] = eof_marker; work_ptr[i + 1] = eof_marker; }if (eof_marker) { ... } else { work_ptr[i] = (UCHAR)entry_ptr -> fx_dir_entry_name[j]; work_ptr[i + 1] = 0; }else { ... } if (entry_ptr -> fx_dir_entry_name[j] == 0) { /* end of name, pad with 0xff. */ eof_marker = (UCHAR)0xff; }if (entry_ptr -> fx_dir_entry_name[j] == 0) { ... } j++; }for (i = 1, j = 13 * (card - 1); i < FX_DIR_ENTRY_SIZE; i += 2) { ... } /* Move to the next directory entry. */ work_ptr += FX_DIR_ENTRY_SIZE; byte_offset += FX_DIR_ENTRY_SIZE; #ifdef FX_ENABLE_FAULT_TOLERANT /* Update changed_size. */ changed_size += FX_DIR_ENTRY_SIZE;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if the entry overlaps into the next sector. */ if (byte_offset >= media_ptr -> fx_media_bytes_per_sector) { #ifdef FX_ENABLE_FAULT_TOLERANT if (media_ptr -> fx_media_fault_tolerant_enabled) { /* Redirect this request to log file. */ status = _fx_fault_tolerant_add_dir_log(media_ptr, logical_sector, changed_offset, changed_ptr, changed_size); }if (media_ptr -> fx_media_fault_tolerant_enabled) { ... } else { #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Write current logical sector out. */ status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) logical_sector, sector_base_ptr, ((ULONG) 1), FX_DIRECTORY_SECTOR); #ifdef FX_ENABLE_FAULT_TOLERANT }else { ... } #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Determine if we are in the root directory. */ if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { /* Determine the next sector of the directory entry. */ if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1)) { /* More sectors in this cluster. */ /* Simply increment the logical sector. */ logical_sector++; /* Increment the relative sector. */ relative_sector++; }if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1)) { ... } else { /* We need to move to the next cluster. */ /* Pickup the next cluster. */ status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster); /* Check for I/O error. */ if (status != FX_SUCCESS) { /* Return error code. */ return(status); }if (status != FX_SUCCESS) { ... } /* Copy next cluster to the current cluster. */ cluster = next_cluster; /* Check the value of the new cluster - it must be a valid cluster number or something is really wrong! *//* ... */ if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { /* Send error message back to caller. */ return(FX_FILE_CORRUPT); }if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { ... } /* Setup the relative sector (this is zero for subsequent cluster. */ relative_sector = 0; /* Calculate the next logical sector. */ logical_sector = ((ULONG)media_ptr -> fx_media_data_sector_start) + (((ULONG)cluster - FX_FAT_ENTRY_START) * ((ULONG)media_ptr -> fx_media_sectors_per_cluster)); }else { ... } }if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { ... } else { /* Increment the logical sector. */ logical_sector++; /* Determine if the logical sector is valid. */ if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { /* We have exceeded the root directory. */ /* Send error message back to caller. */ return(FX_FILE_CORRUPT); }if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { ... } }else { ... } /* Read the sector. */ status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) logical_sector, media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR); /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Setup logical sector. */ sector_base_ptr = media_ptr -> fx_media_memory_buffer; /* Setup a fresh byte offset. */ byte_offset = 0; /* Setup a new pointer into the buffer. */ work_ptr = sector_base_ptr; #ifdef FX_ENABLE_FAULT_TOLERANT /* Initialize data for fault tolerant. */ changed_ptr = work_ptr; changed_size = 0; changed_offset = 0;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ }if (byte_offset >= media_ptr -> fx_media_bytes_per_sector) { ... } /* Decrement loop control. */ card--; work_ptr[0] = (UCHAR)card; }while (card > 0) { ... } /* Determine if there is a short name. */ if (entry_ptr -> fx_dir_entry_short_name[0] == 0) { /* Loop to copy the new short file name. */ for (i = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++) { /* Pickup shortname character. */ alpha = shortname[i]; /* Now store the short name character. */ *work_ptr++ = (UCHAR)alpha; }for (i = 0; i < (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); i++) { ... } }if (entry_ptr -> fx_dir_entry_short_name[0] == 0) { ... } else { /* Clear the short file name area. */ for (i = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { work_ptr[i] = ' '; }for (i = 0; i < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++) { ... } /* Loop to copy the old short file name. */ for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { /* Check for end of copy conditions. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == '.') { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == '.') { ... } if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { ... } /* Copy file name character. */ work_ptr[j] = (UCHAR)entry_ptr -> fx_dir_entry_short_name[i]; }for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { ... } /* Determine if there is anything left in the short file name. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] != 0) { /* Pickup remaining characters. */ for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { /* If NULL is encountered, stop the copying. */ if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] == 0) { ... } /* Copy file name character. */ work_ptr[j] = (UCHAR)entry_ptr -> fx_dir_entry_short_name[i]; }for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { ... } }if ((UCHAR)entry_ptr -> fx_dir_entry_short_name[i] != 0) { ... } /* Adjust the work pointer accordingly. */ work_ptr += (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); }else { ... } }if (entry_ptr -> fx_dir_entry_long_name_present) { ... } else { /* Determine if long name was shorted. */ if (entry_ptr -> fx_dir_entry_long_name_shorted > 0) { /* Check for a valid short name. */ if ((UCHAR)(0x40 | entry_ptr -> fx_dir_entry_long_name_shorted) == (UCHAR)(*work_ptr)) { /* Loop through the file name. */ for (j = 0; j < entry_ptr -> fx_dir_entry_long_name_shorted; j++) { /* Check for a free entry to be written. */ if ((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) { /* Delete long parts. */ work_ptr[0] = (UCHAR)FX_DIR_ENTRY_FREE; }if ((UCHAR)entry_ptr -> fx_dir_entry_name[0] == (UCHAR)FX_DIR_ENTRY_FREE) { ... } /* Setup pointers for the name write. */ work_ptr += FX_DIR_ENTRY_SIZE; byte_offset += FX_DIR_ENTRY_SIZE; #ifdef FX_ENABLE_FAULT_TOLERANT /* Update changed_size. */ changed_size += FX_DIR_ENTRY_SIZE;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if the write is within the current sector. */ if (byte_offset >= media_ptr -> fx_media_bytes_per_sector) { #ifdef FX_ENABLE_FAULT_TOLERANT if (media_ptr -> fx_media_fault_tolerant_enabled) { /* Redirect this request to log file. */ status = _fx_fault_tolerant_add_dir_log(media_ptr, (ULONG64) logical_sector, changed_offset, changed_ptr, changed_size); }if (media_ptr -> fx_media_fault_tolerant_enabled) { ... } else { #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Write the current sector out. */ status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) logical_sector, sector_base_ptr, ((ULONG) 1), FX_DIRECTORY_SECTOR); #ifdef FX_ENABLE_FAULT_TOLERANT }else { ... } #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Determine if we are in the root directory. */ if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { /* Determine the next sector of the directory entry. */ if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1)) { /* More sectors in this cluster. */ /* Simply increment the logical sector. */ logical_sector++; /* Increment the relative sector. */ relative_sector++; }if (relative_sector < (media_ptr -> fx_media_sectors_per_cluster - 1)) { ... } else { /* We need to move to the next cluster. */ /* Pickup the next cluster. */ status = _fx_utility_FAT_entry_read(media_ptr, cluster, &next_cluster); /* Check for I/O error. */ if (status != FX_SUCCESS) { /* Return error code. */ return(status); }if (status != FX_SUCCESS) { ... } /* Copy next cluster to the current cluster. */ cluster = next_cluster; /* Check the value of the new cluster - it must be a valid cluster number or something is really wrong! *//* ... */ if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { /* Send error message back to caller. */ return(FX_FILE_CORRUPT); }if ((cluster < FX_FAT_ENTRY_START) || (cluster >= media_ptr -> fx_media_fat_reserved)) { ... } /* Setup the relative sector (this is zero for subsequent cluster. */ relative_sector = 0; /* Calculate the next logical sector. */ logical_sector = ((ULONG)media_ptr -> fx_media_data_sector_start) + (((ULONG)cluster - FX_FAT_ENTRY_START) * ((ULONG)media_ptr -> fx_media_sectors_per_cluster)); }else { ... } }if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { ... } else { /* Increment the logical sector. */ logical_sector++; /* Determine if the logical sector is valid. */ if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { /* We have exceeded the root directory. */ /* Send error message back to caller. */ return(FX_FILE_CORRUPT); }if (logical_sector >= (ULONG)(media_ptr -> fx_media_data_sector_start)) { ... } }else { ... } /* Read the next logical sector. */ status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) logical_sector, media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_DIRECTORY_SECTOR); /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } /* Move to the next sector buffer. */ sector_base_ptr = media_ptr -> fx_media_memory_buffer; /* Setup new buffer pointers. */ byte_offset = 0; work_ptr = sector_base_ptr; #ifdef FX_ENABLE_FAULT_TOLERANT /* Initialize data for fault tolerant. */ changed_ptr = work_ptr; changed_size = 0; changed_offset = 0;/* ... */ #endif /* FX_ENABLE_FAULT_TOLERANT */ }if (byte_offset >= media_ptr -> fx_media_bytes_per_sector) { ... } }for (j = 0; j < entry_ptr -> fx_dir_entry_long_name_shorted; j++) { ... } }if ((UCHAR)(0x40 | entry_ptr -> fx_dir_entry_long_name_shorted) == (UCHAR)(*work_ptr)) { ... } }if (entry_ptr -> fx_dir_entry_long_name_shorted > 0) { ... } /* This is an 8.3 name. First clear the directory name. */ for (j = 0; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; j++) { work_ptr[j] = ' '; }for (j = 0; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; j++) { ... } /* Copy leading dots in case of first two entries of a directory. */ for (i = 0; (UCHAR)entry_ptr -> fx_dir_entry_name[i] == '.'; i++) { work_ptr[i] = '.'; }for (i = 0; (UCHAR)entry_ptr -> fx_dir_entry_name[i] == '.'; i++) { ... } /* Determine if there are more characters to copy. */ if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] != 0) { /* Copy directory name. */ for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { /* Check for end of copy conditions. */ if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == '.') { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == '.') { ... } if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == 0) { ... } /* Pickup shortname character. */ alpha = entry_ptr -> fx_dir_entry_name[i]; /* Determine if character is lower case. */ if ((alpha >= 'a') && (alpha <= 'z')) { /* Store the character - converted to upper case. */ alpha = (CHAR)(alpha - ((CHAR)0x20)); }if ((alpha >= 'a') && (alpha <= 'z')) { ... } /* Copy a name character. */ work_ptr[j] = (UCHAR)alpha; }for (i = 0, j = 0; j < FX_DIR_NAME_SIZE; i++, j++) { ... } }if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] != 0) { ... } /* Determine if there are more characters in the name. */ if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] != 0) { /* Loop to copy the remainder of the name. */ for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { /* Check for end of copy conditions. */ if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == 0) { break; }if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] == 0) { ... } /* Pickup shortname character. */ alpha = entry_ptr -> fx_dir_entry_name[i]; /* Determine if character is lower case. */ if ((alpha >= 'a') && (alpha <= 'z')) { /* Store the character - converted to upper case. */ alpha = (CHAR)(alpha - ((CHAR)0x20)); }if ((alpha >= 'a') && (alpha <= 'z')) { ... } /* Copy a name character. */ work_ptr[j] = (UCHAR)alpha; }for (i++, j = FX_DIR_NAME_SIZE; j < FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE; i++, j++) { ... } }if ((UCHAR)entry_ptr -> fx_dir_entry_name[i] != 0) { ... } /* Move to the next entry. */ work_ptr += (FX_DIR_NAME_SIZE + FX_DIR_EXT_SIZE); }else { ... } /* Write out the 8.3 part of the name. */ /* Copy the attribute into the destination. */ *work_ptr++ = entry_ptr -> fx_dir_entry_attributes; /* Copy the reserved byte. */ *work_ptr++ = entry_ptr -> fx_dir_entry_reserved; /* Copy the created time in milliseconds. */ *work_ptr++ = entry_ptr -> fx_dir_entry_created_time_ms; /* Copy the created time. */ _fx_utility_16_unsigned_write(work_ptr, entry_ptr -> fx_dir_entry_created_time); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the created date. */ _fx_utility_16_unsigned_write(work_ptr, entry_ptr -> fx_dir_entry_created_date); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the last accessed date. */ _fx_utility_16_unsigned_write(work_ptr, entry_ptr -> fx_dir_entry_last_accessed_date); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Determine if a FAT32 entry is present. */ if (media_ptr -> fx_media_32_bit_FAT) { /* Yes, FAT32 is present, store upper half of cluster. */ temp = (entry_ptr -> fx_dir_entry_cluster >> 16); _fx_utility_16_unsigned_write(work_ptr, temp); }if (media_ptr -> fx_media_32_bit_FAT) { ... } else { /* No, FAT16 or FAT12 is present, just write a 0 for the upper half of the cluster. *//* ... */ _fx_utility_16_unsigned_write(work_ptr, 0); }else { ... } /* Advance the entry pointer. */ work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the time into the destination. */ _fx_utility_16_unsigned_write(work_ptr, entry_ptr -> fx_dir_entry_time); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the date into the destination. */ _fx_utility_16_unsigned_write(work_ptr, entry_ptr -> fx_dir_entry_date); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the starting cluster into the destination. */ _fx_utility_16_unsigned_write(work_ptr, (UINT)entry_ptr -> fx_dir_entry_cluster); work_ptr = work_ptr + 2; /* Always 2 bytes */ /* Copy the file size into the destination. */ _fx_utility_32_unsigned_write(work_ptr, (ULONG)entry_ptr -> fx_dir_entry_file_size); #ifdef FX_ENABLE_FAULT_TOLERANT /* Update changed_size. */ changed_size += FX_DIR_ENTRY_SIZE; if (media_ptr -> fx_media_fault_tolerant_enabled && (media_ptr -> fx_media_fault_tolerant_state & FX_FAULT_TOLERANT_STATE_STARTED)) { /* Redirect this request to log file. */ status = _fx_fault_tolerant_add_dir_log(media_ptr, (ULONG64) logical_sector, changed_offset, changed_ptr, changed_size); }if (media_ptr -> fx_media_fault_tolerant_enabled && (media_ptr -> fx_media_fault_tolerant_state & FX_FAULT_TOLERANT_STATE_STARTED)) { ... } else { #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Write the directory sector to the media. */ status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) logical_sector, sector_base_ptr, ((ULONG) 1), FX_DIRECTORY_SECTOR); #ifdef FX_ENABLE_FAULT_TOLERANT }else { ... } #endif /* FX_ENABLE_FAULT_TOLERANT */ /* Determine if an error occurred. */ if (status != FX_SUCCESS) { /* Return the error status. */ return(status); }if (status != FX_SUCCESS) { ... } #ifndef FX_MEDIA_DISABLE_SEARCH_CACHE /* Determine if there is a previously found directory entry in the directory search cache. *//* ... */ if (media_ptr -> fx_media_last_found_name[0]) { /* Determine if the cached search directory entry matches the directory entry being written. *//* ... */ if ((entry_ptr -> fx_dir_entry_log_sector == media_ptr -> fx_media_last_found_entry.fx_dir_entry_log_sector) && (entry_ptr -> fx_dir_entry_byte_offset == media_ptr -> fx_media_last_found_entry.fx_dir_entry_byte_offset)) { /* Yes, this entry is the same as the one currently in the directory search cache. Update various fields in the directory search cache with the information being written now. *//* ... */ media_ptr -> fx_media_last_found_entry.fx_dir_entry_cluster = entry_ptr -> fx_dir_entry_cluster; media_ptr -> fx_media_last_found_entry.fx_dir_entry_file_size = entry_ptr -> fx_dir_entry_file_size; media_ptr -> fx_media_last_found_entry.fx_dir_entry_attributes = entry_ptr -> fx_dir_entry_attributes; media_ptr -> fx_media_last_found_entry.fx_dir_entry_time = entry_ptr -> fx_dir_entry_time; media_ptr -> fx_media_last_found_entry.fx_dir_entry_date = entry_ptr -> fx_dir_entry_date; media_ptr -> fx_media_last_found_entry.fx_dir_entry_reserved = entry_ptr -> fx_dir_entry_reserved; media_ptr -> fx_media_last_found_entry.fx_dir_entry_created_time_ms = entry_ptr -> fx_dir_entry_created_time_ms; media_ptr -> fx_media_last_found_entry.fx_dir_entry_created_time = entry_ptr -> fx_dir_entry_created_time; media_ptr -> fx_media_last_found_entry.fx_dir_entry_created_date = entry_ptr -> fx_dir_entry_created_date; }if ((entry_ptr -> fx_dir_entry_log_sector == media_ptr -> fx_media_last_found_entry.fx_dir_entry_log_sector) && (entry_ptr -> fx_dir_entry_byte_offset == media_ptr -> fx_media_last_found_entry.fx_dir_entry_byte_offset)) { ... } }if (media_ptr -> fx_media_last_found_name[0]) { ... } /* ... */#endif /* Return success to the caller. */ 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.