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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
/**
* @file metapropertyt.h
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_METAPROPERTYT_H
#define LL_METAPROPERTYT_H
#include "llsd.h"
#include "llstring.h"
#include "metaclasst.h"
#include "metaproperty.h"
#include "reflectivet.h"
template<class TProperty>
class LLMetaPropertyT : public LLMetaProperty
{
public:
virtual ~LLMetaPropertyT() {;}
// Get value of this property. Gives ownership of returned value.
virtual const LLReflective* get(const LLReflective* object) const
{
checkObjectClass(object);
return getProperty(object);
}
// Set value of this property.
/*virtual void set(LLReflective* object, const LLReflective* value)
{
// TODO: Babbage: Check types.
ref(object) = static_cast<const LLReflectiveT<TProperty>* >(value)->getValue();
}*/
// Get value of this property as LLSD.
virtual LLSD getLLSD(const LLReflective* object) const
{
return LLSD();
}
protected:
LLMetaPropertyT(const std::string& name, const LLMetaClass& object_class) : LLMetaProperty(name, object_class) {;}
virtual const TProperty* getProperty(const LLReflective* object) const = 0;
};
template <>
inline const LLReflective* LLMetaPropertyT<S32>::get(const LLReflective* object) const
{
checkObjectClass(object);
return NULL;
}
template <>
inline const LLReflective* LLMetaPropertyT<std::string>::get(const LLReflective* object) const
{
checkObjectClass(object);
return NULL;
}
template <>
inline const LLReflective* LLMetaPropertyT<LLString>::get(const LLReflective* object) const
{
checkObjectClass(object);
return NULL;
}
template <>
inline const LLReflective* LLMetaPropertyT<LLUUID>::get(const LLReflective* object) const
{
checkObjectClass(object);
return NULL;
}
template <>
inline LLSD LLMetaPropertyT<S32>::getLLSD(const LLReflective* object) const
{
return *(getProperty(object));
}
template <>
inline LLSD LLMetaPropertyT<std::string>::getLLSD(const LLReflective* object) const
{
return *(getProperty(object));
}
template <>
inline LLSD LLMetaPropertyT<LLString>::getLLSD(const LLReflective* object) const
{
return *(getProperty(object));
}
template <>
inline LLSD LLMetaPropertyT<LLUUID>::getLLSD(const LLReflective* object) const
{
return *(getProperty(object));
}
template<class TObject, class TProperty>
class LLMetaPropertyTT : public LLMetaPropertyT<TProperty>
{
public:
LLMetaPropertyTT(const std::string& name, const LLMetaClass& object_class, TProperty (TObject::*property)) :
LLMetaPropertyT<TProperty>(name, object_class), mProperty(property) {;}
protected:
// Get void* to property.
virtual const TProperty* getProperty(const LLReflective* object) const
{
const TObject* typed_object = static_cast<const TObject*>(object);
return &(typed_object->*mProperty);
};
private:
TProperty (TObject::*mProperty);
};
template<class TObject, class TProperty>
class LLMetaPropertyPtrTT : public LLMetaPropertyT<TProperty>
{
public:
LLMetaPropertyPtrTT(const std::string& name, const LLMetaClass& object_class, TProperty* (TObject::*property)) :
LLMetaPropertyT<TProperty>(name, object_class), mProperty(property) {;}
protected:
// Get void* to property.
virtual const TProperty* getProperty(const LLReflective* object) const
{
const TObject* typed_object = static_cast<const TObject*>(object);
return typed_object->*mProperty;
};
private:
TProperty* (TObject::*mProperty);
};
// Utility function to simplify the registration of members.
template<class TObject, class TProperty>
void reflectProperty(LLMetaClass& meta_class, const std::string& name, TProperty (TObject::*property))
{
typedef LLMetaPropertyTT<TObject, TProperty> PropertyType;
const LLMetaProperty* meta_property = new PropertyType(name, meta_class, property);
meta_class.addProperty(meta_property);
}
// Utility function to simplify the registration of ptr properties.
template<class TObject, class TProperty>
void reflectPtrProperty(LLMetaClass& meta_class, const std::string& name, TProperty* (TObject::*property))
{
typedef LLMetaPropertyPtrTT<TObject, TProperty> PropertyType;
const LLMetaProperty* meta_property = new PropertyType(name, meta_class, property);
meta_class.addProperty(meta_property);
}
#endif // LL_METAPROPERTYT_H
|