From b7f6c386e0396bd242d0ec42f820db4ea0f6760b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 23 May 2022 13:09:51 +0200 Subject: Add config::origin(const variable&) overload --- libbuild2/config/utility.cxx | 29 ++++++++++++++++++++--------- libbuild2/config/utility.hxx | 3 +++ 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/libbuild2/config/utility.cxx b/libbuild2/config/utility.cxx index 7437c5b..243c03a 100644 --- a/libbuild2/config/utility.cxx +++ b/libbuild2/config/utility.cxx @@ -160,23 +160,34 @@ namespace build2 pair origin (const scope& rs, const string& n) { + const variable* var (rs.ctx.var_pool.find (n)); + + if (var == nullptr) + { + if (n.compare (0, 7, "config.") != 0) + throw invalid_argument ("config.* variable expected"); + + return make_pair (variable_origin::undefined, lookup ()); + } + + return origin (rs, *var); + } + + pair + origin (const scope& rs, const variable& var) + { // Make sure this is a config.* variable. This could matter since we // reply on the semantics of value::extra. We could also detect // special variables like config.booted, some config.config.*, etc., // (see config_save() for details) but that seems harmless. // - if (n.compare (0, 7, "config.") != 0) + if (var.name.compare (0, 7, "config.") != 0) throw invalid_argument ("config.* variable expected"); - const variable* var (rs.ctx.var_pool.find (n)); - - if (var == nullptr) - return make_pair (variable_origin::undefined, lookup ()); - - pair org (rs.lookup_original (*var)); - pair ovr (var->overrides == nullptr + pair org (rs.lookup_original (var)); + pair ovr (var.overrides == nullptr ? org - : rs.lookup_override (*var, org)); + : rs.lookup_override (var, org)); if (!ovr.first.defined ()) return make_pair (variable_origin::undefined, lookup ()); diff --git a/libbuild2/config/utility.hxx b/libbuild2/config/utility.hxx index 5a00d00..050339a 100644 --- a/libbuild2/config/utility.hxx +++ b/libbuild2/config/utility.hxx @@ -517,6 +517,9 @@ namespace build2 LIBBUILD2_SYMEXPORT pair origin (const scope& rs, const string& name); + + LIBBUILD2_SYMEXPORT pair + origin (const scope& rs, const variable&); } } -- cgit v1.1