-
Notifications
You must be signed in to change notification settings - Fork 0
/
ash.c
309 lines (242 loc) · 5.81 KB
/
ash.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
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
int historyAmount = 0;
char *readLine(void)
{
printf("ash> ");
char *fullLine = malloc(1000);
int adder = 0;
while (1)
{
char in = fgetc(stdin);
if (in == EOF || in == '\n')
{
// ending on null byte
fullLine[adder] = '\0';
if (fullLine[0] == '\0')
{
printf("ash> ");
continue;
}
return fullLine;
}
else
{
fullLine[adder] = in;
adder++;
}
}
}
void splitToArgs(char *fullLine, char **userArgs)
{
char *stringToken = strtok(fullLine, " ");
int i = 0;
while (stringToken != NULL)
{
userArgs[i] = stringToken;
stringToken = strtok(NULL, " ");
i++;
}
}
void cdCommand(char *userString)
{
chdir(userString);
}
void executeAndWait(char **userArgs)
{
pid_t childID = fork();
if (childID == 0)
{
execvp(userArgs[0], userArgs);
}
else
{
int errorCode;
waitpid(childID, &errorCode, 0);
}
}
void executeAndDontWait(char **userArgs, int *amperProcesses, char *fullCommand)
{
pid_t childID = fork();
if (childID == 0)
{
pid_t runnerID = fork();
if (runnerID == 0)
{
execvp(userArgs[0], userArgs);
}
else
{
int processCounter = 1;
char *keepCommand = malloc(1000);
strcpy(keepCommand, fullCommand);
while (amperProcesses[processCounter]!=0)
{
processCounter++;
}
amperProcesses[processCounter] = processCounter;
printf("\b\b\b\b\b[%d] %d\nash> ", processCounter, getpid());
fflush(stdout);
int errorCode;
waitpid(childID, &errorCode, 0);
printf("\n[%d] <Done> %s", processCounter, keepCommand);
exit(0);
}
}
else
{
return;
}
}
void historyCommand(char *commandType, char **historyOfUser)
{
if (historyOfUser[0]==NULL)
{
printf("No history\n");
return;
}
if (commandType==NULL && historyAmount < 11)
{
for (int i = 1; i <= historyAmount; i++)
{
printf("%d: %s\n", i, historyOfUser[i-1]);
if (historyOfUser[i]==NULL)
{
break;
}
}
}
else if (commandType==NULL)
{
for (int i = historyAmount-9; i <= historyAmount; i++)
{
printf("%d: %s\n", i, historyOfUser[i-1]);
if (historyOfUser[i]==NULL)
{
break;
}
}
}
else
{
// Getting the history value wanted
char *extraString;
char *historyWanted = malloc(1000);
strcpy(historyWanted, commandType);
// Converting to int to get the history string
long histNum = strtol(historyWanted, &extraString, 10);
char *fullCommandWanted = malloc(1000);
// if doesnt exist, return
if (historyOfUser[histNum-1]==NULL)
{
printf("That value has no history!\n");
return;
}
strcpy(fullCommandWanted, historyOfUser[histNum-1]);
// Running the history command
char **historyArgs = malloc(1000);
splitToArgs(fullCommandWanted, historyArgs);
executeAndWait(historyArgs);
free(historyArgs);
}
}
void addToHistory(char *userString, char **historyOfUser)
{
char *temp = malloc(1000);
strcpy(temp, userString);
historyOfUser[historyAmount] = temp;
historyAmount++;
}
int amperCheck(char **userArgs)
{
int count = 0;
while (userArgs[count]!=NULL)
{
count++;
}
if (strcmp(userArgs[count-1], "&") == 0)
{
userArgs[count-1] = '\0';
return 1;
}
else
{
return 0;
}
}
int main()
{
// Char where we will store users full command line
char *fullCommand = malloc(1000);
// attaching program run
char *OGdirectory = malloc(1000);
getcwd(OGdirectory, 1000);
// process control
int *amperProcesses = malloc(1000);
// History variable
char **historyCommands = malloc(1000);
while (strcmp(fullCommand, "exit") != 0)
{
// Resetting the users old line
memset(fullCommand, 0, sizeof(fullCommand));
// Taking the users full line
fullCommand = readLine();
// Taking a constant version of full line
char *constantFullCommand = malloc(1000);
strcpy(constantFullCommand, fullCommand);
// Resetting an args 2d array
char **userArgs = malloc(1000);
// Filling the array with users args
splitToArgs(fullCommand, userArgs);
// Checking if ampersand
int amperValue = amperCheck(userArgs);
printf("Amper value: %d\n", amperValue);
// Checking pipe locations and if pipe
int pipeExists = 0;
int *pipeLocations;
// Adding this to command history
addToHistory(constantFullCommand, historyCommands);
// If command is cd
if (strcmp(userArgs[0], "cd") == 0)
{
if (userArgs[1] == NULL)
{
cdCommand(OGdirectory);
}
else
{
cdCommand(userArgs[1]);
}
}
// If command is history
else if (strcmp(userArgs[0], "history") == 0 || strcmp(userArgs[0], "h") == 0)
{
historyCommand(userArgs[1], historyCommands);
}
// Run built-in normal commands
else
{
if (pipeExists == 1 && amperValue == 1)
{
printf("pipe and amper\n");
}
else if (pipeExists == 1)
{
printf("pipe\n");
}
else if (amperValue == 1)
{
executeAndDontWait(userArgs, amperProcesses, constantFullCommand);
}
else
{
executeAndWait(userArgs);
}
}
free(userArgs);
}
return 0;
}