summaryrefslogtreecommitdiff
path: root/orkbasecxx/serializers/Serializer.h
blob: 023e695e39401f6af2eae52c77d3c578fe991351 (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
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
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#ifndef __SERIALIZER_H__
#define __SERIALIZER_H__

//#pragma warning( disable: 4786 ) // disables truncated symbols in browse-info warning

#include "Utils.h"
#include "dll.h"
#include "OrkBase.h"
#include <map>
#include <list>
#include "boost/shared_ptr.hpp"
#include "StdString.h"

typedef int (*StringToEnumFunction)(CStdString&);
typedef CStdString (*EnumToStringFunction)(int);

class Object;
typedef boost::shared_ptr<Object> ObjectRef;

/** Base class for serializing Objects.
*/
class DLL_IMPORT_EXPORT_ORKBASE Serializer
{
public:
	Serializer(Object* object);
	void SetObject(Object* object);

	void DeSerialize();

	void IntValue(const char* key, int& value, bool required = false);
	void DoubleValue(const char* key, double& value, bool required = false);
	void StringValue(const char* key, CStdString& value, bool required = false);
	void BoolValue(const char* key, bool& value, bool required = false);
	void EnumValue(const char* key, int& value, StringToEnumFunction, EnumToStringFunction, bool required = false);
	virtual void ObjectValue(const char* key, Object& value, bool required = false) = 0;
	void CsvValue(const char* key, std::list<CStdString>& value, bool required = false);
	void CsvMapValue(const char* key, std::map<CStdString, CStdString>& value, bool required = false);
	void DateValue(const char* key, time_t& value, bool required = false);
	virtual void ListValue(const char* key, std::list<ObjectRef>& value, Object& model, bool required = false) = 0;
	void IpRangesValue(const char* key, IpRanges& value, bool required = false);

	void AddInt(const char* key, int value);
	void AddDouble(const char* key, double value);
	void AddBool(const char* key, bool value);
	void AddEnum(const char* key, int value, EnumToStringFunction);
	void AddCsv(const char* key,  std::list<CStdString>& value);
	void AddCsvMap(const char* key,  std::map<CStdString, CStdString>& value);
	void AddDate(const char* key, time_t value);
	virtual void AddString(const char* key, CStdString& value) = 0;
	void AddIpRanges(const char* key,  IpRanges& value);

	void GetInt(const char* key, int& value, bool required = false);
	void GetDouble(const char* key, double& value, bool required = false);
	void GetBool(const char* key, bool& value, bool required = false);
	void GetEnum(const char* key, int& value, StringToEnumFunction, bool required = false);
	void GetCsv(const char* key,  std::list<CStdString>& value, bool required = false);
	void GetCsvMap(const char* key,  std::map<CStdString, CStdString>& value, bool required = false);
	void GetDate(const char* key, time_t& value, bool required = false);
	virtual void GetString(const char* key, CStdString& value, bool required = false) = 0;
	void GetIpRanges(const char* key,  IpRanges& value, bool required = false);

	void EscapeCsv(CStdString& in, CStdString& out);
	void UnEscapeCsv(CStdString& in, CStdString& out);
	void EscapePair(CStdString& in, CStdString& out);
	void UnEscapePair(CStdString& in, CStdString& out);

protected:

	Object* m_object;
	bool m_deSerialize;
};

typedef boost::shared_ptr<Serializer> SerializerRef;

/** Base class for all Key-Value pair based serializers.
*/
class DLL_IMPORT_EXPORT_ORKBASE KeyValueSerializer : public Serializer
{
public:
	KeyValueSerializer(Object* object) : Serializer(object), m_numParams(0){};

	void ObjectValue(const char* key, Object& value, bool required = false);
	void ListValue(const char* key, std::list<ObjectRef>& value, Object& model, bool required = false);

	void GetString(const char* key, CStdString& value, bool required = false);

protected:
	int m_numParams;
	std::map<CStdString, CStdString> m_map;
};

#endif