summaryrefslogtreecommitdiffstats
blob: 9c86c21ffd174853742297c3724e346788971118 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * Copyright (c) 2013 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma clang diagnostic ignored "-Wunused-private-field"

#include <Swiften/Parser/PayloadParsers/PubSubParser.h>

#include <boost/optional.hpp>


#include <Swiften/Parser/PayloadParserFactoryCollection.h>
#include <Swiften/Parser/PayloadParserFactory.h>
#include <Swiften/Parser/PayloadParsers/PubSubSubscriptionParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubConfigureParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubDefaultParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubCreateParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubAffiliationsParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubOptionsParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubPublishParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubOptionsParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubSubscribeParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubUnsubscribeParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubItemsParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubRetractParser.h>
#include <Swiften/Parser/PayloadParsers/PubSubSubscriptionsParser.h>

using namespace Swift;

PubSubParser::PubSubParser(PayloadParserFactoryCollection* parsers) : parsers(parsers), level(0) {
}

PubSubParser::~PubSubParser() {
}

void PubSubParser::handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) {
    if (level == 1) {
        if (element == "items" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubItemsParser>(parsers);
        }
        if (element == "create" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubCreateParser>(parsers);
        }
        if (element == "publish" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubPublishParser>(parsers);
        }
        if (element == "affiliations" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubAffiliationsParser>(parsers);
        }
        if (element == "retract" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubRetractParser>(parsers);
        }
        if (element == "options" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubOptionsParser>(parsers);
        }
        if (element == "configure" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubConfigureParser>(parsers);
        }
        if (element == "default" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubDefaultParser>(parsers);
        }
        if (element == "subscriptions" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubSubscriptionsParser>(parsers);
        }
        if (element == "subscribe" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubSubscribeParser>(parsers);
        }
        if (element == "unsubscribe" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubUnsubscribeParser>(parsers);
        }
        if (element == "subscription" && ns == "http://jabber.org/protocol/pubsub") {
            currentPayloadParser = boost::make_shared<PubSubSubscriptionParser>(parsers);
        }
    }

    if (level >= 1 && currentPayloadParser) {
        currentPayloadParser->handleStartElement(element, ns, attributes);
    }
    ++level;
}

void PubSubParser::handleEndElement(const std::string& element, const std::string& ns) {
    --level;
    if (currentPayloadParser) {
        if (level >= 1) {
            currentPayloadParser->handleEndElement(element, ns);
        }

        if (level == 1) {
            if (currentPayloadParser) {
                if (element == "options" && ns == "http://jabber.org/protocol/pubsub") {
                    optionsPayload = boost::dynamic_pointer_cast<PubSubOptions>(currentPayloadParser->getPayload());
                }
                else if (element == "configure" && ns == "http://jabber.org/protocol/pubsub") {
                    configurePayload = boost::dynamic_pointer_cast<PubSubConfigure>(currentPayloadParser->getPayload());
                }
                else {
                    getPayloadInternal()->setPayload(boost::dynamic_pointer_cast<PubSubPayload>(currentPayloadParser->getPayload()));
                }
            }
            currentPayloadParser.reset();
        }

        if (level == 0) {
            if (boost::shared_ptr<PubSubCreate> create = boost::dynamic_pointer_cast<PubSubCreate>(getPayloadInternal()->getPayload())) {
                if (configurePayload) {
                    create->setConfigure(configurePayload);
                }
            }
            if (boost::shared_ptr<PubSubSubscribe> subscribe = boost::dynamic_pointer_cast<PubSubSubscribe>(getPayloadInternal()->getPayload())) {
                if (optionsPayload) {
                    subscribe->setOptions(optionsPayload);
                }
            }
        }
    }
}

void PubSubParser::handleCharacterData(const std::string& data) {
    if (level > 1 && currentPayloadParser) {
        currentPayloadParser->handleCharacterData(data);
    }
}