summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdwin Mons <edwin.mons@isode.com>2014-05-09 14:25:29 (GMT)
committerEdwin Mons <edwin.mons@isode.com>2014-05-12 08:49:36 (GMT)
commit634555e64572531fece2a955d1168a88c7979d09 (patch)
tree4a7d50488d4adf60b24091e6308e7d4c30b350e7 /Sluift/ElementConvertors/ResultSetConvertor.cpp
parentafa4aa4a38991fc219d71604baab4d64a2082629 (diff)
downloadswift-contrib-634555e64572531fece2a955d1168a88c7979d09.zip
swift-contrib-634555e64572531fece2a955d1168a88c7979d09.tar.bz2
Add support for <before/> to ResultSet
Change-Id: I46bd9f24fc887b180cee3c2aa75a6c9e1761473b
Diffstat (limited to 'Sluift/ElementConvertors/ResultSetConvertor.cpp')
-rw-r--r--Sluift/ElementConvertors/ResultSetConvertor.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Sluift/ElementConvertors/ResultSetConvertor.cpp b/Sluift/ElementConvertors/ResultSetConvertor.cpp
index a4ebbf1..bd517b3 100644
--- a/Sluift/ElementConvertors/ResultSetConvertor.cpp
+++ b/Sluift/ElementConvertors/ResultSetConvertor.cpp
@@ -21,78 +21,87 @@ ResultSetConvertor::ResultSetConvertor(LuaElementConvertors* convertors) :
ResultSetConvertor::~ResultSetConvertor() {
}
boost::shared_ptr<ResultSet> ResultSetConvertor::doConvertFromLua(lua_State* L) {
boost::shared_ptr<ResultSet> result = boost::make_shared<ResultSet>();
lua_getfield(L, -1, "max_items");
if (lua_isstring(L, -1)) {
result->setMaxItems(boost::numeric_cast<int>(lua_tonumber(L, -1)));
}
lua_pop(L, 1);
lua_getfield(L, -1, "count");
if (lua_isnumber(L, -1)) {
result->setCount(boost::numeric_cast<int>(lua_tonumber(L, -1)));
}
lua_pop(L, 1);
lua_getfield(L, -1, "first_id_index");
if (lua_isstring(L, -1)) {
result->setFirstIDIndex(boost::numeric_cast<int>(lua_tonumber(L, -1)));
}
lua_pop(L, 1);
lua_getfield(L, -1, "first_id");
if (lua_isstring(L, -1)) {
result->setFirstID(std::string(lua_tostring(L, -1)));
}
lua_pop(L, 1);
lua_getfield(L, -1, "last_id");
if (lua_isstring(L, -1)) {
result->setLastID(std::string(lua_tostring(L, -1)));
}
lua_pop(L, 1);
lua_getfield(L, -1, "after");
if (lua_isstring(L, -1)) {
result->setAfter(std::string(lua_tostring(L, -1)));
}
lua_pop(L, 1);
+ lua_getfield(L, -1, "before");
+ if (lua_isstring(L, -1)) {
+ result->setBefore(std::string(lua_tostring(L, -1)));
+ }
+ lua_pop(L, 1);
return result;
}
void ResultSetConvertor::doConvertToLua(lua_State* L, boost::shared_ptr<ResultSet> payload) {
lua_createtable(L, 0, 0);
if (payload->getMaxItems()) {
lua_pushnumber(L, *payload->getMaxItems());
lua_setfield(L, -2, "max_items");
}
if (payload->getCount()) {
lua_pushnumber(L, *payload->getCount());
lua_setfield(L, -2, "count");
}
if (payload->getFirstIDIndex()) {
lua_pushnumber(L, *payload->getFirstIDIndex());
lua_setfield(L, -2, "first_id_index");
}
if (payload->getFirstID()) {
lua_pushstring(L, (*payload->getFirstID()).c_str());
lua_setfield(L, -2, "first_id");
}
if (payload->getLastID()) {
lua_pushstring(L, (*payload->getLastID()).c_str());
lua_setfield(L, -2, "last_id");
}
if (payload->getAfter()) {
lua_pushstring(L, (*payload->getAfter()).c_str());
lua_setfield(L, -2, "after");
}
+ if (payload->getBefore()) {
+ lua_pushstring(L, (*payload->getBefore()).c_str());
+ lua_setfield(L, -2, "before");
+ }
}
boost::optional<LuaElementConvertor::Documentation> ResultSetConvertor::getDocumentation() const {
return Documentation(
"ResultSet",
"This table has the following fields:\n\n"
"- `max_items`: number (Optional)\n"
"- `count`: number (Optional)\n"
"- `first_id_index`: number (Optional)\n"
"- `first_id`: string (Optional)\n"
"- `last_id`: string (Optional)\n"
"- `after`: string (Optional)\n"
);
}