Hash :
c0cf3eff
Author :
Thomas de Grivel
Date :
2024-03-29T18:23:05
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
/* c3
* Copyright 2022-2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include "buf.h"
#include "buf_inspect.h"
#include "env.h"
#include "io.h"
#define DEF_ERR_INSPECT(name, type) \
sw err_inspect_ ## name (type x) \
{ \
sw r; \
r = buf_inspect_ ## name(&g_c3_env.err, x); \
if (r < 0) \
return r; \
buf_flush(&g_c3_env.err); \
return r; \
}
#define DEF_IO_INSPECT(name, type) \
sw io_inspect_ ## name (type x) \
{ \
sw r; \
r = buf_inspect_ ## name(&g_c3_env.out, x); \
if (r < 0) \
return r; \
buf_flush(&g_c3_env.out); \
return r; \
}
#define DEF_ERR_IO_INSPECT(name, type) \
DEF_ERR_INSPECT(name, type) \
DEF_IO_INSPECT(name, type)
sw err_inspect (const s_tag *x)
{
return err_inspect_tag(x);
}
sw err_puts (const char *x)
{
sw r;
sw result = 0;
if ((r = buf_write_1(&g_c3_env.err, x)) < 0)
return r;
result += r;
if ((r = buf_write_u8(&g_c3_env.err, '\n')) < 0)
return r;
result += r;
buf_flush(&g_c3_env.err);
return result;
}
sw err_write_1 (const char *x)
{
sw r;
if ((r = buf_write_1(&g_c3_env.err, x)) > 0)
buf_flush(&g_c3_env.err);
return r;
}
sw io_inspect (const s_tag *x)
{
sw r;
sw result = 0;
if ((r = buf_inspect_tag(&g_c3_env.out, x)) < 0)
return r;
result += r;
if ((r = buf_write_u8(&g_c3_env.out, '\n')) < 0)
return r;
result += r;
buf_flush(&g_c3_env.out);
return result;
}
sw io_puts (const char *x)
{
sw r;
sw result = 0;
if ((r = buf_write_1(&g_c3_env.out, x)) < 0)
return r;
result += r;
if ((r = buf_write_u8(&g_c3_env.out, '\n')) < 0)
return r;
result += r;
buf_flush(&g_c3_env.out);
return result;
}
sw io_write_1 (const char *x)
{
sw r;
if ((r = buf_write_1(&g_c3_env.out, x)) > 0)
buf_flush(&g_c3_env.out);
return r;
}
DEF_ERR_IO_INSPECT(array, const s_array *)
DEF_ERR_IO_INSPECT(call, const s_call *)
DEF_ERR_IO_INSPECT(character, const character *)
DEF_ERR_IO_INSPECT(f32, const f32 *)
DEF_ERR_IO_INSPECT(fact, const s_fact *)
DEF_ERR_IO_INSPECT(fn_pattern, const s_list *)
DEF_ERR_IO_INSPECT(ident, const s_ident *)
DEF_ERR_IO_INSPECT(list, const s_list * const *)
DEF_ERR_IO_INSPECT(map, const s_map *)
DEF_ERR_IO_INSPECT(pointer, const void *)
DEF_ERR_IO_INSPECT(ptr, const u_ptr_w *)
DEF_ERR_IO_INSPECT(s8, const s8 *)
DEF_ERR_IO_INSPECT(s16, const s16 *)
DEF_ERR_IO_INSPECT(s32, const s32 *)
DEF_ERR_IO_INSPECT(s64, const s64 *)
DEF_ERR_IO_INSPECT(str, const s_str *)
DEF_ERR_IO_INSPECT(sw, const sw *)
DEF_ERR_IO_INSPECT(sym, const s_sym * const *)
DEF_ERR_IO_INSPECT(tag, const s_tag *)
DEF_ERR_IO_INSPECT(tuple, const s_tuple *)
DEF_ERR_IO_INSPECT(u8, const u8 *)
DEF_ERR_IO_INSPECT(u16, const u16 *)
DEF_ERR_IO_INSPECT(u32, const u32 *)
DEF_ERR_IO_INSPECT(u64, const u64 *)
DEF_ERR_IO_INSPECT(uw, const uw *)