-
Notifications
You must be signed in to change notification settings - Fork 1
/
execution.c
187 lines (175 loc) · 3.13 KB
/
execution.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
#include "shell.h"
/**
* or - This function handles the "||" logical operator
* @str: String
*
* Return: exit code
*/
int or(char *str)
{
int code = 0, w_len, execFlag;
char *token;
char **argv;
token = _strtok3(str, "|\n");
while (token != NULL)
{
w_len = count_input(token);
if (token[0] != '\n' && w_len > 0)
{
argv = tokenize(token, " \t\0", w_len);
execFlag = builtin_functions(argv, token);
if (!execFlag)
{
argv[0] = find(argv[0]);
if (argv[0] && access(argv[0], X_OK) == 0)
code = execute(argv[0], argv);
else
perror("./hsh");
}
frees_tokens(argv);
}
if (code == 0)
{
break;
}
token = _strtok3(NULL, "|\n");
}
return (code);
}
/**
* semi - This function handles the "&&" logical operator
* @str: String
*
* Return: exit code
*/
int semi(char *str)
{
int code = 0, w_len, execFlag;
char *token;
char **argv;
token = _strtok1(str, ";\n");
while (token != NULL)
{
w_len = count_input(token);
if (token[0] != '\n' && w_len > 0)
{
argv = tokenize(token, " \t\0", w_len);
execFlag = builtin_functions(argv, token);
if (!execFlag)
{
argv[0] = find(argv[0]);
if (argv[0] && access(argv[0], X_OK) == 0)
code = execute(argv[0], argv);
else
perror("./hsh");
}
frees_tokens(argv);
}
token = _strtok1(NULL, ";\n");
}
return (code);
}
/**
* and - This function handles the "&&" logical operator
* @str: String
*
* Return: exit code
*/
int and(char *str)
{
int code = 0, w_len, execFlag;
char *token;
char **argv;
token = _strtok2(str, "&\n");
while (token != NULL)
{
w_len = count_input(token);
if (token[0] != '\n' && w_len > 0)
{
argv = tokenize(token, " \t\0", w_len);
execFlag = builtin_functions(argv, token);
if (!execFlag)
{
argv[0] = find(argv[0]);
if (argv[0] && access(argv[0], X_OK) == 0)
code = execute(argv[0], argv);
else
perror("./hsh");
}
frees_tokens(argv);
}
if (code != 0)
{
break;
}
token = _strtok2(NULL, "&\n");
}
return (code);
}
/**
* special_circ - This function handles ";", "&&" and "||"
* @str: String
*
* Return: 0 if found 1 if not found
*/
int special_circ(char *str)
{
int i, code;
int exec = 0;
for (i = 0; str[i]; i++)
{
if (str[i] == '#')
{
while (str[i])
{
str[i] = ' ';
i++;
}
return (-1);
}
if (str[i] == ';')
exec = 1;
if (str[i] == '&' && str[i + 1] == '&')
exec = 2;
if (str[i] == '|' && str[i + 1] == '|')
{
exec = 3;
}
}
if (exec == 0)
return (-1);
if (exec == 1)
code = semi(str);
if (exec == 2)
code = and(str);
if (exec == 3)
code = or(str);
return (code);
}
/**
* execute - This function executes the program
* @cmd: Command
* @argv: Arguments
*
* Return: exit code
*/
int execute(char *cmd, char **argv)
{
pid_t pro;
int wstatus;
int statusCode;
pro = fork();
if (pro == -1)
perror("fork failed");
else if (pro == 0)
execve(cmd, argv, environ);
else
{
do {
waitpid(pro, &wstatus, WUNTRACED);
} while (WIFEXITED(wstatus) == 0 && WIFSIGNALED(wstatus) == 0);
}
statusCode = WEXITSTATUS(wstatus);
exit_status = statusCode;
return (statusCode);
}