summaryrefslogtreecommitdiffstats
blob: 1088624a55d601090a18fea211ef46a75750e021 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
 * Copyright (c) 2013-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Sluift/Lua/LuaUtils.h>

#include <cassert>
#include <iostream>
#include <sstream>

#include <boost/algorithm/string/trim.hpp>
#include <boost/numeric/conversion/cast.hpp>
#include <boost/scope_exit.hpp>

#include <lua.hpp>

#include <Sluift/Lua/Exception.h>
#include <Sluift/globals.h>

using namespace Swift::Lua;

static const std::string INDENT = "  ";

void Swift::Lua::registerTableToString(lua_State* L, int index) {
    index = Lua::absoluteOffset(L, index);
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "register_table_tostring");
    lua_pushvalue(L, index);
    if (lua_pcall(L, 1, 0, 0) != 0) {
        throw Lua::Exception(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
}

void Swift::Lua::registerTableEquals(lua_State* L, int index) {
    index = Lua::absoluteOffset(L, index);
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "register_table_equals");
    lua_pushvalue(L, index);
    if (lua_pcall(L, 1, 0, 0) != 0) {
        throw Lua::Exception(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
}

void Swift::Lua::registerGetByTypeIndex(lua_State* L, int index) {
    index = Lua::absoluteOffset(L, index);
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "register_get_by_type_index");
    lua_pushvalue(L, index);
    if (lua_pcall(L, 1, 0, 0) != 0) {
        throw Lua::Exception(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
}

boost::optional<std::string> Swift::Lua::getStringField(lua_State* L, int index, const std::string& field) {
    lua_getfield(L, index, field.c_str());
    // Seems to generate warnings with some versions of CLang that i can't turn off.
    // Leaving the more elegant code here, hoping we can re-enable it later (newer boost? c++11?).
    // The same applies to the other get*Field functions.
    //BOOST_SCOPE_EXIT(&L) { lua_pop(L,1); } BOOST_SCOPE_EXIT_END
    //return lua_isstring(L, -1) ? std::string(lua_tostring(L, -1)) : boost::optional<std::string>();

    boost::optional<std::string> result;
    if (lua_isstring(L, -1)) {
        result = std::string(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
    return result;
}

boost::optional<bool> Swift::Lua::getBooleanField(lua_State* L, int index, const std::string& field) {
    lua_getfield(L, index, field.c_str());
    boost::optional<bool> result;
    if (lua_isboolean(L, -1)) {
        result = lua_toboolean(L, -1);
    }
    lua_pop(L, 1);
    return result;
}

boost::optional<int> Swift::Lua::getIntField(lua_State* L, int index, const std::string& field) {
    lua_getfield(L, index, field.c_str());
    boost::optional<int> result;
    if (lua_isnumber(L, -1)) {
        result = boost::numeric_cast<int>(lua_tonumber(L, -1));
    }
    lua_pop(L, 1);
    return result;
}

void Swift::Lua::registerHelp(lua_State* L, int index, const std::string& description, const std::string& parameters, const std::string& options) {
    index = Lua::absoluteOffset(L, index);
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "register_help");
    lua_pushvalue(L, index);

    lua_newtable(L);
    lua_pushstring(L, description.c_str());
    lua_rawseti(L, -2, 1);

    if (!parameters.empty()) {
        std::istringstream s(parameters);
        lua_newtable(L);
        int i = 1;
        for (std::string line; std::getline(s, line); ) {
            std::string trimmedLine = boost::trim_copy(line);
            if (trimmedLine.empty()) {
                continue;
            }
            size_t splitIndex = trimmedLine.find_first_of(" \t");
            std::string key;
            std::string value;
            if (splitIndex == std::string::npos) {
                key = trimmedLine;
            }
            else {
                key = trimmedLine.substr(0, splitIndex);
                value = boost::trim_copy(trimmedLine.substr(splitIndex+1));
            }
            lua_createtable(L, 2, 0);
            lua_pushstring(L, key.c_str());
            lua_rawseti(L, -2, 1);
            lua_pushstring(L, value.c_str());
            lua_rawseti(L, -2, 2);

            lua_rawseti(L, -2, i++);
        }
        lua_setfield(L, -2, "parameters");
    }
    if (!options.empty()) {
        std::istringstream s(options);
        lua_newtable(L);
        for (std::string line; std::getline(s, line); ) {
            std::string trimmedLine = boost::trim_copy(line);
            if (trimmedLine.empty()) {
                continue;
            }
            size_t splitIndex = trimmedLine.find_first_of(" \t");
            std::string key;
            std::string value;
            if (splitIndex == std::string::npos) {
                key = trimmedLine;
            }
            else {
                key = trimmedLine.substr(0, splitIndex);
                value = boost::trim_copy(trimmedLine.substr(splitIndex+1));
            }
            lua_pushstring(L, value.c_str());
            lua_setfield(L, -2, key.c_str());
        }
        lua_setfield(L, -2, "options");
    }

    if (lua_pcall(L, 2, 0, 0) != 0) {
        throw Lua::Exception(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
}

void Swift::Lua::registerClassHelp(lua_State* L, const std::string& name, const std::string& description) {
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "register_class_help");
    lua_pushstring(L, name.c_str());

    lua_newtable(L);
    lua_pushstring(L, description.c_str());
    lua_rawseti(L, -2, 1);

    if (lua_pcall(L, 2, 0, 0) != 0) {
        throw Lua::Exception(lua_tostring(L, -1));
    }
    lua_pop(L, 1);
}

void Swift::Lua::registerExtraHelp(lua_State* L, int index, const std::string& name) {
    index = Lua::absoluteOffset(L, index);
    lua_rawgeti(L, LUA_REGISTRYINDEX, Sluift::globals.coreLibIndex);
    lua_getfield(L, -1, "extra_help");
    lua_getfield(L, -1, name.c_str());
    if (!lua_isnil(L, -1)) {
        lua_getfield(L, -3, "register_help");
        lua_pushvalue(L, index);
        lua_pushvalue(L, -3);
        if (lua_pcall(L, 2, 0, 0) != 0) {
            throw Lua::Exception(lua_tostring(L, -1));
        }
    }
    lua_pop(L, 3);
}

void Swift::Lua::pushStringArray(lua_State* L, const std::vector<std::string>& strings) {
    lua_createtable(L, boost::numeric_cast<int>(strings.size()), 0);
    for (size_t i = 0; i < strings.size(); ++i) {
        lua_pushstring(L, strings[i].c_str());
        lua_rawseti(L, -2, boost::numeric_cast<int>(i+1));
    }
}