123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- #pragma once
- #include <util/system/compiler.h>
- ////////////////////////////////////////////////////////////////////////////////
- //! Declares a trivial public read-write property that is passed by reference.
- #define DECLARE_BYREF_RW_PROPERTY(type, name) \
- public: \
- type& name() noexcept; \
- const type& name() const noexcept
- //! Defines a trivial public read-write property that is passed by reference.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYREF_RW_PROPERTY(type, name, ...) \
- protected: \
- type name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE type& name() noexcept \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE const type& name() const noexcept \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-write property that is passed by reference
- //! and is not inline-initialized.
- #define DEFINE_BYREF_RW_PROPERTY_NO_INIT(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type& name() noexcept \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE const type& name() const noexcept \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-write property override that is passed by reference
- //! and is not inline-initialized.
- #define DEFINE_BYREF_RW_PROPERTY_NO_INIT_OVERRIDE(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type& name() noexcept override \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE const type& name() const noexcept override \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Forwards a trivial public read-write property that is passed by reference.
- #define DELEGATE_BYREF_RW_PROPERTY(declaringType, type, name, delegateTo) \
- type& declaringType::name() noexcept \
- { \
- return (delegateTo).name(); \
- } \
- \
- const type& declaringType::name() const noexcept \
- { \
- return (delegateTo).name(); \
- } \
- static_assert(true)
- ////////////////////////////////////////////////////////////////////////////////
- //! Declares a trivial public read-only property that is passed by reference.
- #define DECLARE_BYREF_RO_PROPERTY(type, name) \
- public: \
- const type& name() const noexcept
- //! Defines a trivial public read-only property that is passed by reference.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYREF_RO_PROPERTY(type, name, ...) \
- protected: \
- type name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE const type& name() const noexcept \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-only property that is passed by reference
- //! and is not inline-initialized.
- #define DEFINE_BYREF_RO_PROPERTY_NO_INIT(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE const type& name() const noexcept \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-only property override that is passed by reference
- //! and is not inline-initialized.
- #define DEFINE_BYREF_RO_PROPERTY_NO_INIT_OVERRIDE(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE const type& name() const noexcept override \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Forwards a trivial public read-only property that is passed by reference.
- #define DELEGATE_BYREF_RO_PROPERTY(declaringType, type, name, delegateTo) \
- const type& declaringType::name() const noexcept \
- { \
- return (delegateTo).name(); \
- } \
- static_assert(true)
- ////////////////////////////////////////////////////////////////////////////////
- //! Declares a trivial public read-write property that is passed by value.
- #define DECLARE_BYVAL_RW_PROPERTY(type, name) \
- public: \
- type Get##name() const; \
- void Set##name(type value)
- //! Defines a trivial public read-write property that is passed by value.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYVAL_RW_PROPERTY(type, name, ...) \
- protected: \
- type name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE void Set##name(type value) \
- { \
- name##_ = value; \
- } \
- static_assert(true)
- //! Defines a trivial public read-write boolean property that is passed by value.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYVAL_RW_BOOLEAN_PROPERTY(name, ...) \
- protected: \
- bool name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE bool Is##name() const \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE void Set##name(bool value) \
- { \
- name##_ = value; \
- } \
- static_assert(true)
- //! Defines a trivial public read-write property that is passed by value.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYVAL_RW_PROPERTY_WITH_FLUENT_SETTER(declaringType, type, name, ...) \
- protected: \
- type name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE void Set##name(type value) &\
- { \
- name##_ = value; \
- } \
- \
- Y_FORCE_INLINE declaringType&& Set##name(type value) &&\
- { \
- name##_ = value; \
- return std::move(*this); \
- } \
- static_assert(true)
- //! Defines a trivial public read-write property that is passed by value
- //! and is not inline-initialized.
- #define DEFINE_BYVAL_RW_PROPERTY_NO_INIT(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE void Set##name(type value) \
- { \
- name##_ = value; \
- } \
- static_assert(true)
- //! Defines a trivial public read-write property override that is passed by value
- //! and is not inline-initialized.
- #define DEFINE_BYVAL_RW_PROPERTY_NO_INIT_OVERRIDE(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const override \
- { \
- return name##_; \
- } \
- \
- Y_FORCE_INLINE void Set##name(type value) override \
- { \
- name##_ = value; \
- } \
- static_assert(true)
- //! Forwards a trivial public read-write property that is passed by value.
- #define DELEGATE_BYVAL_RW_PROPERTY(declaringType, type, name, delegateTo) \
- type declaringType::Get##name() const \
- { \
- return (delegateTo).Get##name(); \
- } \
- \
- void declaringType::Set##name(type value) \
- { \
- (delegateTo).Set##name(value); \
- } \
- static_assert(true)
- ////////////////////////////////////////////////////////////////////////////////
- //! Declares a trivial public read-only property that is passed by value.
- #define DECLARE_BYVAL_RO_PROPERTY(type, name) \
- public: \
- type Get##name() const
- //! Defines a trivial public read-only property that is passed by value.
- //! All arguments after name are used as default value (via braced-init-list).
- #define DEFINE_BYVAL_RO_PROPERTY(type, name, ...) \
- protected: \
- type name##_ { __VA_ARGS__ }; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-only property that is passed by value
- //! and is not inline-initialized.
- #define DEFINE_BYVAL_RO_PROPERTY_NO_INIT(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Defines a trivial public read-only property override that is passed by value
- //! and is not inline-initialized.
- #define DEFINE_BYVAL_RO_PROPERTY_NO_INIT_OVERRIDE(type, name) \
- protected: \
- type name##_; \
- \
- public: \
- Y_FORCE_INLINE type Get##name() const override \
- { \
- return name##_; \
- } \
- static_assert(true)
- //! Forwards a trivial public read-only property that is passed by value.
- #define DELEGATE_BYVAL_RO_PROPERTY(declaringType, type, name, delegateTo) \
- type declaringType::Get##name() \
- { \
- return (delegateTo).Get##name(); \
- } \
- static_assert(true)
- ////////////////////////////////////////////////////////////////////////////////
- //! Below are macro helpers for extra properties.
- //! Extra properties should be used for lazy memory allocation for properties that
- //! hold default values for the majority of objects.
- //! Initializes extra property holder if it is not initialized.
- #define INITIALIZE_EXTRA_PROPERTY_HOLDER(holder) \
- if (!holder##_) { \
- holder##_.reset(new decltype(holder##_)::element_type()); \
- } \
- static_assert(true)
- //! Declares an extra property holder. Holder contains extra properties values.
- //! Holder is not created until some property is set with a non-default value.
- //! If there is no holder property getter returns default value.
- #define DECLARE_EXTRA_PROPERTY_HOLDER(type, holder) \
- public: \
- Y_FORCE_INLINE bool HasCustom##holder() const \
- { \
- return static_cast<bool>(holder##_); \
- } \
- Y_FORCE_INLINE const type* GetCustom##holder() const \
- { \
- return holder##_.get(); \
- } \
- Y_FORCE_INLINE type* GetCustom##holder() \
- { \
- return holder##_.get(); \
- } \
- Y_FORCE_INLINE void InitializeCustom##holder() \
- { \
- INITIALIZE_EXTRA_PROPERTY_HOLDER(holder); \
- } \
- private: \
- std::unique_ptr<type> holder##_; \
- static const type Default##holder##_
- //! Defines a storage for extra properties default values.
- #define DEFINE_EXTRA_PROPERTY_HOLDER(class, type, holder) \
- const type class::Default##holder##_
- //! Defines a public read-write extra property that is passed by value.
- #define DEFINE_BYVAL_RW_EXTRA_PROPERTY(holder, name) \
- public: \
- Y_FORCE_INLINE decltype(holder##_->name) Get##name() const \
- { \
- if (!holder##_) { \
- return Default##holder##_.name; \
- } \
- return holder##_->name; \
- } \
- Y_FORCE_INLINE void Set##name(decltype(holder##_->name) val) \
- { \
- if (!holder##_) { \
- if (val == Default##holder##_.name) { \
- return; \
- } \
- INITIALIZE_EXTRA_PROPERTY_HOLDER(holder); \
- } \
- holder##_->name = val; \
- } \
- static_assert(true)
- //! Defines a public read-write extra property that is passed by reference.
- #define DEFINE_BYREF_RW_EXTRA_PROPERTY(holder, name) \
- public: \
- Y_FORCE_INLINE const decltype(holder##_->name)& name() const \
- { \
- if (!holder##_) { \
- return Default##holder##_.name; \
- } \
- return holder##_->name; \
- } \
- Y_FORCE_INLINE decltype(holder##_->name)& Mutable##name() \
- { \
- INITIALIZE_EXTRA_PROPERTY_HOLDER(holder); \
- return holder##_->name; \
- } \
- static_assert(true)
- ////////////////////////////////////////////////////////////////////////////////
|