nappgui-sys 0.2.0

Rust raw bindings to NAppGUI
Documentation
/*
 * NAppGUI Cross-platform C SDK
 * 2015-2025 Francisco Garcia Collado
 * MIT Licence
 * https://nappgui.com/en/legal/license.html
 *
 * File: sewer.c
 *
 */

/* Sewer library */

#include "sewer.h"
#include "sewer.inl"
#include "cassert.h"
#include "bmath.inl"
#include "bmem.h"
#include "bmem.inl"
#include "bstd.h"
#include "nowarn.hxx"
#include <stdlib.h>
#include "warn.hxx"

typedef struct _exit_node_t ExitNode;

struct _exit_node_t
{
    void (*func_exit)(void);
    ExitNode *next_node;
};

static ExitNode *i_ATEXIT = NULL;
static uint32_t i_NUM_USERS = 0;
static char_t i_VERSION[64];

/*---------------------------------------------------------------------------*/

static void i_atexit(void)
{
    ExitNode *node = i_ATEXIT;
    while (node != NULL)
    {
        ExitNode *next = node->next_node;
        node->func_exit();
        bmem_free(cast(node, byte_t));
        node = next;
    }

    _bmem_atexit();
}

/*---------------------------------------------------------------------------*/

static void i_sewer_atexit(void)
{
    cassert(i_NUM_USERS == 0);
}

/*---------------------------------------------------------------------------*/

void sewer_start(void)
{
    if (i_NUM_USERS == 0)
    {
        _bmem_start();
        cassert(i_ATEXIT == NULL);
        i_ATEXIT = cast(bmem_malloc(sizeof(ExitNode)), ExitNode);
        i_ATEXIT->func_exit = i_sewer_atexit;
        i_ATEXIT->next_node = NULL;
        atexit(i_atexit);
    }

    i_NUM_USERS += 1;
}

/*---------------------------------------------------------------------------*/

void sewer_finish(void)
{
    cassert(i_NUM_USERS > 0);
    if (i_NUM_USERS == 1)
    {
        _bmath_finish();
        _bmem_finish();
        i_NUM_USERS = 0;
    }
    else
    {
        i_NUM_USERS -= 1;
    }
}

/*---------------------------------------------------------------------------*/

uint32_t sewer_nappgui_major(void)
{
#if defined(NAPPGUI_MAJOR)
    return NAPPGUI_MAJOR;
#else
    return 0;
#endif
}

/*---------------------------------------------------------------------------*/

uint32_t sewer_nappgui_minor(void)
{
#if defined(NAPPGUI_MINOR)
    return NAPPGUI_MINOR;
#else
    return 0;
#endif
}

/*---------------------------------------------------------------------------*/

uint32_t sewer_nappgui_patch(void)
{
#if defined(NAPPGUI_PATCH)
    return NAPPGUI_PATCH;
#else
    return 0;
#endif
}

/*---------------------------------------------------------------------------*/

uint32_t sewer_nappgui_build(void)
{
#if defined(NAPPGUI_BUILD)
    return NAPPGUI_BUILD;
#else
    return 0;
#endif
}

/*---------------------------------------------------------------------------*/

const char_t *sewer_nappgui_version(const bool_t full)
{
    uint32_t major = sewer_nappgui_major();
    uint32_t minor = sewer_nappgui_minor();
    uint32_t patch = sewer_nappgui_patch();
    uint32_t build = sewer_nappgui_build();
    if (major > 0)
    {
        if (build > 0 && full == TRUE)
            bstd_sprintf(i_VERSION, sizeof(i_VERSION), "%d.%d.%d.%d", major, minor, patch, build);
        else
            bstd_sprintf(i_VERSION, sizeof(i_VERSION), "%d.%d.%d", major, minor, patch);
    }
    else
    {
        bstd_sprintf(i_VERSION, sizeof(i_VERSION), "0.0.0");
    }

    return i_VERSION;
}

/*---------------------------------------------------------------------------*/

void _sewer_atexit(void (*func)(void))
{
    ExitNode *next = i_ATEXIT;
    cassert(i_ATEXIT != NULL);
    i_ATEXIT = (ExitNode *)bmem_malloc(sizeof(ExitNode));
    i_ATEXIT->func_exit = func;
    i_ATEXIT->next_node = next;
}