2004-06-11 17:18:40 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
#include <stdio.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <assert.h>
|
2004-06-10 23:22:16 +00:00
|
|
|
#include <string.h>
|
2004-06-11 21:30:16 +00:00
|
|
|
#include <errno.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
|
|
|
|
|
|
struct module* module_load(struct core *c, const char *name, const char *argument) {
|
|
|
|
|
struct module *m = NULL;
|
2004-06-10 23:22:16 +00:00
|
|
|
int r;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
assert(c && name);
|
|
|
|
|
|
|
|
|
|
m = malloc(sizeof(struct module));
|
|
|
|
|
assert(m);
|
|
|
|
|
|
|
|
|
|
if (!(m->dl = lt_dlopenext(name)))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (!(m->init = lt_dlsym(m->dl, "module_init")))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (!(m->done = lt_dlsym(m->dl, "module_done")))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
m->name = strdup(name);
|
|
|
|
|
m->argument = argument ? strdup(argument) : NULL;
|
|
|
|
|
m->userdata = NULL;
|
2004-06-10 23:22:16 +00:00
|
|
|
m->core = c;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
assert(m->init);
|
|
|
|
|
if (m->init(c, m) < 0)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (!c->modules)
|
|
|
|
|
c->modules = idxset_new(NULL, NULL);
|
|
|
|
|
|
|
|
|
|
assert(c->modules);
|
|
|
|
|
r = idxset_put(c->modules, m, &m->index);
|
|
|
|
|
assert(r >= 0 && m->index != IDXSET_INVALID);
|
|
|
|
|
return m;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
if (m) {
|
2004-06-11 21:30:16 +00:00
|
|
|
free(m->argument);
|
|
|
|
|
free(m->name);
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
if (m->dl)
|
|
|
|
|
lt_dlclose(m->dl);
|
|
|
|
|
|
|
|
|
|
free(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void module_free(struct module *m) {
|
2004-06-10 23:22:16 +00:00
|
|
|
assert(m && m->done && m->core);
|
|
|
|
|
m->done(m->core, m);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-10 23:22:16 +00:00
|
|
|
lt_dlclose(m->dl);
|
2004-06-08 23:54:24 +00:00
|
|
|
free(m->name);
|
|
|
|
|
free(m->argument);
|
|
|
|
|
free(m);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-11 17:18:40 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
void module_unload(struct core *c, struct module *m) {
|
2004-06-10 23:22:16 +00:00
|
|
|
assert(c && m);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
assert(c->modules);
|
|
|
|
|
if (!(m = idxset_remove_by_data(c->modules, m, NULL)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
module_free(m);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-10 23:22:16 +00:00
|
|
|
void module_unload_by_index(struct core *c, uint32_t index) {
|
2004-06-08 23:54:24 +00:00
|
|
|
struct module *m;
|
|
|
|
|
assert(c && index != IDXSET_INVALID);
|
|
|
|
|
|
|
|
|
|
assert(c->modules);
|
|
|
|
|
if (!(m = idxset_remove_by_index(c->modules, index)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
module_free(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void free_callback(void *p, void *userdata) {
|
|
|
|
|
struct module *m = p;
|
|
|
|
|
assert(m);
|
|
|
|
|
module_free(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void module_unload_all(struct core *c) {
|
|
|
|
|
assert(c);
|
|
|
|
|
|
|
|
|
|
if (!c->modules)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
idxset_free(c->modules, free_callback, NULL);
|
|
|
|
|
c->modules = NULL;
|
|
|
|
|
}
|
|
|
|
|
|