[*] improved soo with ctors
This commit is contained in:
parent
c20c7072e3
commit
5e0678e628
@ -83,7 +83,7 @@
|
||||
#endif
|
||||
|
||||
#if !defined(AU_SHARED_API)
|
||||
#define AU_SHARED_API(name, type, ...) AU_SHARED_API_EX(, name, type, #__VA_ARGS__)
|
||||
#define AU_SHARED_API(name, type, ...) AU_SHARED_API_EX(, name, type, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#if !defined(AU_NOINLINE)
|
||||
|
@ -18,7 +18,17 @@
|
||||
|
||||
#define _AUROXTL_INTERRFACE_SOO_THIS(FullType) (reinterpret_cast<FullType *>(this))
|
||||
|
||||
#define AUROXTL_INTERFACE_SOO_HDR_(type, maxSize) \
|
||||
// ??!?!
|
||||
#if !defined(_ZAUFE_FE_1_FIRST)
|
||||
#define _ZAUFE_FE_1_FIRST(a, b)
|
||||
#endif
|
||||
|
||||
#define _AUROXTL_INTERRFACE_SOO_EMITTER_0(a) AU_EMIT_FIRST a AU_EMIT_SECOND a
|
||||
#define _AUROXTL_INTERRFACE_SOO_EMITTER_1(a) , AU_EMIT_FIRST a AU_EMIT_SECOND a
|
||||
#define _AUROXTL_INTERRFACE_SOO_EMITTER_2(a) AU_EMIT_SECOND a
|
||||
#define _AUROXTL_INTERRFACE_SOO_EMITTER_3(a) , AU_EMIT_SECOND a
|
||||
|
||||
#define AUROXTL_INTERFACE_SOO_HDR_(type, maxSize, ...) \
|
||||
protected: \
|
||||
char padding[maxSize] {}; \
|
||||
inline type(std::nullptr_t) \
|
||||
@ -26,13 +36,13 @@
|
||||
public: \
|
||||
static const AuUInt kSSOPaddedSize = maxSize; \
|
||||
static const AuUInt kSSORealSize; \
|
||||
type(); \
|
||||
type(AU_FOR_EACH_FIRST(_AUROXTL_INTERRFACE_SOO_EMITTER_0, _AUROXTL_INTERRFACE_SOO_EMITTER_1, ## __VA_ARGS__));\
|
||||
~type();
|
||||
|
||||
#define AUROXTL_INTERFACE_SOO_HDR(Type, extends, targetSize) \
|
||||
#define AUROXTL_INTERFACE_SOO_HDR(Type, extends, targetSize, ...) \
|
||||
struct Type ## SOO \
|
||||
{ \
|
||||
AUROXTL_INTERFACE_SOO_HDR_(Type ## SOO, targetSize) \
|
||||
AUROXTL_INTERFACE_SOO_HDR_(Type ## SOO, targetSize, ## __VA_ARGS__) \
|
||||
inline extends *operator ->() \
|
||||
{ \
|
||||
return (extends *)this->padding; \
|
||||
@ -45,11 +55,32 @@ struct Type ## SOO \
|
||||
{ \
|
||||
return (extends *)this->padding; \
|
||||
} \
|
||||
inline extends * AsPointer() \
|
||||
{ \
|
||||
return (extends *)this->padding; \
|
||||
} \
|
||||
\
|
||||
inline const extends *operator ->() const \
|
||||
{ \
|
||||
return (const extends *)this->padding; \
|
||||
} \
|
||||
inline operator const extends&() const \
|
||||
{ \
|
||||
return *(const extends *)this->padding; \
|
||||
} \
|
||||
inline operator const extends*() const \
|
||||
{ \
|
||||
return (const extends *)this->padding; \
|
||||
} \
|
||||
inline const extends * AsPointer() const \
|
||||
{ \
|
||||
return (const extends *)this->padding; \
|
||||
} \
|
||||
}; \
|
||||
using Type ## SOO_t = Type ## SOO;
|
||||
|
||||
#define AUROXTL_INTERFACE_SOO_SRC(Type, FullType) \
|
||||
Type ## SOO::Type ## SOO() \
|
||||
#define AUROXTL_INTERFACE_SOO_SRC(Type, FullType, ...) \
|
||||
Type ## SOO::Type ## SOO(AU_FOR_EACH_FIRST(_AUROXTL_INTERRFACE_SOO_EMITTER_0, _AUROXTL_INTERRFACE_SOO_EMITTER_1, ## __VA_ARGS__)) \
|
||||
{ \
|
||||
if (kSSORealSize > kSSOPaddedSize) \
|
||||
{ \
|
||||
@ -58,7 +89,7 @@ Type ## SOO::Type ## SOO() \
|
||||
} \
|
||||
\
|
||||
{ \
|
||||
new (_AUROXTL_INTERRFACE_SOO_THIS(FullType)) FullType(); \
|
||||
new (_AUROXTL_INTERRFACE_SOO_THIS(FullType)) FullType(AU_FOR_EACH_FIRST(_AUROXTL_INTERRFACE_SOO_EMITTER_2, _AUROXTL_INTERRFACE_SOO_EMITTER_3, ## __VA_ARGS__)); \
|
||||
} \
|
||||
} \
|
||||
\
|
||||
@ -70,6 +101,12 @@ const AuUInt Type ## SOO::kSSORealSize = sizeof(FullType);
|
||||
|
||||
#if !defined(AU_SHARED_API_SOO)
|
||||
#define AU_SHARED_API_SOO(name, size, type, ...) \
|
||||
AU_SHARED_API_EX(, name, type, #__VA_ARGS__) \
|
||||
AU_SHARED_API_EX(, name, type, ##__VA_ARGS__) \
|
||||
AUROXTL_INTERFACE_SOO_HDR(name, type, size)
|
||||
#endif
|
||||
|
||||
#if !defined(AU_SHARED_API_SOO_2)
|
||||
#define AU_SHARED_API_SOO_2(name, size, type, ctr, ...) \
|
||||
AU_SHARED_API_EX(, name, type, ##__VA_ARGS__) \
|
||||
AUROXTL_INTERFACE_SOO_HDR(name, type, size, AU_WHAT ctr)
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user