Skip to content

Commit

Permalink
lib/command_duration
Browse files Browse the repository at this point in the history
Remove use of temporary files.
  • Loading branch information
gaelicWizard committed Aug 12, 2021
1 parent e321a3d commit 475c56f
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions themes/command_duration.theme.bash
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
# shellcheck shell=bash

if [ -z "$BASH_IT_COMMAND_DURATION" ] || [ "$BASH_IT_COMMAND_DURATION" != true ]; then
if [[ "${BASH_IT_COMMAND_DURATION:-false}" != true ]]; then
_command_duration() {
echo -n
}
return
fi

# Define tmp dir and file
COMMAND_DURATION_TMPDIR="${TMPDIR:-/tmp}"
COMMAND_DURATION_FILE="${COMMAND_DURATION_FILE:-$COMMAND_DURATION_TMPDIR/bashit_theme_execution_$BASHPID}"
COMMAND_DURATION_START_TIME=

COMMAND_DURATION_ICON=${COMMAND_DURATION_ICON:-''}
COMMAND_DURATION_MIN_SECONDS=${COMMAND_DURATION_MIN_SECONDS:-'1'}

trap _command_duration_delete_temp_file EXIT HUP INT TERM

_command_duration_delete_temp_file() {
if [[ -f "$COMMAND_DURATION_FILE" ]]; then
rm -f "$COMMAND_DURATION_FILE"
fi
}

_command_duration_pre_exec() {
date +%s.%1N > "$COMMAND_DURATION_FILE"
local command_nano_now="$(date +%1N)"
[[ "$command_nano_now" == "1N" ]] && command_nano_now=1
COMMAND_DURATION_START_TIME="$(date "+%s").${command_nano_now}"
}

_command_duration() {
local command_duration command_start current_time
local minutes seconds deciseconds
local command_start_sseconds current_time_seconds command_start_deciseconds current_time_deciseconds
current_time=$(date +%s.%1N)
local command_nano_now="$(date +%1N)"
[[ "$command_nano_now" == "1N" ]] && command_nano_now=1
current_time="$(date "+%s").${command_nano_now}"

if [[ -f "$COMMAND_DURATION_FILE" ]]; then
command_start=$(< "$COMMAND_DURATION_FILE")
command_start_sseconds=${command_start%.*}
if [[ -n "${COMMAND_DURATION_START_TIME:-}" ]]; then
command_start_sseconds=${COMMAND_DURATION_START_TIME%.*}
current_time_seconds=${current_time%.*}

command_start_deciseconds=$((10#${command_start#*.}))
Expand All @@ -49,7 +42,6 @@ _command_duration() {
((command_duration -= 1))
deciseconds=$((10 - ((command_start_deciseconds - current_time_deciseconds))))
fi
command rm "$COMMAND_DURATION_FILE"
else
command_duration=0
fi
Expand Down

0 comments on commit 475c56f

Please sign in to comment.