lib/scripts/timestop.bash
author wenzelm
Tue, 19 Jul 2016 09:55:03 +0200
changeset 63520 2803d2b8f85d
parent 60990 07592e217180
permissions -rw-r--r--
Linux platform base-line is Ubuntu 12.04 LTS;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31310
b5365a9db718 uniform treatment of shellscript mode;
wenzelm
parents: 29145
diff changeset
     1
# -*- shell-script -*- :mode=shellscript:
29145
b1c6f4563df7 removed Ids;
wenzelm
parents: 28492
diff changeset
     2
#
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     3
# Author: Makarius
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     4
#
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     5
# timestop - report timing based on environment (cf. timestart.bash)
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     6
#
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     7
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     8
TIMES_REPORT=""
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
     9
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    10
function show_times ()
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    11
{
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    12
  local TIMES_START="$TIMES_RESULT"
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    13
  get_times
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    14
  local TIMES_STOP="$TIMES_RESULT"
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    15
  local TIME1
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    16
  local TIME2
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    17
  local KIND
18322
56554bb23eda cpu time = user + system;
wenzelm
parents: 18318
diff changeset
    18
  for KIND in 1 2
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    19
  do
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    20
    local START=$(echo "$TIMES_START" | cut -d " " -f $KIND)
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    21
    local STOP=$(echo "$TIMES_STOP" | cut -d " " -f $KIND)
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    22
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    23
    local TIME=$(( $STOP - $START ))
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    24
    eval "TIME${KIND}=$TIME"
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    25
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    26
    local SECS=$(( $TIME % 60 ))
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    27
    [ $SECS -lt 10 ] && SECS="0$SECS"
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    28
    local MINUTES=$(( ($TIME / 60) % 60 ))
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    29
    [ $MINUTES -lt 10 ] && MINUTES="0$MINUTES"
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    30
    local HOURS=$(( $TIME / 3600 ))
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    31
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    32
    local KIND_NAME
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    33
    [ "$KIND" = 1 ] && KIND_NAME="elapsed time"
18322
56554bb23eda cpu time = user + system;
wenzelm
parents: 18318
diff changeset
    34
    [ "$KIND" = 2 ] && KIND_NAME="cpu time"
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    35
    local RESULT="${HOURS}:${MINUTES}:${SECS} ${KIND_NAME}"
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    36
60990
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    37
    if [ ${KIND} -eq 1 -o ${TIME} -ge 5 ]; then
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    38
      if [ -z "$TIMES_REPORT" ]; then
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    39
        TIMES_REPORT="$RESULT"
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    40
      else
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    41
        TIMES_REPORT="$TIMES_REPORT, $RESULT"
07592e217180 suppress small CPU time, notably on x86-windows, where bash does not account for the poly process;
wenzelm
parents: 31310
diff changeset
    42
      fi
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    43
    fi
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    44
  done
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    45
  if let "$TIME1 >= 5 && $TIME2 >= 5"
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    46
  then
28469
0946c81ab77b time factor: one more digit;
wenzelm
parents: 28467
diff changeset
    47
    local FACTOR=$(( $TIME2 * 100 / $TIME1 ))
0946c81ab77b time factor: one more digit;
wenzelm
parents: 28467
diff changeset
    48
    local FACTOR1=$(( $FACTOR / 100 ))
0946c81ab77b time factor: one more digit;
wenzelm
parents: 28467
diff changeset
    49
    local FACTOR2=$(( $FACTOR % 100 ))
28492
5175b022e216 factor: proper padding of digits;
wenzelm
parents: 28469
diff changeset
    50
    if let "$FACTOR2 < 10"; then FACTOR2="0$FACTOR2"; fi
28467
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    51
    TIMES_REPORT="$TIMES_REPORT, factor ${FACTOR1}.${FACTOR2}"
c8336c42668e include factor in timing report;
wenzelm
parents: 18322
diff changeset
    52
  fi
18318
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    53
}
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    54
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    55
show_times  # sets TIMES_REPORT
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    56
deb87d7e44bc timestop - report timing based on environment (cf. timestart.bash);
wenzelm
parents:
diff changeset
    57
unset TIMES_RESULT get_times show_times