XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
var.hpp
Go to the documentation of this file.
1 
7 #pragma once
8 
9 #include <xtd/xtd.hpp>
10 
11 #include <memory>
12 
13 #include <xtd/string.hpp>
14 
15 namespace xtd {
16 
20  class var {
21  public:
23  var() : _inner(new empty) {}
24 
25  var(const var& src) : _inner(src._inner->clone()) {}
26 
27  template <typename _Ty> var(_Ty src) : _inner(new inner<_Ty>(src)) {}
28 
29  template <typename _Ty> var& operator = (_Ty src) {
30  var oTmp(std::forward<_Ty>(src));
31  std::swap(oTmp, *this);
32  return *this;
33  }
34 
35  var& operator=(const var& src) {
36  if (&src == this) return *this;
37  _inner.reset(src._inner->clone());
38  return *this;
39  }
40 
41  const std::type_info& get_type() const { return _inner->get_type(); }
42 
43  bool is_pod() const { return _inner->is_pod(); }
44 
45  size_t size() const { return _inner->size(); }
46 
47  template <typename _Ty> _Ty& as() {
48  return *dynamic_cast<inner<_Ty>&>(*_inner);
49  }
50 
51  template <typename _Ty> const _Ty& as() const {
52  return *dynamic_cast<inner<_Ty>&>(*_inner);
53  }
54 
55  class inner_base {
56  public:
57  using ptr = std::unique_ptr < inner_base >;
58  virtual ~inner_base() = default;
59  virtual inner_base * clone() const = 0;
60  virtual const std::type_info& get_type() const = 0;
61  virtual bool is_pod() const = 0;
62  virtual size_t size() const = 0;
63  inner_base& operator=(const inner_base&) = delete;
64  inner_base(const inner_base&) = delete;
65  inner_base() = default;
66  };
67 
68  class empty : public inner_base{
69  public:
70  ~empty() override = default;
71  inner_base * clone() const override { return new empty; }
72  const std::type_info& get_type() const override { return typeid(empty); }
73  bool is_pod() const override { throw std::runtime_error("reference to uninitialized variable"); }
74  size_t size() const override { throw std::runtime_error("reference to uninitialized variable"); }
75  };
76 
77  template <typename _Ty> class inner : public inner_base {
78  public:
79  explicit inner(_Ty newval) : _value(newval) {}
80  ~inner() override = default;
81  inner(const inner&)=delete;
82  inner() = delete;
83  inner& operator=(const inner&) = delete;
84  inner_base * clone() const override { return new inner(_value); }
85  const std::type_info& get_type() const override { return typeid(_Ty); }
86  _Ty & operator * () { return _value; }
87  const _Ty & operator * () const { return _value; }
88  bool is_pod() const override { return std::is_pod<_Ty>::value; }
89  size_t size() const override { return sizeof(_Ty); }
90  private:
91  _Ty _value;
92  };
93 
94  inner_base::ptr _inner;
95  };
96 
97  template <typename _ChT>
98  class var::inner<xtd::xstring<_ChT>> : public var::inner_base {
99  public:
100  explicit inner(xtd::xstring<_ChT> newval) : _value(std::move(newval)) {}
101  ~inner() override = default;
102  inner(const inner&) = delete;
103  inner() = delete;
104  inner& operator=(const inner&) = delete;
105  inner_base * clone() const override { return new inner(_value); }
106  const std::type_info& get_type() const override { return typeid(xtd::xstring<_ChT>); }
107  xtd::xstring<_ChT> & operator * () { return _value; }
108  const std::basic_string<_ChT> & operator * () const { return _value; }
109  bool is_pod() const override { return false; }
110  size_t size() const override { return _value.size(); }
111  private:
112  xtd::xstring<_ChT> _value;
113  };
114 
115 }
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
Extends std::string with some added functionality.
Definition: string.hpp:30
The var class implements a minimal type erasure idiom.
Definition: var.hpp:20
var()
Default constructs a var object with an underlying empty object.
Definition: var.hpp:23