/* * Copyright (c) 2011 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include #include #include #include namespace Swift { class RawRequest : public Request { public: typedef boost::shared_ptr ref; static ref create(IQ::Type type, const JID& recipient, const std::string& data, IQRouter* router) { return ref(new RawRequest(type, recipient, data, router)); } boost::signal onResponse; private: RawRequest(IQ::Type type, const JID& receiver, const std::string& data, IQRouter* router) : Request(type, receiver, boost::make_shared(data), router) { } virtual void handleResponse(boost::shared_ptr payload, ErrorPayload::ref error) { if (error) { onResponse(ErrorSerializer().serializePayload(error)); } else { assert(payload); PayloadSerializer* serializer = serializers.getPayloadSerializer(payload); assert(serializer); onResponse(serializer->serialize(payload)); } } private: FullPayloadSerializerCollection serializers; }; }