/* * Copyright (c) 2011 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include using namespace Swift; StreamResumedParser::StreamResumedParser() : level(TopLevel) { } StreamResumedParser::~StreamResumedParser() { } void StreamResumedParser::handleStartElement(const std::string&, const std::string&, const AttributeMap& attributes) { if (level == TopLevel) { boost::optional handledStanzasCount = attributes.getAttributeValue("h"); if (handledStanzasCount) { try { getElementGeneric()->setHandledStanzasCount(boost::lexical_cast(*handledStanzasCount)); } catch (const boost::bad_lexical_cast &) { } } getElementGeneric()->setResumeID(attributes.getAttribute("previd")); } ++level; } void StreamResumedParser::handleEndElement(const std::string&, const std::string&) { --level; }