summaryrefslogtreecommitdiffstats
path: root/pkgs/build-support/rust/build-rust-crate/log.nix
blob: ef17b4d61dbb0f2714627643dc015995096b4565 (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
{ lib }:

let
  echo_colored_body =
    start_escape:
    # Body of a function that behaves like "echo" but
    # has the output colored by the given start_escape
    # sequence. E.g.
    #
    # * echo_x "Building ..."
    # * echo_x -n "Running "
    #
    # This is more complicated than apparent at first sight
    # because:
    #   * The color markers and the text must be print
    #     in the same echo statement. Otherwise, other
    #     intermingled text from concurrent builds will
    #     be colored as well.
    #   * We need to preserve the trailing newline of the
    #     echo if and only if it is present. Bash likes
    #     to strip those if we capture the output of echo
    #     in a variable.
    #   * Leading "-" will be interpreted by test as an
    #     option for itself. Therefore, we prefix it with
    #     an x in `[[ "x$1" =~ ^x- ]]`.
    ''
      local echo_args="";
      while [[ "x$1" =~ ^x- ]]; do
        echo_args+=" $1"
        shift
      done

      local start_escape="$(printf '${start_escape}')"
      local reset="$(printf '\033[0m')"
      echo $echo_args $start_escape"$@"$reset
    '';
  echo_conditional_colored_body =
    colors: start_escape:
    if colors == "always" then (echo_colored_body start_escape) else ''echo "$@"'';
in
{
  echo_colored = colors: ''
    echo_colored() {
      ${echo_conditional_colored_body colors ''\033[0;1;32m''}
    }

    echo_error() {
      ${echo_conditional_colored_body colors ''\033[0;1;31m''}
    }
  '';

  noisily = colors: verbose: ''
    noisily() {
      ${lib.optionalString verbose ''
        echo_colored -n "Running "
        echo $@
      ''}
      $@
    }
  '';
}