Cthulhu  0.2.10
Cthulhu compiler collection
console.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "io/console.h"
4 #include "io/impl.h"
5 
6 #include "core/macros.h"
7 
8 #include <stdio.h>
9 
10 static size_t cout_write(io_t *self, const void *src, size_t size)
11 {
12  CT_UNUSED(self);
13  return fwrite(src, 1, size, stdout);
14 }
15 
16 static size_t cout_fwrite(io_t *self, const char *fmt, va_list args)
17 {
18  CT_UNUSED(self);
19  return vfprintf(stdout, fmt, args);
20 }
21 
22 static size_t cerr_write(io_t *self, const void *src, size_t size)
23 {
24  CT_UNUSED(self);
25  return fwrite(src, 1, size, stderr);
26 }
27 
28 static size_t cerr_fwrite(io_t *self, const char *fmt, va_list args)
29 {
30  CT_UNUSED(self);
31  return vfprintf(stderr, fmt, args);
32 }
33 
34 // TODO: find a way to simplify this down to a single io_t
35 
36 static const io_callbacks_t kConsoleOutCallbacks = {
37  .fn_write = cout_write,
38  .fn_fwrite = cout_fwrite,
39 };
40 
41 static const io_callbacks_t kConsoleErrorCallbacks = {
42  .fn_write = cerr_write,
43  .fn_fwrite = cerr_fwrite,
44 };
45 
46 static io_t gConsoleOutIo = {
47  .cb = &kConsoleOutCallbacks,
48  .flags = eOsAccessWrite,
49  .arena = NULL,
50  .name = "stdout",
51 };
52 
53 static io_t gConsoleErrorIo = {
54  .cb = &kConsoleErrorCallbacks,
55  .flags = eOsAccessWrite,
56  .arena = NULL,
57  .name = "stderr",
58 };
59 
61 {
62  return &gConsoleOutIo;
63 }
64 
66 {
67  return &gConsoleErrorIo;
68 }
CT_NODISCARD size_t size
Definition: scan.h:128
io_t * io_stderr(void)
get the global stderr IO object
Definition: console.c:65
io_t * io_stdout(void)
get the global stdout IO object
Definition: console.c:60
#define CT_UNUSED(x)
mark a variable as unused
Definition: macros.h:46
CT_NODISCARD STA_FORMAT_STRING const char * fmt
Definition: str.h:68
io callback interface
Definition: impl.h:86
io_write_t fn_write
write callback may be NULL on non-writable objects
Definition: impl.h:93
io object implementation
Definition: impl.h:122
const io_callbacks_t * cb
callback struct
Definition: impl.h:124