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

#include <Swiften/Parser/StreamResumeParser.h>

#include <boost/lexical_cast.hpp>

using namespace Swift;

StreamResumeParser::StreamResumeParser() : level(TopLevel) {
}

StreamResumeParser::~StreamResumeParser() {
}

void StreamResumeParser::handleStartElement(const std::string&, const std::string&, const AttributeMap& attributes) {
    if (level == TopLevel) {
        boost::optional<std::string> handledStanzasCount = attributes.getAttributeValue("h");
        if (handledStanzasCount) {
            try {
                getElementGeneric()->setHandledStanzasCount(boost::lexical_cast<unsigned int>(*handledStanzasCount));
            }
            catch (const boost::bad_lexical_cast &) {
            }
        }
        getElementGeneric()->setResumeID(attributes.getAttribute("previd"));
    }
    ++level;
}

void StreamResumeParser::handleEndElement(const std::string&, const std::string&) {
    --level;
}