TASK

打造一个绝无伦比的 xxx-super-shell (xxx 是你的名字),它能实现下面这些功能:

  • 实现管道(也就是 |)
  • 实现输入输出重定向(也就是 < > >>)
  • 要求在管道组合命令的两端实现重定向运算符

PLAN

1
2
3
4
# 需要实现的功能
cat < 1.txt | grep -C 10 abc | grep -Lefd | tac >> 2.txt
# 不需要实现的功能
cat < 1.txt | grep -C 10 abc > test1.txt | test2.txt > grep -L efd | tac >> 2.txt
  • 实现后台运行(也就是 &)
  • 实现 cd,要求支持能切换到绝对路径、相对路径和支持 cd -
  • 屏蔽一些信号(如 ctrl + c 不能终止)
  • 界面美观
  • 开发过程记录、总结、发布在个人博客中
    要求:
  • 不得出现内存泄漏、内存越界等错误 - 学会如何使用 gdb 进行调试,使用 valgrind 等工具进行检测

ish.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include"shell.hpp"
#define DB 1 // DB为1时,进入debug模式 不屏蔽信号
int main()
{
ish sh;
Prompt pr;
Command cmd;
void show();
show();
if(!DB)nosignal();
system("clear");
while(true)
{
pr.PrintPrompt();
sh.GetCommand();
cmd.Process();
sh.LineClear();
}

return -1;
}

shell.hpp

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
#include<iostream>
#include<string>
#include<vector>
#include<unistd.h>
#include<sys/ioctl.h>
#include<signal.h>
#include<string.h>
#include<sys/wait.h>
#include<fcntl.h>
#include<pwd.h>

using namespace std;

void nosignal();
vector<string> split(string,char);
vector<char*>fromStoC(vector<string>);
bool isRedirect(string);

class ish
{
friend vector<string>split(string,char);
friend bool isRedirect(string);

public:
void GetCommand();
void LineClear();
bool iscd();

ish()
{
char path[64];
realpath(".",path);
wdPath = path;
setenv("OWD",".",1);
char hostname[64];
gethostname(hostname,64);
hostName = hostname;
int userid = getuid();
struct passwd * pwd = getpwuid(userid);
userName = pwd->pw_name;
}

protected:
string hostName;
string userName;
string gitHEAD = "master";
static string wdPath;
static string line;
static vector<string>argv;
static vector<int *>fds;
static int ExeCount;
static bool pipeError;
int PromptLen;
static bool isError;
};

class Prompt: public ish
{
public:
void PrintPrompt();
Prompt()
{
failed = "\e[100m\e[31m ✘\e[39m";
isError = false;
}

private:
string colors;
string output;
string failed;
};

class Command: public Prompt
{
public:
bool isClear();
void isExit();
void ExeCommand();
void Process();
};

using.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
#include"shell.hpp"
void show()
{
string showName[9];
showName[0] = " __ __ ";
showName[1] = " /\\ \\ __ /\\ \\ ";
showName[2] = " ___\\ \\ \\___ ___ ___ __ __ /\\_\\ ____\\ \\ \\___ ";
showName[3] = " / __`\\ \\ _ `\\ /' __` __`\\/\\ \\/\\ \\ \\/\\ \\ /',__\\ \\ _ `\\ ";
showName[4] = "/\\ \\L\\ \\ \\ \\ \\ \\ /\\ \\/\\ \\/\\ \\ \\ \\_\\ \\ \\ \\ \\/\\__, `\\ \\ \\ \\ \\ ";
showName[5] = "\\ \\____/\\ \\_\\ \\_\\ \\ \\_\\ \\_\\ \\_\\/`____ \\ \\ \\_\\/\\____/ \\ \\_\\ \\_\\";
showName[6] = " \\/___/ \\/_/\\/_/ \\/_/\\/_/\\/_/`/___/> \\ \\/_/\\/___/ \\/_/\\/_/";
showName[7] = " /\\___/ ";
showName[8] = " \\/__/ ";

for(int i = 0;i<9;i++)
{
printf("\e[9%dm",i);
cout<<showName[i]<<endl;
usleep(110000);
}
cout<<"输入 '?' 以获取帮助"<<endl;
cout<<"请按任意键继续";
getchar();
}

string ish::wdPath;
string ish::line;
vector<string> ish::argv;
bool ish::isError = false;
int ish::ExeCount = 0;
vector<int *> ish::fds;
bool ish::pipeError = false;
void help();
vector<string> split(string s,char ch)
{
vector<string>result;
int pos = 0;
while (s[pos]==ch)
pos++;

while (pos< s.size())
{
int n = 0;
while (s[pos+n]!=ch&&pos+n<s.size())
{
n++;
}
result.push_back(s.substr(pos,n));
pos += n;
while (s[pos] ==ch&&pos<s.size())
{
pos++;
}
}
return result;
}

vector<char *> fromStoC(vector<string>s)
{
vector<char *>c;
for(int i = 0;i<s.size();i++)
{
char * buf = new char[s[i].size()];
strcpy(buf,s[i].c_str());
c.push_back(buf);
}
return c;
}

void nosignal()
{
signal(SIGINT,SIG_IGN);
}

bool isRedirect(string str)
{
if(str.find('<')==-1&&str.find('>')==-1)
return 0;
return 1;
}

void Prompt::PrintPrompt()
{
output = "\e[100m" + (string)" " + userName + "@" + hostName + " " + (string)"\e[90m" + (string)"\e[104m" + "" + " " + wdPath + " " + "\e[43m" + "\e[34m" + "" + "\e[33m" + "  " + gitHEAD + " ± " + "\e[33m" + "\e[49m" + "" + "\e[39m\e[0m";
isError ? (cout<< failed + output << " ") : cout << output << " ";
isError = false;
}

void ish::GetCommand()
{
FLAG:
getline(cin,line); // get a line of command
int pos = 0;
while (line[pos] == ' ')
{
pos ++;
}
line = line.substr(pos);
argv = split(line,' ');
if(line.empty())
{
Prompt news;
news.PrintPrompt();
goto FLAG;
}
}

void ish::LineClear()
{
line.clear();
}

bool Command::isClear()
{
if(line == "clear"||line == "cls")
{
system("clear");
return true;
}
return false;
}

void Command::isExit()
{
if(line == "exit")
exit(EXIT_SUCCESS);
}

bool isH(string line)
{
if(line=="?")
{
help();
return true;
}
if(line=="!")
{
show();
return true;
}
return false;
}

void Command::Process()
{
if(isH(line))
return;
vector<int *>vpipes;
vector<string>v = split(line,'|');
if(v.size()==1)
{
argv = split(v[0],' ');
ExeCommand();
}
else
{
if(v.size()==0)
{
cout<<"ish: | 解析错误"<<endl;
isError = 1;
return;
}
for(int i = 0;i<v.size()-1;i++)
{
int * fd = new int[2];
pipe(fd);
fds.push_back(fd);
}

for(int i = 0;i<v.size();i++)
{
argv = split(v[i],' ');
ExeCommand();

if(ExeCount != 0)close(fds[ExeCount-1][0]);
if(ExeCount != fds.size())close(fds[ExeCount][1]);

ExeCount ++;
}
ExeCount = 0;
fds.clear();
}
}

void Command::ExeCommand()
{
vector<char *>ar = fromStoC(argv);

if(isClear()||iscd())
return;
isExit();

pid_t pid = fork();

if(pid == 0)
{
if(ExeCount != 0)dup2(fds[ExeCount-1][0],0);
if(ExeCount != fds.size())dup2(fds[ExeCount][1],1);

if(isRedirect(line))
{
if(argv.size()<3)
{
cout<<"ish: 重定向 解析错误"<<endl;
isError = 1;
return;
}
for(int i = 0;i<argv.size();i++)
{
if(argv[i]=="<")
{
int fd = open(argv[i+1].data(),O_RDONLY);
dup2(fd,0);
ar.erase(ar.begin()+i);
close(fd);
}
if(argv[i]==">")
{
int fd = open(argv[i+1].data(),O_RDWR|O_CREAT|O_TRUNC,S_IRUSR|S_IWUSR);
dup2(fd,1);
ar.erase(ar.begin()+i);
ar.erase(ar.begin()+i+1);
close(fd);
}
if(argv[i]==">>")
{
int fd = open(argv[i+1].data(),O_RDWR|O_APPEND|O_CREAT,S_IRUSR|S_IWUSR);
dup2(fd,1);
ar.erase(ar.begin()+i);
ar.erase(ar.begin()+i+1);
close(fd);
}
}
}

ar.push_back(NULL);

if(strcmp(ar[0],"ls")==0)
{
ar.pop_back();
ar.push_back((char *)"--color=auto");
ar.push_back(NULL);
}

if(execvp(ar[0],ar.data())==-1)
{
isError = true;
cout<<"ish: command not found: "<<argv[0]<<endl;
return;
}
}
wait(&pid);
}

bool ish::iscd()
{
if(argv[0]!="cd")
return 0;

char * homepath = getenv("HOME");
if(argv[0] == "cd"&&argv.size()==1)
argv.push_back(homepath);


if(argv[1]=="-")
{
char * lpath = getenv("OWD");
cout<<lpath<<endl;
if(chdir(lpath)==-1)
{
isError = true;
}
wdPath = lpath;
return 1;
}
char rp[1000];
realpath(argv[1].c_str(),rp);
if(chdir(argv[1].c_str())==-1)
{
cout<<"cd: path not found"<<endl;
isError = true;
return 1;
}

setenv("OWD",wdPath.c_str(),1);
wdPath = rp;

return 1;
}

void help()
{
cout<<"你知道吗?输入!可以观看炫酷的动画。"<<endl;
}