aboutsummaryrefslogtreecommitdiff
path: root/build/scope
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-26 15:40:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-26 15:40:29 +0200
commite1d2e3b63934c1e193429f1d6c4e04abc0e85d56 (patch)
treeff542da6cc5d7d1b8202b5ce9cd3573211024b94 /build/scope
parentcd9a4ea692ba87aa03a80489bf03736e713722c7 (diff)
Support for scope parents, initial variable support
Diffstat (limited to 'build/scope')
-rw-r--r--build/scope31
1 files changed, 22 insertions, 9 deletions
diff --git a/build/scope b/build/scope
index 58f7933..6d96b0a 100644
--- a/build/scope
+++ b/build/scope
@@ -7,6 +7,7 @@
#include <build/path>
#include <build/path-map>
+#include <build/variable>
#include <build/prerequisite>
namespace build
@@ -19,6 +20,9 @@ namespace build
const path_type&
path () const {return i_->first;} // Absolute and normalized.
+ scope&
+ parent () const {return *parent_;}
+
private:
friend class scope_map;
@@ -27,32 +31,41 @@ namespace build
scope () = default;
void
- init (const iterator& i) {i_ = i;}
+ init (const iterator& i, scope* p) {i_ = i; parent_ = p;}
+
+ void
+ parent (scope& p) {parent_ = &p;}
public:
+ variable_map variables;
prerequisite_set prerequisites;
private:
iterator i_;
+ scope* parent_;
};
class scope_map: path_map<scope>
{
public:
+ // Note that we assume the first insertion into the map is that
+ // of the root scope.
+ //
+
scope&
- operator[] (const path& k)
- {
- auto i (emplace (k, scope ()));
- auto& r (i.first->second);
+ operator[] (const path&);
- if (i.second)
- r.init (i.first);
+ // Find the most qualified scope that encompasses this path.
+ //
+ scope&
+ find (const path&);
- return r;
- }
+ private:
+ typedef path_map<scope> base;
};
extern scope_map scopes;
+ extern scope* root_scope;
}
#endif // BUILD_SCOPE