timer.plugin.zsh 1019 Bytes
Newer Older
Robert Strack's avatar
Robert Strack committed
1
2
3
4
5
6
__timer_current_time() {
  perl -MTime::HiRes=time -e'print time'
}

__timer_format_duration() {
  local mins=$(printf '%.0f' $(($1 / 60)))
7
  local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
Robert Strack's avatar
Robert Strack committed
8
  local duration_str=$(echo "${mins}m${secs}s")
Robert Strack's avatar
Robert Strack committed
9
10
  local format="${TIMER_FORMAT:-/%d}"
  echo "${format//\%d/${duration_str#0m}}"
Robert Strack's avatar
Robert Strack committed
11
12
}

Robert Strack's avatar
Robert Strack committed
13
__timer_save_time_preexec() {
Robert Strack's avatar
Robert Strack committed
14
  __timer_cmd_start_time=$(__timer_current_time)
15
16
}

Robert Strack's avatar
Robert Strack committed
17
__timer_display_timer_precmd() {
Robert Strack's avatar
Robert Strack committed
18
19
  if [ -n "${__timer_cmd_start_time}" ]; then
    local cmd_end_time=$(__timer_current_time)
Robert Strack's avatar
Robert Strack committed
20
    local tdiff=$((cmd_end_time - __timer_cmd_start_time))
21
    unset __timer_cmd_start_time
22
23
24
25
26
    if [[ -z "${TIMER_THRESHOLD}" || ${tdiff} -ge "${TIMER_THRESHOLD}" ]]; then
        local tdiffstr=$(__timer_format_duration ${tdiff})
        local cols=$((COLUMNS - ${#tdiffstr} - 1))
        echo -e "\033[1A\033[${cols}C ${tdiffstr}"
    fi
27
28
  fi
}
Robert Strack's avatar
Robert Strack committed
29

30
31
32
autoload -U add-zsh-hook
add-zsh-hook preexec __timer_save_time_preexec
add-zsh-hook precmd __timer_display_timer_precmd