libkernaux/src/console.c

83 lines
1.5 KiB
C
Raw Normal View History

2020-12-07 04:46:37 +00:00
#ifdef HAVE_CONFIG_H
2020-11-30 11:40:33 +00:00
#include "config.h"
2020-12-07 04:46:37 +00:00
#endif
2020-11-30 11:40:33 +00:00
#include <kernaux/assert.h>
#include <kernaux/console.h>
#include "libc.h"
#ifdef ASM_I386
#include <kernaux/asm/i386.h>
2020-11-30 11:32:12 +00:00
#endif
2022-01-11 06:48:54 +00:00
#ifdef ASM_X86_64
#include <kernaux/asm/x86_64.h>
#endif
2022-06-14 12:03:17 +00:00
#ifdef WITH_IO
#include <kernaux/io.h>
#endif
#ifdef WITH_PRINTF
#include <kernaux/printf.h>
#endif
2020-11-30 11:32:12 +00:00
2022-01-19 12:01:21 +00:00
#include <stddef.h>
2022-06-14 12:03:17 +00:00
#if defined(WITH_IO) && defined(WITH_PRINTF)
2022-01-19 12:04:46 +00:00
static void kernaux_console_printf_putc(
const char c,
void *const arg __attribute__((unused))
) {
kernaux_console_putc(c);
}
2022-01-20 11:34:12 +00:00
#endif
2022-01-19 12:04:46 +00:00
2020-12-06 01:41:31 +00:00
void kernaux_console_putc(const char c __attribute__((unused)))
{
#ifdef ASM_I386
2022-01-24 02:50:16 +00:00
kernaux_asm_i386_outportb(0x3f8, c);
2020-11-30 11:32:12 +00:00
#endif
2022-01-11 06:48:54 +00:00
#ifdef ASM_X86_64
2022-01-24 02:50:16 +00:00
kernaux_asm_x86_64_outportb(0x3f8, c);
2022-01-11 06:48:54 +00:00
#endif
2020-11-30 11:32:12 +00:00
}
void kernaux_console_print(const char *const s)
{
KERNAUX_ASSERT(s);
for (const char *c = s; *c; ++c) {
kernaux_console_putc(*c);
}
}
2022-06-14 12:03:17 +00:00
#if defined(WITH_IO) && defined(WITH_PRINTF)
void kernaux_console_printf(const char *format, ...)
{
KERNAUX_ASSERT(format);
va_list va;
va_start(va, format);
struct KernAux_OldFile file = KernAux_OldFile_create(kernaux_console_printf_putc);
kernaux_vfprintf(&file, NULL, format, va);
va_end(va);
}
#endif
2020-11-30 11:32:12 +00:00
void kernaux_console_puts(const char *const s)
{
KERNAUX_ASSERT(s);
2020-11-30 11:32:12 +00:00
kernaux_console_print(s);
kernaux_console_putc('\n');
}
2021-12-16 15:26:16 +00:00
void kernaux_console_write(const char *const data, const size_t size)
2020-12-06 01:41:31 +00:00
{
KERNAUX_ASSERT(data);
2021-12-16 15:26:16 +00:00
for (size_t i = 0; i < size; i++) {
2020-11-30 11:32:12 +00:00
kernaux_console_putc(data[i]);
}
}