aboutsummaryrefslogtreecommitdiff
path: root/build/variable.ixx
blob: 16ea7c09b47b756a28684c80a351cd97338e624e (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
// file      : build/variable.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

namespace build
{
  // value
  //
  template <typename T>
  inline void
  assign (value& v, const variable& var)
  {
    auto t (&value_traits<T>::value_type);

    if (v.type != t)
      assign (v, t, var);
  }

  template <typename T>
  inline typename value_traits<T>::type
  as (value& v)
  {
    return value_traits<T>::as (v);
  }

  template <typename T>
  inline typename value_traits<T>::const_type
  as (const value& v)
  {
    return value_traits<T>::as (v);
  }

  template <typename T>
  inline bool
  assign (name& n)
  {
    return value_traits<T>::assign (n);
  }

  template <typename T>
  inline typename value_traits<T>::type
  as (name& n)
  {
    return value_traits<T>::as (n);
  }

  template <typename T>
  inline typename value_traits<T>::const_type
  as (const name& n)
  {
    return value_traits<T>::as (n);
  }

  template <typename T>
  inline value& value::
  operator= (T v)
  {
    value_traits<T>::assign (*this, std::move (v));
    return *this;
  }

  template <typename T>
  inline value& value::
  operator+= (T v)
  {
    value_traits<T>::append (*this, std::move (v));
    return *this;
  }

  inline void value::
  assign (names v, const variable& var)
  {
    data_ = std::move (v);
    state_ = (type != nullptr && type->assign != nullptr
              ? type->assign (data_, var)
              : !data_.empty ())
      ? state_type::filled
      : state_type::empty;
  }

  // bool value
  //
  inline bool_value<name> value_traits<bool>::
  as (value& v)
  {
    assert (v.type == bool_type);
    return bool_value<name> (v.data_.front ());
  }

  inline bool_value<const name> value_traits<bool>::
  as (const value& v)
  {
    assert (v.type == bool_type);
    return bool_value<const name> (v.data_.front ());
  }

  inline void value_traits<bool>::
  assign (value& v, bool x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = bool_type;
      v.data_.emplace_back (name ());
      v.state_ = value::state_type::empty;
    }

    as (v) = x;
    v.state_ = value::state_type::filled;
  }

  inline void value_traits<bool>::
  append (value& v, bool x)
  {
    if (v.null ())
      assign (v, x);
    else
      as (v) += x; // Cannot be empty.
  }

  // string value
  //
  inline std::string& value_traits<std::string>::
  as (value& v)
  {
    assert (v.type == string_type);
    return v.data_.front ().value;
  }

  inline const std::string& value_traits<std::string>::
  as (const value& v)
  {
    assert (v.type == string_type);
    return v.data_.front ().value;
  }

  inline void value_traits<std::string>::
  assign (value& v, std::string x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = string_type;
      v.data_.emplace_back (name ());
      v.state_ = value::state_type::empty;
    }

    v.state_ = (as (v) = std::move (x)).empty ()
      ? value::state_type::empty
      : value::state_type::filled;
  }

  inline void value_traits<std::string>::
  append (value& v, std::string x)
  {
    if (v.null ())
      assign (v, std::move (x));
    else
      v.state_ = (as (v) += std::move (x)).empty ()
        ? value::state_type::empty
        : value::state_type::filled;
  }

  // dir_path value
  //
  inline dir_path& value_traits<dir_path>::
  as (value& v)
  {
    assert (v.type == dir_path_type);
    return v.data_.front ().dir;
  }

  inline const dir_path& value_traits<dir_path>::
  as (const value& v)
  {
    assert (v.type == dir_path_type);
    return v.data_.front ().dir;
  }

  inline void value_traits<dir_path>::
  assign (value& v, dir_path x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = dir_path_type;
      v.data_.emplace_back (name ());
      v.state_ = value::state_type::empty;
    }

    v.state_ = (as (v) = std::move (x)).empty ()
      ? value::state_type::empty
      : value::state_type::filled;
  }

  inline void value_traits<dir_path>::
  append (value& v, dir_path x)
  {
    if (v.null ())
      assign (v, std::move (x));
    else
      v.state_ = (as (v) /= std::move (x)).empty ()
        ? value::state_type::empty
        : value::state_type::filled;
  }

  // name value
  //
  inline name& value_traits<name>::
  as (value& v)
  {
    assert (v.type == name_type);
    return v.data_.front ();
  }

  inline const name& value_traits<name>::
  as (const value& v)
  {
    assert (v.type == name_type);
    return v.data_.front ();
  }

  inline void value_traits<name>::
  assign (value& v, name x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = name_type;
      v.data_.emplace_back (name ());
      v.state_ = value::state_type::empty;
    }

    v.state_ = (as (v) = std::move (x)).empty ()
      ? value::state_type::empty
      : value::state_type::filled;
  }

  // vector<T> value
  //
  template <typename T, typename D>
  inline vector_value<T, D>& vector_value<T, D>::
  assign (std::vector<T> v)
  {
    d->clear ();
    d->insert (d->end (),
               std::make_move_iterator (v.begin ()),
               std::make_move_iterator (v.end ()));
    return *this;
  }

  template <typename T, typename D>
  template <typename D1>
  inline vector_value<T, D>& vector_value<T, D>::
  assign (const vector_value<T, D1>& v)
  {
    d->clear ();
    d->insert (d->end (), v.begin (), v.end ());
    return *this;
  }

  template <typename T, typename D>
  template <typename D1>
  inline vector_value<T, D>& vector_value<T, D>::
  append (const vector_value<T, D1>& v)
  {
    d->insert (d->end (), v.begin (), v.end ());
    return *this;
  }

  template <typename T>
  inline vector_value<T, names> value_traits<std::vector<T>>::
  as (value& v)
  {
    assert (v.type == &value_traits<std::vector<T>>::value_type);
    return vector_value<T, names> (v.data_);
  }

  template <typename T>
  inline vector_value<T, const names> value_traits<std::vector<T>>::
  as (const value& v)
  {
    assert (v.type == &value_traits<std::vector<T>>::value_type);
    return vector_value<T, const names> (v.data_);
  }

  template <typename T>
  template <typename V>
  inline void value_traits<std::vector<T>>::
  assign (value& v, V x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = &value_traits<std::vector<T>>::value_type;
      v.state_ = value::state_type::empty;
    }

    v.state_ = (as (v).assign (std::move (x))).empty ()
      ? value::state_type::empty
      : value::state_type::filled;
  }

  template <typename T>
  template <typename V>
  inline void value_traits<std::vector<T>>::
  append (value& v, V x)
  {
    if (v.null ())
      assign (v, std::move (x));
    else
      v.state_ = (as (v).append (std::move (x))).empty ()
        ? value::state_type::empty
        : value::state_type::filled;
  }

  // map<K, V> value
  //
  template <typename K, typename V>
  inline map_value<K, V, names> value_traits<std::map<K, V>>::
  as (value& v)
  {
    assert ((v.type == &value_traits<std::map<K, V>>::value_type));
    return map_value<K, V, names> (v.data_);
  }

  template <typename K, typename V>
  inline map_value<K, V, const names> value_traits<std::map<K, V>>::
  as (const value& v)
  {
    assert ((v.type == &value_traits<std::map<K, V>>::value_type));
    return map_value<K, V, const names> (v.data_);
  }

  template <typename K, typename V>
  template <typename M>
  inline void value_traits<std::map<K, V>>::
  assign (value& v, M x)
  {
    if (v.null ())
    {
      if (v.type == nullptr)
        v.type = &value_traits<std::map<K, V>>::value_type;
      v.state_ = value::state_type::empty;
    }

    v.state_ = (as (v).assign (std::move (x))).empty ()
      ? value::state_type::empty
      : value::state_type::filled;
  }

  template <typename K, typename V>
  template <typename M>
  inline void value_traits<std::map<K, V>>::
  append (value& v, M x)
  {
    if (v.null ())
      assign (v, std::move (x));
    else
      v.state_ = (as (v).append (std::move (x))).empty ()
        ? value::state_type::empty
        : value::state_type::filled;
  }

  // variable_map::iterator_adapter
  //
  template <typename I>
  inline typename I::reference variable_map::iterator_adapter<I>::
  operator* () const
  {
    auto& r (I::operator* ());
    const variable& var (r.first);
    auto& val (r.second);

    // First access after being assigned a type?
    //
    if (var.type != nullptr && val.type != var.type)
      build::assign (const_cast<value&> (val), var.type, var);

    return r;
  }

  template <typename I>
  inline typename I::pointer variable_map::iterator_adapter<I>::
  operator-> () const
  {
    auto p (I::operator-> ());
    const variable& var (p->first);
    auto& val (p->second);

    // First access after being assigned a type?
    //
    if (var.type != nullptr && val.type != var.type)
      build::assign (const_cast<value&> (val), var.type, var);

    return p;
  }
}