summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Maudsley <richard.maudsley@isode.com>2014-05-07 07:33:49 (GMT)
committerRichard Maudsley <richard.maudsley@isode.com>2014-05-09 10:27:55 (GMT)
commit6db4b8979b4a7ca72305266a464c571fb648358b (patch)
tree88e9743b97220d2ab20d964c44143e0c76d74c3c /Sluift/ElementConvertors/IQConvertor.cpp
parent47ba7eb4a5d3a48f4aa554ff07d20cc7c8682bae (diff)
downloadswift-contrib-6db4b8979b4a7ca72305266a464c571fb648358b.zip
swift-contrib-6db4b8979b4a7ca72305266a464c571fb648358b.tar.bz2
Fix compiler warnings in Sluift convertors.
Change-Id: I26a212dcf17af79696c0446a88fb2272e890f007
Diffstat (limited to 'Sluift/ElementConvertors/IQConvertor.cpp')
-rw-r--r--Sluift/ElementConvertors/IQConvertor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Sluift/ElementConvertors/IQConvertor.cpp b/Sluift/ElementConvertors/IQConvertor.cpp
index 8a8e463..d90c864 100644
--- a/Sluift/ElementConvertors/IQConvertor.cpp
+++ b/Sluift/ElementConvertors/IQConvertor.cpp
@@ -25,48 +25,50 @@ boost::shared_ptr<IQ> IQConvertor::doConvertFromLua(lua_State* L) {
boost::shared_ptr<IQ> result = getStanza(L, convertors);
lua_getfield(L, -1, "type");
if (lua_isstring(L, -1)) {
result->setType(IQConvertor::convertIQTypeFromString(lua_tostring(L, -1)));
}
lua_pop(L, 1);
return result;
}
void IQConvertor::doConvertToLua(lua_State* L, boost::shared_ptr<IQ> stanza) {
pushStanza(L, stanza, convertors);
const std::string type = IQConvertor::convertIQTypeToString(stanza->getType());
lua_pushstring(L, type.c_str());
lua_setfield(L, -2, "type");
}
boost::optional<LuaElementConvertor::Documentation> IQConvertor::getDocumentation() const {
return Documentation(
"IQ",
"This table has the following fields:\n\n"
"- `type`: string\n"
"- `id`: string\n"
"- `from`: string\n"
"- `to`: string\n"
"- `payloads`: array<@{Payload}>\n"
);
}
std::string IQConvertor::convertIQTypeToString(IQ::Type type) {
switch (type) {
case IQ::Get: return "get";
case IQ::Set: return "set";
case IQ::Result: return "result";
case IQ::Error: return "error";
}
+ assert(false);
+ return "";
}
IQ::Type IQConvertor::convertIQTypeFromString(const std::string& type) {
if (type == "get") {
return IQ::Get;
}
else if (type == "set") {
return IQ::Set;
}
else {
throw Lua::Exception("Illegal query type: '" + type + "'");
}
}