操作系用实验3参考答案
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验三文件系统的用户界面参考答案
(一)实验目的
进一步理解、使用和掌握文件的系统调用、文件的标准子例程,能利用和选择这些基本的文件操作完成复杂的文件处理工作。
(二)源代码
1.编写一个文件复制的C语言程序:
分别使用文件的系统调用read(fd, buf, nbytes), write(fd, buf, nbytes)和文件的库函数fread(buf, size, nitems, fp), fwrite(buf, size, nitems, fp),编写一个文件的复制程序。
#include
#include
#include
/*copy file , if way ==1, use read/write, else use fread/fwrite, at the same time, it counts time consumed*/
int mycopy(int way, int step)
{
time_t start_tm, stop_tm;
FILE *srcf,*destf;
char buff[1024];
int i, sfd,dfd;
time(&start_tm); //get start time
for (i=0;i<1024;i=i+step) {
if(way==1) {
sfd= open("in.txt",O_RDONLY,0644);
df d=o pen("out.txt",O_WRONLY|O_CREAT|O_TRUNC,0644);
read(sfd, buff, step);
write(dfd, buff, step);
close(sfd);
close(dfd);
}
else {
srcf = fopen("in.txt","r");
destf = fopen("out.txt","w");
fread(buff, step*sizeof (char), 1, srcf);
fwrite(buff, step*sizeof(char), 1, destf);
close(srcf);
close(destf);
}
}
time(&stop_tm); //get stop time
printf("\ntime used for copy file by means of %s,
%d byte per time: %ds", way?"read,write":"fread,fwrite",
step, (int)(stop_tm-start_tm));
//print information for testing
return 0;
}
int main (int argc, char **argv)
{
/*当上述函数中nbytes, size和nitems都取值为1时(即一次读写一个字节),比较这两种程序的执行效率。*/
if (mycopy (1,1))
return 1;
if (mycopy (0,1))
return 1;
/*当nbytes取1024字节,size取1024字节,且nitems取1时(即一次读写1024字节),再次比较这两种程序的执行效率。*/
if (mycopy (1,1024))
return 1;
if (mycopy (0,1024))
return 1;
return 0;
}
2.编写一个父子进程之间用无名管道进行数据传送的C程序。父进程逐一读出一个文件的内容,并通过管道发送给子进程。子进程从管道中读出信息,再将其写入一个新的文件。程序结束后,对原文件和新文件的内容进行比较。
#include
#include
#include
int main(int argc, char argc)
{
int sfd,dfd,n,chan[2];
char buff[1024];
sfd= open("in.txt",O_RDONLY,0644);
df d=o pen("out.txt",O_WRONLY|O_CREAT|O_TRUNC,0644);
pipe(chan); //open a pipe
if(fork()) { //start a child process to send file
while((n=read(sfd,buff,1024))>0) {
close(chan[0]);
write(chan[1],buff,n);
close(chan[1]);
}
}
else { //in father process, receive file
close(chan[1]);
read(chan[0],buf,1024);
write(dfd,buff,strlen(buff));
close(chan[0]);
}
close(sfd);
close(dfd);
return 0;
}
3.在两个用户的独立程序之间,使用有名管道,重新编写一个C程序,实现题3的功能。
#include
#include
#include
#include
int main(int argc, char **argv)
{
int sfd,dfd,sp,dp,iofile;
char buff[1024];
sfd = open("in.txt",O_RDONLY,0644);
df d=o pen("out.txt",O_WRONLY|O_CREAT|O_TRUNC,0644);
mknod("iofile",S_IFIFO|0666,0); //name a pipe