Cthulhu  0.2.10
Cthulhu compiler collection
events.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
4 #include "scan/node.h"
5 #include "std/str.h"
6 
8 
9 #define CTU_EVENT(name, ...) const diagnostic_t kEvent_##name = __VA_ARGS__;
11 
13 
14 static const diagnostic_t * const kDiagnosticTable[] = {
15 #define CTU_EVENT(name, ...) &kEvent_##name,
17 };
18 
19 #define DIAGNOTSIC_COUNT (sizeof(kDiagnosticTable) / sizeof(diagnostic_t*))
20 
23 {
24  diagnostic_list_t list = {
25  .diagnostics = kDiagnosticTable,
26  .count = DIAGNOTSIC_COUNT,
27  };
28 
29  return list;
30 }
31 
33 void evt_scan_error(logger_t *logger, const node_t *node, const char *msg)
34 {
35  msg_notify(logger, &kEvent_ParseFailed, node, "%s", msg);
36 }
37 
39 void evt_scan_unknown(logger_t *logger, const node_t *node, const char *msg)
40 {
41  const scan_t *scan = node_get_scan(node);
42  arena_t *arena = scan_get_arena(scan);
43  msg_notify(logger, &kEvent_UnknownToken, node, "unknown symbol: `%s`", str_normalize(msg, arena));
44 }
45 
48  logger_t *logger,
49  const char *name,
50  const node_t *prev,
51  const node_t *next)
52 {
53  event_builder_t event = msg_notify(logger, &kEvent_SymbolShadowed, next, "symbol `%s` shadows previous declaration", name);
54  msg_append(event, prev, "previous declaration here");
55  return event;
56 }
57 
60  logger_t *logger,
61  const diagnostic_t *diagnostic,
62  os_error_t error,
63  const char *msg)
64 {
65  char *err = os_error_string(error, logger_get_arena(logger));
66  return msg_notify(logger, diagnostic, NULL, "%s: %s", msg, err);
67 }
CT_NODISCARD CT_PUREFN CT_SCAN_API arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
Definition: scan.c:113
CT_NODISCARD STA_RET_STRING CT_OS_API char * os_error_string(os_error_t error, arena_t *arena)
convert an os error code to a string
Definition: os.c:56
#define DIAGNOTSIC_COUNT
Definition: events.c:19
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL void evt_scan_unknown(logger_t *logger, const node_t *node, const char *msg)
signal that a scanner has encountered an unknown token
Definition: events.c:39
STA_DECL diagnostic_list_t get_common_diagnostics(void)
get all common diagnostics
Definition: events.c:22
STA_DECL event_builder_t evt_os_error(logger_t *logger, const diagnostic_t *diagnostic, os_error_t error, const char *msg)
signal that an os error has occurred
Definition: events.c:59
STA_DECL event_builder_t evt_symbol_shadowed(logger_t *logger, const char *name, const node_t *prev, const node_t *next)
signal that a declaration would shadow a previous declaration
Definition: events.c:47
STA_DECL void evt_scan_error(logger_t *logger, const node_t *node, const char *msg)
signal that a scan error has occurred
Definition: events.c:33
CT_NODISCARD CT_PUREFN CT_SCAN_API const scan_t * node_get_scan(const node_t *node)
get the associated source file of a node
Definition: node.c:57
CT_NOTIFY_API event_builder_t msg_notify(INOUT_NOTNULL logger_t *logs, const diagnostic_t *diagnostic, const node_t *node, STA_FORMAT_STRING const char *fmt,...)
notify the logger of a new message
CT_NOTIFY_API void msg_append(event_builder_t builder, const node_t *node, STA_FORMAT_STRING const char *fmt,...)
append additional information to a message
CT_NODISCARD CT_NOTIFY_API arena_t * logger_get_arena(const logger_t *logs)
Definition: notify.c:97
CT_NODISCARD CT_STD_API char * str_normalize(const char *str, arena_t *arena)
turn a string into a C string literal
Definition: str.c:485
an allocator object
Definition: arena.h:86
a list of diagnostics
Definition: diagnostic.h:48
const diagnostic_t *const * diagnostics
the list of diagnostics
Definition: diagnostic.h:51
a diagnostic
Definition: diagnostic.h:27
an event builder handles adding additional information to an event
Definition: notify.h:68
a logging sink
Definition: notify.c:14
a position in a source file
Definition: node.h:23
a source file scanner
Definition: scan.h:24