-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshell.c
More file actions
263 lines (196 loc) · 5.11 KB
/
shell.c
File metadata and controls
263 lines (196 loc) · 5.11 KB
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
#ifdef SHELL
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include "tests.h"
#include "simu_mips.h"
#include "commands.h"
#define BUFFER_SIZE 64
/*
COMMANDS :
man
display a short help
tree [path]
display the filesystem like a tree
ls [path]
display children of the directory or the
information of a file
mkdir dirpath
touch filepath
create empty file
wtxt filepath text
write the content into the file
create file if it doesnt exist
whex filepath hex
e.g. whex file 4142430A 4142430A
cat filepath
rm path
remove a file or a directory
(if it's not a working dir'ancestor)
pwd
print working directory
cd dirpath
exec filepath
#todo
dbg
display memory debug
exit
*/
int main(void)
{
mem_allocator allocator;
#ifdef PC
uint8_t *memory = malloc(MEM_SIZE);
#elif defined(QEMU)
uint8_t map_memory[MEM_SIZE];
uint8_t *memory = (uint8_t*) &map_memory[0];
#elif MIPS
uint8_t *memory = 0x0;
#endif
mem_init(&allocator, memory, MEM_SIZE);
fs_file *root;
if(fs_new_root(&allocator, &root) == FS_ERROR)
mips_puts("Err: fs_new_root");
cmd_filesystem myfilesystem;
myfilesystem.root = myfilesystem.working = root;
//mem_debug(&allocator);
// *******************
char buffer[BUFFER_SIZE];
bool running = true;
uint32_t length = 0;
char *cmd, *arg1, *rest;
mips_puts_nl(" - SHELL v1.0 - ");
while (running) {
mips_puts("$ ");
mips_get_line(buffer, BUFFER_SIZE);
length = strlen(buffer);
if (strlen(buffer) == 0) { // end of file
mips_puts_nl("exit");
running = false;
continue;
}
buffer[length-1] = '\0';
if (strlen(buffer) == 0)
continue; // there was only an '\n'
// extract CMD
// [
uint8_t index = 0;
while(buffer[index] == ' ' && index < length)
index++;
cmd = buffer + index;
while(buffer[index] != ' ' && index < length)
index++;
buffer[index] = '\0';
// ]
// extract arg1
// [
index++;
while(buffer[index] == ' ' && index < length)
index++;
arg1 = buffer + index;
while(buffer[index] != ' ' && index < length)
index++;
buffer[index] = '\0';
// ]
// extract rest
// [
rest = buffer + index + 1;
// ]
uint8_t ret_code = 0;
if (strcmp(cmd, "tree") == 0) {
// tree [filename]
fs_file *file = (strlen(arg1) == 0) ? myfilesystem.working :
fs_get_file_by_path(myfilesystem.root,
myfilesystem.working,
arg1);
ret_code = tree(file);
} else if (strcmp(cmd, "ls") == 0) {
// ls [filename]
fs_file *file = (strlen(arg1) == 0) ? myfilesystem.working :
fs_get_file_by_path(myfilesystem.root,
myfilesystem.working,
arg1);
ret_code = ls(file);
} else if (strcmp(cmd, "mkdir") == 0) {
// mkdir dirpath
ret_code = mkdir(&allocator, &myfilesystem, arg1);
} else if (strcmp(cmd, "touch") == 0) {
// touch filepath
ret_code = touch(&allocator,
&myfilesystem,
arg1);
} else if (strcmp(cmd, "wtxt") == 0) {
// wtxt filepath text
ret_code = wtxt(&allocator,
&myfilesystem,
arg1,
rest);
} else if (strcmp(cmd, "whex") == 0) {
// whex filepath hex
ret_code = whex(&allocator,
&myfilesystem,
arg1,
rest);
}else if (strcmp(cmd, "cat") == 0) {
// cat regularname
ret_code = cat(fs_get_file_by_path(myfilesystem.root,
myfilesystem.working,
arg1));
} else if (strcmp(cmd, "rm") == 0) {
// rm path
ret_code = rm(&allocator, &myfilesystem, arg1);
} else if (strcmp(cmd, "pwd") == 0) {
// pwd
ret_code = pwd(&allocator, &myfilesystem);
} else if (strcmp(cmd, "cd") == 0) {
// cd dirname
ret_code = cd(&myfilesystem, arg1);
} else if (strcmp(cmd, "exec") == 0) {
// exec regularname
ret_code = exec(&allocator, fs_get_file_by_path(myfilesystem.root,
myfilesystem.working,
arg1));
} else if (strcmp(cmd, "man") == 0) {
// man
mips_puts_nl(" man ");
mips_puts_nl(" tree [path] ");
mips_puts_nl(" ls [path] ");
mips_puts_nl(" mkdir dirpath ");
mips_puts_nl(" touch filepath ");
mips_puts_nl(" rm path ");
mips_puts_nl(" wtxt filepath txt ");
mips_puts_nl(" whex filepath hex ");
mips_puts_nl(" cat filepath ");
mips_puts_nl(" exec filepath ");
mips_puts_nl(" pwd ");
mips_puts_nl(" cd dirpath ");
mips_puts_nl(" dbg ");
mips_puts_nl(" exit ");
ret_code = CMD_SUCCESS;
} else if (strcmp(cmd, "exit") == 0) {
// exit
running = false;
ret_code = CMD_SUCCESS;
} else if (strcmp(cmd, "dbg") == 0) {
// dbg
mem_debug(&allocator);
ret_code = CMD_SUCCESS;
}else {
mips_puts_nl("ukwn cmd");
ret_code = CMD_ERROR;
}
if (ret_code == CMD_ERROR)
mips_puts_nl("error");
}
//******
// clean
if (fs_delete_root(&allocator, &root) == FS_ERROR)
mips_puts("Err: fs_delete_root");
//mem_debug(&allocator);
#ifdef PC
// clean test
free(memory);
#endif
return 0;
}
#endif