版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、精選優(yōu)質(zhì)文檔-傾情為你奉上操作系統(tǒng)實習報告 日期: 年 月 日 實習題目: shell程序完成人:姓名:組號:學號實習內(nèi)容簡要 述本實驗要實現(xiàn)一個簡單的命令解釋器,也就是Linux中的shell程序。實驗程序起名為ysh,要求其設(shè)計類似于目前流行的shell解釋程序,如bash、csh、tcsh,但不需要具備那么復雜的功能。ysh程序應當具有如下一些重要的特征:l 能夠執(zhí)行外部程序命令,命令可以帶參數(shù)。l 能夠執(zhí)行fg、bg、cd、history、exit等內(nèi)部命令。l 使用管道和輸入輸出重定向。l 支持前后臺作業(yè),提供作業(yè)控制功能,包括打印作業(yè)的清單,改變當前運行作業(yè)的前臺/后臺狀態(tài),以及控
2、制作業(yè)的掛起、中止和繼續(xù)運行。 除此之外,在這個實驗中還須做到:l 使用make工具建立工程。l 使用調(diào)試器gdb來調(diào)試程序。提供清晰、詳細的設(shè)計文檔和解決方案主要代碼結(jié)構(gòu)(附注釋)#include #include #include #include #include #include #include #include #include #include #include #include ysh.h#define NO_PIPE -1#define FD_READ 0#define FD_WRITE 1int is_founded(char * cmd) int k = 0; while
3、(envpathk != NULL) strcpy(buf,envpathk); strcat(buf,cmd); if(access(buf,F_OK) = 0) return 1; k+; return 0;void getenviron(int n,char * s) int i = 0,j = 0,k = 0; char c; char buff80; char * p; while(c=si) != =) buffi+ = c; buffi+ = 0; if(strcmp(buff,PATH) = 0) while(si != 0) if(si = :) buffj+ = /; bu
4、ffj = 0; p = (char *)malloc(strlen(buff) + 1); strcpy(p,buff); envpathk+ = p; envpathk = NULL; j = 0; i+; else buffj = si; j+; i+; else fprintf(stderr,No match);int getline(int fd,char * buf) int i = 0; char c; while(read(fd,& c,1) bufi+ = c; if(c = n) bufi-1 = 0; return i; return i;void init_enviro
5、n() int fd,n; char buf80; if(fd = open(ysh_profile,O_RDONLY,660) = -1) printf(init environ variable error!n); exit(1); while(n = getline(fd,buf) != 0) getenviron(n,buf); envhis.start = 0; envhis.end = 0; head = end = NULL;int pipel(char * input,int len) char * argv1030; char * filename0; int i,j,k,i
6、s_bg = 0; int li_cmd = 0; int fd101,pipe_in = -1; int pipe_out = -1,flag = 0; pid_t pid; for(i = 0,j = 0,k = 0;i ) | (inputi = n) if(inputi = |) | (inputi = )if(inputi = ) flag =1;if(j 0 ) bufj+ = 0; argvli_cmdk = (char *)malloc(sizeof(char) * j); strcpy(argvli_cmdk,buf); k+;argvli_cmdk = (char *)0;
7、 li_cmd+; k = 0;j = 0; if(j = 0)continue; elsebufj+ = 0;if(flag = 0) argvli_cmdk = (char *)malloc(sizeof(char) * j); strcpy(argvli_cmdk,buf); k+; else filename0 = (char *)malloc(sizeof(char) * j); strcpy(filename0,buf); j = 0;else if(inputi = &) & (inputi = 0) is_bg = 1;continue; bufj+ = inputi; arg
8、vli_cmdk+ = NULL; for(i = 0;i = 10;i+) fdiFD_READ = NO_PIPE;fdiFD_WRITE = NO_PIPE; for(i = 0;i li_cmd;i+) if(pipe(fdi) = -1) printf(Can not open pipe!n); return 0; for(i = 0;i li_cmd;i+) if(is_founded(argvi0) = 0) printf(Can not found command!n); break; if(i != 0) pipe_in = fdi - 1FD_READ; else pipe
9、_in = NO_PIPE; if(i != li_cmd) pipe_out = fdiFD_WRITE; else if(flag = 1) if(pipe_out = open(filename0,O_WRONLY | O_CREAT | O_TRUNC,S_IRUSR | S_IWUSR) = -1) printf(Can not open %sn,filename0);return 0; else pipe_out = NO_PIPE; if(pid = fork() 0) printf(Fork failed!n); return 0; if(pid = 0) if(pipe_in
10、 = NO_PIPE) close(pipe_in);if(pipe_out = NO_PIPE) close(pipe_out);if(pipe_out != NO_PIPE) dup2(pipe_out,1); close(pipe_out); if(pipe_in != NO_PIPE) dup2(pipe_in,0); close(pipe_in);execv(buf,argvi); else if(is_bg = 0) waitpid(pid,NULL,0);close(pipe_in);close(pipe_out); return 0;void add_history(char
11、* inputcmd) envhis.end = (envhis.end + 1) % HISNUM; if(envhis.end = envhis.start) envhis.start = (envhis.start + 1) % HISNUM; strcpy(envhis.his_cmdenvhis.end,inputcmd);void history_cmd() int i,j = 0; if(envhis.start = envhis.end) return; else if(envhis.start envhis.end) for(i = envhis.start + 1;i =
12、envhis.end;i+) printf(%dt%sn,j,envhis.his_cmdi); j+; else for(i = envhis.start + 1;i HISNUM;i+) printf(%dt%sn,j,envhis.his_cmdi); j+; for(i = 0;i = envhis.end;i+) printf(%dt%sn,j,envhis.his_cmdi); j+; void cd_cmd(char * route) if(route != NULL) if(chdir(route) pid,p - state,p - cmd); i+; p = p - lin
13、k;while(p != NULL); else printf(No jobs!n);void add_node(char * input_cmd,int node_pid) struct NODE * p; p = (struct NODE *)malloc(sizeof(struct NODE); p - pid = node_pid; strcpy(p - state,input_cmd); strcpy(p - state,running); p - link = NULL; if(head = NULL) head = p; end = p; else end - link = p;
14、 end = p; void del_node(int sig,siginfo_t * sip) struct NODE * q; struct NODE * p; int id; if(sig_z = 1) sig_z = 0;goto out; id = sip - si_pid; p = q = head; if(head = NULL) goto out; while(p - pid != id & p - link != NULL) p = p - link; if(p - pid != id) goto out; if(p = head) head = head - link; e
15、lse while(q - link != p) q = q - link;if(p = end) end = q; q - link = NULL;else q - link = p - link; free(p); out:return;void setflag() sig_flag = 1;void ctrl_z() struct NODE * p; int i = 1; if(pid1 = 0) goto out; if(head != NULL) p = head; while(p - pid != pid1) & (p - link != NULL) p = p - link;if
16、(p - pid = pid1) strcpy(p - state,stopped);else add_node(input,pid1); strcpy(end - state,stopped); else add_node(input,pid1); strcpy(end - state,stopped); sig_z = 1; kill(pid1,SIGSTOP); for(p = head;p - pid != pid1;p = p - link) i+; printf(%dt%st%sn,i,end - state,end - cmd); pid1 = 0;out:return;void
17、 bg_cmd(int job_num) struct NODE * p; int i = 0; p = head; for(i = 1;i link; kill(p - pid,SIGCONT); strcpy(p - state,running);void fg_cmd(int job_num) struct NODE * p; int i = 0; p = head; for(i = 1;i link; strcpy(p - state,running); strcpy(input,p - cmd); pid1 = p - pid; signal(SIGTSTP,ctrl_z); kil
18、l(p - pid,SIGCONT); waitpid(p - pid,NULL,0);int main() init_environ(); while(1) char c; char * arg20; int i = 0,j = 0,k = 0; int is_pr = 0,is_bg = 0; int input_len = 0,path; int pid = 0,status = 0; struct sigaction action;action.sa_sigaction = del_node;sigfillset(& action.sa_mask);action.sa_flags =
19、SA_SIGINFO;sigaction(SIGCHLD,& action,NULL);signal(SIGTSTP,ctrl_z); path = get_current_dir_name();printf(ysh%s ,path);while(c = getchar() = ) | (c = t) | (c = EOF) ;if(c = n) continue;while(c != n) bufinput_len+ = c; c = getchar();bufinput_len = 0; input = (char *)malloc(sizeof(char) * (input_len +
20、1);strcpy(input,buf); for(i = 0,j = 0,k = 0;i = input_len;i+) if(inputi = ) | (inputi = |) if(inputi = |) pipel(input,input_len); add_history(input); free(input);else redirect(input,input_len); add_history(input); free(input);is_pr = 1;break; if(is_pr = 1) continue;for(i = 0,j = 0,k = 0;i = input_le
21、n;i+) if(inputi = ) | (inputi = 0) if(j = 0) continue; else bufj+ = 0; argk = (char *)malloc(sizeof(char) * j); strcpy(argk+,buf); j = 0; else if(inputi = &) & (inputi + 1 = 0) is_bg = 1; continue; bufj+ = inputi; if(strcmp(arg0,exit) = 0) add_history(input); printf(Bye bye!n); free(input); break; i
22、f(strcmp(arg0,history) = 0) add_history(input); history_cmd(); free(input); continue;if(strcmp(arg0,cd) = 0) add_history(input); for(i = 3,j = 0;i = input_len;i+) bufj+ = inputi; bufj = 0; arg1 = (char *)malloc(sizeof(char) * j); strcpy(arg1,buf); cd_cmd(arg1); free(input); continue;if(strcmp(arg0,j
23、obs) = 0) add_history(input); jobs_cmd(); free(input); continue;if(strcmp(arg0,bg) = 0) add_history(input); for(i = 0;i = input_len;i+) if(inputi = %) break; i+; for(;i = input_len;i+) bufj+ = inputi; bufj = 0; arg1 = (char *)malloc(sizeof(char) * j); strcpy(arg1,buf); bg_cmd(atoi(arg1); free(input); continue;if(strcmp(arg0,fg) = 0) add_history(input); for(i = 0;i = input_len;i+) if(inputi = %) break; i+; for(;i = input_len;i+) bufj+ = inputi; buf
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 《結(jié)直腸癌診治進展》課件
- 平安自查報告范文集錦10篇
- 小學數(shù)學二年級上冊《乘除混合運算》教學設(shè)計
- 小學三年級多位數(shù)加減法,脫式計算練習題
- 2025年1月八省聯(lián)考高考綜合改革適應性測試-高三地理(內(nèi)蒙古卷)
- 湖南省長沙市三中1月高三月考語文試題
- 《實驗動物學緒論》課件
- 《灰色系統(tǒng)理論簡介》課件
- 遼寧省鞍山市普通高中2023-2024學年高三上學期期末聯(lián)考英語試題
- 教育機構(gòu)人才招聘總結(jié)
- 2024-2025學年新疆省克孜勒蘇柯爾克孜自治州三年級數(shù)學第一學期期末統(tǒng)考試題含解析
- 隱患排查治理管理規(guī)定
- 2025材料供貨合同樣本
- 豪華酒店翻新工程協(xié)議
- 經(jīng)濟學原理模擬題含參考答案
- 考研心理學專業(yè)基礎(chǔ)(312)研究生考試試題及解答參考(2025年)
- 科技強國建設(shè)視域下拔尖創(chuàng)新人才價值觀引導研究
- 馬鞍山酒柜定制合同范例
- 《電梯曳引系統(tǒng)設(shè)計技術(shù)要求》
- 【MOOC】中國天氣-南京信息工程大學 中國大學慕課MOOC答案
- 2025年攻讀博士學位期間擬開展的研究計劃
評論
0/150
提交評論