29 #define NAME_BUFFER_SIZE 256
30 #define PATH_BUFFER_SIZE 512
33 #define INT_BIT (sizeof(int) * CHAR_BIT)
34 #define SHOULD_EXIT (1 << (INT_BIT - 1))
38 .brief =
"General options",
45 .brief =
"Print this help message and exit",
54 .brief =
"Print version information and exit",
61 .brief =
"Diangostic reporting options",
65 { .
text =
"generic", .value = eHeadingGeneric },
66 { .text =
"microsoft", .value = eHeadingMicrosoft },
68 #define HEADING_OPTION_COUNT (sizeof(kHeadingOptions) / sizeof(cfg_choice_t))
74 .brief =
"Diagnostic heading style.",
83 .brief =
"Enable colour output",
90 .brief =
"Internal debugging options",
95 static const cfg_info_t kVerboseLoggingInfo = {
97 .brief =
"Enable verbose logging",
111 static void default_error_begin(
size_t error,
void *user)
118 io_printf(context->
io,
"System error detected: %.*s\n", (
int)len, buffer);
121 static void default_error_next(
bt_address_t frame,
void *user)
128 static void default_error_end(
void *user)
138 .header = eHeadingGeneric,
139 .config = eBtZeroIndexedLines,
140 .project_source_path = CTU_SOURCE_ROOT,
150 static void pretty_panic_handler(
source_info_t location,
const char *
fmt, va_list args)
164 .header = eHeadingGeneric,
165 .config = eBtZeroIndexedLines,
166 .project_source_path = CTU_SOURCE_ROOT,
179 static void default_verbose(
const char *
fmt, va_list args)
201 gErrorContext = context;
204 .
begin = default_error_begin,
205 .end = default_error_end,
206 .next = default_error_next,
207 .user = &gErrorContext,
232 .options = kHeadingOptions,
280 if (len == 0)
return;
284 for (
size_t i = 0; i < len; i++)
294 if (count == 0)
return;
298 for (
size_t i = 0; i < count; i++)
310 return (style == eHeadingMicrosoft) ? eHeadingMicrosoft : eHeadingGeneric;
335 .print_usage = usage,
336 .win_style = (style == eHeadingMicrosoft),
389 report_ap_errors(io,
fmt, errors);
390 report_ap_unknown(io,
fmt, unknown);
395 return setup_exit(err);
403 if (pos == 0 && unknowns == 0 && params == 0)
405 io_printf(io,
"%s: no arguments provided\n", argv[0]);
406 return setup_help(argv[0], pallete,
false, heading, setup.
root);
412 return setup_help(argv[0], pallete,
true, heading, setup.
root);
417 return setup_version(argv[0], pallete, setup.
version);
CT_NODISCARD CT_OS_API size_t os_error_get_string(os_error_t error, STA_WRITES(size) char *buffer, size_t size)
convert an os error code to a string writes to a buffer rather than allocating. if size is 0,...
CT_NORETURN CT_OS_API os_exit(os_exitcode_t code)
exit the program
CT_OS_API void os_init(void)
initialize the os api
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_ARGPARSE_API size_t ap_count_params(ap_t *self)
get the number of processed arguments
CT_ARGPARSE_API vector_t * ap_get_unknown(ap_t *self)
get all unknown arguments
CT_ARGPARSE_API int ap_parse_args(ap_t *self, int argc, const char **argv)
parse a command line
CT_ARGPARSE_API ap_t * ap_new(cfg_group_t *config, arena_t *arena)
create a new parser instance
CT_ARGPARSE_API void ap_update(ap_t *self)
update the parser with the latest config
CT_ARGPARSE_API vector_t * ap_get_posargs(ap_t *self)
get all positional arguments
CT_ARGPARSE_API vector_t * ap_get_errors(ap_t *self)
get all errors
CT_BACKTRACE_API void bt_init(void)
initialize the backtrace backend
uint_least64_t bt_address_t
an address of a symbol
CT_BACKTRACE_API bt_error_t gSystemError
the global system error handler
CT_FORMAT_API const colour_pallete_t kColourNone
a colour pallete that applies no colours
CT_FORMAT_API const colour_pallete_t kColourDefault
a colour pallete that applies ANSI VT100 colours
STA_RET_STRING CT_FORMAT_API char * colour_text(format_context_t context, colour_t idx, const char *text)
add colour to a string
CT_CONFIG_API cfg_field_t * config_enum(cfg_group_t *group, const cfg_info_t *info, cfg_enum_t cfg)
add a new choice field to a configuration group
CT_CONFIG_API cfg_group_t * config_group(cfg_group_t *group, const cfg_info_t *info)
add a new configuration group to a configuration group
CT_CONFIG_API cfg_field_t * config_bool(cfg_group_t *group, const cfg_info_t *info, bool initial)
add a new yes/no field to a configuration group
CT_PUREFN CT_CONFIG_API bool cfg_bool_value(const cfg_field_t *field)
get the current boolean value of a configuration field
CT_PUREFN CT_CONFIG_API size_t cfg_enum_value(const cfg_field_t *field)
get the current enum value of a configuration field
#define CT_ARG_LONG(name)
#define CT_ARG_SHORT(name)
#define CT_EXIT_OK
no user errors or internal errors
#define CT_EXIT_INTERNAL
internal compiler errors have occurred
CT_MEMORY_API void init_gmp_arena(arena_t *arena)
initialize gmp with a custom allocator
CT_MEMORY_API void init_global_arena(arena_t *arena)
initialize the global memory arena
CT_MEMORY_API arena_t * get_global_arena(void)
get the global memory arena
CT_IO_API size_t io_vprintf(io_t *io, const char *fmt, va_list args)
vprintf to an io object
CT_IO_API io_t * io_stderr(void)
get the global stderr IO object
CT_IO_API io_t * io_stdout(void)
get the global stdout IO object
CT_IO_API size_t io_printf(io_t *io, STA_FORMAT_STRING const char *fmt,...)
printf to an io object
CT_BASE_API verbose_t gVerboseCallback
the global verbose logging callback
CT_BASE_API panic_handler_t gPanicHandler
the global panic handler.
#define CTASSERT(expr)
assert a condition, prints the condition as a message
STA_DECL setup_init_t setup_parse(int argc, const char **argv, setup_options_t setup)
parse the command line
STA_DECL int setup_exit_help(setup_options_t setup, const setup_init_t *init)
print the help message and exit
STA_DECL bool setup_should_exit(const setup_init_t *init)
public accessor api
void setup_default(arena_t *arena)
public api
CT_BEGIN_API CT_SETUP_API arena_t * ctu_default_alloc(void)
get the default allocator
setup_options_t setup_options(version_info_t info, cfg_group_t *root)
setup default options
STA_DECL int setup_exit_code(const setup_init_t *init)
get the exit code
#define CT_PRI_LINE
format specifier for source_line_t
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_NODISCARD CT_PUREFN CT_STD_API void * vector_get(const vector_t *vector, size_t index)
get a value from a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t vector_len(const vector_t *vector)
get the length of a vector
#define HEADING_OPTION_COUNT
system error handling callbacks
bt_error_begin_t begin
called once when a system error occurs
a backtrace report context
a choice in a set of options
STA_FIELD_STRING const char * text
the name of this choice
a choice from a set of options
information about a configuration field
STA_FIELD_STRING const char * name
the name of this field
printing options for a stacktrace
print_options_t options
basic print options
arena_t * arena
temporary arena
a formatting context when using colours
print_options_t options
generic print options
version formatting config
print_options_t options
the options to use when printing
the result of parsing the command line
const colour_pallete_t * pallete
the chosen colour pallete
heading_style_t heading
the chosen heading style
default options shared by all tools
cfg_field_t * help
print help and quit
cfg_field_t * colour
enable colour output
cfg_field_t * header
report header style
struct setup_options_t::@170 report
diagnostic reporting options
struct setup_options_t::@169 general
general options
panic location information
source_line_t line
the line the panic occurred on
STA_FIELD_STRING const char * function
the function the panic occurred in
STA_FIELD_STRING const char * file
the file the panic occurred in
a generic vector of pointers
version information for a driver/interface/plugin