1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Sluift/Lua/Check.h>
#include <sstream>
#include <boost/numeric/conversion/cast.hpp>
#include <lua.hpp>
#include <Swiften/Base/ByteArray.h>
#include <Sluift/Lua/Exception.h>
using namespace Swift;
static std::string getArgTypeError(lua_State* L, int arg, int tag) {
std::ostringstream s;
s << "Arg " << arg << ": expected " << lua_typename(L, tag) << ", got " << luaL_typename(L, arg);
return s.str();
}
void Lua::checkType(lua_State* L, int arg, int type) {
if (lua_type(L, arg) != type) {
throw Lua::Exception(getArgTypeError(L, arg, type));
}
}
int Lua::checkIntNumber(lua_State* L, int arg) {
if (!lua_isnumber(L, arg)) {
throw Lua::Exception(getArgTypeError(L, arg, LUA_TNUMBER));
}
return boost::numeric_cast<int>(lua_tonumber(L, arg));
}
std::string Lua::checkString(lua_State* L, int arg) {
const char *s = lua_tolstring(L, arg, nullptr);
if (!s) {
throw Lua::Exception(getArgTypeError(L, arg, LUA_TSTRING));
}
return std::string(s);
}
ByteArray Lua::checkByteArray(lua_State* L, int arg) {
size_t len;
const char *s = lua_tolstring(L, arg, &len);
if (!s) {
throw Lua::Exception(getArgTypeError(L, arg, LUA_TSTRING));
}
return createByteArray(s, len);
}
void* Lua::checkUserDataRaw(lua_State* L, int arg) {
void* userData = lua_touserdata(L, arg);
if (!userData) {
throw Lua::Exception(getArgTypeError(L, arg, LUA_TUSERDATA));
}
if (!lua_getmetatable(L, arg)) {
throw Lua::Exception(getArgTypeError(L, arg, LUA_TUSERDATA));
}
lua_pop(L, 1);
return userData;
}
|