// file : libbuild2/config/utility.txx -*- C++ -*- // license : MIT; see accompanying LICENSE file namespace build2 { namespace config { template pair required (scope& rs, const variable& var, T&& def_val, bool def_ovr, uint64_t sflags) { // Note: see also omitted() if changing anything here. save_variable (rs, var, sflags); pair org (rs.find_original (var)); bool n (false); // New flag. lookup l (org.first); // The interaction with command line overrides can get tricky. For // example, the override to default value could make (non-recursive) // command line override in the outer scope no longer apply. So what we // are going to do is first ignore overrides and perform the normal // logic on the original. Then we apply the overrides on the result. // if (!l.defined () || (def_ovr && !l.belongs (rs))) { value& v (rs.assign (var) = std::forward (def_val)); // VC14 v.extra = true; // Default value flag. n = (sflags & save_default_commented) == 0; // Absence means default. l = lookup (v, var, rs); org = make_pair (l, 1); // Lookup depth is 1 since it's in rs.vars. } // Treat an inherited value that was set to default as new. // else if (l->extra) n = (sflags & save_default_commented) == 0; // Absence means default. if (var.overrides != nullptr) { pair ovr (rs.find_override (var, move (org))); if (l != ovr.first) // Overriden? { // Override is always treated as new. // n = true; l = move (ovr.first); } } return pair (l, n); } } }