2013-05-25 00:51:02 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/c_internal.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "debug.h"
|
2014-04-29 17:47:34 +02:00
|
|
|
#include "log.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "settings.h"
|
2013-05-25 00:51:02 +02:00
|
|
|
|
|
|
|
std::string script_get_backtrace(lua_State *L)
|
|
|
|
{
|
|
|
|
std::string s;
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_getglobal(L, "debug");
|
2013-05-25 00:51:02 +02:00
|
|
|
if(lua_istable(L, -1)){
|
|
|
|
lua_getfield(L, -1, "traceback");
|
2013-11-05 18:06:15 +01:00
|
|
|
if(lua_isfunction(L, -1)) {
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_call(L, 0, 1);
|
|
|
|
if(lua_isstring(L, -1)){
|
2013-11-05 18:06:15 +01:00
|
|
|
s = lua_tostring(L, -1);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
}
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_pop(L, 1);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2013-11-05 18:06:15 +01:00
|
|
|
int script_error_handler(lua_State *L) {
|
|
|
|
lua_getglobal(L, "debug");
|
|
|
|
if (!lua_istable(L, -1)) {
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
lua_getfield(L, -1, "traceback");
|
|
|
|
if (!lua_isfunction(L, -1)) {
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
lua_pushvalue(L, 1);
|
|
|
|
lua_pushinteger(L, 2);
|
|
|
|
lua_call(L, 2, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-18 22:35:55 +01:00
|
|
|
int script_exception_wrapper(lua_State *L, lua_CFunction f)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
return f(L); // Call wrapped function and return result.
|
|
|
|
} catch (const char *s) { // Catch and convert exceptions.
|
|
|
|
lua_pushstring(L, s);
|
|
|
|
} catch (LuaError& e) {
|
|
|
|
lua_pushstring(L, e.what());
|
|
|
|
}
|
|
|
|
return lua_error(L); // Rethrow as a Lua error.
|
|
|
|
}
|
|
|
|
|
2013-11-05 18:06:15 +01:00
|
|
|
void script_error(lua_State *L)
|
2013-05-25 00:51:02 +02:00
|
|
|
{
|
2013-11-21 06:49:32 +01:00
|
|
|
const char *s = lua_tostring(L, -1);
|
|
|
|
std::string str(s ? s : "");
|
2014-03-15 21:28:59 +01:00
|
|
|
throw LuaError(str);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// Push the list of callbacks (a lua table).
|
|
|
|
// Then push nargs arguments.
|
|
|
|
// Then call this function, which
|
|
|
|
// - runs the callbacks
|
2013-12-08 04:03:07 +01:00
|
|
|
// - replaces the table and arguments with the return value,
|
|
|
|
// computed depending on mode
|
2013-08-11 04:09:45 +02:00
|
|
|
void script_run_callbacks(lua_State *L, int nargs, RunCallbacksMode mode)
|
|
|
|
{
|
|
|
|
assert(lua_gettop(L) >= nargs + 1);
|
2013-11-05 18:06:15 +01:00
|
|
|
|
2013-12-08 04:03:07 +01:00
|
|
|
// Insert error handler
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_pushcfunction(L, script_error_handler);
|
2013-12-08 04:03:07 +01:00
|
|
|
int errorhandler = lua_gettop(L) - nargs - 1;
|
2013-11-05 18:06:15 +01:00
|
|
|
lua_insert(L, errorhandler);
|
|
|
|
|
2013-12-08 04:03:07 +01:00
|
|
|
// Insert minetest.run_callbacks between error handler and table
|
|
|
|
lua_getglobal(L, "minetest");
|
|
|
|
lua_getfield(L, -1, "run_callbacks");
|
|
|
|
lua_remove(L, -2);
|
|
|
|
lua_insert(L, errorhandler + 1);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2013-12-08 04:03:07 +01:00
|
|
|
// Insert mode after table
|
|
|
|
lua_pushnumber(L, (int) mode);
|
|
|
|
lua_insert(L, errorhandler + 3);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2013-12-08 04:03:07 +01:00
|
|
|
// Stack now looks like this:
|
|
|
|
// ... <error handler> <run_callbacks> <table> <mode> <arg#1> <arg#2> ... <arg#n>
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2013-12-08 04:03:07 +01:00
|
|
|
if (lua_pcall(L, nargs + 2, 1, errorhandler)) {
|
|
|
|
script_error(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 04:03:07 +01:00
|
|
|
|
|
|
|
lua_remove(L, -2); // Remove error handler
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2014-04-29 17:47:34 +02:00
|
|
|
void log_deprecated(lua_State *L, std::string message)
|
|
|
|
{
|
|
|
|
static bool configured = false;
|
|
|
|
static bool dolog = false;
|
|
|
|
static bool doerror = false;
|
|
|
|
|
|
|
|
// performance optimization to not have to read and compare setting for every logline
|
|
|
|
if (!configured) {
|
|
|
|
std::string value = g_settings->get("deprecated_lua_api_handling");
|
|
|
|
if (value == "log") {
|
|
|
|
dolog = true;
|
|
|
|
}
|
|
|
|
if (value == "error") {
|
|
|
|
dolog = true;
|
|
|
|
doerror = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doerror) {
|
|
|
|
if (L != NULL) {
|
|
|
|
script_error(L);
|
|
|
|
} else {
|
|
|
|
/* As of april 2014 assert is not optimized to nop in release builds
|
|
|
|
* therefore this is correct. */
|
|
|
|
assert("Can't do a scripterror for this deprecated message, so exit completely!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dolog) {
|
|
|
|
/* abusing actionstream because of lack of file-only-logged loglevel */
|
|
|
|
actionstream << message << std::endl;
|
|
|
|
if (L != NULL) {
|
|
|
|
actionstream << script_get_backtrace(L) << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-25 00:51:02 +02:00
|
|
|
|