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

#include <cassert>

#include <Swiften/Parser/BOSHParser.h>
#include <Swiften/Parser/XMLParser.h>
#include <Swiften/Parser/PlatformXMLParserFactory.h>

namespace Swift {

BOSHParser::BOSHParser() :
	xmlParser_(0),
	level_(-1),
	parseErrorOccurred_(false)
{
	xmlParser_ = PlatformXMLParserFactory().createXMLParser(this);
}

BOSHParser::~BOSHParser() {
	delete xmlParser_;
}

bool BOSHParser::parse(const std::string& data) {
	bool xmlParseResult = xmlParser_->parse(data);
	return xmlParseResult && !parseErrorOccurred_;
}

void BOSHParser::handleStartElement(const std::string& /*element*/, const std::string& /*ns*/, const AttributeMap& attributes) {
	if (!parseErrorOccurred_) {
		if (level_ == BoshTopLevel) {
			boshBodyAttributes_ = attributes;
		}
	}
	++level_;
}

void BOSHParser::handleEndElement(const std::string& /*element*/, const std::string& /*ns*/) {
	assert(level_ > BoshTopLevel);
	--level_;
	if (!parseErrorOccurred_) {

	}
}

void BOSHParser::handleCharacterData(const std::string& /*data*/) {
	if (!parseErrorOccurred_) {

	}
}

}