NuriaProject Framework  0.1
The NuriaProject Framework
luaruntime.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_LUARUNTIME_HPP
18 #define NURIA_LUARUNTIME_HPP
19 
20 #include <functional>
21 #include <QObject>
22 
23 #include <nuria/metaobject.hpp>
24 #include "lua_global.hpp"
25 #include "luavalue.hpp"
26 
27 class QIODevice;
28 
29 namespace Nuria {
30 
31 namespace Internal { class Delegate; }
32 class LuaCallbackTrampoline;
33 class LuaMetaObjectWrapper;
34 class LuaBuiltinFunctions;
35 class LuaRuntimePrivate;
36 class LuaMetaObject;
37 class Callback;
38 
77 class NURIA_LUA_EXPORT LuaRuntime : public QObject {
78  Q_OBJECT
79 public:
80 
82  enum LuaLib {
83  Base = 0x01,
84  Math = 0x02,
85  String = 0x04,
86  Table = 0x08,
87  InputOutput = 0x10,
88  OperatinSystem = 0x20,
89  Package = 0x40,
90  Debug = 0x80,
91  Bit = 0x100,
92  Jit = 0x200,
93  Ffi = 0x400,
94 
96  AllLibraries = Base | Math | String | Table | InputOutput |
97  OperatinSystem | Package | Debug | Bit | Jit | Ffi
98  };
99 
100  Q_DECLARE_FLAGS(LuaLibs, LuaLib)
101 
102 
103  enum Ownership {
104 
109  OwnedByLua = 0x1,
110 
116  OwnedByCpp = 0x2,
117 
118  };
119 
120  Q_DECLARE_FLAGS(OwnershipFlags, Ownership)
121 
122 
127  explicit LuaRuntime (LuaLibs libraries, QObject *parent = 0);
128 
130  ~LuaRuntime () override;
131 
145  bool execute (const QByteArray &script);
146 
152  bool executeStream (QIODevice *device);
153 
159  LuaValue lastResult () const;
160 
166  LuaValues allResults () const;
167 
169  LuaValue global (const QString &name);
170 
172  void setGlobal (const QString &name, const QVariant &value);
173 
175  void setGlobal (const QString &name, const LuaValue &value);
176 
178  bool hasGlobal (const QString &name);
179 
192  void registerMetaObject (MetaObject *metaObject, const QByteArray &prefix = QByteArray ());
193 
201  void collectGarbage ();
202 
207  Ownership objectOwnership (void *object);
208 
213  void setObjectOwnership (void *object, Ownership ownership);
214 
228  typedef std::function< bool(Ownership, void *, MetaObject *) > ObjectHandler;
229 
238  void setObjectHandler (ObjectHandler handler, OwnershipFlags flags = OwnershipFlags (OwnedByLua | OwnedByCpp));
239 
247  void *luaState ();
248 
249 private:
250  friend class LuaCallbackTrampoline;
251  friend class LuaMetaObjectWrapper;
252  friend class LuaBuiltinFunctions;
253  friend class Internal::Delegate;
254  friend class LuaMetaObject;
255  friend class LuaObject;
256 
257  //
258  void createObjectsReferenceTable ();
259 
260  bool pcall (int argCount, LuaValues &results);
261 
262  void setLastResultError (LuaValues &values, const QString &message);
263  static QString luaErrorToString (int error);
264  void createLuaInstance ();
265  void openLuaLibraries (LuaLibs libraries);
266 
267  //
268  LuaRuntimePrivate *d_ptr;
269 
270 };
271 
272 }
273 
274 #endif // NURIA_LUARUNTIME_HPP
The MetaObject class provides access to meta-data of types at run-time.
Definition: metaobject.hpp:560
LuaLib
Definition: luaruntime.hpp:82
Definition: abstractsessionmanager.hpp:24
Ownership
Definition: luaruntime.hpp:103
Runtime for the LUA scripting language.
Definition: luaruntime.hpp:77
Stores a value from LUA.
Definition: luavalue.hpp:40
std::function< bool(Ownership, void *, MetaObject *) > ObjectHandler
Definition: luaruntime.hpp:228
Debugging and logging class of the Nuria Framework.
Definition: debug.hpp:89
Stores a C++ object with an associated Nuria::MetaObject.
Definition: luaobject.hpp:41