NuriaProject Framework
0.1
The NuriaProject Framework
|
Runtime for the LUA scripting language. More...
#include <luaruntime.hpp>
Public Types | |
enum | LuaLib { Base = 0x01, Math = 0x02, String = 0x04, Table = 0x08, InputOutput = 0x10, OperatinSystem = 0x20, Package = 0x40, Debug = 0x80, Bit = 0x100, Jit = 0x200, Ffi = 0x400, AllLibraries } |
typedef std::function< bool(Ownership, void *, MetaObject *) > | ObjectHandler |
enum | Ownership { OwnedByLua = 0x1, OwnedByCpp = 0x2 } |
Public Member Functions | |
LuaRuntime (LuaLibs libraries, QObject *parent=0) | |
~LuaRuntime () override | |
LuaValues | allResults () const |
void | collectGarbage () |
bool | execute (const QByteArray &script) |
bool | executeStream (QIODevice *device) |
LuaValue | global (const QString &name) |
bool | hasGlobal (const QString &name) |
LuaValue | lastResult () const |
void * | luaState () |
Ownership | objectOwnership (void *object) |
void | registerMetaObject (MetaObject *metaObject, const QByteArray &prefix=QByteArray()) |
void | setGlobal (const QString &name, const QVariant &value) |
void | setGlobal (const QString &name, const LuaValue &value) |
void | setObjectHandler (ObjectHandler handler, OwnershipFlags flags=OwnershipFlags(OwnedByLua|OwnedByCpp)) |
void | setObjectOwnership (void *object, Ownership ownership) |
Friends | |
class | Internal::Delegate |
class | LuaBuiltinFunctions |
class | LuaCallbackTrampoline |
class | LuaMetaObject |
class | LuaMetaObjectWrapper |
class | LuaObject |
Runtime for the LUA scripting language.
This class is a C++/Qt wrapper for LuaJit, a JITing implementation of the LUA VM. You can use it if you need scripting support in your application easily.
Currently, the only exposed API to Lua provided by LuaRuntime is "Nuria.connect(object, slotName, function)", which works like QObject::connect().
You can control this more fine-grained if you want to though. LuaObject::fromStructure has a ownership argument for this. To change ownership later, you can use setObjectOwnership() and objectOwnership() to set or get the current ownership respectively. You can also register a handler using setObjectHandler() to install a runtime-wide function which is called whenever LUA collected a C++ object.
typedef std::function< bool(Ownership, void *, MetaObject *) > Nuria::LuaRuntime::ObjectHandler |
Handler method for to-be-collected objects. This method is called when LUA is about to collect an object. The prototype looks as follows:
ownership indicates who owns the object, object is the affected object with its metaObject. If ownership is OwnedByLua
, the object will be destroyed if the handler returns true
. In any other case object is not touched.
|
explicit |
Constructor. Loads all libraries into the environment (These are provided by the internal Lua implementation).
|
override |
Destructor.
LuaValues Nuria::LuaRuntime::allResults | ( | ) | const |
Like lastResult(), but instead returns all results of the last execute() call. If no results were returned from the LUA script, an empty list is returned.
void Nuria::LuaRuntime::collectGarbage | ( | ) |
Instructs the LUA runtime to run the garbage collector, which will free memory no longer used. If you're doing this to not only destroy structures but also really free their memory now, you should call this method twice as the LUA garbage collector will only destroy instances at first.
bool Nuria::LuaRuntime::execute | ( | const QByteArray & | script | ) |
Executes script in the runtime. Returns true
on success. Returns false
if an error occured, like a syntax error.
If the call failed, lastResult() will return a string containing a human-readable error message.
After script has returned, lastResult() will return the result of it. If there were multiple results, then lastResult() will return a QVariantList containing all results.
bool Nuria::LuaRuntime::executeStream | ( | QIODevice * | device | ) |
Reads all available bytes from device and executes it as script. device must be open and readable. Result is the same as execute().
LuaValue Nuria::LuaRuntime::global | ( | const QString & | name | ) |
Returns global variable name.
bool Nuria::LuaRuntime::hasGlobal | ( | const QString & | name | ) |
Returns true
if there's a global variable called name.
LuaValue Nuria::LuaRuntime::lastResult | ( | ) | const |
Returns the result of the last call to execute(). If multiple results were returned only the first one is returend.
void* Nuria::LuaRuntime::luaState | ( | ) |
Returns the internal LUA runtime. The returned pointer is of type lua_State*. To make use of it, you'll need to #include "lua.hpp".
Ownership Nuria::LuaRuntime::objectOwnership | ( | void * | object | ) |
Returns the ownership of object. If object does not exist, OwnedByLua
is returned.
void Nuria::LuaRuntime::registerMetaObject | ( | MetaObject * | metaObject, |
const QByteArray & | prefix = QByteArray() |
||
) |
Registers metaObject for usage in the runtime. After this, the class can be used in LUA. The type will be stored as userdata inside LUA. Its name will be what MetaObject::className() returns. Namespaces will be interpreted as tables, meaning that the class "Something::Foo::Bar" will end up as "Something.Foo.Bar". prefix is prepended to the class name verbatim. Thus, if you want to put the meta object inside another table, you prefix to end with "::".
void Nuria::LuaRuntime::setGlobal | ( | const QString & | name, |
const QVariant & | value | ||
) |
Sets a global variable called name to value.
void Nuria::LuaRuntime::setGlobal | ( | const QString & | name, |
const LuaValue & | value | ||
) |
overload
void Nuria::LuaRuntime::setObjectHandler | ( | ObjectHandler | handler, |
OwnershipFlags | flags = OwnershipFlags(OwnedByLua|OwnedByCpp) |
||
) |
Installs a object handler called whenever a object is about to be collected by Luas garbage collector. You can control when handler should be called using flags, e.g. to be only notified when an object owned by Lua is collected.
void Nuria::LuaRuntime::setObjectOwnership | ( | void * | object, |
Ownership | ownership | ||
) |
Changes the ownership of object to ownership. If object is not known to LUA, this function has no effect.