synthesize common prompt functions

This commit is contained in:
romkatv 2020-01-20 23:37:03 +01:00
parent e74e0d38c8
commit 0f6b7953be
3 changed files with 74 additions and 120 deletions

View file

@ -1031,8 +1031,6 @@ _p9k_prompt_disk_usage_init() {
typeset -g _p9k__disk_usage_warning= typeset -g _p9k__disk_usage_warning=
typeset -g _p9k__disk_usage_critical= typeset -g _p9k__disk_usage_critical=
_p9k_worker_send_functions _p9k_prompt_disk_usage_async _p9k_prompt_disk_usage_sync
_p9k_worker_send_params \ _p9k_worker_send_params \
_POWERLEVEL9K_DISK_USAGE_CRITICAL_LEVEL \ _POWERLEVEL9K_DISK_USAGE_CRITICAL_LEVEL \
_POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL \ _POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL \
@ -1041,26 +1039,24 @@ _p9k_prompt_disk_usage_init() {
_p9k__disk_usage_normal \ _p9k__disk_usage_normal \
_p9k__disk_usage_warning \ _p9k__disk_usage_warning \
_p9k__disk_usage_critical _p9k__disk_usage_critical
_p9k__async_segments_compute+=_p9k_prompt_disk_usage_compute
} }
_p9k_prompt_disk_usage_compute() { _p9k_prompt_disk_usage_compute() {
_p9k_worker_invoke disk_usage \ _p9k_worker_invoke \
'' "_p9k_prompt_disk_usage_async ${(q)_p9k__pwd_a}" _p9k_prompt_disk_usage_sync disk_usage \
_p9k_prompt_disk_usage_cond \
"_p9k_prompt_disk_usage_async ${(q)_p9k__pwd_a}" \
_p9k_prompt_disk_usage_sync
}
_p9k_prompt_disk_usage_cond() {
(( $+commands[df] ))
} }
_p9k_prompt_disk_usage_async() { _p9k_prompt_disk_usage_async() {
(( $+commands[df] )) || return local pct=${${=${(f)"$(df -P $1 2>/dev/null)"}[2]}[5]%%%}
local disk_usage_pct [[ $pct == <0-100> && pct != $_p9k__disk_usage_pct ]] || return
disk_usage_pct=${${=${(f)"$(df -P $1 2>/dev/null)"}[2]}[5]%%%} _p9k__disk_usage_pct=$pct
[[ $disk_usage_pct == <0-100> ]] || return
typeset -p disk_usage_pct
}
_p9k_prompt_disk_usage_sync() {
[[ $disk_usage_pct != $_p9k__disk_usage_pct ]] || return
_p9k__disk_usage_pct=$disk_usage_pct
_p9k__disk_usage_normal= _p9k__disk_usage_normal=
_p9k__disk_usage_warning= _p9k__disk_usage_warning=
_p9k__disk_usage_critical= _p9k__disk_usage_critical=
@ -1071,13 +1067,11 @@ _p9k_prompt_disk_usage_sync() {
elif (( ! _POWERLEVEL9K_DISK_USAGE_ONLY_WARNING )); then elif (( ! _POWERLEVEL9K_DISK_USAGE_ONLY_WARNING )); then
_p9k__disk_usage_normal=1 _p9k__disk_usage_normal=1
fi fi
_p9k_worker_reply_begin
typeset -p \ typeset -p \
_p9k__disk_usage_pct \ _p9k__disk_usage_pct \
_p9k__disk_usage_normal \ _p9k__disk_usage_normal \
_p9k__disk_usage_warning \ _p9k__disk_usage_warning \
_p9k__disk_usage_critical _p9k__disk_usage_critical
_p9k_worker_reply_end
} }
function _p9k_read_file() { function _p9k_read_file() {
@ -1243,18 +1237,6 @@ _p9k_prompt_public_ip_init() {
_POWERLEVEL9K_PUBLIC_IP_HOST \ _POWERLEVEL9K_PUBLIC_IP_HOST \
_p9k__public_ip \ _p9k__public_ip \
_p9k__public_ip_next_time _p9k__public_ip_next_time
_p9k_worker_send_functions \
_p9k_prompt_public_ip_cond \
_p9k_prompt_public_ip_async \
_p9k_prompt_public_ip_sync
_p9k__async_segments_compute+=_p9k_prompt_public_ip_compute
}
_p9k_prompt_public_ip_compute() {
_p9k_worker_invoke \
public_ip _p9k_prompt_public_ip_cond _p9k_prompt_public_ip_async _p9k_prompt_public_ip_sync
} }
_p9k_prompt_public_ip_cond() { _p9k_prompt_public_ip_cond() {
@ -1294,17 +1276,17 @@ _p9k_prompt_public_ip_async() {
break break
fi fi
done done
typeset -p ip next _p9k__public_ip=$ip
_p9k__public_ip_next_time=$next
typeset -p _p9k__public_ip _p9k__public_ip_next_time
} }
_p9k_prompt_public_ip_sync() { _p9k_prompt_public_ip_sync() {
_p9k__public_ip_next_time=$next [[ $prev == $cur ]] && return
if [[ $ip != _p9k__public_ip ]]; then local prev_ip=$_p9k__public_ip
_p9k__public_ip=$ip eval $cur
_p9k_worker_reply_begin [[ $_p9k__public_ip == $prev_ip ]] && return
typeset -p _p9k__public_ip _p9k_worker_reply $cur
_p9k_worker_reply_end
fi
} }
################################################################ ################################################################
@ -1894,14 +1876,10 @@ prompt_load() {
_p9k_prompt_load_init() { _p9k_prompt_load_init() {
[[ $_p9k_os == (OSX|BSD) ]] || return [[ $_p9k_os == (OSX|BSD) ]] || return
typeset -g _p9k__load_value= typeset -g _p9k__load_value=
typeset -g _p9k__load_normal= typeset -g _p9k__load_normal=
typeset -g _p9k__load_warning= typeset -g _p9k__load_warning=
typeset -g _p9k__load_critical= typeset -g _p9k__load_critical=
_p9k_worker_send_functions _p9k_prompt_load_async _p9k_prompt_load_sync
_p9k_worker_send_params \ _p9k_worker_send_params \
$_POWERLEVEL9K_LOAD_WHICH \ $_POWERLEVEL9K_LOAD_WHICH \
_p9k_num_cpus \ _p9k_num_cpus \
@ -1909,24 +1887,16 @@ _p9k_prompt_load_init() {
_p9k__load_normal \ _p9k__load_normal \
_p9k__load_warning \ _p9k__load_warning \
_p9k__load_critical _p9k__load_critical
_p9k__async_segments_compute+=_p9k_prompt_load_compute
} }
_p9k_prompt_load_compute() { _p9k_prompt_load_cond() {
_p9k_worker_invoke load '(( $+commands[sysctl] ))' _p9k_prompt_load_async _p9k_prompt_load_sync (( $+commands[sysctl] ))
} }
_p9k_prompt_load_async() { _p9k_prompt_load_async() {
local load local load="$(sysctl -n vm.loadavg 2>/dev/null)" || return
load="$(sysctl -n vm.loadavg 2>/dev/null)" || return
load=${${(A)=load}[_POWERLEVEL9K_LOAD_WHICH+1]//,/.} load=${${(A)=load}[_POWERLEVEL9K_LOAD_WHICH+1]//,/.}
[[ $load == <->(|.<->) ]] || return [[ $load == <->(|.<->) && $load != $_p9k__load_value ]] || return
typeset -p load
}
_p9k_prompt_load_sync() {
[[ $load != $_p9k__load_value ]] || return
_p9k__load_value=$load _p9k__load_value=$load
_p9k__load_normal= _p9k__load_normal=
_p9k__load_warning= _p9k__load_warning=
@ -1939,14 +1909,11 @@ _p9k_prompt_load_sync() {
else else
_p9k__load_normal=1 _p9k__load_normal=1
fi fi
_p9k_worker_reply_begin
typeset -p \ typeset -p \
_p9k__load_value \ _p9k__load_value \
_p9k__load_normal \ _p9k__load_normal \
_p9k__load_warning \ _p9k__load_warning \
_p9k__load_critical _p9k__load_critical
_p9k_worker_reply_end
} }
function _p9k_cached_cmd_stdout() { function _p9k_cached_cmd_stdout() {
@ -2234,15 +2201,7 @@ prompt_ram() {
function _p9k_prompt_ram_init() { function _p9k_prompt_ram_init() {
typeset -g _p9k__ram_free= typeset -g _p9k__ram_free=
_p9k_worker_send_params _p9k_os _p9k__ram_free __p9k_byte_suffix _p9k_worker_send_params _p9k_os _p9k__ram_free __p9k_byte_suffix
_p9k_worker_send_functions \ _p9k_worker_send_functions _p9k_human_readable_bytes
_p9k_human_readable_bytes \
_p9k_prompt_ram_async \
_p9k_prompt_ram_sync
_p9k__async_segments_compute+=_p9k_prompt_ram_compute
}
function _p9k_prompt_ram_compute() {
_p9k_worker_invoke ram '' _p9k_prompt_ram_async _p9k_prompt_ram_sync
} }
_p9k_prompt_ram_async() { _p9k_prompt_ram_async() {
@ -2253,9 +2212,9 @@ _p9k_prompt_ram_async() {
(( $+commands[vm_stat] )) || return (( $+commands[vm_stat] )) || return
local stat && stat="$(vm_stat 2>/dev/null)" || return local stat && stat="$(vm_stat 2>/dev/null)" || return
[[ $stat =~ 'Pages free:[[:space:]]+([0-9]+)' ]] || return [[ $stat =~ 'Pages free:[[:space:]]+([0-9]+)' ]] || return
(( free_bytes+=match[1] )) (( free_bytes += match[1] ))
[[ $stat =~ 'Pages inactive:[[:space:]]+([0-9]+)' ]] || return [[ $stat =~ 'Pages inactive:[[:space:]]+([0-9]+)' ]] || return
(( free_bytes+=match[1] )) (( free_bytes += match[1] ))
(( free_bytes *= 4096 )) (( free_bytes *= 4096 ))
;; ;;
BSD) BSD)
@ -2271,16 +2230,9 @@ _p9k_prompt_ram_async() {
esac esac
_p9k_human_readable_bytes $free_bytes _p9k_human_readable_bytes $free_bytes
local ram_free=$_p9k_ret [[ $_p9k_ret != $_p9k__ram_free ]] || return
typeset -p ram_free _p9k__ram_free=$_p9k_ret
}
_p9k_prompt_ram_sync() {
[[ $ram_free == $_p9k__ram_free ]] && return
_p9k__ram_free=$ram_free
_p9k_worker_reply_begin
typeset -p _p9k__ram_free typeset -p _p9k__ram_free
_p9k_worker_reply_end
} }
function _p9k_read_rbenv_version_file() { function _p9k_read_rbenv_version_file() {
@ -2782,14 +2734,12 @@ _p9k_prompt_time_init() {
_p9k__async_segments_compute+=_p9k_prompt_time_compute _p9k__async_segments_compute+=_p9k_prompt_time_compute
} }
_p9k_prompt_time_compute() { _p9k_prompt_time_async() {
_p9k_worker_invoke 'time' '' 'sleep 1 || true' _p9k_prompt_time_sync sleep 1 || true
} }
_p9k_prompt_time_sync() { _p9k_prompt_time_sync() {
_p9k_worker_reply_begin _p9k_worker_reply _p9k_prompt_time_compute
echo _p9k_prompt_time_compute
_p9k_worker_reply_end
} }
################################################################ ################################################################
@ -3989,15 +3939,7 @@ function _p9k_prompt_net_iface_init() {
_POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE \ _POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE \
_POWERLEVEL9K_IP_INTERFACE \ _POWERLEVEL9K_IP_INTERFACE \
_POWERLEVEL9K_VPN_IP_INTERFACE _POWERLEVEL9K_VPN_IP_INTERFACE
_p9k_worker_send_functions \ _p9k_worker_send_functions _p9k_prompt_net_iface_match
_p9k_prompt_net_iface_match \
_p9k_prompt_net_iface_async \
_p9k_prompt_net_iface_sync
_p9k__async_segments_compute+=_p9k_prompt_net_iface_compute
}
function _p9k_prompt_net_iface_compute() {
_p9k_worker_invoke net_iface '' _p9k_prompt_net_iface_async _p9k_prompt_net_iface_sync
} }
# reads `iface2ip` and sets `ip` # reads `iface2ip` and sets `ip`
@ -4034,33 +3976,24 @@ function _p9k_prompt_net_iface_async() {
done done
fi fi
local params
if _p9k_prompt_net_iface_match $_POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE; then if _p9k_prompt_net_iface_match $_POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE; then
params+="typeset -g _p9k__public_ip_vpn=1"$'\n' _p9k__public_ip_vpn=1
params+="typeset -g _p9k__public_ip_not_vpn="$'\n' _p9k__public_ip_not_vpn=
else else
params+="typeset -g _p9k__public_ip_vpn="$'\n' _p9k__public_ip_vpn=
params+="typeset -g _p9k__public_ip_not_vpn=1"$'\n' _p9k__public_ip_not_vpn=1
fi fi
if _p9k_prompt_net_iface_match $_POWERLEVEL9K_IP_INTERFACE; then if _p9k_prompt_net_iface_match $_POWERLEVEL9K_IP_INTERFACE; then
params+="typeset -g _p9k__ip_ip=$ip"$'\n' _p9k__ip_ip=$ip
else else
params+="typeset -g _p9k__ip_ip="$'\n' _p9k__ip_ip=
fi fi
if _p9k_prompt_net_iface_match $_POWERLEVEL9K_VPN_IP_INTERFACE; then if _p9k_prompt_net_iface_match $_POWERLEVEL9K_VPN_IP_INTERFACE; then
params+="typeset -g _p9k__vpn_ip_ip=$ip"$'\n' _p9k__vpn_ip_ip=$ip
else else
params+="typeset -g _p9k__vpn_ip_ip="$'\n' _p9k__vpn_ip_ip=
fi fi
typeset -p params typeset -p _p9k__public_ip_vpn _p9k__public_ip_not_vpn _p9k__ip_ip _p9k__vpn_ip_ip
}
function _p9k_prompt_net_iface_sync() {
[[ $params == $_p9k__net_iface_params ]] && return
_p9k__net_iface_params=$params
_p9k_worker_reply_begin
print -rn -- $params
_p9k_worker_reply_end
} }
function _p9k_build_segment() { function _p9k_build_segment() {
@ -5182,7 +5115,7 @@ _p9k_init_params() {
_p9k_declare -e POWERLEVEL9K_PUBLIC_IP_NONE "" _p9k_declare -e POWERLEVEL9K_PUBLIC_IP_NONE ""
_p9k_declare -s POWERLEVEL9K_PUBLIC_IP_HOST "http://ident.me" _p9k_declare -s POWERLEVEL9K_PUBLIC_IP_HOST "http://ident.me"
_p9k_declare -s POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE "" _p9k_declare -s POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE ""
_p9k_segment_in_use public_ip || POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE= _p9k_segment_in_use public_ip || _POWERLEVEL9K_PUBLIC_IP_VPN_INTERFACE=
_p9k_declare -b POWERLEVEL9K_ALWAYS_SHOW_CONTEXT 0 _p9k_declare -b POWERLEVEL9K_ALWAYS_SHOW_CONTEXT 0
_p9k_declare -b POWERLEVEL9K_ALWAYS_SHOW_USER 0 _p9k_declare -b POWERLEVEL9K_ALWAYS_SHOW_USER 0
_p9k_declare -e POWERLEVEL9K_CONTEXT_TEMPLATE "%n@%m" _p9k_declare -e POWERLEVEL9K_CONTEXT_TEMPLATE "%n@%m"
@ -6625,7 +6558,19 @@ _p9k_init() {
local f_init local f_init
for f_init in $_p9k_async_segments_init; do for f_init in $_p9k_async_segments_init; do
$f_init $f_init || continue
local f=${f_init%init}
if (( ! $+functions[${f}sync] )); then
functions[${f}sync]='[[ $cur == $prev ]] && return; eval $cur; _p9k_worker_reply $cur'
fi
if (( ! $+functions[${f}compute] )); then
local body="_p9k_worker_invoke $f "
(( $+functions[${f}cond] )) && body+="${f}cond " || body+="'' "
(( $+functions[${f}async] )) && body+="${f}async " || body+="'' "
functions[${f}compute]="$body ${f}sync"
fi
_p9k_worker_send_functions ${f}{cond,sync,async}
_p9k__async_segments_compute+=${f}compute
done done
(( $#_p9k__async_segments_compute )) && _p9k_worker_start (( $#_p9k__async_segments_compute )) && _p9k_worker_start

View file

@ -7,14 +7,16 @@ function _p9k_worker_main() {
zmodload zsh/zselect || return zmodload zsh/zselect || return
! { zselect -t0 || (( $? != 1 )) } || return ! { zselect -t0 || (( $? != 1 )) } || return
function _p9k_worker_reply_begin() { print e } function _p9k_worker_reply_begin() { print -nr -- e }
function _p9k_worker_reply_end() { print -n -- '\x1e' } function _p9k_worker_reply_end() { print -nr -- $'\x1e' }
function _p9k_worker_reply() { print -nr -- e${(pj:\n:)@}$'\x1e' }
typeset -g IFS=$' \t\n\0' typeset -g IFS=$' \t\n\0'
local req fd buf local req fd
local -a ready local -a ready
local -A inflight # fd => id$'\x1f'sync local -A inflight # fd => id$'\x1f'sync
local -A last_async
local -ri _p9k_worker_runs_me=1 local -ri _p9k_worker_runs_me=1
{ {
@ -22,7 +24,7 @@ function _p9k_worker_main() {
[[ $ready[1] == -r ]] || return [[ $ready[1] == -r ]] || return
for fd in ${ready:1}; do for fd in ${ready:1}; do
if [[ $fd == 0 ]]; then if [[ $fd == 0 ]]; then
buf= local buf=
while true; do while true; do
sysread -t 0 'buf[$#buf+1]' && continue sysread -t 0 'buf[$#buf+1]' && continue
(( $? == 4 )) || return (( $? == 4 )) || return
@ -45,15 +47,23 @@ function _p9k_worker_main() {
fi fi
done done
else else
buf= local cur=
while true; do while true; do
sysread -i $fd 'buf[$#buf+1]' && continue sysread -i $fd 'cur[$#cur+1]' && continue
(( $? == 5 )) || return (( $? == 5 )) || return
break break
done done
local parts=("${(@ps:\x1f:)inflight[$fd]}") # id sync local parts=("${(@ps:\x1f:)inflight[$fd]}") # id sync
if [[ $buf == *$'\x1e' ]]; then if [[ $cur == *$'\x1e' ]]; then
() { eval ${buf[1,-2]}$'\n'$parts[2] } cur[-1]=""
() {
local prev
if [[ -n $parts[1] ]]; then
prev=$last_async[$parts[1]]
last_async[$parts[1]]=$cur
fi
eval $parts[2]
}
fi fi
if [[ -n $parts[1] ]]; then if [[ -n $parts[1] ]]; then
print -rn -- d$parts[1]$'\x1e' || return print -rn -- d$parts[1]$'\x1e' || return

View file

@ -1,4 +1,3 @@
- decouple *_init functions from segments; find all of them with a glob in _p9k_init_cacheable.
- declare local _p9k_worker_reset in _p9k_worker_receive. it can be set when replies from worker - declare local _p9k_worker_reset in _p9k_worker_receive. it can be set when replies from worker
are eval'd. initial value 0. 1 means reset-prompt is needed. 2 for _p9k_set_prompt + reset-prompt. are eval'd. initial value 0. 1 means reset-prompt is needed. 2 for _p9k_set_prompt + reset-prompt.
- battery: when state or icon change, update with _p9k_set_prompt. make sure icons can be sent with - battery: when state or icon change, update with _p9k_set_prompt. make sure icons can be sent with