/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/Serializer/PayloadSerializers/BytestreamsSerializer.h"

#include <boost/shared_ptr.hpp>
#include <boost/lexical_cast.hpp>

#include "Swiften/Base/foreach.h"
#include "Swiften/Serializer/XML/XMLElement.h"
#include "Swiften/Serializer/PayloadSerializerCollection.h"


namespace Swift {

BytestreamsSerializer::BytestreamsSerializer() {
}

std::string BytestreamsSerializer::serializePayload(boost::shared_ptr<Bytestreams> bytestreams)	const {
	XMLElement queryElement("query", "http://jabber.org/protocol/bytestreams");
	queryElement.setAttribute("sid", bytestreams->getStreamID());
	foreach(const Bytestreams::StreamHost& streamHost, bytestreams->getStreamHosts()) {
		boost::shared_ptr<XMLElement> streamHostElement(new XMLElement("streamhost"));
		streamHostElement->setAttribute("host", streamHost.host);
		streamHostElement->setAttribute("jid", streamHost.jid.toString());
		streamHostElement->setAttribute("port", boost::lexical_cast<std::string>(streamHost.port));
		queryElement.addNode(streamHostElement);
	}

	if (bytestreams->getUsedStreamHost()) {
		boost::shared_ptr<XMLElement> streamHostElement(new XMLElement("streamhost-used"));
		streamHostElement->setAttribute("jid", *bytestreams->getUsedStreamHost());
		queryElement.addNode(streamHostElement);
	}
	return queryElement.serialize();
}

}