diff options
Diffstat (limited to 'Sluift/ElementConvertors/DelayConvertor.cpp')
-rw-r--r-- | Sluift/ElementConvertors/DelayConvertor.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Sluift/ElementConvertors/DelayConvertor.cpp b/Sluift/ElementConvertors/DelayConvertor.cpp new file mode 100644 index 0000000..f23e137 --- /dev/null +++ b/Sluift/ElementConvertors/DelayConvertor.cpp @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2014-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + +#include <Sluift/ElementConvertors/DelayConvertor.h> + +#include <memory> + +#include <boost/numeric/conversion/cast.hpp> + +#include <lua.hpp> + +#include <Swiften/Base/DateTime.h> + +#include <Sluift/Lua/Check.h> + +using namespace Swift; + +DelayConvertor::DelayConvertor() : GenericLuaElementConvertor<Delay>("delay") { +} + +DelayConvertor::~DelayConvertor() { +} + +std::shared_ptr<Delay> DelayConvertor::doConvertFromLua(lua_State* L) { + std::shared_ptr<Delay> result = std::make_shared<Delay>(); + lua_getfield(L, -1, "stamp"); + if (lua_isstring(L, -1)) { + result->setStamp(stringToDateTime(lua_tostring(L, -1))); + } + lua_pop(L, 1); + + lua_getfield(L, -1, "from"); + if (lua_isstring(L, -1)) { + result->setFrom(lua_tostring(L, -1)); + } + lua_pop(L, 1); + return result; +} + +void DelayConvertor::doConvertToLua(lua_State* L, std::shared_ptr<Delay> payload) { + lua_createtable(L, 0, 0); + if (payload->getFrom()) { + lua_pushstring(L, (*payload->getFrom()).toString().c_str()); + lua_setfield(L, -2, "from"); + } + lua_pushstring(L, dateTimeToString(payload->getStamp()).c_str()); + lua_setfield(L, -2, "stamp"); +} |