powerlevel10k/internal/worker.zsh

308 lines
8.9 KiB
Bash
Raw Normal View History

2020-01-25 07:52:12 +01:00
# invoked in worker: _p9k_worker_main <pgid>
2020-01-17 19:01:17 +01:00
function _p9k_worker_main() {
2020-01-25 07:52:12 +01:00
local pgid=$1
mkfifo $_p9k__worker_file_prefix.fifo || return
echo -nE - s${1}$'\x1e' || return
exec 0<$_p9k__worker_file_prefix.fifo || return
rm $_p9k__worker_file_prefix.fifo || return
2020-01-18 11:09:18 +01:00
2020-01-20 23:37:03 +01:00
function _p9k_worker_reply_begin() { print -nr -- e }
function _p9k_worker_reply_end() { print -nr -- $'\x1e' }
function _p9k_worker_reply() { print -nr -- e${(pj:\n:)@}$'\x1e' }
2020-01-20 20:12:05 +01:00
typeset -g IFS=$' \t\n\0'
2020-01-20 23:37:03 +01:00
local req fd
2020-01-18 11:09:18 +01:00
local -a ready
local -A inflight # fd => id$'\x1f'sync
2020-01-20 23:37:03 +01:00
local -A last_async
local -ri _p9k_worker_runs_me=1
2020-01-19 11:53:10 +01:00
{
while zselect -a ready 0 ${(k)inflight}; do
[[ $ready[1] == -r ]] || return
for fd in ${ready:1}; do
if [[ $fd == 0 ]]; then
2020-01-20 23:37:03 +01:00
local buf=
2020-01-19 11:53:10 +01:00
while true; do
sysread -t 0 'buf[$#buf+1]' && continue
(( $? == 4 )) || return
[[ $buf[-1] == (|$'\x1e') ]] && break
sysread 'buf[$#buf+1]' || return
done
for req in ${(ps:\x1e:)buf}; do
local parts=("${(@ps:\x1f:)req}") # id cond async sync
if () { eval $parts[2] }; then
if [[ -n $parts[3] ]]; then
sysopen -r -o cloexec -u fd <(
2020-01-20 20:12:05 +01:00
() { eval $parts[3]; } && print -n '\x1e') || return
2020-01-19 11:53:10 +01:00
inflight[$fd]=$parts[1]$'\x1f'$parts[4]
continue
fi
() { eval $parts[4] }
2020-01-18 11:09:18 +01:00
fi
2020-01-19 11:53:10 +01:00
if [[ -n $parts[1] ]]; then
print -rn -- d$parts[1]$'\x1e' || return
fi
done
else
2020-01-20 23:37:03 +01:00
local cur=
2020-01-19 11:53:10 +01:00
while true; do
2020-01-20 23:37:03 +01:00
sysread -i $fd 'cur[$#cur+1]' && continue
2020-01-20 20:12:05 +01:00
(( $? == 5 )) || return
2020-01-19 11:53:10 +01:00
break
done
local parts=("${(@ps:\x1f:)inflight[$fd]}") # id sync
2020-01-20 23:37:03 +01:00
if [[ $cur == *$'\x1e' ]]; then
cur[-1]=""
() {
local prev
if [[ -n $parts[1] ]]; then
prev=$last_async[$parts[1]]
last_async[$parts[1]]=$cur
fi
eval $parts[2]
}
2020-01-20 20:12:05 +01:00
fi
2020-01-18 11:09:18 +01:00
if [[ -n $parts[1] ]]; then
print -rn -- d$parts[1]$'\x1e' || return
fi
2020-01-19 11:53:10 +01:00
unset "inflight[$fd]"
exec {fd}>&-
2020-01-18 11:09:18 +01:00
fi
2020-01-19 11:53:10 +01:00
done
done
2020-01-19 11:53:10 +01:00
} always {
2020-01-25 07:52:12 +01:00
kill -- -$pgid
2020-01-19 11:53:10 +01:00
}
2020-01-17 19:01:17 +01:00
}
2020-01-20 20:12:05 +01:00
typeset -g _p9k__worker_pid
typeset -g _p9k__worker_req_fd
typeset -g _p9k__worker_resp_fd
typeset -g _p9k__worker_shell_pid
typeset -g _p9k__worker_file_prefix
typeset -gA _p9k__worker_request_map
typeset -ga _p9k__worker_request_queue
# todo: remove these
function _p9k_worker_send_params() { }
function _p9k_worker_send_functions() { }
2020-01-18 11:09:18 +01:00
# invoked in master: _p9k_worker_invoke <request-id> <cond> <async> <sync>
2020-01-17 19:01:17 +01:00
function _p9k_worker_invoke() {
if [[ -n $_p9k__worker_resp_fd ]]; then
2020-01-18 11:09:18 +01:00
local req=$1$'\x1f'$2$'\x1f'$3$'\x1f'$4$'\x1e'
if [[ -n $_p9k__worker_req_fd && $+_p9k__worker_request_map[$1] == 0 ]]; then
[[ -n $1 ]] && _p9k__worker_request_map[$1]=
print -rnu $_p9k__worker_req_fd -- $req
return
fi
if [[ -n $1 ]]; then
(( $+_p9k__worker_request_map[$1] )) || _p9k__worker_request_queue+=$1
_p9k__worker_request_map[$1]=$req
2020-01-17 19:01:17 +01:00
else
2020-01-18 11:09:18 +01:00
_p9k__worker_request_queue+=$req
2020-01-17 19:01:17 +01:00
fi
else
2020-01-18 11:09:18 +01:00
if () { eval $2 }; then
local REPLY=
() { eval $3 }
() { eval $4 }
fi
2020-01-17 19:01:17 +01:00
fi
}
function _p9k_worker_cleanup() {
emulate -L zsh
setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} no_aliases
[[ $_p9k__worker_shell_pid == $sysparams[pid] ]] && _p9k_worker_stop
return 0
}
function _p9k_worker_stop() {
emulate -L zsh
setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} no_aliases
add-zsh-hook -D zshexit _p9k_worker_cleanup
[[ -n $_p9k__worker_resp_fd ]] && zle -F $_p9k__worker_resp_fd
[[ -n $_p9k__worker_resp_fd ]] && exec {_p9k__worker_resp_fd}>&-
[[ -n $_p9k__worker_req_fd ]] && exec {_p9k__worker_req_fd}>&-
[[ -n $_p9k__worker_pid ]] && kill -- -$_p9k__worker_pid 2>/dev/null
_p9k__worker_pid=
_p9k__worker_req_fd=
_p9k__worker_resp_fd=
_p9k__worker_shell_pid=
2020-01-18 11:09:18 +01:00
_p9k__worker_request_map=()
_p9k__worker_request_queue=()
2020-01-17 19:01:17 +01:00
return 0
}
function _p9k_worker_receive() {
emulate -L zsh
setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} no_aliases
{
(( $# <= 1 )) || return
local buf resp reset
while true; do
sysread -t 0 -i $_p9k__worker_resp_fd 'buf[$#buf+1]' && continue
(( $? == 4 )) || return
[[ $buf[-1] == (|$'\x1e') ]] && break
sysread -i $_p9k__worker_resp_fd 'buf[$#buf+1]' || return
done
for resp in ${(ps:\x1e:)${buf//$'\x05'}}; do
2020-01-17 19:01:17 +01:00
local arg=$resp[2,-1]
case $resp[1] in
d)
2020-01-18 11:09:18 +01:00
local req=$_p9k__worker_request_map[$arg]
2020-01-17 19:01:17 +01:00
if [[ -n $req ]]; then
2020-01-18 11:09:18 +01:00
_p9k__worker_request_map[$arg]=
print -rnu $_p9k__worker_req_fd -- $req || return
2020-01-17 19:01:17 +01:00
else
2020-01-18 11:09:18 +01:00
unset "_p9k__worker_request_map[$arg]"
2020-01-17 19:01:17 +01:00
fi
;;
e)
if (( start_time )); then
local -F end_time=EPOCHREALTIME
local -F3 latency=$((1000*(end_time-start_time)))
echo "latency: $latency ms" >>/tmp/log
start_time=0
fi
reset=1
() { eval $arg }
;;
s)
[[ -z $_p9k__worker_pid ]] || return
[[ $arg == <1-> ]] || return
_p9k__worker_pid=$arg
sysopen -w -o cloexec -u _p9k__worker_req_fd $_p9k__worker_file_prefix.fifo || return
local req=
for req in $_p9k__worker_request_queue; do
if [[ $req != *$'\x1e' ]]; then
local id=$req
req=$_p9k__worker_request_map[$id]
_p9k__worker_request_map[$id]=
fi
print -rnu $_p9k__worker_req_fd -- $req || return
done
_p9k__worker_request_queue=()
2020-01-17 19:01:17 +01:00
;;
*)
return 1
;;
esac
done
(( reset )) && _p9k_reset_prompt
2020-01-17 19:01:17 +01:00
return 0
} always {
(( $? )) && _p9k_worker_stop
}
}
function _p9k_worker_start() {
setopt no_bgnice monitor
2020-01-17 19:01:17 +01:00
{
[[ -n $_p9k__worker_resp_fd ]] && return
_p9k__worker_file_prefix=${TMPDIR:-/tmp}/p10k.worker.$EUID.$$.$EPOCHSECONDS
sysopen -r -o cloexec -u _p9k__worker_resp_fd <(
if [[ -n $_POWERLEVEL9K_WORKER_LOG_LEVEL ]]; then
exec 2>$_p9k__worker_file_prefix.log
setopt xtrace
else
exec 2>/dev/null
fi
# todo: remove
exec 2>>/tmp/log
setopt xtrace
2020-01-25 07:52:12 +01:00
zmodload zsh/zselect || return
! { zselect -t0 || (( $? != 1 )) } || return
local pgid=$sysparams[pid]
_p9k_worker_main $pgid &
{
trap '' PIPE
while syswrite $'\x05'; do zselect -t 1000; done
2020-01-25 07:52:12 +01:00
kill -- -$pgid
} &
exec =true) || return
2020-01-17 19:01:17 +01:00
zle -F $_p9k__worker_resp_fd _p9k_worker_receive
_p9k__worker_shell_pid=$sysparams[pid]
add-zsh-hook zshexit _p9k_worker_cleanup
} always {
(( $? )) && _p9k_worker_stop
}
}
# todo: remove
return
2020-01-17 19:01:17 +01:00
function _p9k_reset_prompt() {
zle && zle reset-prompt && zle -R
2020-01-17 19:01:17 +01:00
}
emulate -L zsh -o prompt_subst # -o xtrace
POWERLEVEL9K_WORKER_LOG_LEVEL=DEBUG
zmodload zsh/datetime
zmodload zsh/system
autoload -Uz add-zsh-hook
typeset -F start_time=EPOCHREALTIME
_p9k_worker_start
echo -E - $((1000*(EPOCHREALTIME-start_time)))
2020-01-18 11:09:18 +01:00
function foo_cond() {
typeset -gi foo_counter
typeset -g foo="[$bar] cond $1 $((foo_counter++))"
2020-01-17 19:01:17 +01:00
}
2020-01-18 11:09:18 +01:00
function foo_async() {
sleep 1
REPLY="$foo / async $1"
}
2020-01-17 19:01:17 +01:00
2020-01-18 11:09:18 +01:00
function foo_sync() {
REPLY+=" / sync $1"
_p9k_worker_reply "typeset -g foo=${(q)REPLY}"
}
2020-01-17 19:01:17 +01:00
() {
2020-01-18 11:09:18 +01:00
typeset -g RPROMPT='$foo %*'
typeset -g bar='lol'
_p9k_worker_send_params bar
local f
for f in foo_{cond,async,sync}; do
_p9k_worker_invoke "" "function $f() { $functions[$f] }" "" ""
2020-01-17 19:01:17 +01:00
done
2020-01-18 11:09:18 +01:00
() {
local -i i
for i in {1..10}; do
_p9k_worker_invoke foo$i "foo_cond c$i\$\{" "foo_async a$i\$\{" "foo_sync s$i\$\{"
done
}
}
2020-01-17 19:01:17 +01:00
function in_worker() {
_p9k_worker_reply 'echo roundtrip: $((1000*(EPOCHREALTIME-'$1'))) >>/tmp/log'
}
2020-01-18 11:09:18 +01:00
_p9k_worker_invoke "" "function in_worker() { $functions[in_worker] }" "" ""
_p9k_worker_invoke w "in_worker $EPOCHREALTIME" "" ""
# for i in {1..100}; do _p9k_worker_invoke w$i "in_worker $EPOCHREALTIME"; done
# TODO:
#
# - Segment API: _p9k_prompt_foo_worker_{params,cond,async,sync}.
# - _p9k_worker_request -- cacheable variable that contains full request to worker.
# - _p9k_set_prompt sends stuff to worker or evals it.
# - _p9k_on_expand has _REALTIME check at the top and sends keep-alive to worker.