This module contains the "core" (API) of bemanitools which includes an abstraction layer for threads and logging at this time. The threads API is very close to what util/thread already was with some structural enhancements which make it easier to understand and work with the API, I hope. Some additional helpers (*-ext module) support in doing common tasks, e.g. setting up the thread API with other modules. The log(ging) part receives a major overhaul to address known limitations and issues with the util/log module: - Cleaner API layer - Separate sinks from actual logging engine - Sinks are composable - Improved and cleaner compatibility layer with AVS logging API Additional "extensions" (*-ext modules) add various helper functions for common tasks like setting up the logging engine with a file and stdout sink. The sinks also improved significantly with the file sink now supporting proper appending and log rotation. Logging to stdout/stderr supports coloring of log messages which works across logging engines. Overall, this refactored foundation is expected to support future developments and removes known limitations at the current scale of bemanitools such as: - Reducing boiler plate code across hooks - Interop of bemanitools and AVS (and setting the foundation for addressing currently missing interop, e.g. for dealing with property structures without AVS) - Addressing performance issues in the logging engine due to incorrect interop with AVS
79 lines
1.7 KiB
C
79 lines
1.7 KiB
C
#include <stdlib.h>
|
|
|
|
#include "core/log.h"
|
|
#include "core/thread.h"
|
|
|
|
core_thread_create_t core_thread_create_impl;
|
|
core_thread_join_t core_thread_join_impl;
|
|
core_thread_destroy_t core_thread_destroy_impl;
|
|
|
|
int core_thread_create(
|
|
int (*proc)(void *), void *ctx, uint32_t stack_sz, unsigned int priority)
|
|
{
|
|
log_assert(core_thread_create_impl);
|
|
|
|
return core_thread_create_impl(proc, ctx, stack_sz, priority);
|
|
}
|
|
|
|
void core_thread_join(int thread_id, int *result)
|
|
{
|
|
log_assert(core_thread_join_impl);
|
|
|
|
core_thread_join_impl(thread_id, result);
|
|
}
|
|
|
|
void core_thread_destroy(int thread_id)
|
|
{
|
|
log_assert(core_thread_destroy_impl);
|
|
|
|
core_thread_destroy_impl(thread_id);
|
|
}
|
|
|
|
void core_thread_impl_set(
|
|
core_thread_create_t create,
|
|
core_thread_join_t join,
|
|
core_thread_destroy_t destroy)
|
|
{
|
|
if (create == NULL || join == NULL || destroy == NULL) {
|
|
abort();
|
|
}
|
|
|
|
core_thread_create_impl = create;
|
|
core_thread_join_impl = join;
|
|
core_thread_destroy_impl = destroy;
|
|
}
|
|
|
|
void core_thread_impl_assign(core_thread_impl_set_t impl_set)
|
|
{
|
|
if (core_thread_create_impl == NULL || core_thread_join_impl == NULL ||
|
|
core_thread_destroy_impl == NULL) {
|
|
abort();
|
|
}
|
|
|
|
impl_set(
|
|
core_thread_create_impl,
|
|
core_thread_join_impl,
|
|
core_thread_destroy_impl);
|
|
}
|
|
|
|
core_thread_create_t core_thread_create_impl_get()
|
|
{
|
|
log_assert(core_thread_create_impl);
|
|
|
|
return core_thread_create_impl;
|
|
}
|
|
|
|
core_thread_join_t core_thread_join_impl_get()
|
|
{
|
|
log_assert(core_thread_join_impl);
|
|
|
|
return core_thread_join_impl;
|
|
}
|
|
|
|
core_thread_destroy_t core_thread_destroy_impl_get()
|
|
{
|
|
log_assert(core_thread_destroy_impl);
|
|
|
|
return core_thread_destroy_impl;
|
|
}
|