Cthulhu  0.2.10
Cthulhu compiler collection
diagnostic.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_notify_api.h>
6 
7 #include "core/analyze.h"
8 
9 #include <stddef.h>
10 
12 
15 
17 typedef enum severity_t
18 {
19 #define SEVERITY(ID, NAME) ID,
20 #include "notify.inc"
21 
24 
26 typedef struct diagnostic_t
27 {
30 
34  const char *id;
35 
38  const char *brief;
39 
43  const char *description;
44 } diagnostic_t;
45 
47 typedef struct diagnostic_list_t
48 {
51  const diagnostic_t * const *diagnostics;
52 
54  size_t count;
56 
63 CT_NOTIFY_API const char *severity_string(IN_DOMAIN(<, eSeverityTotal) severity_t severity);
64 
66 
#define STA_RET_STRING
annotate the return value as a null terminated string
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
#define STA_FIELD_SIZE(of)
annotate a field as being an array of of elements
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
Definition: analyze.h:227
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
severity_t
the default severity of a diagnostic
Definition: diagnostic.h:18
STA_RET_STRING CT_CONSTFN CT_NOTIFY_API const char * severity_string(severity_t severity)
get the name of a severity
Definition: notify.c:216
@ eSeverityTotal
Definition: diagnostic.h:22
a list of diagnostics
Definition: diagnostic.h:48
size_t count
the number of diagnostics in the list
Definition: diagnostic.h:54
const diagnostic_t *const * diagnostics
the list of diagnostics
Definition: diagnostic.h:51
a diagnostic
Definition: diagnostic.h:27
const char * brief
a brief description of the diagnostic a single line description of the diagnostic
Definition: diagnostic.h:38
const char * id
the id of the diagnostic should be in the format [A-Z]{2,3}[0-9]{4} e.g. CLI0001 this is not enforced...
Definition: diagnostic.h:34
severity_t severity
the severity of the diagnostic
Definition: diagnostic.h:29
const char * description
a description of the diagnostic a more involved description of the diagnostic this is optional
Definition: diagnostic.h:43