aboutsummaryrefslogtreecommitdiff
path: root/build/variable
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-15 14:10:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-15 14:10:50 +0200
commit6535bf6175af32e2514faf75d2742424751a783b (patch)
tree21312b28ffe2bbb459a57e80a1f8eec498327d9f /build/variable
parentad720fabd468974e3909f62a0f4e4e3cf0d03aef (diff)
New variables architecture
Now operator[] is only used for lookup.
Diffstat (limited to 'build/variable')
-rw-r--r--build/variable54
1 files changed, 28 insertions, 26 deletions
diff --git a/build/variable b/build/variable
index 6c14477..48fc519 100644
--- a/build/variable
+++ b/build/variable
@@ -7,6 +7,7 @@
#include <string>
#include <memory> // unique_ptr
+#include <cstddef> // nullptr_t
#include <utility> // move()
#include <cassert>
#include <functional> // hash
@@ -19,7 +20,6 @@
namespace build
{
- class scope;
struct value;
struct value_type
@@ -87,10 +87,10 @@ namespace build
//
// A variable can be undefined, null, or contain some actual value.
//
+ struct variable_map;
+
struct value_proxy
{
- typedef build::scope scope_type;
-
bool
defined () const {return p != nullptr;}
@@ -100,8 +100,6 @@ namespace build
explicit operator bool () const {return defined () && !null ();}
explicit operator value_ptr& () const {return *p;}
- scope_type* scope; // If NULL, then this is a target variable.
-
// Get interface. See available specializations below.
//
template <typename T>
@@ -127,9 +125,20 @@ namespace build
const value_proxy&
operator= (dir_path) const;
+ const value_proxy&
+ operator= (nullptr_t) const;
+
+ // Return true if this value belongs to the specified scope or target.
+ //
+ template <typename T>
+ bool
+ belongs (const T& x) const {return map == &x.vars;}
+
// Implementation details.
//
- value_proxy (value_ptr* p, scope_type* s): p (p), scope (s) {}
+ const variable_map* map; // Variable map to which this value belongs.
+
+ value_proxy (value_ptr* p, const variable_map* m): map (m), p (p) {}
private:
value_ptr* p;
@@ -215,32 +224,32 @@ namespace build
typedef prefix_map<variable_cref, value_ptr, '.'> base;
value_proxy
- operator[] (const std::string& v)
+ operator[] (const variable& var) const
{
- return operator[] (variable_pool.find (v));
+ auto i (find (var));
+ return i != end ()
+ // @@ To do this properly we seem to need ro_value_proxy.
+ //
+ ? value_proxy (&const_cast<value_ptr&> (i->second), this)
+ : value_proxy (nullptr, nullptr);
}
value_proxy
- operator[] (const variable& v)
+ operator[] (const std::string& name) const
{
- return value_proxy (&base::operator[] (v), scope_);
+ return operator[] (variable_pool.find (name));
}
value_proxy
- operator[] (const std::string& v) const
+ assign (const variable& var)
{
- return operator[] (variable_pool.find (v));
+ return value_proxy (&base::operator[] (var), this);
}
value_proxy
- operator[] (const variable& v) const
+ assign (const std::string& name)
{
- auto i (find (v));
- return i != end ()
- // @@ To do this properly we seem to need ro_value_proxy.
- //
- ? value_proxy (&const_cast<value_ptr&> (i->second), scope_)
- : value_proxy (nullptr, nullptr);
+ return assign (variable_pool.find (name));
}
std::pair<iterator, iterator>
@@ -254,13 +263,6 @@ namespace build
{
return find_prefix (variable_pool.find (ns));
}
-
- explicit
- variable_map (scope* s): scope_ (s) {}
-
- private:
- scope* scope_; // Scope to which this map belongs or NULL if this
- // is a target variable map.
};
}