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

#include <Swiften/LinkLocal/OutgoingLinkLocalSession.h>

#include <boost/bind.hpp>

#include <Swiften/Base/foreach.h>
#include <Swiften/Elements/IQ.h>
#include <Swiften/Elements/ProtocolHeader.h>
#include <Swiften/Elements/StreamFeatures.h>
#include <Swiften/StreamStack/XMPPLayer.h>

namespace Swift {

OutgoingLinkLocalSession::OutgoingLinkLocalSession(
        const JID& localJID,
        const JID& remoteJID,
        std::shared_ptr<Connection> connection,
        PayloadParserFactoryCollection* payloadParserFactories,
        PayloadSerializerCollection* payloadSerializers,
        XMLParserFactory* xmlParserFactory) :
            Session(connection, payloadParserFactories, payloadSerializers, xmlParserFactory) {
    setLocalJID(localJID);
    setRemoteJID(remoteJID);
}

void OutgoingLinkLocalSession::handleSessionStarted() {
    ProtocolHeader header;
    header.setFrom(getLocalJID());
    getXMPPLayer()->writeHeader(header);
}

void OutgoingLinkLocalSession::handleStreamStart(const ProtocolHeader&) {
    foreach(const std::shared_ptr<ToplevelElement>& stanza, queuedElements_) {
        sendElement(stanza);
    }
    queuedElements_.clear();
}

void OutgoingLinkLocalSession::handleElement(std::shared_ptr<ToplevelElement> element) {
    onElementReceived(element);
}

void OutgoingLinkLocalSession::queueElement(std::shared_ptr<ToplevelElement> element) {
    queuedElements_.push_back(element);
}


}