2
0
Fork 0
lighttpd2/include/lighttpd/module.h

70 lines
2.5 KiB
C
Raw Normal View History

#ifndef _LIGHTTPD_MODULE_H_
#define _LIGHTTPD_MODULE_H_
#include <lighttpd/settings.h>
#define MODULE_VERSION ((guint) 0x00000001)
#define MODULE_VERSION_CHECK(mods) do { \
if (mods->version != MODULE_VERSION) { \
ERROR(mods->main, "Version mismatch for modules system: is %u, expected %u", mods->version, MODULE_VERSION); \
return FALSE; \
} \
if (mods->sizeof_off_t != (guint8)sizeof(off_t)) { \
ERROR(mods->main, "Compile flags mismatch: sizeof(off_t) is %u, expected %u", (guint) sizeof(off_t), mods->sizeof_off_t); \
return FALSE; \
} \
} while(0)
/** see module_load */
#define MODULE_DEPENDS(mods, name) do { \
2008-10-22 14:54:44 +00:00
if (!module_load(mods, name)) { \
ERROR(mods->main, "Couldn't load dependency '%s'", name); \
return FALSE; \
} } while(0)
typedef struct liModule liModule;
typedef struct liModules liModules;
/** Type of plugin_init function in modules */
typedef gboolean (*liModuleInitCB)(liModules *mods, liModule *mod);
typedef gboolean (*liModuleFreeCB)(liModules *mods, liModule *mod);
struct liModule {
gint refcount; /**< count how often module is used. module gets unloaded if refcount reaches zero. */
2008-10-22 14:54:44 +00:00
GString *name; /**< name of module, can be set my plugin_init */
GModule *module; /**< glib handle */
2008-10-22 14:54:44 +00:00
gchar *path; /**< path to the module file */
gpointer config; /**< private module data */
liModuleFreeCB free; /**< if set by plugin_init it gets called before module is unloaded */
};
struct liModules {
guint version; /**< api version */
2008-10-22 14:54:44 +00:00
gpointer main; /**< pointer to a application specific main structure, e.g. server */
GArray *mods; /**< array of (module*) */
gchar *module_dir;
guint8 sizeof_off_t; /** holds the value of sizeof(off_t) to check if loaded module was compiled with the same flags */
};
LI_API liModules* modules_new(gpointer main, const gchar *module_dir);
LI_API void modules_free(liModules *mods);
/** Loads a module if not loaded yet and returns the module struct for it (after increasing refcount)
* returns NULL if it couldn't load the module.
*
* You should release modules after you used them with module_release or module_release_name */
LI_API liModule* module_load(liModules *mods, const gchar* name);
2008-12-26 22:53:52 +00:00
/* find module by name */
LI_API liModule *module_lookup(liModules *mods, const gchar *name);
2008-12-26 22:53:52 +00:00
LI_API void module_acquire(liModule *mod);
LI_API void module_release(liModules *mods, liModule *mod);
LI_API void module_release_name(liModules *mods, const gchar* name);
#endif