2013-11-07 21:56:04 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <iostream>
|
2013-11-07 23:19:26 +00:00
|
|
|
#include <mutex>
|
|
|
|
#include <string>
|
2013-11-08 18:56:29 +00:00
|
|
|
#include <lua.hpp>
|
2013-11-07 23:19:26 +00:00
|
|
|
#include "util/debug.h"
|
|
|
|
#include "util/exception.h"
|
2013-11-07 23:52:39 +00:00
|
|
|
#include "util/memory.h"
|
2013-11-07 21:56:04 +00:00
|
|
|
#include "bindings/lua/leanlua_state.h"
|
2013-11-08 19:59:47 +00:00
|
|
|
#include "bindings/lua/util.h"
|
2013-11-07 21:56:04 +00:00
|
|
|
#include "bindings/lua/name.h"
|
|
|
|
#include "bindings/lua/numerics.h"
|
|
|
|
#include "bindings/lua/options.h"
|
|
|
|
#include "bindings/lua/sexpr.h"
|
2013-11-08 00:51:05 +00:00
|
|
|
#include "bindings/lua/format.h"
|
2013-11-08 22:53:54 +00:00
|
|
|
#include "bindings/lua/level.h"
|
2013-11-09 20:08:17 +00:00
|
|
|
#include "bindings/lua/local_context.h"
|
2013-11-08 05:53:57 +00:00
|
|
|
#include "bindings/lua/expr.h"
|
2013-11-09 01:08:11 +00:00
|
|
|
#include "bindings/lua/context.h"
|
2013-11-10 17:11:44 +00:00
|
|
|
#include "bindings/lua/environment.h"
|
2013-11-08 21:26:31 +00:00
|
|
|
#include "bindings/lua/lean.lua"
|
2013-11-07 21:56:04 +00:00
|
|
|
|
2013-11-07 23:52:39 +00:00
|
|
|
extern "C" void * lua_realloc(void *, void * q, size_t, size_t new_size) { return lean::realloc(q, new_size); }
|
|
|
|
|
2013-11-07 21:56:04 +00:00
|
|
|
namespace lean {
|
|
|
|
struct leanlua_state::imp {
|
|
|
|
lua_State * m_state;
|
|
|
|
std::mutex m_mutex;
|
2013-11-07 23:52:39 +00:00
|
|
|
|
2013-11-07 21:56:04 +00:00
|
|
|
imp() {
|
2013-11-08 01:22:28 +00:00
|
|
|
#ifdef LEAN_USE_LUA_NEWSTATE
|
2013-11-07 23:52:39 +00:00
|
|
|
m_state = lua_newstate(lua_realloc, nullptr);
|
2013-11-08 01:22:28 +00:00
|
|
|
#else
|
|
|
|
m_state = luaL_newstate();
|
|
|
|
#endif
|
2013-11-07 23:52:39 +00:00
|
|
|
if (m_state == nullptr)
|
|
|
|
throw exception("fail to create Lua interpreter");
|
2013-11-07 21:56:04 +00:00
|
|
|
luaL_openlibs(m_state);
|
|
|
|
lean::open_name(m_state);
|
|
|
|
lean::open_mpz(m_state);
|
|
|
|
lean::open_mpq(m_state);
|
|
|
|
lean::open_options(m_state);
|
|
|
|
lean::open_sexpr(m_state);
|
2013-11-08 00:51:05 +00:00
|
|
|
lean::open_format(m_state);
|
2013-11-08 22:53:54 +00:00
|
|
|
lean::open_level(m_state);
|
2013-11-09 20:08:17 +00:00
|
|
|
lean::open_local_context(m_state);
|
2013-11-08 05:53:57 +00:00
|
|
|
lean::open_expr(m_state);
|
2013-11-09 01:08:11 +00:00
|
|
|
lean::open_context(m_state);
|
2013-11-10 17:11:44 +00:00
|
|
|
lean::open_environment(m_state);
|
2013-11-08 21:26:31 +00:00
|
|
|
dostring(g_leanlua_extra);
|
2013-11-07 21:56:04 +00:00
|
|
|
}
|
2013-11-07 23:52:39 +00:00
|
|
|
|
2013-11-07 21:56:04 +00:00
|
|
|
~imp() {
|
|
|
|
lua_close(m_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dofile(char const * fname) {
|
|
|
|
std::lock_guard<std::mutex> lock(m_mutex);
|
2013-11-08 19:59:47 +00:00
|
|
|
::lean::dofile(m_state, fname);
|
2013-11-07 21:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dostring(char const * str) {
|
|
|
|
std::lock_guard<std::mutex> lock(m_mutex);
|
2013-11-08 19:59:47 +00:00
|
|
|
::lean::dostring(m_state, str);
|
2013-11-07 21:56:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
leanlua_state::leanlua_state():
|
|
|
|
m_ptr(new imp()) {
|
|
|
|
}
|
|
|
|
|
|
|
|
leanlua_state::~leanlua_state() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void leanlua_state::dofile(char const * fname) {
|
|
|
|
m_ptr->dofile(fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void leanlua_state::dostring(char const * str) {
|
|
|
|
m_ptr->dostring(str);
|
|
|
|
}
|
2013-11-07 23:19:26 +00:00
|
|
|
}
|