From 01c570789d7f9ccc1521b791903c8a499b0f6323 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 8 Jan 2021 14:51:11 +0100 Subject: Kinda working VFS implementation --- apps/cc.c | 2 +- apps/exec.c | 3 ++- apps/files.c | 2 +- apps/server.c | 14 ++++++++++---- 4 files changed, 14 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/cc.c b/apps/cc.c index 6b571b1..305d82e 100644 --- a/apps/cc.c +++ b/apps/cc.c @@ -803,7 +803,7 @@ int main(int argc, char **argv) } void *file; - if (!(file = read(*argv))) { + if (!(file = sread(*argv))) { printf("could not read file %s\n", *argv); return -1; } diff --git a/apps/exec.c b/apps/exec.c index e7cfcd8..100ce26 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -34,7 +34,8 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) strcat(final, PATH); strcat(final, inp); - if (stat(final)) { + struct stat s = { 0 }; + if (stat(final, &s) && s.size) { inp_elem->color_bg = COLOR_WHITE; exec(final, inp, arg, NULL); } else { diff --git a/apps/files.c b/apps/files.c index e21af5a..df590d9 100644 --- a/apps/files.c +++ b/apps/files.c @@ -38,7 +38,7 @@ void render_list(const char *path) gui_remove_element(list); list = gui_add_container(root, 0, 0, 100, 100, COLOR_BLACK); - struct dirent *d = read(path); + struct dirent *d = sread(path); int sum = 0; int calc = 0; diff --git a/apps/server.c b/apps/server.c index 3d3bb77..4840da3 100644 --- a/apps/server.c +++ b/apps/server.c @@ -33,11 +33,17 @@ int main() memset(buf, 0, 4096); - u32 len = 0; - if ((len = stat(path))) - len = http_response(HTTP_200, len, read(path), buf); + struct stat s_file = { 0 }; + int res_file = stat(path, &s_file); + + struct stat s_error = { 0 }; + stat(path, &s_error); + + int len; + if (res_file && s_file.size) + len = http_response(HTTP_200, s_file.size, sread(path), buf); else - len = http_response(HTTP_404, stat(ERROR), read(ERROR), buf); + len = http_response(HTTP_404, s_error.size, sread(ERROR), buf); net_send(socket, buf, len); net_close(socket); -- cgit v1.2.3