操作系统课程设计基于Linux的模拟文件系统的设计与实现_第1页
操作系统课程设计基于Linux的模拟文件系统的设计与实现_第2页
操作系统课程设计基于Linux的模拟文件系统的设计与实现_第3页
操作系统课程设计基于Linux的模拟文件系统的设计与实现_第4页
操作系统课程设计基于Linux的模拟文件系统的设计与实现_第5页
已阅读5页,还剩15页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、中北大学操作系统课程设计说 明 书学 院、系:软件学院专 业:软件工程学 生 姓 名:学 号:设 计 题 目:基于linux的模拟文件系统的设计与实现 起 迄 日 期:2013年11月22日- 2013年12月6日指 导 教 师:2013 年 12月 6 日1.需求分析(1)设计目的:文件管理是操作系统的重要功能之一。用高级语言编写和调试一个简单的文件系统,模拟文件管理的工作过程。从而加深学生对文件系统内部功能和内部实现的理解和认识。(2)基本功能:主要包括:改变目录(cd),创建目录(md),显示目录(dir),删除目录(rd),打开全部文件(openall),打开单个文件(open),建立

2、一个文件(create),删除一个文件(delete),写文件(write),读文件(read),改文件的保护码(change),退出(exit)等。(3)设计要求:设计一个10个用户的文件系统。每个用户最多可以保存10个文件,一次运行用户可打开多个文件。程序采用二级文件目录。(即设置主目录(mfd)和用户文件目录(ufd)。另外,可打开文件设置指针。为了方便实现,对文件的读写作了简化。在执行读写命令时,只需改读写指针。并不进行实际的读写操作。2.总体设计 2.1数据结构struck file char name10; int code;/保护码 int size; char pwrite;/

3、读写指针 ; struct user char name10; struct file *list;/目录指针 ; 2.2主要函数声明void running(); void delet(); void write(); void open(); void close(); void bye(); void read(); void create(); void input(); 2.3模块结构图 3.详细设计3.1 模块及功能说明3.1.1 input()模块功能:进入文件系统。3.1.2 running()模块功能:选择相应的操作。3.1.3 bye()模块功能:退出文件系统函数bye()

4、。3.1.4 create()模块功能:创建文件。3.1.5 open()模块功能:打开文件。3.1.6 close()模块功能:关闭文件。3.1.7 write()模块功能:写文件(需要先打开文件)。3.1.8 read()模块功能:读文件(需要先打开文件)。3.1.9 delet()模块功能:删除文件。3.2 模块代码3.2.1 main()模块int main() input(); running(); return 0; 3.2.2 input()模块void input() char name; int i; printf(n*n); printf( please choose th

5、e following username(input digital):n); printf(1.one 2.two 3.three 4.four 5.fine 6.six 7.seven 8.eigh 9.nine 0.ten n); printf(*nn); printf(please input username:); scanf(%s,&name); switch(name) case 1: for(i=0;i10;i+)ufdi=onei;mfd0=use1;running();break; case 2: for(i=0;i10;i+)ufdi=twoi;mfd0=use1;run

6、ning();break; case 3: for(i=0;i10;i+)ufdi=threei;mfd0=use2;running();break; case 4: for(i=0;i10;i+)ufdi=fouri;mfd0=use3;running();break; case 5: for(i=0;i10;i+)ufdi=finei;mfd0=use4;running();break; case 6: for(i=0;i10;i+)ufdi=sixi;mfd0=use5;running();break; case 7: for(i=0;i10;i+)ufdi=seveni;mfd0=us

7、e6;running();break; case 8: for(i=0;i10;i+)ufdi=eighti;mfd0=use7;running();break; case 9: for(i=0;i10;i+)ufdi=ninei;mfd0=use8;running();break; case 0: for(i=0;i10;i+)ufdi=teni;mfd0=use9;running();break; default : printf(enter the user name wrong!n); input(); 3.2.3 running()模块void running() char orde

8、r; int i; printf(n*n); printf(the user all the files below:n); for(i=0;i10;i+) printf(%s,ufd); printf(t); printf(n*n); printf( choose option(input code):n); printf(c-create d-delete o-open s-close r-read w-write b-bye t.exit(re-election user)n); printf(n*n); printf(input command:n); scanf(%s,&

9、order); switch(order) case c : create();break; case d : delet();break; case o : open();break; case s : close();break; case r : read();break; case w : write();break; case b : bye();break; case t : input();break; default : printf(input error!nn); running(); 4.心得体会操作系统是计算机科学与技术专业中的一门重要基础课,目的是让我们了解操作系统的

10、基本概念,理解计算机系统的资源如何组织,操作系统如何有效地管理这些系统资源,用户如何通过操作系统与计算机系统打交道。通过课程设计,可以进一步理解在计算机系统上运行的其它各类操作系统,并懂得在操作系统的支持下建立自己的应用系统。操作系统课程设计,对于训练我们掌握程序设计、熟悉上机操作和程序调试技术都有重要作用。重点培养我们的思维能力、创新能力和排错能力。通过课程设计,进一步融会贯通教材内容,掌握程序各功能模块的工作原理,相互联系和来龙去脉,完整地建立系统的概念。激发我的学习热情和主动性,培养我的独立工作能力,在实践活动中,将所学知识综合运用,增长才干,并积累经验。对编程语言又有了更深一层次的认识

11、,并对编程能力有所加强,但还是很多的不足有待改进,对于编程来说还需要大量的实践,才能在发现问题和解决问题中前进与提高。5.附录:源代码#include #include #include #define null 0 int count=0; struct file char name10; int code; int size; char pwrite; ; struct user char name10; struct file *list; ; struct file one10=a1,0,10,0,a2,2,10,0,a3,1,10,0, a4,2,10,0,a5,2,10,0,a6,

12、2,10,0,a7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file two10=b1,0,10,0,b2,2,10,0,b3,1,10,0, b4,2,10,0,b5,2,10,0,b6,2,10,0,b7,2,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file three10=c1,0,10,0,c2,2,10,0,c3,1,10,0, c4,2,10,0,c5,2,10,0,c6,2,10,0,c7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file four10=d1,0,1

13、0,0,d2,2,10,0,d3,1,10,0, d4,2,10,0,d5,2,10,0,d6,2,10,0,d7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file fine10=e1,0,10,0,e2,2,10,0,e3,1,10,0, e4,2,10,0,e5,2,10,0,e6,2,10,0,e7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file six10=f1,0,10,0,f2,2,10,0,f3,1,10,0, f4,2,10,0,f5,2,10,0,f6,2,10,0,f7,1,10,0,0,0,

14、0,0, 0,0,0,0,0,0,0,0; struct file seven10=g1,0,10,0,g2,2,10,0,g3,1,10,0, g4,2,10,0,g5,2,10,0,g6,2,10,0,g7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file eight10=h1,0,10,0,h2,2,10,0,h3,1,10,0, h4,2,10,0,h5,2,10,0,h6,2,10,0,h7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file nine10=j1,0,10,0,j2,2,10,0,j3,1,

15、10,0, j4,2,10,0,j5,2,10,0,j6,2,10,0,j7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file ten10=k1,0,10,0,k2,2,10,0,k3,1,10,0, k4,2,10,0,k5,2,10,0,k6,2,10,0,k7,1,10,0,0,0,0,0, 0,0,0,0,0,0,0,0; struct file ufd10; struct file afd5=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0; struct user use10=number1,one,number

16、2,two,number3,three,number4,four, number5,fine,number6,six,number7,seven,number8,eight,number9,nine, number10,ten; struct user mfd1=0,0; void running(); void delet(); void write(); void open(); void close(); void bye(); void read(); void create(); void input(); int main() input(); running(); return

17、0; void running() char order; int i; printf(n*n); printf(the user all the files below:n); for(i=0;i10;i+) printf(%s,ufd); printf(t); printf(n*n); printf( choose option: n); printf(c-create d-delete o-open s-close r-read w-write b-bye t.exit n); printf(n*n); printf(input command:n); scanf(%s,&o

18、rder); switch(order) case c : create();break; case d : delet();break; case o : open();break; case s : close();break; case r : read();break; case w : write();break; case b : bye();break; case t : input();break; default : printf(input error!nn);running(); void delet() char name10; int i,flag; do print

19、f(input file name: nn); scanf(%s,&name); flag=0; for(i=0;i10;i+) if(strcmp(ufd,name) flag=1; else flag=0; strcpy(ufd,0); ufdi.code=0; ufdi.pwrite=0; ufdi.size=0; printf(delete success!n); break; if(flag=1) printf(without this file,please enter again!n); while(flag=1); printf(n); running(

20、); void open() char name10; int i,j,flag; if(count=5) printf(run queue is full!n); running(); else do printf(input file name:n); scanf(%s,&name); flag=0; for(i=0;i10;i+) if(strcmp(ufd,name) flag=1; else flag=0; break; if(flag=1) printf(without this file,please enter again!n); while(flag=1); fo

21、r(j=0;j5;j+) if(strcmp(afd,name) flag=1; else flag=0; break; if(flag=1) for(j=0;j5;j+) if(!strcmp(afd,0) afdj=ufdi; printf(the file has been opend!n); count+; break; else printf(the file has been opended in the queue!nn); running(); void close() char name10; int j,flag; printf(input file

22、 name: n); scanf(%s,&name); flag=0; for(j=0;j5;j+) if(strcmp(afd,name) flag=1; else flag=0; strcpy(afd,0); afdj.code=0; afdj.pwrite=0; afdj.size=0; printf(the file has been closed in the run queue!n); break; if(flag=1) printf(run queue without the open file ,please operate again!nn); run

23、ning(); void bye() int i,j; for(i=0;i5;i+) for(j=0;j10;j+) if(!strcmp(afd,ufd) ufdi=afdi; break; printf(the saved file directory!n); printf(end of the operation!n); exit(0); void read() char name10; int j,flag=0; printf(input file name: n); scanf(%s,&name); for(j=0;j5;j+) if(!strcmp(afdj

24、.name,name) flag=1; break; if(flag=1) if(afdj.code=0|afdj.code=2) afdj.pwrite=r; printf(the state of the files are read!n); else printf(no permission to write this file!n); else printf(run queue without this file,please open the file first!n); printf(n); running(); void write() char name10; int j,fl

25、ag=0; printf(input file name: n); scanf(%s,&name); for(j=0;j5;j+) if(!strcmp(afd,name) flag=1; break; if(flag=1) if(afdj.code=1|afdj.code=2) afdj.pwrite=w; printf(the state of the files are write!n); else printf(no permission to write this file!n); else printf(run queue without this file,pleas

26、e open the file first!n); printf(n); running(); void create() char name10; int i,j=0,flag; for(i=0;i9) printf(the folder is full,please delete!n); running(); else do printf(input file name; n); scanf(%s,&name); flag=0; for(i=0;i10;i+) if(!strcmp(ufd,name) printf(file name duplication,please en

27、ter again!n); flag=1; break; while(flag=1); for(i=0;i10;i+) if(!strcmp(ufd,0) strcpy(ufd,name); do printf(please enter the protected codechoose0-2,0-read 1-write 2-read or write:n); scanf(%d,&ufdi.code); if(ufdi.code!=0&ufdi.code!=1&ufdi.code!=2) printf(input error,input protection code again!n); while(ufdi.code!=0&ufdi.code!=1&ufdi.code!=2); printf(please enter the file sizechoose the digital:n); scanf(%d,&ufdi.size); printf(the file has been established!); printf(%s,ufd); printf(n); break;

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论