2013-12-25 21:40:33 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-12-26 03:26:17 -08:00
|
|
|
#include "../util/darray.h"
|
2013-12-25 21:40:33 -08:00
|
|
|
|
2014-03-01 04:54:55 -08:00
|
|
|
#include "decl.h"
|
2013-12-26 03:26:17 -08:00
|
|
|
#include "proc.h"
|
|
|
|
|
|
|
|
struct proc_info {
|
2014-03-01 04:54:55 -08:00
|
|
|
struct decl_info func;
|
|
|
|
void *data;
|
|
|
|
proc_handler_proc_t callback;
|
2013-12-26 03:26:17 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline void proc_info_free(struct proc_info *pi)
|
|
|
|
{
|
2014-03-01 04:54:55 -08:00
|
|
|
decl_info_free(&pi->func);
|
2013-12-26 03:26:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct proc_handler {
|
|
|
|
/* TODO: replace with hash table lookup? */
|
|
|
|
DARRAY(struct proc_info) procs;
|
|
|
|
};
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
proc_handler_t *proc_handler_create(void)
|
2013-12-26 03:26:17 -08:00
|
|
|
{
|
|
|
|
struct proc_handler *handler = bmalloc(sizeof(struct proc_handler));
|
|
|
|
da_init(handler->procs);
|
|
|
|
return handler;
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void proc_handler_destroy(proc_handler_t *handler)
|
2013-12-26 03:26:17 -08:00
|
|
|
{
|
|
|
|
if (handler) {
|
|
|
|
for (size_t i = 0; i < handler->procs.num; i++)
|
|
|
|
proc_info_free(handler->procs.array+i);
|
|
|
|
da_free(handler->procs);
|
|
|
|
bfree(handler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
void proc_handler_add(proc_handler_t *handler, const char *decl_string,
|
2014-01-02 17:58:17 -08:00
|
|
|
proc_handler_proc_t proc, void *data)
|
2013-12-26 03:26:17 -08:00
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!handler) return;
|
|
|
|
|
2014-03-01 04:54:55 -08:00
|
|
|
struct proc_info pi;
|
|
|
|
memset(&pi, 0, sizeof(struct proc_info));
|
|
|
|
|
|
|
|
if (!parse_decl_string(&pi.func, decl_string)) {
|
2014-03-02 05:32:47 -08:00
|
|
|
blog(LOG_ERROR, "Function declaration invalid: %s",
|
2014-03-01 04:54:55 -08:00
|
|
|
decl_string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pi.callback = proc;
|
|
|
|
pi.data = data;
|
|
|
|
|
2013-12-26 03:26:17 -08:00
|
|
|
da_push_back(handler->procs, &pi);
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:44:05 -07:00
|
|
|
bool proc_handler_call(proc_handler_t *handler, const char *name,
|
|
|
|
calldata_t *params)
|
2013-12-26 03:26:17 -08:00
|
|
|
{
|
2014-02-23 21:39:33 -08:00
|
|
|
if (!handler) return false;
|
|
|
|
|
2013-12-26 03:26:17 -08:00
|
|
|
for (size_t i = 0; i < handler->procs.num; i++) {
|
|
|
|
struct proc_info *info = handler->procs.array+i;
|
|
|
|
|
2014-03-01 04:54:55 -08:00
|
|
|
if (strcmp(info->func.name, name) == 0) {
|
|
|
|
info->callback(info->data, params);
|
2013-12-26 03:26:17 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|