blob: 87f83179ee1f8d64937df69e1fcd8887dd6e283a (
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
|
/*
* Copyright (c) 2011 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include "JingleFileTransferHashParser.h"
#include <boost/shared_ptr.hpp>
#include <boost/algorithm/string.hpp>
#include <Swiften/Parser/PayloadParsers/StreamInitiationFileInfoParser.h>
#include <Swiften/Parser/GenericPayloadParserFactory.h>
#include <Swiften/Parser/PayloadParserFactory.h>
namespace Swift {
JingleFileTransferHashParser::JingleFileTransferHashParser() {
}
void JingleFileTransferHashParser::handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes) {
if (element == "hash") {
algo = attributes.getAttribute("algo");
}
}
void JingleFileTransferHashParser::handleEndElement(const std::string& element, const std::string& ) {
if (element == "hash" && !algo.empty() && !hash.empty()) {
getPayloadInternal()->setHash(algo, hash);
algo.clear();
hash.clear();
}
}
void JingleFileTransferHashParser::handleCharacterData(const std::string& data) {
if (!algo.empty()) {
std::string new_data(data);
boost::trim(new_data);
hash += new_data;
}
}
}
|