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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/*
* Copyright (c) 2011-2018 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/Parser/BOSHBodyExtractor.h>
#include <memory>
#include <Swiften/Parser/XMLParser.h>
#include <Swiften/Parser/XMLParserClient.h>
#include <Swiften/Parser/XMLParserFactory.h>
namespace Swift {
class BOSHBodyParserClient : public XMLParserClient {
public:
BOSHBodyParserClient(BOSHBodyExtractor* bodyExtractor) : bodyExtractor(bodyExtractor) {
}
virtual void handleStartElement(const std::string&, const std::string&, const AttributeMap& attributes) {
bodyExtractor->body->attributes = attributes;
}
virtual void handleEndElement(const std::string&, const std::string&) {
}
virtual void handleCharacterData(const std::string&) {
}
private:
BOSHBodyExtractor* bodyExtractor;
};
inline bool isWhitespace(unsigned char c) {
return c == ' ' || c == '\n' || c == '\t' || c == '\r';
}
BOSHBodyExtractor::BOSHBodyExtractor(XMLParserFactory* parserFactory, const ByteArray& data) {
// Look for the opening body element
ByteArray::const_iterator i = data.begin();
while (i < data.end() && isWhitespace(*i)) {
++i;
}
if (std::distance(i, data.end()) < 6 || *i != '<' || *(i+1) != 'b' || *(i+2) != 'o' || *(i+3) != 'd' || *(i+4) != 'y' || !(isWhitespace(*(i+5)) || *(i+5) == '>' || *(i+5) == '/')) {
return;
}
i += 5;
// Parse until end of element
bool inSingleQuote = false;
bool inDoubleQuote = false;
bool endStartTagSeen = false;
bool endElementSeen = false;
for (; i != data.end(); ++i) {
char c = static_cast<char>(*i);
if (inSingleQuote) {
if (c == '\'') {
inSingleQuote = false;
}
}
else if (inDoubleQuote) {
if (c == '"') {
inDoubleQuote = false;
}
}
else if (c == '\'') {
inSingleQuote = true;
}
else if (c == '"') {
inDoubleQuote = true;
}
else if (c == '/') {
if (i + 1 == data.end() || *(i+1) != '>') {
return;
}
else {
endElementSeen = true;
endStartTagSeen = true;
i += 2;
break;
}
}
else if (c == '>') {
endStartTagSeen = true;
i += 1;
break;
}
}
if (!endStartTagSeen) {
return;
}
// Look for the end of the element
ByteArray::const_reverse_iterator j = data.rbegin();
if (!endElementSeen) {
while (isWhitespace(*j) && j < data.rend()) {
++j;
}
if (j == data.rend() || *j != '>') {
return;
}
++j;
while (j < data.rend() && isWhitespace(*j)) {
++j;
}
if (std::distance(j, data.rend()) < 6 || *(j+5) != '<' || *(j+4) != '/' || *(j+3) != 'b' || *(j+2) != 'o' || *(j+1) != 'd' || *j != 'y') {
return;
}
j += 6;
}
body = BOSHBody();
if (!endElementSeen) {
assert(i <= j.base());
body->content = std::string(
reinterpret_cast<const char*>(vecptr(data) + std::distance(data.begin(), i)),
static_cast<size_t>(std::distance(i, j.base())));
}
// Parse the body element
BOSHBodyParserClient parserClient(this);
std::shared_ptr<XMLParser> parser(parserFactory->createXMLParser(&parserClient));
assert(data.begin() <= i);
if (!parser->parse(std::string(
reinterpret_cast<const char*>(vecptr(data)),
static_cast<size_t>(std::distance(data.begin(), i))))) {
/* TODO: This needs to be only validating the BOSH <body> element, so that XMPP parsing errors are caught at
the correct higher layer */
body = boost::optional<BOSHBody>();
return;
}
}
}
|