forked from Tachone/TachMinishell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.c
234 lines (212 loc) · 3.59 KB
/
parse.c
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
#include "parse.h"
#include "externs.h"
#include "init.h"
#include "execute.h"
#include "builtin.h"
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <linux/limits.h>
#include <fcntl.h>
/*
* shell主循环
*/
void shell_loop(void)
{
while (1)
{
/* 初始化环境 */
init();
/* 获取命令 */
if (read_command() == -1)
break;
/* 解析命令 */
parse_command();
//print_command();
/* 执行命令 */
execute_command();
}
printf("\nexit\n");
}
/*
* 读取命令
* 成功返回0,失败或者读取到文件结束符(EOF)返回-1
*/
int read_command(void)
{
/* 按行读取命令,cmdline中包含\n字符 */
if (fgets(cmdline, MAXLINE, stdin) == NULL)
return -1;
return 0;
}
/*
* 解析命令
* 成功返回解析到的命令个数,失败返回-1
*/
int parse_command(void)
{
/* cat < test.txt | grep -n public > test2.txt & */
if (check("\n"))
return 0;
/* 判断是否内部命令并执行它 */
if (builtin())
return 0;
/* 1、解析第一条简单命令 */
get_command(0);
/* 2、判定是否有输入重定向符 */
if (check("<"))
getname(infile);
/* 3、判定是否有管道 */
int i;
for (i=1; i<PIPELINE; ++i)
{
if (check("|"))
get_command(i);
else
break;
}
/* 4、判定是否有输出重定向符 */
if (check(">"))
{
if (check(">"))
append = 1;
getname(outfile);
}
/* 5、判定是否后台作业 */
if (check("&"))
backgnd = 1;
/* 6、判定命令结束‘\n’*/
if (check("\n"))
{
cmd_count = i;
return cmd_count;
}
else
{
fprintf(stderr, "Command line syntax error\n");
return -1;
}
}
/*
* 执行命令
* 成功返回0,失败返回-1
*/
int execute_command(void)
{
execute_disk_command();
return 0;
}
void print_command()
{
int i;
int j;
printf("cmd_count = %d\n", cmd_count);
if (infile[0] != '\0')
printf("infile=[%s]\n", infile);
if (outfile[0] != '\0')
printf("outfile=[%s]\n", outfile);
for (i=0; i<cmd_count; ++i)
{
j = 0;
while (cmd[i].args[j] != NULL)
{
printf("[%s] ", cmd[i].args[j]);
j++;
}
printf("\n");
}
}
/*
* 解析简单命令至cmd[i]
* 提取cmdline中的命令参数到avline数组中,
* 并且将COMMAND结构中的args[]中的每个指针指向这些字符串
*/
void get_command(int i)
{
/* cat < test.txt | grep -n public > test2.txt & */
int j = 0;
int inword;
while (*lineptr != '\0')
{
/* 去除空格 */
while (*lineptr == ' ' || *lineptr == '\t')
lineptr++;
/* 将第i条命令第j个参数指向avptr */
cmd[i].args[j] = avptr;
/* 提取参数 */
while (*lineptr != '\0'
&& *lineptr != ' '
&& *lineptr != '\t'
&& *lineptr != '>'
&& *lineptr != '<'
&& *lineptr != '|'
&& *lineptr != '&'
&& *lineptr != '\n')
{
/* 参数提取至avptr指针所向的数组avline */
*avptr++ = *lineptr++;
inword = 1;
}
*avptr++ = '\0';
switch (*lineptr)
{
case ' ':
case '\t':
inword = 0;
j++;
break;
case '<':
case '>':
case '|':
case '&':
case '\n':
if (inword == 0)
cmd[i].args[j] = NULL;
return;
default: /* for '\0' */
return;
}
}
}
/*
* 将lineptr中的字符串与str进行匹配
* 成功返回1,lineptr移过所匹配的字符串
* 失败返回0,lineptr保持不变
*/
int check(const char *str)
{
char *p;
while (*lineptr == ' ' || *lineptr == '\t')
lineptr++;
p = lineptr;
while (*str != '\0' && *str == *p)
{
str++;
p++;
}
if (*str == '\0')
{
lineptr = p; /* lineptr移过所匹配的字符串 */
return 1;
}
/* lineptr保持不变 */
return 0;
}
void getname(char *name)
{
while (*lineptr == ' ' || *lineptr == '\t')
lineptr++;
while (*lineptr != '\0'
&& *lineptr != ' '
&& *lineptr != '\t'
&& *lineptr != '>'
&& *lineptr != '<'
&& *lineptr != '|'
&& *lineptr != '&'
&& *lineptr != '\n')
{
*name++ = *lineptr++;
}
*name = '\0';
}