summaryrefslogtreecommitdiffstats
blob: a01ecdbd00dabdb61be7498cac9200346274623e (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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <Swiften/Base/API.h>
#include <Swiften/Elements/Form.h>
#include <Swiften/Elements/FormField.h>
#include <Swiften/Elements/FormPage.h>
#include <Swiften/Elements/FormSection.h>
#include <Swiften/Serializer/GenericPayloadSerializer.h>
#include <Swiften/Serializer/XML/XMLElement.h>

namespace Swift {
	class SWIFTEN_API FormSerializer : public GenericPayloadSerializer<Form> {
		public:
			FormSerializer();
			virtual std::string serializePayload(boost::shared_ptr<Form>)  const;

		private:
			boost::shared_ptr<XMLElement> textToXML(boost::shared_ptr<FormText> textElement) const;
			boost::shared_ptr<XMLElement> fieldRefToXML(const std::string& ref) const;
			boost::shared_ptr<XMLElement> reportedRefToXML(boost::shared_ptr<FormReportedRef> reportedRef) const;
			boost::shared_ptr<XMLElement> pageToXML(boost::shared_ptr<FormPage> page) const;
			boost::shared_ptr<XMLElement> sectionToXML(boost::shared_ptr<FormSection> section) const;
			boost::shared_ptr<XMLElement> fieldToXML(boost::shared_ptr<FormField> field, bool withTypeAttribute) const;
			void multiLineify(const std::string& text, const std::string& elementName, boost::shared_ptr<XMLElement> parent) const;
			mutable std::vector<boost::shared_ptr<FormField> > fields_;
	};
}