53 for (
size_t i = 0; i < len; i++)
59 CTASSERTF(diagnostic != NULL,
"event %zu has no diagnostic", i);
64 case eSeverityInternal:
153 #define CHECK_BUILDER(bld) \
154 CTASSERT((bld).event != NULL); \
155 CTASSERT((bld).arena != NULL);
165 if (event->segments == NULL)
202 if (event->notes == NULL)
211 #define SEVERITY(id, name) [id] = (name),
220 return kSeverityNames[severity];
STA_DECL void msg_note(event_builder_t builder, const char *fmt,...)
STA_DECL const char * severity_string(severity_t severity)
get the name of a severity
#define CHECK_BUILDER(bld)
STA_DECL event_builder_t msg_vnotify(logger_t *logs, const diagnostic_t *diagnostic, const node_t *node, const char *fmt, va_list args)
STA_DECL event_builder_t msg_notify(logger_t *logs, const diagnostic_t *diagnostic, const node_t *node, const char *fmt,...)
STA_DECL void msg_append(event_builder_t builder, const node_t *node, const char *fmt,...)
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_NODISCARD CT_PUREFN CT_STD_API bool set_contains(const set_t *set, const void *key)
check if a set contains a key
#define ARENA_IDENTIFY(ptr, name, parent, arena)
rename and reparent a pointer in a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
STA_DECL void logger_reset(logger_t *logs)
reset the loggers messages
STA_DECL bool logger_has_errors(const logger_t *logs, notify_rules_t rules)
check if the logger has any fatal errors
STA_DECL arena_t * logger_get_arena(const logger_t *logs)
severity_t
the default severity of a diagnostic
STA_DECL logger_t * logger_new(arena_t *arena)
create a new logger
STA_DECL void msg_vnote(event_builder_t builder, const char *fmt, va_list args)
add a note to an existing message
STA_DECL void msg_vappend(event_builder_t builder, const node_t *node, const char *fmt, va_list args)
append additional information to a message
STA_DECL typevec_t * logger_get_events(const logger_t *logs)
get the events from the logger
#define CT_ASSERT_RANGE(value, min, max)
assert that a value is in a range inclusive bounds check
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_NODISCARD STA_FORMAT_STRING const char * fmt
CT_NODISCARD STA_FORMAT_STRING const char CT_NODISCARD CT_STD_API char * str_vformat(arena_t *arena, const char *fmt, va_list args)
format a string
CT_STD_API void * typevec_push(typevec_t *vec, const void *src)
push a value onto the vector
CT_STD_API void typevec_reset(typevec_t *vec)
reset a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t typevec_len(const typevec_t *vec)
get the length of a vector
CT_STD_API void typevec_get(const typevec_t *vec, size_t index, STA_WRITES(vec->width) void *dst)
get an element from the vector
CT_NODISCARD CT_STD_API typevec_t * typevec_new(size_t width, size_t len, arena_t *arena)
create a new typed vector on the heap
CT_NODISCARD CT_STD_API vector_t * vector_new(size_t size, arena_t *arena)
create a new vector with an initial capacity
CT_STD_API void vector_push(vector_t **vector, void *value)
push a value onto the end of a vector
severity_t severity
the severity of the diagnostic
an event builder handles adding additional information to an event
arena_t * arena
allocation context
event_t * event
the event to append to
an event handle TODO: make this and segment_t opaque
const diagnostic_t * diagnostic
the related diagnostic
vector_t * notes
extra notes that this event is attached to
typevec_t * segments
extra segments that this event is attached to
a position in a source file
a set of rules for filtering notifications
set_t * warnings_as_errors
the set of warnings to treat as errors
set_t * ignored_warnings
the set of warnings to ignore this takes precedence over warnings_as_errors
a segment inside an event
node_t node
the related node
A vector with a fixed type size.