aboutsummaryrefslogtreecommitdiff
path: root/build/variable
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-01 11:08:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-01 11:08:13 +0200
commit0dee00f28e623830e816c4002c8004c86055df85 (patch)
tree14c2a2abe241df53821bc585b7adeaff16c768cd /build/variable
parent276a0796a97b0a312c0071bba0bf924b5f5c6eee (diff)
Implement initial C++ configuration support
Diffstat (limited to 'build/variable')
-rw-r--r--build/variable50
1 files changed, 43 insertions, 7 deletions
diff --git a/build/variable b/build/variable
index dfdcaff..0688a3e 100644
--- a/build/variable
+++ b/build/variable
@@ -48,21 +48,30 @@ namespace build
// value
//
+ struct value;
+ typedef std::unique_ptr<value> value_ptr;
+
struct value
{
typedef build::scope scope_type;
- virtual
- ~value () = default;
+ scope_type& scope; // Scope to which this value belongs.
+ public:
value (scope_type& s): scope (s) {}
- scope_type& scope; // Scope to which this value belongs.
+ virtual value_ptr
+ clone (scope_type& s) const = 0;
+
+ virtual
+ ~value () = default;
};
- typedef std::unique_ptr<value> value_ptr;
struct list_value: value
{
+ names data;
+
+ public:
list_value (scope_type& s, names d): value (s), data (std::move (d)) {}
list_value (scope_type& s, std::string d)
@@ -79,7 +88,8 @@ namespace build
data.emplace_back (std::move (d));
}
- names data;
+ value_ptr
+ clone (scope_type& s) const {return value_ptr (new list_value (s, data));}
};
typedef std::unique_ptr<list_value> list_value_ptr;
@@ -87,9 +97,14 @@ namespace build
//
struct value_proxy
{
+ typedef build::scope scope_type;
+
explicit operator bool () const {return p != nullptr && *p != nullptr;}
explicit operator value_ptr& () const {return *p;}
+ scope_type&
+ scope () const {return *s;}
+
// Get interface. See available specializations below.
//
template <typename T>
@@ -107,6 +122,23 @@ namespace build
}
const value_proxy&
+ operator= (const value_proxy& v) const
+ {
+ if (this != &v)
+ {
+ if (v)
+ {
+ const value_ptr& vp (v);
+ *p = vp->clone (*s);
+ }
+ else
+ p->reset ();
+ }
+
+ return *this;
+ }
+
+ const value_proxy&
operator= (std::string v) const
{
// In most cases this is used to initialize a new variable, so
@@ -129,11 +161,11 @@ namespace build
// Implementation details.
//
explicit
- value_proxy (value_ptr* p, scope* s): p (p), s (s) {}
+ value_proxy (value_ptr* p, scope_type* s): p (p), s (s) {}
protected:
value_ptr* p;
- scope* s;
+ scope_type* s;
};
template <>
@@ -141,6 +173,10 @@ namespace build
as<list_value&> () const;
template <>
+ inline const list_value& value_proxy::
+ as<const list_value&> () const {return as<list_value&> ();}
+
+ template <>
const std::string& value_proxy::
as<const std::string&> () const;