aboutsummaryrefslogtreecommitdiff
path: root/build/config/operation.cxx
blob: baafc97db013ae587992ad219069310d10bff992 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
// file      : build/config/operation.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <build/config/operation>

#include <fstream>

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

using namespace std;

namespace build
{
  namespace config
  {
    static const path build_dir ("build");
    static const path bootstrap_dir ("build/bootstrap");

    static const path config_file ("build/config.build");
    static const path src_root_file ("build/bootstrap/src-root.build");

    // configure
    //
    static operation_id
    configure_operation_pre (operation_id o)
    {
      // Don't translate default to update. In our case unspecified
      // means configure everything.
      //
      return o;
    }

    static void
    save_src_root (const path& out_root, const path& src_root)
    {
      path f (out_root / src_root_file);

      if (verb >= 1)
        text << "config::save_src_root " << f.string ();
      else
        text << "save " << f;

      try
      {
        ofstream ofs (f.string ());
        if (!ofs.is_open ())
          fail << "unable to open " << f;

        ofs.exceptions (ofstream::failbit | ofstream::badbit);

        //@@ TODO: quote path
        //
        ofs << "# Created automatically by the config module." << endl
            << "#" << endl
            << "src_root = " << src_root.string () << '/' << endl;
      }
      catch (const ios_base::failure&)
      {
        fail << "failed to write to " << f;
      }
    }

    static void
    save_config (const path& out_root)
    {
      path f (out_root / config_file);

      if (verb >= 1)
        text << "config::save_config " << f.string ();
      else
        text << "save " << f;

      try
      {
        ofstream ofs (f.string ());
        if (!ofs.is_open ())
          fail << "unable to open " << f;

        ofs.exceptions (ofstream::failbit | ofstream::badbit);

        // Save all the variables in the config. namespace that are set
        // on the project's root scope.
        //
        scope& r (scopes.find (out_root));

        /*
        r.variables["config"] = "default interactive";
        r.variables["config.cxx"] = "g++-4.9";
        r.variables["config.cxx.options"] = "-O3 -g";
        */

        for (auto p (r.variables.find_namespace ("config"));
             p.first != p.second;
             ++p.first)
        {
          const variable& var (p.first->first);
          const value& val (*p.first->second);

          //@@ TODO: assuming list
          //
          const list_value& lv (dynamic_cast<const list_value&> (val));

          ofs << var.name << " = " << lv.data << endl;
          text << var.name << " = " << lv.data;
        }
      }
      catch (const ios_base::failure&)
      {
        fail << "failed to write to " << f;
      }
    }

    static void
    configure_execute (action a, const action_targets& ts)
    {
      tracer trace ("configure_execute");

      for (void* v: ts)
      {
        target& t (*static_cast<target*> (v));
        scope& s (scopes.find (t.dir));

        const path& out_root (s["out_root"].as<const path&> ());
        const path& src_root (s["src_root"].as<const path&> ());

        // Make sure the directories exist.
        //
        if (out_root != src_root)
        {
          mkdir (out_root);
          mkdir (out_root / build_dir);
        }

        mkdir (out_root / bootstrap_dir);

        // We distinguish between a complete configure and operation-
        // specific.
        //
        if (a.operation () == default_id)
        {
          level4 ([&]{trace << "completely configuring " << out_root;});

          // Save src-root.build unless out_root is the same as src.
          //
          if (out_root != src_root)
            save_src_root (out_root, src_root);

          // Save config.build.
          //
          save_config (out_root);
        }
        else
        {
        }
      }
    }

    meta_operation_info configure {
      "configure",
      nullptr, // meta-operation pre
      &configure_operation_pre,
      &load,   // normal load
      &match,  // normal match
      &configure_execute,
      nullptr, // operation post
      nullptr  // meta-operation post
    };

    // disfigure
    //
    static operation_id
    disfigure_operation_pre (operation_id o)
    {
      // Don't translate default to update. In our case unspecified
      // means disfigure everything.
      //
      return o;
    }

    static void
    disfigure_load (const path& bf,
                    scope&,
                    const path&,
                    const path&,
                    const location&)
    {
      tracer trace ("disfigure_load");
      level5 ([&]{trace << "skipping " << bf;});
    }

    static void
    disfigure_match (action a,
                     scope& root,
                     const target_key& tk,
                     const location& l,
                     action_targets& ts)
    {
      tracer trace ("disfigure_match");
      level5 ([&]{trace << "collecting " << root.path ();});
      ts.push_back (&root);
    }

    static void
    disfigure_execute (action a, const action_targets& ts)
    {
      tracer trace ("disfigure_execute");

      for (void* v: ts)
      {
        scope& root (*static_cast<scope*> (v));
        const path& out_root (root.path ());
        const path& src_root (root.src_path ());

        // We distinguish between a complete disfigure and operation-
        // specific.
        //
        if (a.operation () == default_id)
        {
          level4 ([&]{trace << "completely disfiguring " << out_root;});

          rmfile (out_root / config_file);
          rmfile (out_root / src_root_file);

          // Clean up the directories.
          //
          rmdir (out_root / bootstrap_dir);

          if (out_root != src_root)
          {
            rmdir (out_root / build_dir);

            if (rmdir (out_root) == rmdir_status::not_empty)
              warn << "directory " << out_root.string () << " is "
                   << (out_root == work
                       ? "current working directory"
                       : "not empty") << ", not removing";
          }
        }
        else
        {
        }
      }
    }

    static void
    disfigure_meta_operation_post ()
    {
      tracer trace ("disfigure_meta_operation_post");

      // Reset the dependency state since anything that could have been
      // loaded earlier using a previous configuration is now invalid.
      //
      level5 ([&]{trace << "resetting dependency state";});
      reset ();
    }

    meta_operation_info disfigure {
      "disfigure",
      nullptr, // meta-operation pre
      &disfigure_operation_pre,
      &disfigure_load,
      &disfigure_match,
      &disfigure_execute,
      nullptr, // operation post
      &disfigure_meta_operation_post
    };
  }
}