-
Notifications
You must be signed in to change notification settings - Fork 0
/
ash.c
220 lines (169 loc) · 4.09 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
#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 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 main()
{
// Char where we will store users full command line
char *fullCommand = malloc(1000);
// attaching program run
char *OGdirectory = malloc(1000);
getcwd(OGdirectory, 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);
// 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
{
executeAndWait(userArgs);
}
free(userArgs);
}
return 0;
}