function.cpp

来自「这是整套横扫千军3D版游戏的源码」· C++ 代码 · 共 295 行

CPP
295
字号
// Copyright (c) 2003 Daniel Wallin and Arvid Norberg

// 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 <luabind/lua_include.hpp>

#include <luabind/config.hpp>
#include <luabind/luabind.hpp>

namespace luabind { namespace detail { namespace free_functions {

    void function_rep::add_overload(overload_rep const& o)
    {
        std::vector<overload_rep>::iterator i = std::find(
            m_overloads.begin(), m_overloads.end(), o);

        // if the overload already exists, overwrite the existing function
        if (i != m_overloads.end())
        {
            *i = o;
        }
        else
        {
            m_overloads.push_back(o);
        }
    }

    int function_dispatcher(lua_State* L)
    {
        function_rep* rep = static_cast<function_rep*>(
            lua_touserdata(L, lua_upvalueindex(1))
        );

        bool ambiguous = false;
        int min_match = std::numeric_limits<int>::max();
        int match_index = -1;
        bool ret;

#ifdef LUABIND_NO_ERROR_CHECKING
        if (rep->overloads().size() == 1)
        {
            match_index = 0;
        }
        else
        {
#endif
            int num_params = lua_gettop(L);
            ret = find_best_match(
                L
              , &rep->overloads().front()
              , (int)rep->overloads().size()
              , sizeof(overload_rep)
              , ambiguous
              , min_match
              , match_index
              , num_params
            );
#ifdef LUABIND_NO_ERROR_CHECKING
        }
#else
        if (!ret)
        {
            // this bock is needed to make sure the std::string is destructed
            {
                std::string msg = "no match for function call '";
                msg += rep->name();
                msg += "' with the parameters (";
                msg += stack_content_by_name(L, 1);
                msg += ")\ncandidates are:\n";

                msg += get_overload_signatures(
                    L
                  , rep->overloads().begin()
                  , rep->overloads().end()
                  , rep->name()
                );

                lua_pushstring(L, msg.c_str());
            }

            lua_error(L);
        }

        if (ambiguous)
        {
            // this bock is needed to make sure the std::string is destructed
            {
                std::string msg = "call of overloaded function '";
                msg += rep->name();
                msg += "(";
                msg += stack_content_by_name(L, 1);
                msg += ") is ambiguous\nnone of the overloads "
                       "have a best conversion:";

                std::vector<overload_rep_base const*> candidates;
                find_exact_match(
                    L
                  , &rep->overloads().front()
                  , (int)rep->overloads().size()
                  , sizeof(overload_rep)
                  , min_match
                  , num_params
                  , candidates
                );

                msg += get_overload_signatures_candidates(
                    L
                  , candidates.begin()
                  , candidates.end()
                  , rep->name()
                );

                lua_pushstring(L, msg.c_str());
            }
            lua_error(L);
        }
#endif
        overload_rep const& ov_rep = rep->overloads()[match_index];

#ifndef LUABIND_NO_EXCEPTIONS
        try
        {
#endif
            return ov_rep.call(L, ov_rep.fun);
#ifndef LUABIND_NO_EXCEPTIONS
        }
        catch(const luabind::error&)
        {
        }
        catch(const std::exception& e)
        {
            lua_pushstring(L, e.what());
        }
        catch (const char* s)
        {
            lua_pushstring(L, s);
        }
        catch(...)
        {
            std::string msg = rep->name();
            msg += "() threw an exception";
            lua_pushstring(L, msg.c_str());
        }
        // we can only reach this line if an exception was thrown
        lua_error(L);
        return 0; // will never be reached
#endif
    }

    
}}} // namespace luabind::detail::free_functions

#if 0

void luabind::detail::free_functions::function_rep::add_overload(
    luabind::detail::free_functions::overload_rep const& o)
{
    std::vector<luabind::detail::free_functions::overload_rep>::iterator i 
        = std::find(m_overloads.begin(), m_overloads.end(), o);

    // if the overload already exists, overwrite the existing function
    if (i != m_overloads.end())
    {
        *i = o;
    }
    else
    {
        m_overloads.push_back(o);
    }
}

int luabind::detail::free_functions::function_dispatcher(lua_State* L)
{
    function_rep* rep = static_cast<function_rep*>(lua_touserdata(L, lua_upvalueindex(1)));

    bool ambiguous = false;
    int min_match = std::numeric_limits<int>::max();
    int match_index = -1;
    bool ret;

#ifdef LUABIND_NO_ERROR_CHECKING
                
    if (rep->overloads().size() == 1)
    {
        match_index = 0;
    }
    else
    {

#endif
        int num_params = lua_gettop(L);
        ret = find_best_match(
            L, &rep->overloads().front(), (int)rep->overloads().size()
          , sizeof(free_functions::overload_rep), ambiguous, min_match
          , match_index, num_params);

#ifdef LUABIND_NO_ERROR_CHECKING
    }

#else

    if (!ret)
    {
        // this bock is needed to make sure the std::string is destructed
        {
            std::string msg = "no match for function call '";
            msg += rep->name();
            msg += "' with the parameters (";
            msg += stack_content_by_name(L, 1);
            msg += ")\ncandidates are:\n";

            msg += get_overload_signatures(L, rep->overloads().begin(), rep->overloads().end(), rep->name());

            lua_pushstring(L, msg.c_str());
        }

        lua_error(L);
    }

    if (ambiguous)
    {
        // this bock is needed to make sure the std::string is destructed
        {
            std::string msg = "call of overloaded function '";
            msg += rep->name();
            msg += "(";
            msg += stack_content_by_name(L, 1);
            msg += ") is ambiguous\nnone of the overloads have a best conversion:";

            std::vector<const overload_rep_base*> candidates;
            find_exact_match(
                L, &rep->overloads().front(), (int)rep->overloads().size()
              , sizeof(free_functions::overload_rep), min_match
              , num_params, candidates);

            msg += get_overload_signatures_candidates(L, candidates.begin(), candidates.end(), rep->name());

            lua_pushstring(L, msg.c_str());
        }
        lua_error(L);
    }
#endif
    const overload_rep& ov_rep = rep->overloads()[match_index];

#ifndef LUABIND_NO_EXCEPTIONS
    try
    {
#endif
        return ov_rep.call(L, ov_rep.fun);
#ifndef LUABIND_NO_EXCEPTIONS
    }
    catch(const luabind::error& e)
    {
    }
    catch(const std::exception& e)
    {
        lua_pushstring(L, e.what());
    }
    catch (const char* s)
    {
        lua_pushstring(L, s);
    }
    catch(...)
    {
        std::string msg = rep->name();
        msg += "() threw an exception";
        lua_pushstring(L, msg.c_str());
    }
    // we can only reach this line if an exception was thrown
    lua_error(L);
    return 0; // will never be reached
#endif
}

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?