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

#pragma once

#include <memory>

#include <Swiften/Base/API.h>
#include <Swiften/Base/Override.h>
#include <Swiften/PubSub/PubSubManager.h>
#define SWIFTEN_PUBSUBMANAGERIMPL_DECLARE_CREATE_REQUEST(payload, container, response) \
    virtual std::shared_ptr< PubSubRequest<payload> >  \
            createRequest(IQ::Type type, const JID& receiver, std::shared_ptr<payload> p) SWIFTEN_OVERRIDE { \
        return std::make_shared< PubSubRequest<payload> >(type, receiver, p, router); \
    }

namespace Swift {
    class StanzaChannel;
    class Message;

    class SWIFTEN_API PubSubManagerImpl : public PubSubManager {
        public:
            PubSubManagerImpl(StanzaChannel* stanzaChannel, IQRouter* router);
            virtual ~PubSubManagerImpl();

            SWIFTEN_PUBSUB_FOREACH_PUBSUB_PAYLOAD_TYPE(
                    SWIFTEN_PUBSUBMANAGERIMPL_DECLARE_CREATE_REQUEST)

        private:
            void handleMessageRecevied(std::shared_ptr<Message>);

        private:
            StanzaChannel* stanzaChannel;
            IQRouter* router;
    };
}