blob: 68ad2ab089877bcfa15ccae73603acfdbbdbd4d4 (
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
|
#pragma once
#include "../Base.h"
#include <cru/base/Base.h>
#include <cru/base/ClonePtr.h>
#include <cru/base/xml/XmlNode.h>
#include <memory>
#include <type_traits>
#include <typeindex>
namespace cru::ui::mapper {
class CRU_UI_API MapException : public Exception {
public:
using Exception::Exception;
};
class CRU_UI_API MapperBase : public Object {
public:
explicit MapperBase(std::type_index type_index);
public:
std::type_index GetTypeIndex() const { return type_index_; }
virtual bool SupportMapFromString() { return false; }
virtual bool SupportMapFromXml() { return false; }
virtual bool XmlElementIsOfThisType(xml::XmlElementNode* node) {
return false;
}
private:
std::type_index type_index_;
};
template <typename T>
class CRU_UI_API BasicMapper : public MapperBase {
public:
static_assert(std::is_default_constructible_v<T>,
"T must be default constructible.");
BasicMapper() : MapperBase(typeid(T)) {}
virtual T MapFromString(std::string str) {
if (!SupportMapFromString()) {
throw Exception("This mapper does not support map from string.");
}
return DoMapFromString(str);
}
T MapFromXml(xml::XmlElementNode* node) {
if (!SupportMapFromXml()) {
throw Exception("This mapper does not support map from xml.");
}
if (!XmlElementIsOfThisType(node)) {
throw Exception("This xml element is not of mapping type.");
}
return DoMapFromXml(node);
}
protected:
virtual T DoMapFromString(std::string str) { return {}; }
virtual T DoMapFromXml(xml::XmlElementNode* node) { return {}; }
};
template <typename T>
using BasicSharedPtrMapper = BasicMapper<std::shared_ptr<T>>;
template <typename T>
using BasicClonePtrMapper = BasicMapper<ClonePtr<T>>;
} // namespace cru::ui::mapper
#define CRU_UI_DECLARE_CAN_MAP_FROM_STRING(type) \
public: \
bool SupportMapFromString() override { return true; } \
\
protected: \
type DoMapFromString(std::string str) override;
#define CRU_UI_DECLARE_CAN_MAP_FROM_XML_ELEMENT(type) \
public: \
bool SupportMapFromXml() override { return true; } \
bool XmlElementIsOfThisType(xml::XmlElementNode* node) override; \
\
protected: \
type DoMapFromXml(xml::XmlElementNode* node) override;
#define CRU_UI_DECLARE_CAN_MAP_FROM_XML_ELEMENT_TAG(xml_tag, type) \
public: \
bool SupportMapFromXml() override { return true; } \
bool XmlElementIsOfThisType(xml::XmlElementNode* node) override { \
return node->HasTag(#xml_tag); \
} \
\
protected: \
type DoMapFromXml(xml::XmlElementNode* node) override;
|