资源简介
天津大学计算机科学与技术专业,大三上学期,操作系统原理实验报告,文件管理、主存管理等。
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
// Simplifed xv6 shell.
#define MAXARGS 10
// All commands have at least a type. Have looked at the type the code
// typically casts the *cmd to some specific cmd type.
struct cmd {
int type; // ‘ ‘ (exec) | (pipe) ‘<‘ or ‘>‘ for redirection
};
struct execcmd {
int type; // ‘ ‘
char *argv[MAXARGS]; // arguments to the command to be exec-ed
};
struct redircmd {
int type; // < or >
struct cmd *cmd; // the command to be run (e.g. an execcmd)
char *file; // the input/output file
int mode; // the mode to open the file with
int fd; // the file descriptor number to use for the file
};
struct pipecmd {
int type; // |
struct cmd *left; // left side of pipe
struct cmd *right; // right side of pipe
};
int fork1(void); // Fork but exits on failure.
struct cmd *parsecmd(char*);
//运行cmd,Never returns.
void runcmd(struct cmd *cmd)
{
int p[2] r;
struct execcmd *ecmd;
struct pipecmd *pcmd;
struct redircmd *rcmd;
if(cmd == 0)
{
exit(0);
}
switch(cmd->type)
{
default:
fprintf(stderr “unknown runcmd\n“);
exit(-1);
case ‘ ‘:
ecmd = (struct execcmd*)cmd;
if(ecmd->argv[0] == 0)
{
exit(0);
}
//fprintf(stderr “exec not implemented\n“);
// Your code here ...
//在当前目录下搜索执行文件失败
if(execv(ecmd->argv[0] ecmd->argv) == -1)
{
//更换为/bin/目录
char cmdPath[30] = “/bin/“;
//连接字符串/bin/与之前的目录
strcat(cmdPath ecmd -> argv[0]);
//在/bin/目录下搜索执行文件失败
if(execv(cmdPath ecmd->argv) == -1)
{
//更换为/usr/bin/目录
char cmdPath2[30] = “/usr/bin/“;
//连接字符串/usr/bin/与最初的目录
strcat(cmdPath2 ecmd -> argv[0]);
//更换为/usr/bin/目录搜索执行文件失败
if(execv(cmdPath2 ecmd->argv) == -1)
{
//执行文件不存在,结束当前进程
fprintf(stderr “Can‘t found file: %s%d\n“ ecmd -> argv[0] __LINE__);
exit(0);
}
}
}
break;
/*
//如果有权限访问文件且文件存在
if(access(ecmd->argv[0]F_OK) == 0)
{
//找到可执行文件
execv(ecmd->argv[0] ecmd->argv);
}
else
{
//有权限访问文件,将当前的工作目录改变成/bin/目录搜索失败
if(chdir(“/bin/“) < 0)
{
//文件不存在,结束当前进程
printf(“Can‘t change directory %d\n“ __LINE__);
exit(0);
}
//有权限访问文件,在/bin/搜索可执行文件成功
execv(ecmd->argv[0] ecmd->argv);
}
//既无权限,执行文件又不存在,结束当前进程
fprintf(stderr “Can‘t find file: %s %d\n“ ecmd->argv[0] __LINE__);
break;
*/
case ‘>‘:
case ‘<‘:
rcmd = (struct redircmd*)cmd;
//fprintf(stderr “redir not implemented\n“);
// Your code here ...
//‘<‘为0,‘>’为1
close(rcmd->fd);
//open()函数,对产生的新文件赋
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-17 20:06 lab1\
文件 10827 2017-10-19 22:15 lab1\lab1.c
目录 0 2018-09-17 20:06 lab2\
文件 1569 2017-10-31 21:46 lab2\lab2.c
文件 1652440 2018-09-17 20:11 主存管理实验报告.doc
文件 2084546 2018-09-17 20:11 文件管理实验报告.doc
相关资源
- 广工EDA实验报告基于Libero
- 文件系统模拟 windows资源管理器模拟
- 山东大学操作系统课程设计实验报告
- 数据库课程设计-航空售票系统 实验报
- 计组原理寄存器运算器存储器实验报
- RIP实验报告
- 燕山大学计算机网络实验报告
- 天津大学计算机网络SDN实验报告
- 中南大学视频信号处理实验报告
- 哈工大 软件工程Git实验报告
- 计算机组成原理课程设计实验报告完
- H3C实验报告大全
- 中南大学摄影测量与遥感课程实验报
- 数据结构实验报告 交通咨询系统设计
- 上海大学 编译原理实验报告
- 北理工随机信号分析实验报告
- 中南民族大学软件测试实验报告.zip
- 合工大计算方法实验报告
- 北京大学 八路抢答器综合设计 含电路
- 基于System View的2DPSK调制解调系统的设
- 河北工业大学微机原理与接口实验报
- 广工计算机组成原理实验报告
- 2018北邮大三下数据库实验报告合集
- PLC控制电机专业实验报告
- 单周期CPU设计全过程
- 人机交互 期末作业 实验报告
- 汽车 4s 管理系统 课程设计 应用系统
- 计算机组成原理课程设计复杂模拟机
- 南京理工大学 2018研究生电类综合实验
- 东南大学 传感器技术实验报告
评论
共有 条评论