aboutsummaryrefslogtreecommitdiff
path: root/build2/bin/target.cxx
blob: 7c16506906a70e05cba08ac46ca4f7c96e367acd (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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
// file      : build2/bin/target.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <build2/bin/target.hxx>

#include <libbuild2/context.hxx>

using namespace std;

namespace build2
{
  namespace bin
  {
    const target_type objx::static_type
    {
      "objx",
      &file::static_type,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type bmix::static_type
    {
      "bmix",
      &file::static_type,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type hbmix::static_type
    {
      "hbmix",
      &bmix::static_type,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type libx::static_type
    {
      "libx",
      &mtime_target::static_type,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type libux::static_type
    {
      "libux",
      &file::static_type,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    // Note that we link groups during the load phase since this is often
    // relied upon when setting target-specific variables (e.g., we may set a
    // common value for lib{} and then append liba/libs-specific values to
    // it). While sure inelegant, this is MT-safe since during load we are
    // running serial. For the members it is also safe to set the group during
    // creation.

    // obj*{} and [h]bmi*{} member factory.
    //
    template <typename M, typename G>
    static target*
    m_factory (const target_type&, dir_path dir, dir_path out, string n)
    {
      const G* g (targets.find<G> (dir, out, n));

      M* m (new M (move (dir), move (out), move (n)));
      m->group = g;

      return m;
    }

    const target_type obje::static_type
    {
      "obje",
      &objx::static_type,
      &m_factory<obje, obj>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type bmie::static_type
    {
      "bmie",
      &bmix::static_type,
      &m_factory<bmie, bmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type hbmie::static_type
    {
      "hbmie",
      &hbmix::static_type,
      &m_factory<hbmie, hbmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type obja::static_type
    {
      "obja",
      &objx::static_type,
      &m_factory<obja, obj>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type bmia::static_type
    {
      "bmia",
      &bmix::static_type,
      &m_factory<bmia, bmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type hbmia::static_type
    {
      "hbmia",
      &hbmix::static_type,
      &m_factory<hbmia, hbmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type objs::static_type
    {
      "objs",
      &objx::static_type,
      &m_factory<objs, obj>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type bmis::static_type
    {
      "bmis",
      &bmix::static_type,
      &m_factory<bmis, bmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type hbmis::static_type
    {
      "hbmis",
      &hbmix::static_type,
      &m_factory<hbmis, hbmi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type libue::static_type
    {
      "libue",
      &libux::static_type,
      &target_factory<libue>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type libua::static_type
    {
      "libua",
      &libux::static_type,
      &m_factory<libua, libul>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    const target_type libus::static_type
    {
      "libus",
      &libux::static_type,
      &m_factory<libus, libul>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &target_search, // Note: not _file(); don't look for an existing file.
      false
    };

    // obj{}, [h]bmi{}, and libu{} group factory.
    //
    template <typename G, typename E, typename A, typename S>
    static target*
    g_factory (const target_type&, dir_path dir, dir_path out, string n)
    {
      // Casts are MT-aware (during serial load).
      //
      E* e (phase == run_phase::load
            ? const_cast<E*> (targets.find<E> (dir, out, n))
            : nullptr);
      A* a (phase == run_phase::load
            ? const_cast<A*> (targets.find<A> (dir, out, n))
            : nullptr);
      S* s (phase == run_phase::load
            ? const_cast<S*> (targets.find<S> (dir, out, n))
            : nullptr);

      G* g (new G (move (dir), move (out), move (n)));

      if (e != nullptr) e->group = g;
      if (a != nullptr) a->group = g;
      if (s != nullptr) s->group = g;

      return g;
    }

    const target_type obj::static_type
    {
      "obj",
      &target::static_type,
      &g_factory<obj, obje, obja, objs>,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type bmi::static_type
    {
      "bmi",
      &target::static_type,
      &g_factory<bmi, bmie, bmia, bmis>,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    const target_type hbmi::static_type
    {
      "hbmi",
      &target::static_type,
      &g_factory<hbmi, hbmie, hbmia, hbmis>,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

    // The same as g_factory() but without E.
    //
    static target*
    libul_factory (const target_type&, dir_path dir, dir_path out, string n)
    {
      libua* a (phase == run_phase::load
                ? const_cast<libua*> (targets.find<libua> (dir, out, n))
                : nullptr);
      libus* s (phase == run_phase::load
                ? const_cast<libus*> (targets.find<libus> (dir, out, n))
                : nullptr);

      libul* g (new libul (move (dir), move (out), move (n)));

      if (a != nullptr) a->group = g;
      if (s != nullptr) s->group = g;

      return g;
    }

    const target_type libul::static_type
    {
      "libul",
      &libx::static_type,
      &libul_factory,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };

#if 0
    const target_type libu::static_type
    {
      "libu",
      &libx::static_type,
      &target_factory<libu>,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false
    };
#endif

    // What extensions should we use? At the outset, this is platform-
    // dependent. And if we consider cross-compilation, is it build or
    // host-dependent? Feels like it should be host-dependent so that
    // we can copy things between cross and native environments. So
    // these will have to be determined based on what we are building.
    // As if this is not complicated enough, the bin module doesn't
    // know anything about building. So perhaps the extension should
    // come from a variable that is set not by bin but by the module
    // whose rule matched the target (e.g., cxx::link).
    //
    const target_type liba::static_type
    {
      "liba",
      &file::static_type,
      &m_factory<liba, lib>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &file_search,
      false
    };

    const target_type libs::static_type
    {
      "libs",
      &file::static_type,
      &m_factory<libs, lib>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &file_search,
      false
    };

    // lib
    //
    group_view lib::
    group_members (action) const
    {
      static_assert (sizeof (lib_members) == sizeof (const target*) * 2,
                     "member layout incompatible with array");

      return a != nullptr || s != nullptr
        ? group_view {reinterpret_cast<const target* const*> (&a), 2}
        : group_view {nullptr, 0};
    }

    static target*
    lib_factory (const target_type&, dir_path dir, dir_path out, string n)
    {
      // Casts are MT-aware (during serial load).
      //
      liba* a (phase == run_phase::load
               ? const_cast<liba*> (targets.find<liba> (dir, out, n))
               : nullptr);
      libs* s (phase == run_phase::load
               ? const_cast<libs*> (targets.find<libs> (dir, out, n))
               : nullptr);

      lib* l (new lib (move (dir), move (out), move (n)));

      if (a != nullptr) a->group = l;
      if (s != nullptr) s->group = l;

      return l;
    }

    const target_type lib::static_type
    {
      "lib",
      &libx::static_type,
      &lib_factory,
      nullptr,
      nullptr,
      nullptr,
      nullptr,
      &target_search,
      false // Note: not see-through ("alternatives" group).
    };

    // libi
    //
    const target_type libi::static_type
    {
      "libi",
      &file::static_type,
      &target_factory<libi>,
      nullptr, /* fixed_extension */
      &target_extension_var<var_extension, nullptr>,
      &target_pattern_var<var_extension, nullptr>,
      nullptr,
      &file_search,
      false
    };

    // def
    //
    extern const char def_ext[] = "def"; // VC14 rejects constexpr.

    const target_type def::static_type
    {
      "def",
      &file::static_type,
      &target_factory<def>,
      &target_extension_fix<def_ext>,
      nullptr,                          /* default_extension */
      &target_pattern_fix<def_ext>,
      nullptr,
      &file_search,
      false
    };
  }
}