-
Notifications
You must be signed in to change notification settings - Fork 0
/
prepare.cpp
337 lines (317 loc) · 9.84 KB
/
prepare.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#include "prepare.h"
#include "execute.h"
// 辅助函数:解析命令行参数
vector<string>ParseCommand(string& command){
std::vector<std::string> args; // 创建参数容器
std::istringstream arg_string(command); // 创建istringstream对象,用于切分
std::string arg; // 被切分出的每个参数,暂存在arg
while (arg_string >> std::ws >> arg) {
args.push_back(arg); // 把所有的参数压入args中
}
return args;
}
// 辅助函数:用来判断是哪条指令
int FindIndex(string& command){
// 在internalCommand里寻找与之匹配的命令 返回index
for(int i = 0; i < 15; ++ i){
if(command == internalCommands[i]) return i;
}
return -1;
}
void InitShell(char *chpath){
// 1. myshell环境变量
for(int i = strlen(chpath) - 1; i >= 0; -- i)
if(chpath[i] == '/'){ // 首先把打开可执行文件时的相对路径进行调整
chpath[i] = 0;
break;
}
chdir(chpath); // 把路径调整到这个位置
char path[BUFFER_SIZE];
getcwd(path, BUFFER_SIZE);
strcat(path, "/myshell"); // 构建出环境变量
setenv("myshell", path, 1);
// 2. 一些全局变量
// 是否有管道操作符
ispipe = false;
// 是否有输入重定向
isinput = false;
// 是否有输出重定向
isoutput = false;
// 是否有输出重定向(追加)
isoutputplus = false;
// 是否为后台执行命令
isBg = false;
// 3. 初始化jobList
InitJobList();
// 4. 初始化signal
InitSignal();
}
void PrintPrompt(){
// 获取path参数
char path[BUFFER_SIZE];
getcwd(path, BUFFER_SIZE);
char hostname[BUFFER_SIZE];
gethostname(hostname, BUFFER_SIZE);
// 输出构建出的shell提示符
printf("%s@%s:%s$ ", getlogin() ,hostname, path);
}
getCommandStatus GetCommand(vector<string>& args, string line){
args = ParseCommand(line);
// 如果命令行参数个数为0 那么返回值反馈一下
return args.size() == 0 ? getCommandStatus::EMPTY : getCommandStatus::NEMPTY;
}
getCommandStatus GetCommand(vector<string>& args){
// 获取一行命令
string input;
getline(cin, input);
// 切分命令与参数
args = ParseCommand(input);
// 如果命令行参数个数为0 那么返回值反馈一下
return args.size() == 0 ? getCommandStatus::EMPTY : getCommandStatus::NEMPTY;
}
//帮助我们处理重定向及后台程序
bool InitGlobals(vector<string>& args){
// 是否有管道操作符
ispipe = false;
// 是否有输入重定向
isinput = false;
// 是否有输出重定向
isoutput = false;
// 是否有输出重定向(追加)
isoutputplus = false;
// 是否为后台执行命令
isBg = false;
for(auto itr = args.begin(); itr != args.end();){
if(*itr == "<"){ // stdin重定向
isinput = true;
args.erase(itr);
inputfile = *itr;
args.erase(itr);
}
else if(*itr == ">"){ // stdout重定向
isoutput = true;
args.erase(itr);
outputfile = *itr;
args.erase(itr);
}
else if(*itr == ">>"){ // 追加
isoutputplus = true;
args.erase(itr);
outputfile = *itr;
args.erase(itr);
}
else if(*itr == "|"){ // 管道
ispipe = true;
itr ++;
}
else if(*itr == "&"){ // 后台命令
isBg = true;
args.erase(args.end() - 1);
break;
}
else{
itr ++;
}
}
// 先备份标准输入输出文件符,最后要改回来
stdinFd = dup(fileno(stdin));
stdoutFd = dup(fileno(stdout));
//cout<< inputfile<< " "<< outputfile << endl;
if(ispipe){
bool appear = false;
vector<string>args_pip1;
vector<string>args_pip2;
for(auto itr = args.begin(); itr != args.end(); itr ++){
if(*itr == "|"){
appear = true;
continue;
}
if(appear){
args_pip2.push_back(*itr);
}
else{
args_pip1.push_back(*itr);
}
}
int pipeFile[2]; // 1用来写,0用来读
// 创建管道,并将管道两端的文件描述符保存到pipeFile中,失败则错误退出
if( pipe( pipeFile ) == -1 ){
printf("pip create fail!");
exit(1);
}
pid_t pid_l;
pid_l = fork();
if(pid_l == 0){
// 把管道输出关闭
close(pipeFile[0]);
// 把标准输出重定向到管道输入
dup2(pipeFile[1], STDOUT_FILENO );
ExecuteCommand(args_pip1);
exit(0);
}
else if(pid_l > 0){
// 调用waitpid函数等待管道左端输入完毕
waitpid( pid_l, NULL, WUNTRACED);
close(pipeFile[1]); //关闭管道输入端,这里很重要,如果放在子进程close,将会无法停止
pid_t pid_r;
pid_r = fork();
if(pid_r == 0){
// 把输出端重定向
dup2( pipeFile[0], STDIN_FILENO );
ExecuteCommand(args_pip2);
exit(0);
}
else if(pid_r > 0){
// 用waitpid函数等待子进程结束
wait(NULL);
close(pipeFile[0]);
close(pipeFile[1]);
}
}
return false;
}
if(isoutput){
// 将对应的文件打开,标识符存到outputFile中
// O_RDWR表示读写打开,O_TRUNC表示存在则刷新,O_CREAT表示不存在则创建
int fileDescriptor = open( outputfile.c_str(), O_RDWR | O_CREAT | O_TRUNC, 0666);
// 将标准输出重定向,失败就报错
// 用fileno函数把文件流指针转换成文件描述符
if( dup2( fileDescriptor, fileno( stdout ) ) == -1){
printf("stdout change wrong\n");
}
// 关闭文件
close( fileDescriptor );
}
if(isoutputplus){
// 将对应的文件打开,标识符存到outputFile中
// O_RDWR表示读写打开,O_APPEND表示追加,O_CREAT表示不存在则创建
int fileDescriptor = open( outputfile.c_str(), O_RDWR | O_CREAT | O_APPEND, 0666);
// 将标准输出重定向,失败就报错
// 用fileno函数把文件流指针转换成文件描述符
if( dup2( fileDescriptor, fileno( stdout ) ) == -1){
printf("stdin change wrong\n");
}
// 关闭文件
close( fileDescriptor );
}
if(isinput){
// 将对应的文件打开,标识符存到inputFile中
// O_RDONLY代表只读取
int fileDescriptor = open( inputfile.c_str(), O_RDONLY, 0666);
// 将标准输入重定向,失败就报错
// 用fileno函数把文件流指针转换成文件描述符
if( dup2( fileDescriptor, fileno( stdin ) ) == -1){
printf("stdin change wrong\n");
}
// 关闭文件
close( fileDescriptor );
}
return true;
}
void RestoreGlobals(){
if(isoutput || isoutputplus){
// 恢复标准输出
dup2(stdoutFd, fileno(stdout));
close(stdoutFd);
}
if(isinput){
// 恢复标准输入
dup2(stdinFd, fileno(stdin));
close(stdinFd);
}
}
// 辅助函数:把string的vector转化为一个字符串
string ToString(vector<string>& args){
string ret = ""; // 空字符串
for(int i = 0; i < args.size(); ++ i){
ret += args[i]; // 逐个加上vector里的元素
ret += " ";
}
return ret;
}
void ExecuteCommand(vector<string>& args){
int index = FindIndex(args[0]);
switch (index)
{
case 0: // bg
BackGround(args);
break;
case 1: // cd
ChangeDir(args);
break;
case 2: // clr
ClearScreen();
break;
case 3: // dir
ShowDir(args);
break;
case 4: // echo
Print(args);
break;
case 5: // exec
Execute(args);
break;
case 6: // exit
cout<< "Exit from myshell"<< endl;
exit(0);
break;
case 7: // fg
FrontGround(args);
break;
case 8: // help
ShowHelp(args);
break;
case 9: // jobs
ShowJobs();
break;
case 10: // pwd
ShowPath();
break;
case 11: // set
Set();
break;
case 12: // test
if(TestExp(args)) cout<< "TRUE"<< endl;
else cout<< "FALSE"<< endl;
break;
case 13: // time
ShowTime();
break;
case 14: // umask
Umask(args);
break;
default:
// 输入的指令不在自己实现的范围之内
// 进行系统调用
pid_t pid = fork();
if(pid < 0){
cout<< "Fork error"<< endl;
exit(1);
}
else if(pid == 0){
char *parent_path = getenv("myshell");
// 调用setenv设置parent环境变量
setenv( "parent", parent_path, 1);
// if(isinput){
// args.push_back(inputfile);
// }
CallExecvp(args);
exit(0);// 退出子进程
}
else{
if(isBg == true){
//如果是后台指令
CreateJob(pid, ToString(args), BG, RUN);
waitpid( pid, NULL, WNOHANG); //WNOHANG 表明不阻塞主进程
//输出一下当前bg状态的数目
PrintBGStatus(pid);
}
else{
CreateJob(pid, ToString(args), FG, RUN);
waitpid( pid, NULL, WUNTRACED); //WUNTRACED 表明阻塞主进程
}
}
break;
}
RestoreGlobals();
}