⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbmethodmodule.c

📁 bonddb 是一个源于PostgreSQL封装包的对象。它是一个由C/C++编写的快速数据提取层应用软件
💻 C
字号:
#include <glib.h>#include <gmodule.h>#include "dbgather.h"#include "dbmethod.h"#include "dbmethodmodule.h"static GModule *widgetMethodModule;gbooleandb_method_module_init (const gchar *pluginPath, const gchar *pluginName) {	gchar * moduleFileName;		moduleFileName = g_module_build_path (pluginPath, pluginName);	printf ("Module filename: %s\n", moduleFileName);	widgetMethodModule = g_module_open (moduleFileName, G_MODULE_BIND_LAZY);		if (!widgetMethodModule) {	printf ("Loading Failed!!!\n\n\n");		return FALSE;	}	g_free (moduleFileName);	return TRUE;}gbooleandb_method_module_cleanup (){	return g_module_close (widgetMethodModule);}gchar *db_method_module_get_module_name (){	return g_module_name (widgetMethodModule);}/** * * @obj: Hmm I still don't know * @method: This method to be executed. This must be somehow related to *           the obj * @retval: Some value processed by a user callback. Note that it is * the user's responsibility to cast the returned value properly. * * Returns: TRUE if successful. Otherwise FALSE */gbooleandb_method_module_execute (						Object *obj,						gchar *funcname,						GList *arglist,						gpointer * retval){	gboolean res;	gpointer (*callbackFunc) (Object *, GList *);		g_assert (funcname);	/*g_assert (arglist);*/		*retval = NULL;	res = g_module_symbol (		widgetMethodModule,		funcname,		&callbackFunc);		if (!res) {		printf ("Failed to find function: %s\n", funcname);		return FALSE;	}		/* Now let's call ! */	*retval = callbackFunc(obj, arglist);		return TRUE;}/** * Just a nice high-level function. * @callbackname */DbMethodDef *db_method_module_find(gchar * callbackname){	DbDatabaseDef * db;		db = db_get_current_database ();		g_assert (db);		return db_method_find (db->methods, callbackname);}/** * Return all the methods of the current database */GList *db_method_module_get_all_methods(){	DbDatabaseDef * db;		db = db_get_current_database ();		g_assert (db);		return db->methods;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -