aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/script.ixx
blob: 80fbcb07c583f066454836f59f3146732645210b (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
// file      : build2/test/script/script.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

namespace build2
{
  namespace test
  {
    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;
      }
    }
  }
}