aboutsummaryrefslogtreecommitdiff
path: root/build/config/module.cxx
blob: 426b1f6f6d2f3ca6fe49cf7904b3217d81f1fc38 (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
51
52
53
54
55
56
57
58
59
// file      : build/config/module.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <build/config/module>

#include <build/path>
#include <build/scope>
#include <build/filesystem>
#include <build/diagnostics>

#include <build/config/operation>

using namespace std;

namespace build
{
  namespace config
  {
    static bool
    trigger (bool pre, scope& base, path& p)
    {
      tracer trace ("config::trigger");

      if (pre)
      {
        level4 ([&]{trace << "intercepted sourcing of " << p;});
        return file_exists (p);
      }
      else
        return true;
    }

    void
    init (scope& root, scope& base, const location& l)
    {
      //@@ TODO: avoid multiple inits (generally, for modules).
      //

      tracer trace ("config::init");

      if (&root != &base)
        fail (l) << "config module must be initialized in project root scope";

      const dir_path& out_root (root.path ());
      level4 ([&]{trace << "for " << out_root;});

      // Register meta-operations.
      //
      if (root.meta_operations.insert (configure) != configure_id ||
          root.meta_operations.insert (disfigure) != disfigure_id)
        fail (l) << "config module must be initialized before other modules";

      // Register the build/config.build sourcing trigger.
      //
      root.triggers[out_root / path ("build/config.build")] = &trigger;
    }
  }
}