aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/script/script.ixx
blob: 37c77ecfc9608a91a2b0d21c7659340cc0a2a779 (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
// file      : libbuild2/script/script.ixx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

namespace build2
{
  namespace script
  {
    inline command_to_stream
    operator&= (command_to_stream& x, command_to_stream y)
    {
      return x = static_cast<command_to_stream> (
        static_cast<uint16_t> (x) & static_cast<uint16_t> (y));
    }

    inline command_to_stream
    operator|= (command_to_stream& x, command_to_stream y)
    {
      return x = static_cast<command_to_stream> (
        static_cast<uint16_t> (x) | static_cast<uint16_t> (y));
    }

    inline command_to_stream
    operator& (command_to_stream x, command_to_stream y) {return x &= y;}

    inline command_to_stream
    operator| (command_to_stream x, command_to_stream y) {return x |= y;}

    // command
    //
    inline ostream&
    operator<< (ostream& o, const command& c)
    {
      to_stream (o, c, command_to_stream::all);
      return o;
    }

    // command_pipe
    //
    inline ostream&
    operator<< (ostream& o, const command_pipe& p)
    {
      to_stream (o, p, command_to_stream::all);
      return o;
    }

    // command_expr
    //
    inline ostream&
    operator<< (ostream& o, const command_expr& e)
    {
      to_stream (o, e, command_to_stream::all);
      return o;
    }

    // deadline
    //
    inline bool
    operator< (const deadline& x, const deadline& y)
    {
      if (x.value != y.value)
        return x.value < y.value;

      return x.success < y.success;
    }

    inline optional<deadline>
    to_deadline (const optional<timestamp>& ts, bool success)
    {
      return ts ? deadline (*ts, success) : optional<deadline> ();
    }

    // timeout
    //
    inline bool
    operator< (const timeout& x, const timeout& y)
    {
      if (x.value != y.value)
        return x.value < y.value;

      return x.success < y.success;
    }

    inline optional<timeout>
    to_timeout (const optional<duration>& d, bool success)
    {
      return d ? timeout (*d, success) : optional<timeout> ();
    }
  }
}