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

#include <Sluift/ElementConvertors/RawXMLElementConvertor.h>

#include <iostream>

#include <boost/smart_ptr/make_shared.hpp>

#include <lua.hpp>

#include <Swiften/Elements/RawXMLPayload.h>
#include <Swiften/Serializer/PayloadSerializer.h>

#include <Sluift/Lua/Check.h>

using namespace Swift;

RawXMLElementConvertor::RawXMLElementConvertor() {
}

RawXMLElementConvertor::~RawXMLElementConvertor() {
}

boost::shared_ptr<Element> RawXMLElementConvertor::convertFromLua(lua_State* L, int index, const std::string& type) {
    if (type == "xml") {
        return boost::make_shared<RawXMLPayload>(std::string(Lua::checkString(L, index)));
    }
    return boost::shared_ptr<Payload>();
}

boost::optional<std::string> RawXMLElementConvertor::convertToLua(lua_State* L, boost::shared_ptr<Element> element) {
    boost::shared_ptr<Payload> payload = boost::dynamic_pointer_cast<Payload>(element);
    if (!payload) {
        return boost::optional<std::string>();
    }
    PayloadSerializer* serializer = serializers.getPayloadSerializer(payload);
    assert(serializer);
    lua_pushstring(L, serializer->serialize(payload).c_str());
    return std::string("xml");
}