From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- libcutl/container/any.hxx | 149 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 libcutl/container/any.hxx (limited to 'libcutl/container/any.hxx') diff --git a/libcutl/container/any.hxx b/libcutl/container/any.hxx new file mode 100644 index 0000000..a7b1194 --- /dev/null +++ b/libcutl/container/any.hxx @@ -0,0 +1,149 @@ +// file : libcutl/container/any.hxx +// license : MIT; see accompanying LICENSE file + +#ifndef LIBCUTL_CONTAINER_ANY_HXX +#define LIBCUTL_CONTAINER_ANY_HXX + +#include // std::unique_ptr/auto_ptr +#include // std::type_info + +#include + +namespace cutl +{ + namespace container + { + class any + { + public: + struct typing: exception {}; + + public: + any () + { + } + + template + any (X const& x) + : holder_ (new holder_impl (x)) + { + } + + any (any const& x) + : holder_ (x.holder_->clone ()) + { + } + + template + any& + operator= (X const& x) + { + holder_.reset (new holder_impl (x)); + return *this; + } + + any& + operator= (any const& x) + { + holder_.reset (x.holder_->clone ()); + return *this; + } + + public: + template + X& + value () + { + if (holder_impl* p = dynamic_cast*> (holder_.get ())) + return p->value (); + else + throw typing (); + } + + template + X const& + value () const + { + if (holder_impl* p = dynamic_cast*> (holder_.get ())) + return p->value (); + else + throw typing (); + } + + std::type_info const& + type_info () const + { + return holder_->type_info (); + } + + public: + bool + empty () const + { + return holder_.get () == 0; + } + + void + reset () + { + return holder_.reset (); + } + + private: + class LIBCUTL_EXPORT holder + { + public: + virtual + ~holder () {} + + virtual holder* + clone () const = 0; + + virtual std::type_info const& + type_info () const = 0; + }; + + template + class holder_impl: public holder + { + public: + holder_impl (X const& x) + : x_ (x) + { + } + + virtual holder_impl* + clone () const + { + return new holder_impl (x_); + } + + virtual std::type_info const& + type_info () const + { + return typeid (x_); + } + + X const& + value () const + { + return x_; + } + + X& + value () + { + return x_; + } + + private: + X x_; + }; + + private: + std::unique_ptr holder_; + }; + } +} + +#endif // LIBCUTL_CONTAINER_ANY_HXX -- cgit v1.1