aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-02 09:06:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-02 09:06:26 +0200
commit54fb34bb1ccfac35addd381921be316302276b1b (patch)
tree96f34e4efb2e8ff7742b417f0591e8d57ae441ff /build2
parent175437114658325674a9fec4ea49703e192c4ffc (diff)
Add notion of lookup depth, fix bug with NULL overrides
Diffstat (limited to 'build2')
-rw-r--r--build2/scope16
-rw-r--r--build2/scope.cxx97
-rw-r--r--build2/target20
-rw-r--r--build2/target.cxx43
4 files changed, 117 insertions, 59 deletions
diff --git a/build2/scope b/build2/scope
index b4c4e96..0e1bae5 100644
--- a/build2/scope
+++ b/build2/scope
@@ -130,22 +130,24 @@ namespace build2
lookup
find (const variable& var, const target_type* tt, const string* tn) const
{
- lookup l (find_original (var, tt, tn));
+ auto p (find_original (var, tt, tn));
return var.override == nullptr
- ? l
- : find_override (var, move (l), false);
+ ? p.first
+ : find_override (var, move (p), false).first;
}
- // Implementation details (used by target lookup).
+ // Implementation details (used by scope target lookup).
//
- lookup
+ pair<lookup, size_t>
find_original (
const variable&,
const target_type* tt, const string* tn,
const target_type* gt = nullptr, const string* gn = nullptr) const;
- lookup
- find_override (const variable&, lookup&& original, bool orig_tspec) const;
+ pair<lookup, size_t>
+ find_override (const variable&,
+ pair<lookup, size_t>&& original,
+ bool target) const;
// Return a value suitable for assignment (or append if you only
// want to append to the value from this scope). If the variable
diff --git a/build2/scope.cxx b/build2/scope.cxx
index 5b1e3fd..0659797 100644
--- a/build2/scope.cxx
+++ b/build2/scope.cxx
@@ -12,30 +12,33 @@ namespace build2
{
// scope
//
- lookup scope::
+ pair<lookup, size_t> scope::
find_original (const variable& var,
const target_type* tt, const string* tn,
const target_type* gt, const string* gn) const
{
+ size_t d (0);
+
for (const scope* s (this); s != nullptr; )
{
- if (!s->target_vars.empty ())
+ if (tt != nullptr) // This started from the target.
{
- if (tt != nullptr)
- {
+ bool f (!s->target_vars.empty ());
+
+ ++d;
+ if (f)
if (auto l = s->target_vars.find (*tt, *tn, var))
- return l;
- }
+ return make_pair (move (l), d);
- if (gt != nullptr)
- {
+ ++d;
+ if (f && gt != nullptr)
if (auto l = s->target_vars.find (*gt, *gn, var))
- return l;
- }
+ return make_pair (move (l), d);
}
+ ++d;
if (auto r = s->vars.find (var))
- return lookup (r, &s->vars);
+ return make_pair (lookup (r, &s->vars), d);
switch (var.visibility)
{
@@ -51,11 +54,13 @@ namespace build2
}
}
- return lookup ();
+ return make_pair (lookup (), size_t (~0));
}
- lookup scope::
- find_override (const variable& var, lookup&& orig, bool tspec) const
+ pair<lookup, size_t> scope::
+ find_override (const variable& var,
+ pair<lookup, size_t>&& original,
+ bool target) const
{
// Normally there would be no overrides and if there are, there will only
// be a few of them. As a result, here we concentrate on keeping the logic
@@ -63,14 +68,32 @@ namespace build2
//
assert (var.override != nullptr);
+ lookup& origl (original.first);
+ size_t origd (original.second);
+
// The first step is to find out where our cache will reside. After some
// meditation it becomes clear it should be next to the innermost (scope-
// wise) value (override or original) that contributes to the end result.
//
+ size_t depth (0);
+ const variable_map* vars (nullptr);
+
// One special case is if the original is target-specific, which is the
- // most innermost (or is it inermostest).
+ // most innermost. Or is it innermostest?
//
- const variable_map* vars (tspec ? orig.vars : nullptr);
+ bool targetspec (false);
+ if (target)
+ {
+ targetspec = origl.defined () && (origd == 1 || origd == 2);
+
+ if (targetspec)
+ {
+ vars = origl.vars;
+ depth = origd;
+ }
+ else
+ depth = 2; // For implied target-specific lookup.
+ }
const scope* s;
@@ -115,8 +138,8 @@ namespace build2
return lookup (s->vars.find (*o), &s->vars);
};
- // Return true if a value is from this scope (either target-specific or
- // normal).
+ // Return true if a value is from this scope (either target type/pattern-
+ // specific or ordinary).
//
auto test = [&s] (const lookup& l) -> bool
{
@@ -140,14 +163,24 @@ namespace build2
// the target type/patter-specific variables, which is "more inner" than
// normal scope variables (see find_original()).
//
- if (vars == nullptr && orig && test (orig))
- vars = orig.vars;
+ if (vars == nullptr && origl.defined () && test (origl))
+ {
+ vars = origl.vars;
+ depth = origd;
+ }
+
+ if (vars == nullptr)
+ // Extra 2 for implied target type/pattern-specific lookup.
+ //
+ depth += target ? 3 : 1;
for (const variable* o (var.override.get ());
o != nullptr;
o = o->override.get ())
{
- if (auto l = find (o))
+ auto l (find (o));
+
+ if (l.defined ())
{
if (vars == nullptr)
vars = l.vars;
@@ -165,7 +198,7 @@ namespace build2
}
if (!apply)
- return move (orig);
+ return move (original);
assert (vars != nullptr);
@@ -185,15 +218,15 @@ namespace build2
// __override, depending on which one is the innermost. We may also not
// have one at all.
//
- lookup stem (tspec ? orig : lookup ());
+ lookup stem (targetspec ? origl : lookup ());
for (s = this; s != nullptr; s = s->parent_scope ())
{
// First check if the original is from this scope.
//
- if (orig && test (orig))
+ if (origl.defined () && test (origl))
{
- stem = orig;
+ stem = origl;
break;
}
@@ -203,18 +236,20 @@ namespace build2
o != nullptr;
o = o->override.get ())
{
- if ((stem = find (o, ".__override")))
+ stem = find (o, ".__override");
+
+ if (stem.defined ())
break;
}
- if (stem)
+ if (stem.defined ())
break;
}
// If there is a stem, set it as the initial value of the cache.
// Otherwise, start with a NULL value.
//
- if (stem)
+ if (stem.defined ())
{
cache.value = *stem;
cache.stem_vars = stem.vars;
@@ -245,11 +280,11 @@ namespace build2
// variable itself is typed. We also pass the original variable for
// diagnostics.
//
- if (auto l = find (o, ".__prefix"))
+ if (auto l = find (o, ".__prefix")) // No sense if NULL.
{
cache.value.prepend (names (cast<names> (l)), var);
}
- else if (auto l = find (o, ".__suffix"))
+ else if (auto l = find (o, ".__suffix")) // No sense if NULL.
{
cache.value.append (names (cast<names> (l)), var);
}
@@ -259,7 +294,7 @@ namespace build2
// Use the location of the cache (innermost value that contributes) as
// the location of the result.
//
- return lookup (&cache.value, vars);
+ return make_pair (lookup (&cache.value, vars), depth);
}
value& scope::
diff --git a/build2/target b/build2/target
index af573fa..eb6154a 100644
--- a/build2/target
+++ b/build2/target
@@ -276,7 +276,10 @@ namespace build2
// (and note that there will be no overrides).
//
lookup
- operator[] (const variable&) const;
+ operator[] (const variable& var) const
+ {
+ return find (var).first;
+ }
lookup
operator[] (const string& name) const
@@ -284,6 +287,21 @@ namespace build2
return operator[] (var_pool.find (name));
}
+ // As above but also return the depth at which the value is found. The
+ // depth is calculated by adding 1 for each test performed. So a value
+ // that is from the target will have depth 1. That from the group -- 2.
+ // From the innermost scope's target type/patter-specific variables --
+ // 3. From the innermost scope's variables -- 4. And so on. The idea is
+ // that given two lookups from the same target, we can say which one came
+ // earlier. If no value is found, then the depth is set to ~0.
+ //
+ pair<lookup, size_t>
+ find (const variable&) const;
+
+ pair<lookup, size_t>
+ find (const string& name) const {return find (var_pool.find (name));}
+
+
// Return a value suitable for assignment. See class scope for
// details.
//
diff --git a/build2/target.cxx b/build2/target.cxx
index f1f0637..c9e6fde 100644
--- a/build2/target.cxx
+++ b/build2/target.cxx
@@ -114,41 +114,44 @@ namespace build2
return *r;
}
- lookup target::
- operator[] (const variable& var) const
+ pair<lookup, size_t> target::
+ find (const variable& var) const
{
- lookup l;
- bool tspec (false);
+ pair<lookup, size_t> r (lookup (), 0);
scope& s (base_scope ());
+ ++r.second;
if (auto p = vars.find (var))
- {
- tspec = true;
- l = lookup (p, &vars);
- }
+ r.first = lookup (p, &vars);
- if (!l && group != nullptr)
+ if (!r.first)
{
- if (auto p = group->vars.find (var))
+ ++r.second;
+ if (group != nullptr)
{
- tspec = true;
- l = lookup (p, &group->vars);
+ if (auto p = group->vars.find (var))
+ r.first = lookup (p, &group->vars);
}
}
// Delegate to scope's find().
//
- if (!l)
- l = s.find_original (var,
- &type (),
- &name,
- group != nullptr ? &group->type () : nullptr,
- group != nullptr ? &group->name : nullptr);
+ if (!r.first)
+ {
+ auto p (s.find_original (var,
+ &type (),
+ &name,
+ group != nullptr ? &group->type () : nullptr,
+ group != nullptr ? &group->name : nullptr));
+
+ r.first = move (p.first);
+ r.second = r.first ? r.second + p.second : p.second;
+ }
return var.override == nullptr
- ? l
- : s.find_override (var, move (l), tspec);
+ ? r
+ : s.find_override (var, move (r), true);
}
value& target::