0%

OS-5 实验记录

This is os_5 code

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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#define BLOCKSIZE 1024 // 磁盘块大小
#define SIZE 1024000 // 虚拟磁盘空间大小
#define END 65535 // FAT中的文件结束标志
#define FREE 0 // FAT中盘块空闲标志
#define ROOTBLOCKNUM 2 // 根目录区所占盘块数
#define MAXOPENFILE 10 // 最多同时打开文件个数t
#define MAXTEXT 10000

/* 文件控制块 */
typedef struct FCB{

char filename[8]; // 文件名
char exname[3]; // 文件扩展名
unsigned char attribute; // 文件属性字段,值为0时表示目录文件,值为1时表示数据文件
unsigned short time; // 文件创建时间
unsigned short date; // 文件创建日期
unsigned short first; // 文件起始盘块号
unsigned long length; // 文件长度
char free; // 表示目录项是否为空,若值为0,表示空,值为1,表示已分配
}fcb;

/* 文件分配表 */
typedef struct FAT
{
unsigned short id; // 磁盘块的状态(空闲的,最后的,下一个)
}fat;
/* 用户打开文件表 */
typedef struct USEROPEN
{
char filename[8]; // 文件名
char exname[3]; // 文件扩展名
unsigned char attribute;//文件属性字段,值为0时表示目录文件,值为1时表示数据文件
unsigned short time; // 文件创建时间
unsigned short date; // 文件创建日期
unsigned short first; // 文件起始盘块号
unsigned long length;//文件长度(对数据文件是字节数,对目录文件可以是目录项个数)
char free; // 表示目录项是否为空,若值为0,表示空,值为1,表示已分配

unsigned short dirno; // 相应打开文件的目录项在父目录文件中的盘块号
int diroff; // 相应打开文件的目录项在父目录文件的dirno盘块中的目录项序号
char dir[80]; // 相应打开文件所在的路径名,这样方便快速检查出指定文件是否已经打开
int father; // 父目录在打开文件表项的位置
int count; // 读写指针在文件中的位置,文件的总字符数
char fcbstate; // 是否修改了文件的FCB的内容,如果修改了置为1,否则为0
char topenfile; // 表示该用户打开表项是否为空,若值为0,表示为空,否则表示已被某打开文件占据
}useropen;

/* 引导块 */
typedef struct BLOCK0
{
char magic[10]; // 文件系统魔数
char information[200];//存储一些描述信息,如磁盘块大小、磁盘块数量、最多打开文件数等
unsigned short root; // 根目录文件的起始盘块号
unsigned char *startblock; // 虚拟磁盘上数据区开始位置
}block0;
unsigned char *myvhard; // 指向虚拟磁盘的起始地址
useropen openfilelist[MAXOPENFILE]; // 用户打开文件表数组
int curdir; // 用户打开文件表中的当前目录所在打开文件表项的位置
char currentdir[80]; // 记录当前目录的目录名(包括目录的路径)
unsigned char* startp; // 记录虚拟磁盘上数据区开始位置
char myfilename[] = "myfilesys";//文件系统的文件名

void startsys(void); // 进入文件系统
void my_format(void); // 磁盘格式化
void my_cd(char *dirname); // 更改当前目录
void my_mkdir(char *dirname); // 创建子目录
void my_rmdir(char *dirname); // 删除子目录
void my_ls(void); // 显示目录
void my_create (char *filename); // 创建文件
void my_rm(char *filename); // 删除文件
int my_open(char *filename); // 打开文件
int my_close(int fd); // 关闭文件
int my_write(int fd); // 写文件
int do_write(int fd, char *text, int len, char wstyle); // 实际写文件
int my_read (int fd, int len); // 读文件
int do_read (int fd, int len,char *text); // 实际读文件
void my_exitsys(void); // 退出文件系统
unsigned short findblock(void); // 寻找空闲盘块
int findopenfile(void); // 寻找空闲文件表项
void startsys()
{
FILE *fp;
unsigned char buf[SIZE];
fcb *root;
int i;
myvhard = (unsigned char *)malloc(SIZE);//申请虚拟磁盘空间
memset(myvhard, 0, SIZE);//将myvhard中前SIZE个字节用 0 替换并返回 myvhard
if((fp = fopen(myfilename, "r")) != NULL)
{
fread(buf, SIZE, 1, fp);//将二进制文件读取到缓冲区
fclose(fp);
if(strcmp(((block0 *)buf)->magic, "10101010"))
{
printf("myfilesys is not exist,begin to creat the file...\n");
my_format();
}
else
{
for(i = 0; i < SIZE; i++)
myvhard[i] = buf[i];
}
}
else
{
printf("myfilesys is not exist,begin to creat the file...\n");
my_format();
}
root = (fcb *)(myvhard + 5 * BLOCKSIZE);
strcpy(openfilelist[0].filename, root->filename);
strcpy(openfilelist[0].exname, root->exname);
openfilelist[0].attribute = root->attribute;
openfilelist[0].time = root->time;
openfilelist[0].date = root->date;
openfilelist[0].first = root->first;
openfilelist[0].length = root->length;
openfilelist[0].free = root->free;
openfilelist[0].dirno = 5;
openfilelist[0].diroff = 0;
strcpy(openfilelist[0].dir, "\\root\\");
openfilelist[0].father = 0;
openfilelist[0].count = 0;
openfilelist[0].fcbstate = 0;
openfilelist[0].topenfile = 1;
for(i = 1; i < MAXOPENFILE; i++)
openfilelist[i].topenfile = 0;
curdir = 0;
strcpy(currentdir, "\\root\\");
startp = ((block0 *)myvhard)->startblock;
}
void my_format() //磁盘格式化
{
FILE *fp; //声明fp是指针,用来指向FILE类型的对象。
fat *fat1, *fat2;
block0 *blk0;
time_t now;
struct tm *nowtime;
fcb *root;
int i;
blk0 = (block0 *)myvhard;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
root = (fcb *)(myvhard + 5 * BLOCKSIZE);
strcpy(blk0->magic, "10101010");
strcpy(blk0->information, "My FileSystem Ver 1.0 \n Blocksize=1KB Whole size=1000KB Blocknum=1000 RootBlocknum=2\n");
blk0->root = 5;
blk0->startblock = (unsigned char *)root;
for(i = 0; i < 5; i++) //初始化前五个磁盘块
{
fat1->id = END;
fat2->id = END;
fat1++;
fat2++;
}
fat1->id = 6;
fat2->id = 6;
fat1++;
fat2++;
fat1->id = END;
fat2->id = END;
fat1++;
fat2++;
for(i = 7; i < SIZE / BLOCKSIZE; i++)
{
fat1->id = FREE;
fat2->id = FREE;
fat1++;
fat2++;
}
now = time(NULL);
nowtime = localtime(&now); //时间同步
strcpy(root->filename, ".");
strcpy(root->exname, "");
root->attribute = 0x28; //初始化root目录
root->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
root->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
root->first = 5;
root->length = 2 * sizeof(fcb);
root->free = 1;
root++;
now = time(NULL);
nowtime = localtime(&now);
strcpy(root->filename, ".."); //创建 . 和 .. 目录
strcpy(root->exname, ""); //创建 . 和 .. 目录
root->attribute = 0x28;
root->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
root->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
root->first = 5;
root->length = 2 * sizeof(fcb);
root->free = 1;
fp = fopen(myfilename, "w");
fwrite(myvhard, SIZE, 1, fp);
fclose(fp);
}

void my_cd(char *dirname)//把当前目录改为指定名为dirname的目录
{
char *dir;
int fd;
dir = strtok(dirname, "\\");//分解字符串为一组字符串。dirname为要分解的字符串,"\\"为分隔符字符串
if(strcmp(dir, ".") == 0)//在父目录文件中检查新的当前目录名是否存在,关闭原当前目录
return;
else if(strcmp(dir, "..") == 0)
{
if(curdir)
curdir = my_close(curdir);
return;
}
else if(strcmp(dir, "root") == 0)
{
while(curdir)
curdir = my_close(curdir);
dir = strtok(NULL, "\\");
}
while(dir)//如果当前新的目录没有打开 ,则打开目录文件
{
fd = my_open(dir);
if(fd != -1)
curdir = fd;//将curdir设置为新当前目录的fd
else
return;
dir = strtok(NULL, "\\");
}
}

void my_mkdir(char *dirname)
{
fcb *fcbptr;
fat *fat1, *fat2;
time_t now;
struct tm *nowtime;
char text[MAXTEXT];
unsigned short blkno;
int rbn, fd, i;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
openfilelist[curdir].count = 0;
rbn = do_read(curdir, openfilelist[curdir].length, text);
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)//在当前目录下找,是否有重名目录
{
if(strcmp(fcbptr->filename, dirname) == 0 && strcmp(fcbptr->exname, "") == 0)
{
printf("Error,the dirname is already exist!\n");
return;
}
fcbptr++;
}
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)
{
if(fcbptr->free == 0)
break;
fcbptr++;
}
blkno = findblock();//寻找空闲盘块
if(blkno == -1)
return;
(fat1 + blkno)->id = END;
(fat2 + blkno)->id = END;
now = time(NULL);
nowtime = localtime(&now);
strcpy(fcbptr->filename, dirname);
strcpy(fcbptr->exname, "");
fcbptr->attribute = 0x30;
fcbptr->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
fcbptr->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
fcbptr->first = blkno;
fcbptr->length = 2 * sizeof(fcb);
fcbptr->free = 1;
openfilelist[curdir].count = i * sizeof(fcb);//把当前目录的文件读写指针定位到文件末尾
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);//从指针fcbptr开始写一个fcb大小的内容到当前目录文件末尾

fd = my_open(dirname);//返回新建立的目录文件在用户打开文件数组的下标
if(fd == -1)
return;
fcbptr = (fcb *)malloc(sizeof(fcb));//建立新目录的'.','..'目录
now = time(NULL);
nowtime = localtime(&now);
strcpy(fcbptr->filename, ".");
strcpy(fcbptr->exname, "");
fcbptr->attribute = 0x28;
fcbptr->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
fcbptr->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
fcbptr->first = blkno;
fcbptr->length = 2 * sizeof(fcb);
fcbptr->free = 1;
do_write(fd, (char *)fcbptr, sizeof(fcb), 2);
now = time(NULL);
nowtime = localtime(&now);
strcpy(fcbptr->filename, "..");
strcpy(fcbptr->exname, "");
fcbptr->attribute = 0x28;
fcbptr->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
fcbptr->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
fcbptr->first = blkno;
fcbptr->length = 2 * sizeof(fcb);
fcbptr->free = 1;
do_write(fd, (char *)fcbptr, sizeof(fcb), 2);
free(fcbptr);
my_close(fd);

fcbptr = (fcb *)text;
fcbptr->length = openfilelist[curdir].length;
openfilelist[curdir].count = 0;
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);//更新当前目录文件的内容
openfilelist[curdir].fcbstate = 1;
}

void my_rmdir(char *dirname)
{
fcb *fcbptr,*fcbptr2;
fat *fat1, *fat2, *fatptr1, *fatptr2;
char text[MAXTEXT], text2[MAXTEXT];
unsigned short blkno;
int rbn, rbn2, fd, i, j;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
if(strcmp(dirname, ".") == 0 || strcmp(dirname, "..") == 0)
{
printf("Error,can't remove this directory.\n");
return;
}
openfilelist[curdir].count = 0;
rbn = do_read(curdir, openfilelist[curdir].length, text);
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)//查找要删除的目录
{
if(strcmp(fcbptr->filename, dirname) == 0 && strcmp(fcbptr->exname, "") == 0)
break;
fcbptr++;
}
if(i == rbn / sizeof(fcb))
{
printf("Error,the directory is not exist.\n");
return;
}
fd = my_open(dirname);//目录在当前打开文件数组中的下标
rbn2 = do_read(fd, openfilelist[fd].length, text2);//读取要删除的目录的内容
fcbptr2 = (fcb *)text2;
for(j = 0; j < rbn2 / sizeof(fcb); j++)//判断要删除目录是否为空
{
if(strcmp(fcbptr2->filename, ".") && strcmp(fcbptr2->filename, "..") && strcmp(fcbptr2->filename, ""))
{
my_close(fd);
printf("Error,the directory is not empty.\n");
return;
}
fcbptr2++;
}
blkno = openfilelist[fd].first;
while(blkno != END)//修改要删除目录在fat中所占用的目录项的属性
{
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
blkno = fatptr1->id;
fatptr1->id = FREE;
fatptr2->id = FREE;
}
my_close(fd);
strcpy(fcbptr->filename, "");//修改已删除目录在当前目录的fcb的属性
fcbptr->free = 0;
openfilelist[curdir].count = i * sizeof(fcb);//更新当前目录文件的内容
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);
openfilelist[curdir].fcbstate = 1;
}
void my_ls() //用于显示文件中的内容
{
fcb *fcbptr;
char text[MAXTEXT];
int rbn, i;
openfilelist[curdir].count = 0;
rbn = do_read(curdir, openfilelist[curdir].length, text);//调用do_read读出当前目录文件内容到内存
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)//遍历当前目录的fcb
{
if(fcbptr->free)
{
if(fcbptr->attribute & 0x20)//0时为目录文件,1为数据文件
//打印出子目录和文件信息
printf("%s\\\t\t<DIR>\t\t%d/%d/%d\t%02d:%02d:%02d\n", fcbptr->filename, (fcbptr->date >> 9) + 1980, (fcbptr->date >> 5) & 0x000f, fcbptr->date & 0x001f, fcbptr->time >> 11, (fcbptr->time >> 5) & 0x003f, fcbptr->time & 0x001f * 2);
else
printf("%s.%s\t\t%dB\t\t%d/%d/%d\t%02d:%02d:%02d\t\n", fcbptr->filename, fcbptr->exname, (int)(fcbptr->length), (fcbptr->date >> 9) + 1980, (fcbptr->date >> 5) & 0x000f, fcbptr->date & 0x1f, fcbptr->time >> 11, (fcbptr->time >> 5) & 0x3f, fcbptr->time & 0x1f * 2);
}
fcbptr++;
}
}
void my_create(char *filename)//用于创建文件
{
fcb *fcbptr;
fat *fat1, *fat2;
char *fname, *exname, text[MAXTEXT];
unsigned short blkno;
int rbn, i;
time_t now;
struct tm *nowtime;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + BLOCKSIZE);
fname = strtok(filename, ".");
exname = strtok(NULL, ".");
//为新文件分配一个空闲打开文件表项
if(strcmp(fname, "") == 0)
{
printf("Error,creating file must have a right name.\n");
return;
}
if(!exname)
{
printf("Error,creating file must have a extern name.\n");
return;
}
//Read该父目录的文件到内存,并检测新建的文件名是否重名
openfilelist[curdir].count = 0;
rbn = do_read(curdir, openfilelist[curdir].length, text);
fcbptr = (fcb *)text;
//检测新建的文件名是否重名
for(i = 0; i < rbn / sizeof(fcb); i++)
{
if(strcmp(fcbptr->filename, fname) == 0 && strcmp(fcbptr->exname, exname) == 0)
{
printf("Error,the filename is already exist!\n");
return;
}
fcbptr++;
}
//申请空的fcb
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)
{
if(fcbptr->free == 0)
break;
fcbptr++;
}
//申请磁块并更新fat表
blkno = findblock();
if(blkno == -1)
return;
(fat1 + blkno)->id = END;
(fat2 + blkno)->id = END;
//修改fcb信息
now = time(NULL);
nowtime = localtime(&now);
strcpy(fcbptr->filename, fname);
strcpy(fcbptr->exname, exname);
fcbptr->attribute = 0x00;
fcbptr->time = nowtime->tm_hour * 2048 + nowtime->tm_min * 32 + nowtime->tm_sec / 2;
fcbptr->date = (nowtime->tm_year - 80) * 512 + (nowtime->tm_mon + 1) * 32 + nowtime->tm_mday;
fcbptr->first = blkno;
fcbptr->length = 0;
fcbptr->free = 1;
openfilelist[curdir].count = i * sizeof(fcb);
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);
//修改父目录fcb
fcbptr = (fcb *)text;
fcbptr->length = openfilelist[curdir].length;
openfilelist[curdir].count = 0;
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);
openfilelist[curdir].fcbstate = 1;//并将该目录文件的用户打开文件表项中的fcbstate置为1
}
void my_rm(char *filename)
{
fcb *fcbptr;
fat *fat1, *fat2, *fatptr1, *fatptr2;
char *fname, *exname, text[MAXTEXT];
unsigned short blkno;
int rbn, i;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
fname = strtok(filename, ".");
exname = strtok(NULL, ".");
if(strcmp(fname, "") == 0)
{
printf("Error,removing file must have a right name.\n");
return;
}
if(!exname)
{
printf("Error,removing file must have a extern name.\n");
return;
}
openfilelist[curdir].count = 0;
rbn = do_read(curdir, openfilelist[curdir].length, text);
fcbptr = (fcb *)text;
for(i = 0; i < rbn / sizeof(fcb); i++)
{
if(strcmp(fcbptr->filename, fname) == 0 && strcmp(fcbptr->exname, exname) == 0)
break;
fcbptr++;
}
if(i == rbn / sizeof(fcb))
{
printf("Error,the file is not exist.\n");
return;
}
blkno = fcbptr->first;
while(blkno != END)
{
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
blkno = fatptr1->id;
fatptr1->id = FREE;
fatptr2->id = FREE;
}
strcpy(fcbptr->filename, "");
fcbptr->free = 0;
openfilelist[curdir].count = i * sizeof(fcb);
do_write(curdir, (char *)fcbptr, sizeof(fcb), 2);
openfilelist[curdir].fcbstate = 1;
}
int my_open(char *filename)
{
fcb *fcbptr;
char *fname, exname[3], *str, text[MAXTEXT];
int rbn, fd, i;
fname = strtok(filename, "."); //分解filename的d字符串,.为切割符结果,返回分割依据前面的字串
str = strtok(NULL, "."); //结果返回分割依据后面的字串
if(str)
strcpy(exname, str); //将分割依据后面的字串copy到exname(文件扩展名)
else
strcpy(exname, "");
for(i = 0; i < MAXOPENFILE; i++)//在用户打开文件数组查找看当前文件是否已经打开
{
if(strcmp(openfilelist[i].filename, fname) == 0 && strcmp(openfilelist[i].exname, exname) == 0 && i != curdir) //如果文件名和扩展名相同且i不等于当前目录的文件描述符,则已经打开,返回-1
{
printf("Error,the file is already open.\n");
return -1;
}
}
openfilelist[curdir].count = 0; //指针从头开始
rbn = do_read(curdir, openfilelist[curdir].length, text); //return‘ll’,text[ll] = '\0'
fcbptr = (fcb *)text; //设置名为text的fcb
for(i = 0; i < rbn / sizeof(fcb); i++)//在当前目录下找要打开的文件是否存在
{
if(strcmp(fcbptr->filename, fname) == 0 && strcmp(fcbptr->exname, exname) == 0) //找到
break;
fcbptr++;
}
if(i == rbn / sizeof(fcb))
{ //文件不存在
printf("Error,the file is not exist.\n");
return -1;
}
fd = findopenfile();//寻找空闲文件表项
if(fd == -1)
return -1;
strcpy(openfilelist[fd].filename, fcbptr->filename); //将fcbptr的内容copy到空闲文件表项fd中
strcpy(openfilelist[fd].exname, fcbptr->exname);
openfilelist[fd].attribute = fcbptr->attribute;
openfilelist[fd].time = fcbptr->time;
openfilelist[fd].date = fcbptr->date;
openfilelist[fd].first = fcbptr->first;
openfilelist[fd].length = fcbptr->length;
openfilelist[fd].free = fcbptr->free;
openfilelist[fd].dirno = openfilelist[curdir].first;
openfilelist[fd].diroff = i;
strcpy(openfilelist[fd].dir, openfilelist[curdir].dir); //将当前目录的文件描述符的路径和文件名copy到fd中
strcat(openfilelist[fd].dir, filename);
if(fcbptr->attribute & 0x20) //如果文件属性为目录文件,则在文件路径后面增加'\\'
strcat(openfilelist[fd].dir, "\\");
openfilelist[fd].father = curdir; //fd的父目录为curdir
openfilelist[fd].count = 0; //指针重设
openfilelist[fd].fcbstate = 0; //fd没有被修改
openfilelist[fd].topenfile = 1; //打开表项已被占用
return fd; //返回
}


int my_close(int fd)
{
fcb *fcbptr;
int father;
if(fd < 0 || fd >= MAXOPENFILE)
{
printf("Error,the file is not exist.\n");
return -1;
}
if(openfilelist[fd].fcbstate) //如果fd被修改了
{
fcbptr = (fcb *)malloc(sizeof(fcb)); //将fd copy到fcbptr中,即将修改保存到父目录中
strcpy(fcbptr->filename, openfilelist[fd].filename);
strcpy(fcbptr->exname, openfilelist[fd].exname);
fcbptr->attribute = openfilelist[fd].attribute;
fcbptr->time = openfilelist[fd].time;
fcbptr->date = openfilelist[fd].date;
fcbptr->first = openfilelist[fd].first;
fcbptr->length = openfilelist[fd].length;
fcbptr->free = openfilelist[fd].free;
father = openfilelist[fd].father;
openfilelist[father].count = openfilelist[fd].diroff * sizeof(fcb);
//指针指到最后
do_write(father, (char *)fcbptr, sizeof(fcb), 2); //写到父目录中去
free(fcbptr);
openfilelist[fd].fcbstate = 0; //状态改为没被修改
}
strcpy(openfilelist[fd].filename, ""); //清空fd的文件名的扩展名
strcpy(openfilelist[fd].exname, "");
openfilelist[fd].topenfile = 0;
return father;
}


int my_write(int fd)
{
fat *fat1, *fat2, *fatptr1, *fatptr2;
int wstyle, len, ll, tmp;
char text[MAXTEXT];
unsigned short blkno;
fat1 = (fat *)(myvhard + BLOCKSIZE); //磁盘块块号
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
if(fd < 0 || fd >= MAXOPENFILE)
{
printf("The file is not exist!\n");
return -1;
}
while(1)
{
printf("Please enter the number of write style:\n1.cut write\t2.cover write\t3.add write\n"); //选择三种写操作方式
scanf("%d", &wstyle);
if(wstyle > 0 && wstyle < 4)
break;
printf("Input Error!");
}
getchar();
switch(wstyle)
{
case 1://截断写把原文件所占的虚拟磁盘空间重置为1
blkno = openfilelist[fd].first; //blkno=fd的起始盘块号
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
blkno = fatptr1->id;
fatptr1->id = END;
fatptr2->id = END;
while(blkno != END)
{
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
blkno = fatptr1->id;
fatptr1->id = FREE;
fatptr2->id = FREE;
}
openfilelist[fd].count = 0;
openfilelist[fd].length = 0;
break;
case 2:
openfilelist[fd].count = 0;
break;
case 3:
openfilelist[fd].count = openfilelist[fd].length;
break;
default:
break;
}
ll = 0;
printf("please input write data(end with $$):\n");
while(gets(text))
{
if (strcmp(text, "$$") == 0) {
break;
}
len = strlen(text);
text[len++] = '\n';
text[len] = '\0';
tmp = do_write(fd, text, len, wstyle);
if(tmp != -1)
ll += tmp;
if(tmp < len)
{
printf("Wirte Error!");
break;
}
}
return ll;//实际写的字节数
}

int do_write(int fd, char *text, int len, char wstyle) // 实际写文件
{
fat *fat1, *fat2, *fatptr1, *fatptr2;
unsigned char *buf, *blkptr;
unsigned short blkno, blkoff;
int i, ll;
fat1 = (fat *)(myvhard + BLOCKSIZE);
fat2 = (fat *)(myvhard + 3 * BLOCKSIZE);
buf = (unsigned char *)malloc(BLOCKSIZE);
if(buf == NULL)
{
printf("malloc failed!\n");
return -1;
}
blkno = openfilelist[fd].first; //fd的起始盘块号
blkoff = openfilelist[fd].count; //fd的指针位置
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
while(blkoff >= BLOCKSIZE) //块内偏移大于磁盘块大小
{
blkno = fatptr1->id;
if(blkno == END) //而且要是这个盘被用完的话:
{
blkno = findblock();//寻找空闲盘块
if(blkno == -1)
{
free(buf);
return -1;//没找到就返回个-1,这个会被调用它的那个函数接住的,那个函数会报
}
fatptr1->id = blkno;
fatptr2->id = blkno;
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
fatptr1->id = END;
fatptr2->id = END;
//找到那个空闲块之后吧那个空闲块给绑上
}
else//要是这个盘没被用完那就直接用
{
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
}
blkoff = blkoff - BLOCKSIZE;//让blkoff定位到文件最后一个磁盘块的读写位置
}

ll = 0;//实际写的字节数
while(ll < len)//len是用户输入的字节数
{
blkptr = (unsigned char *)(myvhard + blkno * BLOCKSIZE);//blk指针指向
for(i = 0; i < BLOCKSIZE; i++)
buf[i] = blkptr[i]; //把之前的文件先拷贝到缓存里
for(;blkoff < BLOCKSIZE; blkoff++)
{
buf[blkoff] = text[ll++]; //然后把text补充到后面去
openfilelist[fd].count++; //同时增加文件的总字符数字
if(ll == len)
break;
}
for(i = 0; i < BLOCKSIZE; i++)
blkptr[i] = buf[i]; //然后把缓存拷贝回盘
if(ll < len)//如果一个磁盘块写不下,则再分配一个磁盘块
{
blkno = fatptr1->id;
if(blkno == END)
{
blkno = findblock();
if(blkno == -1)
break;
fatptr1->id = blkno;
fatptr2->id = blkno;
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
fatptr1->id = END;
fatptr2->id = END;
}
else
{
fatptr1 = fat1 + blkno;
fatptr2 = fat2 + blkno;
}
blkoff = 0;
}
}
if(openfilelist[fd].count > openfilelist[fd].length)//如果对文件有修改 那么把文件长度修改为字符长度,同时打个标记
openfilelist[fd].length = openfilelist[fd].count;
openfilelist[fd].fcbstate = 1;
free(buf);
return ll;
}
int my_read(int fd, int len)
{
char text[MAXTEXT];
int ll;
if(fd < 0 || fd >= MAXOPENFILE)
{
printf("The File is not exist!\n");
return -1;
}
openfilelist[fd].count = 0;
ll = do_read(fd, len, text);//ll是实际读出的字节数
if(ll != -1)
printf("%s", text);
else
printf("Read Error!\n");
return ll;
}
int do_read(int fd, int len, char *text)
{
fat *fat1, *fatptr;
unsigned char *buf, *blkptr;
unsigned short blkno, blkoff;
int i, ll;
fat1 = (fat *)(myvhard + BLOCKSIZE);//先把这个fat1转成指针
buf = (unsigned char *)malloc(BLOCKSIZE);
if(buf == NULL)
{
printf("malloc failed!\n");
return -1;
}
blkno = openfilelist[fd].first;
blkoff = openfilelist[fd].count;
if(blkoff >= openfilelist[fd].length) //如果这个里面没东西(count=long)或越界
{
puts("Read out of range!");
free(buf);
return -1;
}
fatptr = fat1 + blkno; //真正的指针来了
while(blkoff >= BLOCKSIZE)//blkoff为最后一块盘块剩余的容量
{
blkno = fatptr->id;
blkoff = blkoff - BLOCKSIZE;
fatptr = fat1 + blkno;
}
ll = 0;
while(ll < len)
{
blkptr = (unsigned char *)(myvhard + blkno * BLOCKSIZE);
for(i = 0; i < BLOCKSIZE; i++)//将最后一块盘块的内容读取到buf中
buf[i] = blkptr[i];
for(; blkoff < BLOCKSIZE; blkoff++) //这里的原理和do_write类似
{
text[ll++] = buf[blkoff];
openfilelist[fd].count++;
if(ll == len || openfilelist[fd].count == openfilelist[fd].length)
break;
}
if(ll < len && openfilelist[fd].count != openfilelist[fd].length)
{
blkno = fatptr->id;
if(blkno == END)
break;
blkoff = 0;
fatptr = fat1 + blkno;
}
}
text[ll] = '\0';
free(buf);
return ll;
}
void my_exitsys()
{
FILE *fp;
while(curdir)
curdir = my_close(curdir);
fp = fopen(myfilename, "w");
fwrite(myvhard, SIZE, 1, fp);
fclose(fp);
free(myvhard);
}
unsigned short findblock()
{
unsigned short i;
fat *fat1, *fatptr;
fat1 = (fat *)(myvhard + BLOCKSIZE);
for(i = 7; i < SIZE / BLOCKSIZE; i++)
{
fatptr = fat1 + i;
if(fatptr->id == FREE)
return i;
}
printf("Error,Can't find free block!\n");
return -1;
}

int findopenfile()
{
int i;
for(i = 0; i < MAXTEXT; i++)
{
if(openfilelist[i].topenfile == 0)
return i;
}
printf("Error,open too many files!\n");
return -1;
}
int main()
{
char cmd[15][10] = {"cd", "mkdir", "rmdir", "ls", "create", "rm", "open", "close", "write", "read", "exit"};
char s[30], *sp;
int cmdn, flag = 1, i;
startsys();
printf("*********************File System V1.0*******************************\n\n");
printf("命令名\t\t命令参数\t\t命令说明\n\n");
printf("cd\t\t目录名(路径名)\t\t切换当前目录到指定目录\n");
printf("mkdir\t\t目录名\t\t\t在当前目录创建新目录\n");
printf("rmdir\t\t目录名\t\t\t在当前目录删除指定目录\n");
printf("ls\t\t无\t\t\t显示当前目录下的目录和文件\n");
printf("create\t\t文件名\t\t\t在当前目录下创建指定文件\n");
printf("rm\t\t文件名\t\t\t在当前目录下删除指定文件\n");
printf("open\t\t文件名\t\t\t在当前目录下打开指定文件\n");
printf("write\t\t无\t\t\t在打开文件状态下,写该文件\n");
printf("read\t\t无\t\t\t在打开文件状态下,读取该文件\n");
printf("close\t\t无\t\t\t在打开文件状态下,读取该文件\n");
printf("exit\t\t无\t\t\t退出系统\n\n");
printf("*********************************************************************\n\n");
while(flag)
{
printf("%s>", openfilelist[curdir].dir);
gets(s);
cmdn = -1;
if(strcmp(s, ""))
{
sp=strtok(s, " ");
for(i = 0; i < 15; i++)
{
if(strcmp(sp, cmd[i]) == 0)
{
cmdn = i;
break;
}
}
// printf("%d\n", cmdn);
switch(cmdn)
{
case 0:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
my_cd(sp);
else
printf("Please input the right command.\n");
break;
case 1:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
my_mkdir(sp);
else
printf("Please input the right command.\n");
break;
case 2:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
my_rmdir(sp);
else
printf("Please input the right command.\n");
break;
case 3:
if(openfilelist[curdir].attribute & 0x20)
my_ls();
else
printf("Please input the right command.\n");
break;
case 4:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
my_create(sp);
else
printf("Please input the right command.\n");
break;
case 5:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
my_rm(sp);
else
printf("Please input the right command.\n");
break;
case 6:
sp = strtok(NULL, " ");
if(sp && (openfilelist[curdir].attribute & 0x20))
{
if(strchr(sp, '.'))//查找sp中'.'首次出现的位置
curdir = my_open(sp);
else
printf("the openfile should have exname.\n");
}
else
printf("Please input the right command.\n");
break;
case 7:
if(!(openfilelist[curdir].attribute & 0x20))
curdir = my_close(curdir);
else
printf("No files opened.\n");
break;
case 8:
if(!(openfilelist[curdir].attribute & 0x20))
my_write(curdir);
else
printf("No files opened.\n");
break;
case 9:
if(!(openfilelist[curdir].attribute & 0x20))
my_read(curdir, openfilelist[curdir].length);
else
printf("No files opened.\n");
break;
case 10:
if(openfilelist[curdir].attribute & 0x20)
{
my_exitsys();
flag = 0;
}
else
printf("Please input the right command.\n");
break;
default:
printf("Please input the right command.\n");
break;
}
}
}
return 0;
}