Prophecy is a lightweight, efficient task scheduler library for C applications. It implements a min-heap binary tree to manage task priorities, ensuring optimal resource usage and fast task lookups.
- Efficient Scheduling: Uses a min-heap to keep the next upcoming task at the top.
- One-time & Periodic Tasks: Support for both punctual and recurring tasks.
- Lightweight: Zero-dependency library, easy to integrate.
mkdir build
cd build/
cmake ..
makeThis will generate libprophecy.a and libprophecy.so. You can now install with
sudo make installHere is a simple example of how to use Prophecy:
#include "prophecy.h"
#include <stdio.h>
#include <unistd.h>
// Your task handler
static bool my_handler(void *context, void *data)
{
printf("Task executed with data: %ld\n", (long int)data);
}
int main(void)
{
// Create a scheduler with a capacity of 512 tasks
prScheduler *sch = prScheduler_create(512);
// Add a periodic task (runs in 2 ticks, then every 5 ticks)
prScheduler_addTask(sch, prTask_opt(&my_handler, (void *)1, NULL) 2, 5);
// Add a punctual task (runs once in 10 ticks)
prScheduler_addTask(sch, prTask_opt(&my_handler, (void *)3, NULL), 10, 0);
// Main loop
while (1) {
sleep(1); // Simulate time passing
prScheduler_tick(sch, NULL);
}
prScheduler_destroy(sch);
return true;
}prScheduler_create(size_t size): Allocate and initialize a new scheduler.prScheduler_destroy(prScheduler *sch): Free the scheduler and its resources.prScheduler_tick(prScheduler *sch, void *context): Advance the scheduler by one tick and execute ready tasks.
prTask_opt(prHandler handler, void *data, prClearer clearer): Build a task opt structure.prScheduler_addTask(prScheduler *sch, prTask task, prTick delay, prTick interval): Register a task in the scheduler.
This project is licensed under the MIT License - see the LICENSE file for details.