版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、操作系统课程设计报告专 业:学 号:姓 名 提交日期:【 设计目的 】1、本实验的目的是通过一个简单多用户文件系统的设计,加深理解文件系统的内部功能和内部实现。2、结合数据结构、程序设计、计算机原理等课程的知识,设计一个二级文件系统,进一步理解操作系统。【 设计内容 】为 linux 系统设计一个简单的二级文件系统。要求做到以下几点:可以实现下列几条命令:login用户登录dir列目录create创建文件delete删除文件open打开文件close关闭文件read读文件write写文件cd进出目录列目录时要列出文件名,物理地址,保护码和文件长度源文件可以进行读写保护【 实验环境 】windo
2、ws7 操作平台visual studio2010【 相关知识综述 】理解二级目录的文件系统的组织; 掌握常用的数据结构; 系统采用两级目录, 其中第一级对应于用户账号,第二级对应于用户帐号下的文件; 使用文件来模拟外存,进行数据结构设计和操作算法的设计, 实现一个文件系统并实现基本的文件操作 (为了简便文件系统, 不考虑文件共享,文件系统安全以及管道文件与设备文件等特殊内容) 。【 设计思路 】采用的数据结构、主要的函数说明、程序流程设计等本文件系统采用两级目录, 其中第一级对应于用户账号, 第二级对应于用户帐号下的文件。 另外, 为了简便文件系统未考虑文件共享, 文件系统安全以及管道文件与
3、设备文件等特殊内容。首先应确定文件系统的数据结构: 主目录、 子目录及活动文件等。 主目录和子目录都以文件的形式存放于磁盘,这样便于查找和修改。用户创建的文件,可以编号存储于磁盘上。如:并以编号作为物理地址,在目录中进行登记1 .主要的数据结构#define maxname 25 /*the largest length of mfdname,ufdname, 表示三种文件的长度都为 25*/#define maxchild 50 /*the largest child 每个用户下可以有50 个文件 */#define max (maxchild*maxchild) /*the size of
4、 fpaddrno 定义一个常量 2500个扇区 */ typedef struct /*the structure of osfile*/int fpaddr;/* address 物理地址 */int flength; /*文件长度 */int fmode; /* only;1-write only;2-read and write; 3-protect;*/char fnamemaxname; /* 文件名 */ osfile;typedef struct /*the structure of osufd*/char ufdnamemaxname; /*ufd name*/osmaxch
5、ild; /*ufd own file*/osufd;/*osf 文件的数据结构*/typedef struct /*the structure of osufdlogin*/char ufdnamemaxname; /*ufd name*/char ufdpword8; /*ufd password*/ osufd_login;typedef struct /* mode*/int ifopen; /*ifopen:0-close,1-open*/int openmode; /*0-read only,1-write only,2-read and write,3-initial*/ osu
6、fd_openmode;2 . 主要函数void loginf(); /*login */void dirf(); /*dir */void cdf(); /*change dir*/void createf(); /*create file*/void deletef(); /*delete file*/void modifyfm(); /*modify */void openf(); /*open file*/void closef(); /*close file*/void readf(); /*read file*/void writef(); /*write file*/void q
7、uitf(); /*quit 退出文件系统*/void help();3 总体功能程序结构图评始打开命令的程序流程图关闭命令的程序流程图写命令程序流程图【 源程序清单】#include stdio.h#include string.h#include conio.h#include stdlib.h#define maxname 25 /*the largest length of mfdname,ufdname, 表示三种文件的长度都为25*/#define maxchild 50 /*the largest child 每个用户下可以有50个文件 */#define max (maxchi
8、ld*maxchild) /*the size of fpaddrno 定义一个常量2500 个扇区 */typedef struct /*the structure of osfile*/int fpaddr;/* address 物理地址 */int flength;/* 文件长度 */int fmode; /* only;1-write only;2-read and write; 3-protect; 文件标识可读可写可执 行*/char fnamemaxname;/*文件名 */ os 文件的数据结构,一级文件系统上创建的文件上例如 wangfang 存储的就是这些内 容typede
9、f struct /*the structure of osufd*/ char ufdnamemaxname; /*ufd name*/osmaxchild; /*ufd own file*/osufd;/*osf 文件的数据结构*/typedef struct /*the structure of osufdlogin 登录文件的数据结构*/char ufdnamemaxname;/*ufd name*/char ufdpword8;/*ufd password*/ osufd_login;typedef struct /* mode*/int ifopen; /*ifopen:0-clo
10、se,1-open*/int openmode; /*0-read only,1-write only,2-read and write,3-initial*/ osufd_openmode;osufd *ufdmaxchild; /*ufd and ufd own files 将 osfile 实例化 ufd ,有 50 个指向该结 构的指针 */osufd_login ufd_lp;/ 声明了一个具体的变量int ucount=0; /*the count of mfds ufds 表示用户的个数 */int fcountmaxchild; /*the count of ufds file
11、s*/int loginsuc=0; /*whether login successfully*/char usernamemaxname; /*record login users name22 定义了一个字符数组, 存放用户名 最大可放 25 个*/char dirnamemaxname;/*record current directory*/int fpaddrnomax; /*record address num*/osufd_openmode ifopenmaxchildmaxchild; /*record */int wgetchar; /*whether getchar()*/f
12、ile *fp_mfd,*fp_ufd,*fp_file_p,*fp_file;void loginf(); /*login */void dirf();/*dir */void cdf();/*change dir*/void createf(); /*create file*/void deletef(); /*delete file*/void modifyfm(); /*modify */void openf();/*open file*/void closef();/*close file*/void readf(); /*read file*/void writef(); /*wr
13、ite file*/void quitf(); /*quit 退出文件系统*/void help();char *rtrim(char *str); /*remove the trailing blanks.*/char *ltrim(char *str); /*remove the heading blanks.*/void inputpw(char *password); /*input password,use * replace*/void setpano(int rorw); /*set physical address num 设置物理地址 */int existd(char *d
14、irname); /*whether dirname exist,exist-i,not exist-0 该函数在退出的时候将内容写回磁盘*/int writef1(); /*write file*/int existf(char *); /*whether exist,exist-i,not exist-0*/int findpano(); /*find out physical address num 找到物理地址 */清屏void clrscr()system(cls);int main()int i,choice1;char choice50; /*choice operation:d
15、ir,create,delete,open,delete,modify,read,write*/int choiceend=1; /*whether choice end 表示选择是否结束*/char *rtrim(char *str); /*remove the trailing blanks. 去除后面的空格 */ char *ltrim(char *str); /*remove the heading blanks. 去除前面的空格 */该 if 语句的目的只是为了检测该文件是否存在,若不存在则创建 if(fp_mfd=fopen(c:osfilemfd.txt,rb)=null)/ 以
16、只写的方式打开文件,返回一个指针,若不存在 fp_mfd=fopen(c:osfilemfd.txt,wb);/ 则创建该文件 fclose(fp_mfd);/ 创建成功之后关闭该文件 /将模拟的磁盘区域全部初始化为零for(i=0;i,strupr(dirname); elseprintf(bad command or .nc:%s,strupr(username); gets(choice);/ 输入所选择的 strcpy(choice,ltrim(rtrim(strlwr(choice);/ 将输入的值赋给choiceif (strcmp(choice,dir)=0) choice1=1
17、;/ 依次将输入的值与dir, create 等等进行比较else if(strcmp(choice,create)=0) choice1=2;/ 如果输入 create 则将 choice1 置 为 2 通过 switch 进行选择else if(strcmp(choice,delete)=0) choice1=3;/ 依次内推else if(strcmp(choice,attrib)=0) choice1=4;else if(strcmp(choice,open)=0) choice1=5;else if(strcmp(choice,close)=0) choice1=6;else if(
18、strcmp(choice,read)=0) choice1=7;else if(strcmp(choice,write)=0) choice1=8;else if(strcmp(choice,exit)=0) choice1=9;else if(strcmp(choice,cls)=0) choice1=10;else if(strcmp(choice,cd)=0) choice1=11;else if(strcmp(choice,help)=0) choice1=20;else choice1=12;/choicel=12 时跳转到 default:choiceend=0; 因为 whil
19、e ( 1)所以要不断循环switch(choice1)case 1:dirf();choiceend=1;break;case 2:createf();choiceend=1;if(!wgetchar) getchar();break;case 3:deletef();choiceend=1;if(!wgetchar)getchar();break;case 4:modifyfm();choiceend=1;if(!wgetchar) getchar();break;case 5:openf();choiceend=1;if (!wgetchar) getchar();break;case
20、6:closef();choiceend=1;if (!wgetchar) getchar();break;case 7:readf();choiceend=1;if (!wgetchar) getchar();break;case 8:writef();choiceend=1;if (!wgetchar) getchar();break;case 9:printf(nyou have exited this system.);quitf();exit(0);break;case 10:clrscr();choiceend=1;break;case 11:cdf();choiceend=1;b
21、reak;case 20:help();choiceend=1;break;default:choiceend=0;else /如果没有登录成功printf(naccess denied.); void help(void) printf(nthe command listn);printf(ncd attrib create write read open cls delete exit closen);char *rtrim(char *str) /*remove the trailing blanks. 除去末尾端的空格符号指针指向字符串第 一个 */ int n=strlen(str)
22、-1;/n 为字符串的长度减1while(n=0)/if(*(str+n)!= )/ 末尾不存在空格*(str+n+1)=0;/0 表示结束符 break;else n-;/如果存在空格,则将空格去掉if (nufdname,strupr(ufd_lp.ufdname);fp_ufd=fopen(str,rb);fcountj=0;for(i=0;fread(&ufdj-ufdfilei,sizeof(os)!=0;i+,fcountj+)ifopenji.ifopen=0;ifopenji.openmode=4;fclose(fp_ufd);fclose(fp_mfd);ucount=j;s
23、etpano(0);printf(nnlogin successful! welcome to this nn);loginsuc=1;return;elseprintf(nn);flag=1;while(flag)printf(login failed! password error. try again(y/n):);gets(a);ltrim(rtrim(a);if (strcmp(strupr(a),y)=0)loginsuc=0;flag=0;else if(strcmp(strupr(a),n)=0)loginsuc=0;flag=0;return;elseprintf(new p
24、assword(=8):);inputpw(loginpw); /*input new password,use * replace*/printf(nconfirm password(ufdname,strupr(ufd_lp.ufdname);fp_ufd=fopen(str,rb);for(i=0;fread(&ufdj-ufdfilei,sizeof(os)!=0;i+,fcountj+)ifopenji.ifopen=0;ifopenji.openmode=4;fclose(fp_ufd);fclose(fp_mfd);ucount=j;setpano(0);printf(nnlog
25、in successful! welcome to this systemnn);loginsuc=1;return;elseprintf(nn);flag=1;while(flag)printf(login failed! password error. try again(y/n):); gets(a);ltrim(rtrim(a);if (strcmp(strupr(a),y)=0)loginsuc=0;flag=0;else if(strcmp(strupr(a),n)=0)loginsuc=0;flag=0;return;void setpano(int rorw) /*set ph
26、ysical address num,0-read,1-write*/int i,j;if (rorw=0)if(fp_(c:osfilefile,rb)=null)/ 如果文件未读成功fp_(c:osfilefile,wb);/ 则创建该文件 fclose(fp_file_p);fp_(c:osfilefile,rb);/for(i=0;fread(&j,sizeof(int),1,fp_file_p)!=0;i+)fpaddrnoj=1;/ 真正模拟的位示图的关系/*for(i=1;imax;i+)if (i%13)=0) fpaddrnoi=1;*/elsefp_(c:osfilefil
27、e,wb);/*for(i=1;imax;i+)if(i%13)=0)fpaddrnoi=0;*/for(i=0;imax;i+)/if (fpaddrnoi=1)/ 表示已使用 fwrite(&i,sizeof(int),1,fp_file_p);/ 把第几个扇区号写进文件fclose(fp_file_p);void inputpw(char *password) /*input password,use * replace*/int j;for(j=0;j0)/ 且密码个数大于 0j-;j-; putchar(b);putchar( );putchar(b);/b 表示退格 putchar
28、 函数只能用 于单个字符的输出,且一次只能输出一个字符 else j-;elsepasswordj=0;/0 是字符串的结束符,如果输出完毕则终止break;passwordj=0;void dirf() /*dir */int i,j,count=0;char sfmode25,sfpaddr25,str25;clrscr();if (strcmp(strupr(ltrim(rtrim(dirname),)!=0)printf(nnc:%sdirn,dirname);printf(n%14s%16s%14s%10s%18sn,type,);j=existd(dirname);for(i=0;
29、iufdfilei.fpaddr,str,10);strcpy(sfpaddr,file);strcat(sfpaddr,str);if (ufdj-ufdfilei.fmode=0) strcpy(sfmode,read only);else if(ufdj-ufdfilei.fmode=1) strcpy(sfmode,write only);else if(ufdj-ufdfilei.fmode=2)strcpy(sfmode,read and write);else strcpy(sfmode,protect);printf(%14s%16s%14d%10s%18sn,ufdj-ufd
30、filei.fname,sfpaddr,ufdj-ufdfilei.flen gth,sfmode);printf(n %3d file(s)n,fcountj);elseprintf(nnc:dirn);printf(n%14s%18s%8sn,dirname,own,type);for(i=0;iufdname,fcounti,);count=count+fcounti;printf(n %3d dir(s),%5d file(s)n,ucount,count);int existd(char *dirname) /*whether dirname exist,exist-i,not ex
31、ist-0*/int i;int exist=0;for(i=0;iufdname),strupr(dirname)=0)exist=1;break;if (exist) return(i);else return(-1);void cdf() /*exchange dir*/char dnamemaxname;printf(nplease input dirname (cd.-previous dir; dirname-cd dirname):);gets(dname);ltrim(rtrim(dname);if (existd(dname)=0) strcpy(dirname,strupr
32、(dname);elseif(strcmp(strupr(dname),cd.)=0)strcpy(ltrim(rtrim(dirname),);else printf(nerror.%s does not exist.n,dname);void createf() /*create file*/int fpaddrno,flag=1,i;char fnamemaxname,str50,str150,a25;char fmode25;if (strcmp(strupr(dirname),strupr(username)!=0) printf(nerror. you must create yo
33、ur own dir.n);wgetchar=1;elseprintf(nplease input :);gets(fname);ltrim(rtrim(fname);if (existf(fname)=0)printf(nerror. name %s has already existed.n,fname);wgetchar=1;elseprintf(please input (0-read only, 1-write only, 2-read and write, 3-protect):); gets(fmode);ltrim(rtrim(fmode);if(strcmp(fmode,0)
34、=0)|(strcmp(fmode,1)=0)|(strcmp(fmode,2)=0)|(strcmp(fmode ,3)=0)fpaddrno=findpano();if (fpaddrno=0)i=existd(username);strcpy(ufdi-ufdi.fname,fname);ufdi-ufdi.fpaddr=fpaddrno;ufdi-ufdi.fmode=atoi(fmode);ifopenifcounti.ifopen=0;ifopenifcounti.openmode=4;strcpy(str,c:osfilefilefile);itoa(fpaddrno,str1,
35、10);strcat(str,str1);strcat(str,.txt);fp_(str,wb);fclose(fp_file);fcounti+;while(flag) printf(input text now(y/n):);gets(a);ltrim(rtrim(a);ufdi-ufdi-1.flength=0;if(strcmp(strupr(a),y)=0) fp_(str,wb+);ufdi-ufdi-1.flength=writef1();flag=0;else if(strcmp(strupr(a),n)=0)flag=0;wgetchar=1;printf(n%s has
36、been created successfully!n,fname);elseprintf(nfail!no disk space. please format your disk.n); wgetchar=1;elseprintf(nerror. s range is 0-3n);wgetchar=1; int existf(char *) /*whether exist,exist-i,not exist-0 该函数检测某文件是否存在 */int i,j;int exist=0;j=existd(dirname);for(i=0;iufdfilei.fname),strupr()=0) e
37、xist=1;break;if (exist) return(i);else return(-1);/找出没有使用的磁盘号,然后加以使用,返回值为该磁盘号int findpano() /*find out physical address num*/ int i;for(i=0;imax;i+)if (fpaddrnoi=0) / 找到没有使用的磁盘号 fpaddrnoi=1;/ 然后加以使用break;if (i=0) k=existd(username);/ 获取用户名if(ifopenki.ifopen=1)/* 文件打开时无法删除*/ printf(nerror.%s is in op
38、en status. close it before delete.n,fname); wgetchar=1; elseif(ufdk-ufdfilei.fmode=3)/* 被保护的文件无法删除*/printf(nerror.%s is in protect status. close it before delete.n,fname); wgetchar=1; elsefpaddrno1=ufdk-ufdfilei.fpaddr;/ 获取文件对应的物理文件名fpaddrnofpaddrno1=0;/ 回收盘块 for(n=i;nufdfilen=ufdk-ufd;/ 从被删除的文件号开始,
39、数组值全部前移一个strcpy(str,d:osfilefilefile);itoa(fpaddrno1,str1,10);/ 整数转化成字符串strcat(str,str1); /把 str1 添加到 str 结尾处 strcat(str,.txt);/把 .txt 添加到 str 结尾处remove(str);/ 删除物理文件fcountk-;/k 用户文件数量少1printf(n %sis deleted successfully.n,fname); wgetchar=1;else所要删除的文件不存在printf(nerror. %s dose not exist.n,fname);wg
40、etchar=1;void modifyfm() /*modify */char fnamemaxname,str50;int i,k;char fmode25; /*whether delete*/if (strcmp(strupr(dirname),strupr(username)!=0)printf(nerror.you can only modify in yourself dir.n); wgetchar=1; elseprintf(nplease input :);gets(fname);ltrim(rtrim(fname);i=existf(fname);if (i=0)k=existd(username);if(ifopenki.ifopen=1)printf(nerror.%s is in open status. close it before modify.n,fname); wgetchar=1;elseif(ufdk-ufdfilei.fmode=0) strc
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 老龄化与健康
- 2024-2030年中国指接板行业竞争模式分析及投资前景展望报告
- 2024-2030年中国折叠式太阳能灶项目可行性研究报告
- 2024-2030年中国手机显示屏产业营销战略与未来前景展望报告版
- 2024-2030年中国微型硬盘行业市场发展分析及前景趋势与投资研究报告
- 2024-2030年中国开槽机行业市场运营模式及未来发展动向预测报告
- 2024-2030年中国废弃资源行业面临的困难及对策及未来发展规划分析报告
- 超声波技术在家用电力器具配件制造中的应用研究
- 生物质燃气能源可持续性考核试卷
- 2024专业项目承包协议模板集
- 外来施工人员安全培训
- 物业与装修公司合作计划ppt课件
- 苏教版小学生五年级上册英语期中试卷
- PLC控制的自动花样音乐喷泉系统设计毕业设计论文
- 建筑公司组织架构及岗位职责
- COPD诊疗新进展
- 精品资料(2021-2022年收藏的)病案管理制度全套
- 低压工作票(共3页)
- 2阀门结构和工作原理(上)
- 基础图案设计(课堂PPT)
- 幼儿园参观学校活动方案5篇
评论
0/150
提交评论