Rev 187 | Rev 215 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: module.c 189 2024-09-29 00:37:00Z nishi $ */
#define SOURCE
#include "tw_module.h"
#include "tw_config.h"
#include <cm_string.h>
#include <cm_log.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
extern struct tw_config config;
#if defined(_PSP) || defined(__PPU__) || defined(__ps2sdk__)
void* tw_module_load(const char* path) { return NULL; }
void* tw_module_symbol(void* mod, const char* sym) { return NULL; }
int tw_module_init(void* mod) { return 1; }
#else
#ifdef __MINGW32__
#include <windows.h>
#else
#include <dlfcn.h>
#endif
void* tw_module_load(const char* path) {
char* p = getcwd(NULL, 0);
chdir(config.server_root);
void* lib;
#ifdef __MINGW32__
lib = LoadLibraryA(path);
#else
lib = dlopen(path, RTLD_LAZY);
#endif
if(lib == NULL) {
cm_log("Module", "Could not load %s", path);
}
chdir(p);
free(p);
return lib;
}
void* tw_module_symbol(void* mod, const char* sym) {
#ifdef __MINGW32__
return GetProcAddress(mod, sym);
#else
return dlsym(mod, sym);
#endif
}
int tw_module_init(void* mod) {
tw_mod_init_t mod_init = (tw_mod_init_t)tw_module_symbol(mod, "mod_init");
if(mod_init == NULL) {
cm_log("Module", "Could not init a module");
return 1;
} else {
struct tw_tool tools;
tw_init_tools(&tools);
return mod_init(&config, &tools);
}
}
#endif
void tw_add_version(const char* string) {
if(config.extension == NULL) {
config.extension = cm_strcat(" ", string);
} else {
char* tmp = config.extension;
config.extension = cm_strcat3(tmp, " ", string);
free(tmp);
}
}
void tw_add_define(const char* string) {
int i;
for(i = 0; config.defined[i] != NULL; i++) {
if(strcmp(config.defined[i], string) == 0) {
return;
}
}
for(i = 0; config.defined[i] != NULL; i++)
;
config.defined[i] = cm_strdup(string);
config.defined[i + 1] = NULL;
}
void tw_delete_define(const char* string) {
int i;
for(i = 0; config.defined[i] != NULL; i++) {
if(strcmp(config.defined[i], string) == 0) {
free(config.defined[i]);
for(; config.defined[i] != NULL; i++) {
config.defined[i] = config.defined[i + 1];
}
break;
}
}
}
void tw_init_tools(struct tw_tool* tools) {
tools->log = cm_log;
tools->add_version = tw_add_version;
tools->add_define = tw_add_define;
}