summaryrefslogtreecommitdiffstats
blob: bfcffdd564f794d5da64ec9898023b7646d74317 (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
/*
 * Copyright (c) 2013-2017 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <memory>
#include <vector>

#include <boost/optional.hpp>

struct lua_State;

namespace Swift {
    class LuaElementConvertor;
    class Element;

    class LuaElementConvertors {
        public:
            LuaElementConvertors();
            virtual ~LuaElementConvertors();

            std::shared_ptr<Element> convertFromLua(lua_State*, int index);
            int convertToLua(lua_State*, std::shared_ptr<Element>);

            /**
             * Adds a toplevel type+data table with the given type.
             */
            std::shared_ptr<Element> convertFromLuaUntyped(lua_State*, int index, const std::string& type);

            /**
             * Strips the toplevel type+data table, and only return the
             * data.
             */
            int convertToLuaUntyped(lua_State*, std::shared_ptr<Element>);

            const std::vector< std::shared_ptr<LuaElementConvertor> >& getConvertors() const {
                return convertors;
            }

        private:
            boost::optional<std::string> doConvertToLuaUntyped(lua_State*, std::shared_ptr<Element>);
            void registerConvertors();

        private:
            std::vector< std::shared_ptr<LuaElementConvertor> > convertors;
    };
}