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

📄 hooks.c

📁 一个很有名的浏览器
💻 C
字号:
/* Lua scripting hooks *//* $Id: hooks.c,v 1.57.6.1 2005/01/29 01:02:32 jonas Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "elinks.h"#include "protocol/uri.h"#include "sched/event.h"#include "sched/session.h"#include "scripting/lua/core.h"#include "scripting/lua/hooks.h"#include "scripting/scripting.h"#include "util/string.h"/* The events that will trigger the functions below and what they are expected * to do is explained in doc/events.txt */static enum evhook_statusscript_hook_goto_url(va_list ap, void *data){	lua_State *L = lua_state;	unsigned char **url = va_arg(ap, unsigned char **);	struct session *ses = va_arg(ap, struct session *);	int err;	if (*url == NULL) return EVENT_HOOK_STATUS_NEXT;	lua_getglobal(L, "goto_url_hook");	if (lua_isnil(L, -1)) {		/* The function is not defined */		lua_pop(L, 1);		return EVENT_HOOK_STATUS_NEXT;	}	lua_pushstring(L, *url);	if (!ses || !have_location(ses)) {		lua_pushnil(L);	} else {		lua_pushstring(L, struri(cur_loc(ses)->vs.uri));	}	if (prepare_lua(ses)) return EVENT_HOOK_STATUS_NEXT;	err = lua_call(L, 2, 1);	finish_lua();	if (err) return EVENT_HOOK_STATUS_NEXT;	if (lua_isstring(L, -1)) {		unsigned char *new_url;		new_url = stracpy((unsigned char *) lua_tostring(L, -1));		if (new_url) {			mem_free(*url);			*url = new_url;		}	} else if (lua_isnil(L, -1)) {		(*url)[0] = 0;	} else {		alert_lua_error("goto_url_hook must return a string or nil");	}	lua_pop(L, 1);	return EVENT_HOOK_STATUS_NEXT;}static enum evhook_statusscript_hook_follow_url(va_list ap, void *data){	lua_State *L = lua_state;	unsigned char **url = va_arg(ap, unsigned char **);	struct session *ses = va_arg(ap, struct session *);	int err;	if (*url == NULL) return EVENT_HOOK_STATUS_NEXT;	lua_getglobal(L, "follow_url_hook");	if (lua_isnil(L, -1)) {		/* The function is not defined */		lua_pop(L, 1);		return EVENT_HOOK_STATUS_NEXT;	}	lua_pushstring(L, *url);	if (prepare_lua(ses)) return EVENT_HOOK_STATUS_NEXT;	err = lua_call(L, 1, 1);	finish_lua();	if (err) return EVENT_HOOK_STATUS_NEXT;	if (lua_isstring(L, -1)) {		unsigned char *new_url;		new_url = stracpy((unsigned char *) lua_tostring(L, -1));		if (new_url) {			mem_free(*url);			*url = new_url;		}	} else if (lua_isnil(L, -1)) {		(*url)[0] = 0;	} else {		alert_lua_error("follow_url_hook must return a string or nil");	}	lua_pop(L, 1);	return EVENT_HOOK_STATUS_NEXT;}static enum evhook_statusscript_hook_pre_format_html(va_list ap, void *data){	lua_State *L = lua_state;	unsigned char **html = va_arg(ap, unsigned char **);	int *html_len = va_arg(ap, int *);	struct session *ses = va_arg(ap, struct session *);	unsigned char *url = va_arg(ap, unsigned char *);	int err;	if (*html == NULL || *html_len == 0) return EVENT_HOOK_STATUS_NEXT;	lua_getglobal(L, "pre_format_html_hook");	if (lua_isnil(L, -1)) {		/* The function is not defined */		lua_pop(L, 1);		return EVENT_HOOK_STATUS_NEXT;	}	lua_pushstring(L, url);	lua_pushlstring(L, *html, *html_len);	if (prepare_lua(ses)) return EVENT_HOOK_STATUS_NEXT;	err = lua_call(L, 2, 1);	finish_lua();	if (err) return EVENT_HOOK_STATUS_NEXT;	if (lua_isstring(L, -1)) {		*html_len = lua_strlen(L, -1);		*html = memacpy((unsigned char *) lua_tostring(L, -1), *html_len);	} else if (!lua_isnil(L, -1)) {		alert_lua_error("pre_format_html_hook must return a string or nil");	}	lua_pop(L, 1);	return EVENT_HOOK_STATUS_NEXT;}/* The Lua function can return: *  - "PROXY:PORT" to use the specified proxy *  - ""           to not use any proxy *  - nil          to use the default proxies */static enum evhook_statusscript_hook_get_proxy(va_list ap, void *data){	lua_State *L = lua_state;	unsigned char **new_proxy_url = va_arg(ap, unsigned char **);	unsigned char *url = va_arg(ap, unsigned char *);	int err;	if (!new_proxy_url || !url)		return EVENT_HOOK_STATUS_NEXT;	lua_getglobal(L, "proxy_for_hook");	if (lua_isnil(L, -1)) {		/* The function is not defined */		lua_pop(L, 1);		return EVENT_HOOK_STATUS_NEXT;	}	lua_pushstring(L, url);	if (prepare_lua(NULL)) return EVENT_HOOK_STATUS_NEXT;	err = lua_call(L, 1, 1);	finish_lua();	if (err) return EVENT_HOOK_STATUS_NEXT;	if (lua_isstring(L, -1)) {		*new_proxy_url = stracpy((unsigned char *) lua_tostring(L, -1));	} else if (lua_isnil(L, -1)) {		*new_proxy_url = NULL;	} else {		alert_lua_error("proxy_hook must return a string or nil");	}	lua_pop(L, 1);	return EVENT_HOOK_STATUS_NEXT;}static enum evhook_statusscript_hook_quit(va_list ap, void *data){	if (!prepare_lua(NULL)) {		lua_dostring(lua_state, "if quit_hook then quit_hook() end");		finish_lua();	}	return EVENT_HOOK_STATUS_NEXT;}struct event_hook_info lua_scripting_hooks[] = {	{ "goto-url", script_hook_goto_url, NULL },	{ "follow-url", script_hook_follow_url, NULL },	{ "pre-format-html", script_hook_pre_format_html, NULL },	{ "get-proxy", script_hook_get_proxy, NULL },	{ "quit", script_hook_quit, NULL },	{ "dialog-lua-console", dialog_lua_console, NULL },	{ "free-history", free_lua_console_history, NULL },	NULL_EVENT_HOOK_INFO,};

⌨️ 快捷键说明

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