summaryrefslogtreecommitdiffstats
blob: afe1da12bf55be980229977c5c7445b6993578d5 (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
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

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

#include <boost/shared_ptr.hpp>
#include <Swiften/Parser/PayloadParsers/JingleFileTransferFileInfoParser.h>
#include <Swiften/Parser/GenericPayloadParserFactory.h>
#include <Swiften/Parser/PayloadParserFactory.h>

namespace Swift {

JingleFileTransferReceivedParser::JingleFileTransferReceivedParser() : level(0) {
}
	
void JingleFileTransferReceivedParser::handleStartElement(const std::string& element, const std::string& ns, const AttributeMap& attributes) {
	if (level == 1 && element == "file") {
		PayloadParserFactory* payloadParserFactory = new GenericPayloadParserFactory<JingleFileTransferFileInfoParser>("file");
		if (payloadParserFactory) {
			currentPayloadParser.reset(payloadParserFactory->createPayloadParser());
		}
	}
	
	if (currentPayloadParser && level >= 1) {
		currentPayloadParser->handleStartElement(element, ns, attributes);
	}
	
	++level;
}

void JingleFileTransferReceivedParser::handleEndElement(const std::string& element, const std::string& ns) {
	--level;
	if (element == "file") {
		boost::shared_ptr<JingleFileTransferFileInfo> fileInfo = boost::dynamic_pointer_cast<JingleFileTransferFileInfo>(currentPayloadParser->getPayload());
		if (fileInfo) {
			getPayloadInternal()->setFileInfo(*fileInfo);
		}
	} else {
		currentPayloadParser->handleEndElement(element, ns);
	}
}

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

}