diff options
author | Marvin Borner | 2020-06-17 18:31:46 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-17 18:31:46 +0200 |
commit | eed77bd2970a00d1394ed027ceca5b646e4671ce (patch) | |
tree | c44643d98aed2b6818f2b33417c0dea9c5853094 /src/kernel/lib/stdio | |
parent | 49dfa1f4021026bf7c4d77817959c8aa24067016 (diff) |
Started rewrite
Diffstat (limited to 'src/kernel/lib/stdio')
-rw-r--r-- | src/kernel/lib/stdio/debug.c | 27 | ||||
-rw-r--r-- | src/kernel/lib/stdio/printf.c | 10 | ||||
-rw-r--r-- | src/kernel/lib/stdio/putch.c | 6 | ||||
-rw-r--r-- | src/kernel/lib/stdio/sprintf.c | 11 | ||||
-rw-r--r-- | src/kernel/lib/stdio/vprintf.c | 16 | ||||
-rw-r--r-- | src/kernel/lib/stdio/vsprintf.c | 73 |
6 files changed, 0 insertions, 143 deletions
diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c deleted file mode 100644 index 879329e..0000000 --- a/src/kernel/lib/stdio/debug.c +++ /dev/null @@ -1,27 +0,0 @@ -#include <io/io.h> -#include <lib/lib.h> -#include <lib/stdio.h> -#include <lib/stdlib.h> -#include <stdint.h> - -void serial_print(const char *data) -{ - for (u32 i = 0; i < strlen(data); i++) - serial_put(data[i]); -} - -void serial_vprintf(const char *fmt, va_list args) -{ - char buf[1024]; - memset(buf, 0, 1024); - vsprintf(buf, fmt, args); - serial_print(buf); -} - -void serial_printf(const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - serial_vprintf(fmt, args); - va_end(args); -}
\ No newline at end of file diff --git a/src/kernel/lib/stdio/printf.c b/src/kernel/lib/stdio/printf.c deleted file mode 100644 index c1b08e7..0000000 --- a/src/kernel/lib/stdio/printf.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <lib/stdio.h> -#include <stdarg.h> - -void printf(const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - vprintf(fmt, args); - va_end(args); -}
\ No newline at end of file diff --git a/src/kernel/lib/stdio/putch.c b/src/kernel/lib/stdio/putch.c deleted file mode 100644 index 2689ac7..0000000 --- a/src/kernel/lib/stdio/putch.c +++ /dev/null @@ -1,6 +0,0 @@ -#include <graphics/vesa.h> - -void putch(char c) -{ - vesa_draw_char(c); -}
\ No newline at end of file diff --git a/src/kernel/lib/stdio/sprintf.c b/src/kernel/lib/stdio/sprintf.c deleted file mode 100644 index 8492363..0000000 --- a/src/kernel/lib/stdio/sprintf.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <lib/stdio.h> -#include <stdarg.h> - -int sprintf(char *str, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - int ret = vsprintf(str, fmt, args); - va_end(args); - return ret; -}
\ No newline at end of file diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c deleted file mode 100644 index 5405309..0000000 --- a/src/kernel/lib/stdio/vprintf.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <lib/lib.h> -#include <lib/stdio.h> -#include <lib/stdlib.h> -#include <stdint.h> - -// TODO: Use global formatting function -// TODO: Fix fixed buffer size -void vprintf(const char *fmt, va_list args) -{ - char buf[1024]; - memset(buf, 0, 1024); - vsprintf(buf, fmt, args); - - for (u32 i = 0; i < strlen(buf); i++) - putch(buf[i]); -}
\ No newline at end of file diff --git a/src/kernel/lib/stdio/vsprintf.c b/src/kernel/lib/stdio/vsprintf.c deleted file mode 100644 index 61f4323..0000000 --- a/src/kernel/lib/stdio/vsprintf.c +++ /dev/null @@ -1,73 +0,0 @@ -#include <lib/stdlib.h> -#include <stdarg.h> -#include <stdint.h> - -static void append(char *dest, char *src, int index) -{ - for (int i = index; i < strlen(src) + index; i++) - dest[i] = src[i - index]; - dest[index + strlen(src)] = 0; -} - -int vsprintf(char *str, const char *fmt, va_list args) -{ - u8 ready_to_format = 0; - - int i = 0; - char buf = 0; - char format_buffer[20] = "\0"; - - for (; *fmt; fmt++) { - if (ready_to_format) { - ready_to_format = 0; - - if (*fmt == '%') { - str[i] = '%'; - continue; - } - - buf = *fmt; - - // TODO: Improve this repetitive code - if (buf == 's') { - char *string = va_arg(args, char *); - append(str, string, i); - i = strlen(str); - } else if (buf == 'x') { - itoa_base(va_arg(args, u32), format_buffer, 16, 0); - append(str, format_buffer, i); - i = strlen(str); - } else if (buf == 'd' || buf == 'i') { - itoa_base(va_arg(args, s32), format_buffer, 10, 1); - append(str, format_buffer, i); - i = strlen(str); - } else if (buf == 'u') { - itoa_base(va_arg(args, u32), format_buffer, 10, 0); - append(str, format_buffer, i); - i = strlen(str); - } else if (buf == 'o') { - itoa_base(va_arg(args, u32), format_buffer, 8, 0); - append(str, format_buffer, i); - i = strlen(str); - } else if (buf == 'b') { - itoa_base(va_arg(args, u32), format_buffer, 2, 0); - append(str, format_buffer, i); - i = strlen(str); - } else if (buf == 'c') { - str[i] = (char)va_arg(args, int); - i++; - } - } else { - if (*fmt == '%') - ready_to_format = 1; - else { - str[i] = *fmt; - i++; - } - } - - format_buffer[0] = '\0'; - } - - return strlen(str); -}
\ No newline at end of file |