2014-04-15 19:41:07 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 sapier, <sapier AT gmx DOT net>
|
|
|
|
|
|
|
|
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 <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
}
|
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
#include "server.h"
|
2014-04-15 19:41:07 +02:00
|
|
|
#include "s_async.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "filesys.h"
|
|
|
|
#include "porting.h"
|
|
|
|
#include "common/c_internal.h"
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
AsyncEngine::AsyncEngine() :
|
2014-04-15 21:10:30 +02:00
|
|
|
initDone(false),
|
|
|
|
jobIdCounter(0)
|
2014-04-15 19:41:07 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
AsyncEngine::~AsyncEngine()
|
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
|
|
|
|
// Request all threads to stop
|
|
|
|
for (std::vector<AsyncWorkerThread *>::iterator it = workerThreads.begin();
|
|
|
|
it != workerThreads.end(); it++) {
|
|
|
|
(*it)->Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Wake up all threads
|
|
|
|
for (std::vector<AsyncWorkerThread *>::iterator it = workerThreads.begin();
|
|
|
|
it != workerThreads.end(); it++) {
|
|
|
|
jobQueueCounter.Post();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for threads to finish
|
|
|
|
for (std::vector<AsyncWorkerThread *>::iterator it = workerThreads.begin();
|
|
|
|
it != workerThreads.end(); it++) {
|
|
|
|
(*it)->Wait();
|
|
|
|
}
|
|
|
|
|
2014-04-15 19:41:07 +02:00
|
|
|
// Force kill all threads
|
2014-04-15 21:10:30 +02:00
|
|
|
for (std::vector<AsyncWorkerThread *>::iterator it = workerThreads.begin();
|
|
|
|
it != workerThreads.end(); it++) {
|
|
|
|
(*it)->Kill();
|
|
|
|
delete *it;
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueMutex.Lock();
|
|
|
|
jobQueue.clear();
|
|
|
|
jobQueueMutex.Unlock();
|
|
|
|
workerThreads.clear();
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
bool AsyncEngine::registerFunction(const char* name, lua_CFunction func)
|
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
if (initDone) {
|
2014-04-15 19:41:07 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-15 21:10:30 +02:00
|
|
|
functionList[name] = func;
|
2014-04-15 19:41:07 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-04-15 21:10:30 +02:00
|
|
|
void AsyncEngine::initialize(unsigned int numEngines)
|
2014-04-15 19:41:07 +02:00
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
initDone = true;
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < numEngines; i++) {
|
2014-04-15 21:10:30 +02:00
|
|
|
AsyncWorkerThread *toAdd = new AsyncWorkerThread(this, i);
|
|
|
|
workerThreads.push_back(toAdd);
|
2014-04-15 19:41:07 +02:00
|
|
|
toAdd->Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-04-15 21:10:30 +02:00
|
|
|
unsigned int AsyncEngine::queueAsyncJob(std::string func, std::string params)
|
2014-04-15 19:41:07 +02:00
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueMutex.Lock();
|
|
|
|
LuaJobInfo toAdd;
|
|
|
|
toAdd.id = jobIdCounter++;
|
|
|
|
toAdd.serializedFunction = func;
|
|
|
|
toAdd.serializedParams = params;
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueue.push_back(toAdd);
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueCounter.Post();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueMutex.Unlock();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
return toAdd.id;
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
LuaJobInfo AsyncEngine::getJob()
|
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueCounter.Wait();
|
|
|
|
jobQueueMutex.Lock();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
LuaJobInfo retval;
|
|
|
|
retval.valid = false;
|
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
if (!jobQueue.empty()) {
|
|
|
|
retval = jobQueue.front();
|
|
|
|
jobQueue.pop_front();
|
2014-04-15 19:41:07 +02:00
|
|
|
retval.valid = true;
|
|
|
|
}
|
2014-04-15 21:10:30 +02:00
|
|
|
jobQueueMutex.Unlock();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
void AsyncEngine::putJobResult(LuaJobInfo result)
|
|
|
|
{
|
2014-04-15 21:10:30 +02:00
|
|
|
resultQueueMutex.Lock();
|
|
|
|
resultQueue.push_back(result);
|
|
|
|
resultQueueMutex.Unlock();
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-04-15 21:10:30 +02:00
|
|
|
void AsyncEngine::step(lua_State *L, int errorhandler)
|
2014-04-15 19:41:07 +02:00
|
|
|
{
|
|
|
|
lua_getglobal(L, "engine");
|
2014-04-15 21:10:30 +02:00
|
|
|
resultQueueMutex.Lock();
|
|
|
|
while (!resultQueue.empty()) {
|
|
|
|
LuaJobInfo jobDone = resultQueue.front();
|
|
|
|
resultQueue.pop_front();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
lua_getfield(L, -1, "async_event_handler");
|
|
|
|
|
|
|
|
if (lua_isnil(L, -1)) {
|
|
|
|
assert("Async event handler does not exist!" == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
luaL_checktype(L, -1, LUA_TFUNCTION);
|
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
lua_pushinteger(L, jobDone.id);
|
|
|
|
lua_pushlstring(L, jobDone.serializedResult.data(),
|
|
|
|
jobDone.serializedResult.size());
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
if (lua_pcall(L, 2, 0, errorhandler)) {
|
|
|
|
script_error(L);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 21:10:30 +02:00
|
|
|
resultQueueMutex.Unlock();
|
2014-04-15 19:41:07 +02:00
|
|
|
lua_pop(L, 1); // Pop engine
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-04-15 21:10:30 +02:00
|
|
|
void AsyncEngine::pushFinishedJobs(lua_State* L) {
|
2014-04-15 19:41:07 +02:00
|
|
|
// Result Table
|
2014-04-15 21:10:30 +02:00
|
|
|
resultQueueMutex.Lock();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
unsigned int index = 1;
|
2014-04-15 21:10:30 +02:00
|
|
|
lua_createtable(L, resultQueue.size(), 0);
|
2014-04-15 19:41:07 +02:00
|
|
|
int top = lua_gettop(L);
|
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
while (!resultQueue.empty()) {
|
|
|
|
LuaJobInfo jobDone = resultQueue.front();
|
|
|
|
resultQueue.pop_front();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
lua_createtable(L, 0, 2); // Pre-allocate space for two map fields
|
2014-04-15 19:41:07 +02:00
|
|
|
int top_lvl2 = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_pushstring(L, "jobid");
|
2014-04-15 21:10:30 +02:00
|
|
|
lua_pushnumber(L, jobDone.id);
|
2014-04-15 19:41:07 +02:00
|
|
|
lua_settable(L, top_lvl2);
|
|
|
|
|
|
|
|
lua_pushstring(L, "retval");
|
2014-04-15 21:10:30 +02:00
|
|
|
lua_pushlstring(L, jobDone.serializedResult.data(),
|
|
|
|
jobDone.serializedResult.size());
|
2014-04-15 19:41:07 +02:00
|
|
|
lua_settable(L, top_lvl2);
|
|
|
|
|
|
|
|
lua_rawseti(L, top, index++);
|
|
|
|
}
|
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
resultQueueMutex.Unlock();
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-04-15 21:10:30 +02:00
|
|
|
void AsyncEngine::prepareEnvironment(lua_State* L, int top)
|
|
|
|
{
|
|
|
|
for (std::map<std::string, lua_CFunction>::iterator it = functionList.begin();
|
|
|
|
it != functionList.end(); it++) {
|
2014-04-15 19:41:07 +02:00
|
|
|
lua_pushstring(L, it->first.c_str());
|
|
|
|
lua_pushcfunction(L, it->second);
|
|
|
|
lua_settable(L, top);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
AsyncWorkerThread::AsyncWorkerThread(AsyncEngine* jobDispatcher,
|
|
|
|
unsigned int threadNum) :
|
|
|
|
ScriptApiBase(),
|
2014-04-15 21:10:30 +02:00
|
|
|
jobDispatcher(jobDispatcher),
|
|
|
|
threadnum(threadNum)
|
2014-04-15 19:41:07 +02:00
|
|
|
{
|
|
|
|
lua_State *L = getStack();
|
|
|
|
|
|
|
|
luaL_openlibs(L);
|
|
|
|
|
|
|
|
// Prepare job lua environment
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_setglobal(L, "engine");
|
|
|
|
lua_getglobal(L, "engine");
|
|
|
|
int top = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_pushstring(L, DIR_DELIM);
|
|
|
|
lua_setglobal(L, "DIR_DELIM");
|
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
// Push builtin initialization type
|
|
|
|
lua_pushstring(L, "async");
|
|
|
|
lua_setglobal(L, "INIT");
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-15 21:10:30 +02:00
|
|
|
jobDispatcher->prepareEnvironment(L, top);
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
AsyncWorkerThread::~AsyncWorkerThread()
|
|
|
|
{
|
|
|
|
assert(IsRunning() == false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
void* AsyncWorkerThread::Thread()
|
|
|
|
{
|
|
|
|
ThreadStarted();
|
|
|
|
|
|
|
|
// Register thread for error logging
|
|
|
|
char number[21];
|
2014-04-15 21:10:30 +02:00
|
|
|
snprintf(number, sizeof(number), "%d", threadnum);
|
2014-04-15 19:41:07 +02:00
|
|
|
log_register_thread(std::string("AsyncWorkerThread_") + number);
|
|
|
|
|
|
|
|
porting::setThreadName((std::string("AsyncWorkTh_") + number).c_str());
|
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
lua_State *L = getStack();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
std::string script = getServer()->getBuiltinLuaPath() + DIR_DELIM + "init.lua";
|
|
|
|
if (!loadScript(script)) {
|
2014-04-15 19:41:07 +02:00
|
|
|
errorstream
|
|
|
|
<< "AsyncWorkderThread execution of async base environment failed!"
|
|
|
|
<< std::endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Main loop
|
|
|
|
while (!StopRequested()) {
|
|
|
|
// Wait for job
|
2014-04-15 21:10:30 +02:00
|
|
|
LuaJobInfo toProcess = jobDispatcher->getJob();
|
2014-04-15 19:41:07 +02:00
|
|
|
|
|
|
|
if (toProcess.valid == false || StopRequested()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_getglobal(L, "engine");
|
|
|
|
if (lua_isnil(L, -1)) {
|
|
|
|
errorstream << "Unable to find engine within async environment!";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_getfield(L, -1, "job_processor");
|
|
|
|
if (lua_isnil(L, -1)) {
|
|
|
|
errorstream << "Unable to get async job processor!" << std::endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
luaL_checktype(L, -1, LUA_TFUNCTION);
|
|
|
|
|
|
|
|
// Call it
|
|
|
|
lua_pushlstring(L,
|
|
|
|
toProcess.serializedFunction.data(),
|
|
|
|
toProcess.serializedFunction.size());
|
|
|
|
lua_pushlstring(L,
|
|
|
|
toProcess.serializedParams.data(),
|
|
|
|
toProcess.serializedParams.size());
|
|
|
|
|
|
|
|
if (lua_pcall(L, 2, 1, m_errorhandler)) {
|
|
|
|
scriptError();
|
|
|
|
toProcess.serializedResult = "";
|
|
|
|
} else {
|
|
|
|
// Fetch result
|
|
|
|
size_t length;
|
|
|
|
const char *retval = lua_tolstring(L, -1, &length);
|
|
|
|
toProcess.serializedResult = std::string(retval, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pop engine, job_processor, and retval
|
|
|
|
lua_pop(L, 3);
|
|
|
|
|
|
|
|
// Put job result
|
2014-04-15 21:10:30 +02:00
|
|
|
jobDispatcher->putJobResult(toProcess);
|
2014-04-15 19:41:07 +02:00
|
|
|
}
|
|
|
|
log_deregister_thread();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|