aboutsummaryrefslogtreecommitdiff
path: root/build/config/utility.cxx
blob: ce723fe4bb37e7c624ea82b0eed0d823c99e009d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// file      : build/config/utility.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <build/config/utility>

using namespace std;

namespace build
{
  namespace config
  {
    const value&
    optional (scope& root, const variable& var)
    {
      auto l (root[var]);

      return l.defined ()
        ? l.belongs (*global_scope) ? (root.assign (var) = *l) : *l
        : root.assign (var); // NULL
    }

    bool
    specified (scope& r, const string& ns)
    {
      // Search all outer scopes for any value in this namespace.
      //
      for (scope* s (&r); s != nullptr; s = s->parent_scope ())
      {
        auto p (s->vars.find_namespace (ns));
        if (p.first != p.second)
          return true;
      }

      return false;
    }

    void
    append_options (cstrings& args, const const_strings_value& sv)
    {
      if (!sv.empty ())
      {
        args.reserve (args.size () + sv.size ());

        for (const string& s: sv)
          args.push_back (s.c_str ());
      }
    }
  }
}