2019-05-15 21:40:06 -05:00
|
|
|
// 15 may 2019
|
|
|
|
#include <stdlib.h>
|
2019-05-16 22:02:03 -05:00
|
|
|
#include <string.h>
|
2019-05-15 21:40:06 -05:00
|
|
|
#include "ui.h"
|
|
|
|
#include "uipriv.h"
|
|
|
|
|
|
|
|
struct handler {
|
|
|
|
int id;
|
2019-05-16 22:02:03 -05:00
|
|
|
uiEventHandler f;
|
2019-05-15 21:40:06 -05:00
|
|
|
void *sender;
|
|
|
|
void *data;
|
|
|
|
bool blocked;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int handlerCmp(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct handler *ha = (const struct handler *) a;
|
|
|
|
const struct handler *hb = (const struct handler *) b;
|
|
|
|
|
|
|
|
// This could be ha->id - hb->id, but let's do it the explicit way to avoid integer overflow/underflow.
|
|
|
|
if (ha->id < hb->id)
|
|
|
|
return -1;
|
|
|
|
if (ha->id > hb->id)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handlerSort(struct handler *handlers, size_t len)
|
|
|
|
{
|
|
|
|
qsort(handlers, len, sizeof (struct handler), handlerCmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct uiEvent {
|
|
|
|
uiEventOptions opts;
|
|
|
|
struct handler *handlers;
|
|
|
|
size_t len;
|
|
|
|
size_t cap;
|
|
|
|
bool firing;
|
|
|
|
};
|
|
|
|
|
2019-05-16 11:27:04 -05:00
|
|
|
uiEvent *uiNewEvent(const uiEventOptions *options)
|
2019-05-15 21:40:06 -05:00
|
|
|
{
|
2019-05-16 22:02:03 -05:00
|
|
|
uiEvent *e;
|
|
|
|
|
2019-05-16 11:27:04 -05:00
|
|
|
if (options == NULL) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorNullPointer, "uiEventOptions", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-05-16 22:02:03 -05:00
|
|
|
if (options->Size != sizeof (uiEventOptions)) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorWrongStructSize, options->Size, "uiEventOptions");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
e = (uiEvent *) uiprivAlloc(sizeof (uiEvent), "uiEvent");
|
|
|
|
e->opts = *options;
|
|
|
|
return e;
|
2019-05-15 21:40:06 -05:00
|
|
|
}
|
|
|
|
|
2019-05-16 22:34:33 -05:00
|
|
|
#define checkEventNonnull(e, ret) if ((e) == NULL) { \
|
2019-05-15 22:11:21 -05:00
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorNullPointer, "uiEvent", __func__); \
|
2019-05-16 22:34:33 -05:00
|
|
|
return ret; \
|
2019-05-15 22:11:21 -05:00
|
|
|
}
|
2019-05-16 22:34:33 -05:00
|
|
|
#define checkEventNotFiring(e, ret) if ((e)->firing) { \
|
2019-05-15 22:11:21 -05:00
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorChangingEventDuringFire, __func__); \
|
2019-05-16 22:34:33 -05:00
|
|
|
return ret; \
|
2019-05-15 22:11:21 -05:00
|
|
|
}
|
|
|
|
|
2019-05-16 11:27:04 -05:00
|
|
|
static bool checkEventSender(const uiEvent *e, void *sender, const char *func)
|
|
|
|
{
|
|
|
|
if (e->opts.Global && sender != NULL) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorBadSenderForEvent, "non-NULL", "global", func);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!e->opts.Global && sender == NULL) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorBadSenderForEvent, "NULL", "non-global", func);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-05-15 21:40:06 -05:00
|
|
|
int uiEventAddHandler(uiEvent *e, uiEventHandler handler, void *sender, void *data)
|
|
|
|
{
|
2019-05-15 22:11:21 -05:00
|
|
|
checkEventNonnull(e, 0);
|
|
|
|
checkEventNotFiring(e, 0);
|
2019-05-16 11:27:04 -05:00
|
|
|
if (handler == NULL) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorNullPointer, "uiEventHandler", __func__);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!checkEventSender(e, sender, __func__))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct handler *findHandler(const uiEvent *e, int id, const char *func)
|
|
|
|
{
|
|
|
|
struct handler key;
|
|
|
|
struct handler *ret;
|
|
|
|
|
|
|
|
if (e->len == 0)
|
|
|
|
goto notFound;
|
|
|
|
memset(&key, 0, sizeof (struct handler));
|
|
|
|
key.id = id;
|
|
|
|
ret = (struct handler *) bsearch(&key, e->handlers, e->len, sizeof (struct handler), handlerCmp);
|
|
|
|
if (ret != NULL)
|
|
|
|
return ret;
|
|
|
|
// otherwise fall through
|
|
|
|
notFound:
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorIntIDNotFound, "uiEvent handler", id, func);
|
|
|
|
return NULL;
|
2019-05-15 21:40:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiEventDeleteHandler(uiEvent *e, int id)
|
|
|
|
{
|
|
|
|
struct handler *h;
|
|
|
|
|
2019-05-16 22:34:33 -05:00
|
|
|
checkEventNonnull(e, /* nothing */);
|
|
|
|
checkEventNotFiring(e, /* nothing */);
|
2019-05-16 11:27:04 -05:00
|
|
|
h = findHandler(e, id, __func__);
|
2019-05-15 21:40:06 -05:00
|
|
|
if (h == NULL)
|
2019-05-16 11:27:04 -05:00
|
|
|
return;
|
2019-05-15 21:40:06 -05:00
|
|
|
e->len--;
|
|
|
|
memmove(h + 1, h, (e->len - (h - e->handlers)) * sizeof (struct handler));
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiEventFire(uiEvent *e, void *sender, void *args)
|
|
|
|
{
|
|
|
|
struct handler *h;
|
|
|
|
size_t i;
|
|
|
|
|
2019-05-16 22:34:33 -05:00
|
|
|
checkEventNonnull(e, /* nothing */);
|
2019-05-15 22:11:21 -05:00
|
|
|
if (e->firing) {
|
|
|
|
uiprivProgrammerError(uiprivProgrammerErrorRecursiveEventFire);
|
|
|
|
return;
|
|
|
|
}
|
2019-05-16 11:27:04 -05:00
|
|
|
if (!checkEventSender(e, sender, __func__))
|
|
|
|
return;
|
|
|
|
|
2019-05-15 21:40:06 -05:00
|
|
|
e->firing = true;
|
|
|
|
h = e->handlers;
|
|
|
|
for (i = 0; i < e->len; i++) {
|
|
|
|
if (h->sender == sender && !h->blocked)
|
|
|
|
(*(h->f))(sender, args, h->data);
|
|
|
|
h++;
|
|
|
|
}
|
|
|
|
e->firing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool uiEventHandlerBlocked(const uiEvent *e, int id)
|
|
|
|
{
|
2019-05-16 11:27:04 -05:00
|
|
|
struct handler *h;
|
|
|
|
|
2019-05-15 22:11:21 -05:00
|
|
|
checkEventNonnull(e, false);
|
2019-05-16 11:27:04 -05:00
|
|
|
h = findHandler(e, id, __func__);
|
|
|
|
if (h == NULL)
|
|
|
|
return false;
|
|
|
|
return h->blocked;
|
2019-05-15 21:40:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiEventSetHandlerBlocked(uiEvent *e, int id, bool blocked)
|
|
|
|
{
|
2019-05-16 11:27:04 -05:00
|
|
|
struct handler *h;
|
|
|
|
|
2019-05-16 22:34:33 -05:00
|
|
|
checkEventNonnull(e, /* nothing */);
|
|
|
|
checkEventNotFiring(e, /* nothing */);
|
2019-05-16 11:27:04 -05:00
|
|
|
h = findHandler(e, id, __func__);
|
|
|
|
if (h == NULL)
|
|
|
|
return;
|
|
|
|
h->blocked = blocked;
|
2019-05-15 21:40:06 -05:00
|
|
|
}
|