aboutsummaryrefslogtreecommitdiff
path: root/src/state.cpp
blob: b558d11cc6c32ab816b04b80982dc91faa3c02f8 (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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
* STATE.CPP
*
* Lua tools to support Lanes.
*/

/*
===============================================================================

Copyright (C) 2002-10 Asko Kauppi <akauppi@gmail.com>
2011-24 benoit Germain <bnt.germain@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

===============================================================================
*/

#include "_pch.hpp"
#include "state.hpp"

#include "intercopycontext.hpp"
#include "lane.hpp"
#include "lanes.hpp"
#include "tools.hpp"
#include "universe.hpp"

// #################################################################################################
// #################################################################################################
namespace {
    // #############################################################################################
    // #############################################################################################

    namespace local {
        static luaL_Reg const sLibs[] = {
            { "base", nullptr }, // ignore "base" is always valid, but opened separately

#if LUA_VERSION_NUM == 502 || LUA_VERSION_NUM == 503
            { LUA_BITLIBNAME, luaopen_bit32 }, // active in Lua 5.2, replaced with an error-throwing loader in Lua 5.3, gone after.
#endif // LUA_VERSION_NUM == 502 || LUA_VERSION_NUM == 503

#if LUA_VERSION_NUM >= 502
            { LUA_COLIBNAME, luaopen_coroutine }, // Lua 5.2: coroutine is no longer a part of base!
#endif // LUA_VERSION_NUM

            { LUA_DBLIBNAME, luaopen_debug },

#ifndef PLATFORM_XBOX // no os/io libs on xbox
            { LUA_IOLIBNAME, luaopen_io },
            { LUA_OSLIBNAME, luaopen_os },
#endif // PLATFORM_XBOX

            { LUA_LOADLIBNAME, luaopen_package },
            { LUA_MATHLIBNAME, luaopen_math },
            { LUA_STRLIBNAME, luaopen_string },
            { LUA_TABLIBNAME, luaopen_table },

#if LUA_VERSION_NUM >= 503
            { LUA_UTF8LIBNAME, luaopen_utf8 },
#endif // LUA_VERSION_NUM >= 503

#if LUAJIT_FLAVOR() != 0 // building against LuaJIT headers, add some LuaJIT-specific libs
            { LUA_BITLIBNAME, luaopen_bit },
            { LUA_FFILIBNAME, luaopen_ffi },
            { LUA_JITLIBNAME, luaopen_jit },
#endif // LUAJIT_FLAVOR() != 0

            { kLanesCoreLibName, luaopen_lanes_core } // So that we can open it like any base library (possible since we have access to the init function)
        };

    } // namespace local

    // #############################################################################################

    static void Open1Lib(lua_State* const L_, std::string_view const& name_)
    {
        for (luaL_Reg const& _entry : local::sLibs) {
            if (name_ == _entry.name) {
                lua_CFunction const _libfunc{ _entry.func };
                if (!_libfunc) {
                    break;
                }
                std::string_view const _name{ _entry.name };
                DEBUGSPEW_CODE(DebugSpew(Universe::Get(L_)) << "opening '" << _name << "' library" << std::endl);
                STACK_CHECK_START_REL(L_, 0);
                // open the library as if through require(), and create a global as well if necessary (the library table is left on the stack)
                bool const _isLanesCore{ _libfunc == luaopen_lanes_core }; // don't want to create a global for "lanes_core"
                luaL_requiref(L_, _name.data(), _libfunc, !_isLanesCore);                          // L_: {lib}
                // lanes_core doesn't declare a global, so scan it here and now
                if (_isLanesCore) {
                    tools::PopulateFuncLookupTable(L_, kIdxTop, _name);
                }
                lua_pop(L_, 1);                                                                    // L_:
                STACK_CHECK(L_, 0);
                break;
            }
        }
    }

    // #############################################################################################

    // just like lua_xmove, args are (from, to)
    static void CopyOneTimeSettings(Universe* const U_, SourceState const L1_, DestState const L2_)
    {
        DEBUGSPEW_CODE(DebugSpewIndentScope _scope{ U_ });

        STACK_GROW(L1_, 2);
        STACK_CHECK_START_REL(L1_, 0);
        STACK_CHECK_START_REL(L2_, 0);

        DEBUGSPEW_CODE(DebugSpew(U_) << "CopyOneTimeSettings()" << std::endl);

        kConfigRegKey.pushValue(L1_);                                                              // L1_: config
        // copy settings from from source to destination registry
        InterCopyContext _c{ U_, L2_, L1_, {}, {}, {}, {}, {} };
        if (_c.interMove(1) != InterCopyResult::Success) {                                         // L1_:                                           L2_: config
            raise_luaL_error(L1_, "failed to copy settings when loading " kLanesCoreLibName);
        }
        // set L2:_R[kConfigRegKey] = settings
        kConfigRegKey.setValue(L2_, [](lua_State* L_) { lua_insert(L_, -2); });                    // L1_:                                           L2_: config
        STACK_CHECK(L2_, 0);
        STACK_CHECK(L1_, 0);
    }

    // #############################################################################################
    // #############################################################################################
} // namespace
// #################################################################################################
// #################################################################################################

// #################################################################################################
// #################################################################################################
namespace state {
    // #############################################################################################
    // #############################################################################################

    lua_State* CreateState([[maybe_unused]] Universe* const U_, lua_State* const from_, std::string_view const& hint_)
    {
        lua_State* const _L {
            std::invoke(
                [U = U_, from = from_, &hint = hint_]() {
                    if constexpr (LUAJIT_FLAVOR() == 64) {
                        // for some reason, LuaJIT 64 bits does not support creating a state with lua_newstate...
                        return luaL_newstate();
                    } else {
                        lanes::AllocatorDefinition const _def{ U->resolveAllocator(from, hint) };
                        return _def.newState();
                    }
                }
            )
        };

        if (_L == nullptr) {
            raise_luaL_error(from_, "luaG_newstate() failed while creating state; out of memory");
        }
        return _L;
    }

    // #############################################################################################

    /*
     * Like 'luaL_openlibs()' but allows the set of libraries be selected
     *
     *   nullptr    no libraries, not even base
     *   ""      base library only
     *   "io,string"     named libraries
     *   "*"     all libraries
     *
     * Base ("unpack", "print" etc.) is always added, unless 'libs' is nullptr.
     *
     */
    lua_State* NewLaneState(Universe* const U_, SourceState const from_, std::optional<std::string_view> const& libs_)
    {
        DestState const _L{ CreateState(U_, from_, "lane") };

        STACK_GROW(_L, 2);
        STACK_CHECK_START_ABS(_L, 0);

        // copy the universe as a light userdata (only the master state holds the full userdata)
        // that way, if Lanes is required in this new state, we'll know we are part of this universe
        Universe::Store(_L, U_);
        STACK_CHECK(_L, 0);

        // we'll need this every time we transfer some C function from/to this state
        kLookupRegKey.setValue(_L, [](lua_State* L_) { lua_newtable(L_); });
        STACK_CHECK(_L, 0);

        // neither libs (not even 'base') nor special init func: we are done
        if (!libs_.has_value() && std::holds_alternative<std::nullptr_t>(U_->onStateCreateFunc)) {
            DEBUGSPEW_CODE(DebugSpew(U_) << "luaG_newstate(nullptr)" << std::endl);
            return _L;
        }

        DEBUGSPEW_CODE(DebugSpew(U_) << "luaG_newstate()" << std::endl);
        DEBUGSPEW_CODE(DebugSpewIndentScope _scope{ U_ });

        // copy settings (for example because it may contain a Lua on_state_create function)
        CopyOneTimeSettings(U_, from_, _L);

        // 'lua.c' stops GC during initialization so perhaps it is a good idea. :)
        lua_gc(_L, LUA_GCSTOP, 0);

        // Anything causes 'base' and 'jit' to be taken in
        std::string_view _libs{};
        if (libs_.has_value()) {
            _libs = libs_.value();
            // special "*" case (mainly to help with LuaJIT compatibility)
            // as we are called from luaopen_lanes_core() already, and that would deadlock
            if (_libs == "*") {
                DEBUGSPEW_CODE(DebugSpew(U_) << "opening ALL standard libraries" << std::endl);
                luaL_openlibs(_L);
                // don't forget lanes_core for regular lane states
                Open1Lib(_L, kLanesCoreLibName);
                _libs = ""; // done with libs
            } else {
                if constexpr (LUAJIT_FLAVOR() != 0) { // building against LuaJIT headers, always open jit
                    DEBUGSPEW_CODE(DebugSpew(U_) << "opening 'jit' library" << std::endl);
                    Open1Lib(_L, LUA_JITLIBNAME);
                }
                DEBUGSPEW_CODE(DebugSpew(U_) << "opening 'base' library" << std::endl);
                if constexpr (LUA_VERSION_NUM >= 502) {
                    // open base library the same way as in luaL_openlibs()
                    luaL_requiref(_L, LUA_GNAME, luaopen_base, 1);
                    lua_pop(_L, 1);
                } else {
                    lua_pushcfunction(_L, luaopen_base);
                    luaG_pushstring(_L, "");
                    lua_call(_L, 1, 0);
                }
            }
        }
        STACK_CHECK(_L, 0);

        // scan all libraries, open them one by one
        auto isLibNameChar = [](char const c_) {
            return std::isalnum(c_) || c_ == '.' || c_ == '-' || c_ == '_';
        };
        while (!_libs.empty()) {
            // remove prefix not part of a name
            _libs = std::string_view{ std::find_if(std::cbegin(_libs), std::cend(_libs), isLibNameChar), _libs.end() };
            // extract a single name
            auto const _libNameEnd{ std::find_if(std::cbegin(_libs), std::cend(_libs), [&isLibNameChar](char const _c) { return !isLibNameChar(_c); }) };
            std::string_view const _libName{ _libs.begin(), _libNameEnd };
            if (_libName.empty()) {
                break;
            }
            // open library
            Open1Lib(_L, _libName);
            // advance to next item
            _libs = std::string_view{ _libNameEnd, _libs.end() };
        }
        lua_gc(_L, LUA_GCRESTART, 0);

        tools::SerializeRequire(_L);

        // call this after the base libraries are loaded and GC is restarted
        // will raise an error in from_ in case of problem
        U_->callOnStateCreate(_L, from_, LookupMode::LaneBody);

        STACK_CHECK(_L, 0);
        // after all this, register everything we find in our name<->function database
        luaG_pushglobaltable(_L);                                                                  // L: _G
        tools::PopulateFuncLookupTable(_L, kIdxTop, {});
        lua_pop(_L, 1);                                                                            // L:
        STACK_CHECK(_L, 0);

        if constexpr (USE_DEBUG_SPEW()) {
            DEBUGSPEW_CODE(DebugSpew(U_) << std::source_location::current().function_name() << " LOOKUP DB CONTENTS" << std::endl);
            DEBUGSPEW_CODE(DebugSpewIndentScope _scope2{ U_ });
            // dump the lookup database contents
            kLookupRegKey.pushValue(_L);                                                           // L: {}
            lua_pushnil(_L);                                                                       // L: {} nil
            while (lua_next(_L, -2)) {                                                             // L: {} k v
                luaG_pushstring(_L, "[");                                                          // L: {} k v "["

                lua_getglobal(_L, "tostring");                                                     // L: {} k v "[" tostring
                lua_pushvalue(_L, -4);                                                             // L: {} k v "[" tostring k
                lua_call(_L, 1, 1);                                                                // L: {} k v "[" 'k'

                luaG_pushstring(_L, "] = ");                                                       // L: {} k v "[" 'k' "] = "

                lua_getglobal(_L, "tostring");                                                     // L: {} k v "[" 'k' "] = " tostring
                lua_pushvalue(_L, -5);                                                             // L: {} k v "[" 'k' "] = " tostring v
                lua_call(_L, 1, 1);                                                                // L: {} k v "[" 'k' "] = " 'v'
                lua_concat(_L, 4);                                                                 // L: {} k v "[k] = v"
                DEBUGSPEW_CODE(DebugSpew(U_) << luaG_tostring(_L, kIdxTop) << std::endl);
                lua_pop(_L, 2);                                                                    // L: {} k
            } // lua_next()                                                                        // L: {}
            lua_pop(_L, 1);                                                                        // L:
        }

        STACK_CHECK(_L, 0);
        return _L;
    }

    // #############################################################################################

    // for internal use only: tell lanes.lua which base libraries are actually supported internally
    LUAG_FUNC(supported_libs)
    {
        STACK_CHECK_START_REL(L_, 0);
        lua_newtable(L_);                                                                          // L_: out
        for (luaL_Reg const& _entry : local::sLibs) {
            lua_pushboolean(L_, 1);                                                                // L_: out true
            luaG_setfield(L_, StackIndex{ -2 }, std::string_view{ _entry.name });                  // out[name] = true            // L_: out
        }
        STACK_CHECK(L_, 1);
        return 1;
    }

    // #############################################################################################
    // #############################################################################################
} // namespace state
// #################################################################################################
// #################################################################################################